:root {
  --wine: #4c1019;
  --wine-soft: #7c4b54;
  --rose: #b79da0;
  --ink: #242426;
  --muted: #6b5e60;
  --paper: #fffaf6;
  --line: #eadeda;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-weight: 200;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.search-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.site-header {
  position: sticky;
  top: -40px;
  z-index: 19;
  background: #fff;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 40px;
  padding: 0 34px;
  background: linear-gradient(90deg, #ad9599, #b49da0 58%, #a98f91);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: none;
}

.topbar-left,
.topbar-message,
.socials,
.shipping {
  display: flex;
  align-items: center;
}

.topbar-message {
  justify-content: center;
  gap: 22px;
  font-size: 12px;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

.topbar-dot {
  font-size: 12px;
  line-height: 1;
}

.topbar-left {
  gap: 16px;
}

.topbar-left span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.68);
}

.shipping {
  gap: 28px;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.shipping button {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  opacity: 0.9;
}

.socials {
  justify-content: flex-end;
  gap: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.socials a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.socials svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.socials a[aria-label="Facebook"] svg,
.socials a[aria-label="Pinterest"] svg,
.socials a[aria-label="TikTok"] svg,
.socials a[aria-label="LinkedIn"] svg {
  fill: currentColor;
  stroke: none;
}


.mainnav {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 90px;
  padding: 0 20px 0 30px;
  border-bottom: 1px solid rgba(86, 16, 26, 0.05);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: flex;
  align-items: center;
  color: var(--wine);
  min-width: 0;
  transform: translate(-6px, 3px);
}

.brand img {
  display: block;
  width: auto;
  height: 42px;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  transform: translateX(-50px);
  gap: clamp(36px, 2.5vw, 56px);
  color: #282a2b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  z-index: 1;
}

.nav-item:hover,
.nav-item:focus-within {
  z-index: 60;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 34px 0;
}

.nav-link::before {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  background: var(--wine);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-link::after {
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.18s ease, margin-top 0.18s ease;
}

.nav-item-plain .nav-link::after {
  display: none;
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  color: var(--wine);
}

.nav-item:hover .nav-link::before,
.nav-item:focus-within .nav-link::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nav-item-plain:hover .nav-link::after,
.nav-item-plain:focus-within .nav-link::after {
  display: none;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1000;
  display: grid;
  min-width: 250px;
  padding: 25px 30px 28px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(76, 16, 25, 0.08);
  color: var(--wine);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  text-transform: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown a {
  position: relative;
  display: block;
  width: max-content;
  padding: 10px 0;
  white-space: nowrap;
}

.nav-dropdown a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  color: var(--wine);
}

.nav-dropdown a:hover::after,
.nav-dropdown a:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--wine);
  justify-self: end;
  white-space: nowrap;
}

.nav-actions button {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  transform: translateX(-6px);
}

.nav-actions svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-separator {
  width: 1px;
  height: 38px;
  background: rgba(76, 16, 25, 0.35);
}

.quote,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.quote {
  width: 174px;
  height: 46px;
  background: var(--wine);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(36, 36, 38, 0.46);
  opacity: 0;
  transition: opacity 0.24s ease;
}

body.search-open .search-overlay {
  opacity: 1;
}

.search-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 21;
  width: min(640px, calc(100vw - 96px));
  height: 100vh;
  background: #fffaf8;
  color: var(--wine);
  box-shadow: -18px 0 42px rgba(76, 16, 25, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

body.search-open .search-panel {
  transform: translateX(0);
}

.search-panel-inner {
  height: 100%;
  overflow-y: auto;
  padding: 24px 30px 40px;
  scrollbar-color: #bdbdbd transparent;
  scrollbar-width: thin;
}

.search-panel-inner::-webkit-scrollbar {
  width: 14px;
}

.search-panel-inner::-webkit-scrollbar-thumb {
  border: 4px solid #fffaf8;
  border-radius: 999px;
  background: #c7b6b8;
}

.search-form {
  display: grid;
  grid-template-columns: 28px 1fr 30px;
  align-items: center;
  gap: 11px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(76, 16, 25, 0.48);
}

.search-form svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.search-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  line-height: 1.2;
}

.search-form input::placeholder {
  color: var(--wine-soft);
  opacity: 1;
}

.search-close {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--wine);
}

.search-close span {
  position: absolute;
  top: 14px;
  left: 4px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.search-close span:first-child {
  transform: rotate(45deg);
}

.search-close span:last-child {
  transform: rotate(-45deg);
}

.popular-searches {
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--line);
}

.searched-products {
  padding-top: 34px;
}

.popular-searches h2,
.searched-products h2 {
  margin: 0;
  color: var(--wine);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.popular-searches p {
  margin: 18px 0 0;
  color: var(--wine-soft);
  font-size: 16px;
  line-height: 1.35;
}

.search-product-list {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.search-product {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 18px;
  color: var(--ink);
}

.search-product img {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 4px;
  background: #fbf6f3;
  object-fit: cover;
}

.search-product strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.22;
}

.search-product em {
  display: block;
  margin-top: 14px;
  color: var(--wine-soft);
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}

.hero {
  min-height: 624px;
  background-color: #fbf5f1;
  background-image: linear-gradient(90deg, rgba(252, 247, 243, 0.9) 0%, rgba(252, 247, 243, 0.61) 34%, rgba(252, 247, 243, 0.09) 58%), url("assets/home/hero-banner.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero.custom-sets-hero {
  min-height: 560px;
  background-image: linear-gradient(90deg, rgba(252, 247, 243, 0.9) 0%, rgba(252, 247, 243, 0.61) 34%, rgba(252, 247, 243, 0.09) 58%), url("assets/custom-solution/custom-mahjong-sets/hero.webp");
}

.custom-sets-page .content-page {
  display: flex;
  flex-direction: column;
}

.custom-sets-page .content-page .hero {
  order: 1;
}

.custom-sets-page .content-page .custom-options {
  order: 2;
  padding-top: 130px;
}

.custom-sets-page .content-page .custom-process {
  order: 3;
}

.hero.custom-sets-hero .hero-buttons .btn {
  width: 314px;
}

.hero.custom-sets-hero .hero-copy {
  padding-left: 70px;
}

.custom-subpage-hero > img {
  display: none;
}

.custom-subpage-private .custom-subpage-hero {
  background-image: linear-gradient(90deg, rgba(252, 247, 243, 0.9) 0%, rgba(252, 247, 243, 0.61) 34%, rgba(252, 247, 243, 0.09) 58%), url("assets/home/private-label-programs-solution.webp");
}

.custom-subpage-wholesale .custom-subpage-hero {
  background-image: linear-gradient(90deg, rgba(252, 247, 243, 0.9) 0%, rgba(252, 247, 243, 0.61) 34%, rgba(252, 247, 243, 0.09) 58%), url("assets/home/wholesale-retail-programs-solution.webp");
}

.custom-subpage-event .custom-subpage-hero {
  background-image: linear-gradient(90deg, rgba(252, 247, 243, 0.9) 0%, rgba(252, 247, 243, 0.61) 34%, rgba(252, 247, 243, 0.09) 58%), url("assets/home/event-corporate-gifting-solution.webp");
}

.hero-copy {
  width: min(760px, 56vw);
  padding: 148px 0 0 50px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #a75364;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 3.85vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 em {
  font-style: italic;
}

.intro {
  width: 520px;
  margin: 24px 0 49px;
  font-size: 18px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 24px;
}

.btn {
  width: 194px;
  height: 42px;
  border: 1px solid var(--wine);
}

.hero-buttons .btn {
  width: 214px;
  height: 62px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.btn.primary {
  background: var(--wine);
  color: #fff;
}

.btn.primary:hover,
.btn.primary:focus {
  background: #651825;
  border-color: #651825;
  box-shadow: 0 10px 22px rgba(76, 16, 25, 0.18);
  transform: translateY(-2px);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.48);
  color: var(--wine);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 10px 22px rgba(76, 16, 25, 0.14);
  transform: translateY(-2px);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 32px;
  max-width: 1230px;
  margin: 0 auto;
  padding: 28px 10px 27px;
}

.features article {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.feature-icon {
  width: 30px;
  color: #a05a64;
  font-size: 32px;
  text-align: center;
}

.features h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.15;
}

.features p {
  margin: 3px 0 0;
  color: #4f4545;
  font-size: 14px;
}

.product-showcase {
  background: #fcf9f8;
}

.product-showcase-inner {
  max-width: none;
  margin: 0 auto;
  padding: 66px 50px 74px;
}

.product-showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}

.product-showcase h2 {
  margin: 0;
  color: #312c2c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
}

.product-showcase-header a {
  color: #312c2c;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.product-tabs button {
  height: 42px;
  padding: 0 23px;
  border: 1px solid #dedbda;
  border-radius: 999px;
  background: #fff;
  color: #303033;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.product-tabs button.active {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.product-tabs button:hover,
.product-tabs button:focus-visible {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
  box-shadow: none;
  outline: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  overflow: hidden;
}

.product-card {
  display: block;
  width: 100%;
  min-width: 0;
  color: #303033;
}

.product-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: #f5f3f2;
}

.product-card:nth-child(n + 7) {
  display: none;
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: #303033;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.product-card strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 12px;
  color: #303033;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-rating {
  display: block;
  margin-top: 10px;
  color: #4f4a4a;
  font-size: 15px;
  line-height: 1.2;
}

.product-rating {
  color: #303033;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  margin-top: 22px;
  padding: 0 12px;
  border: 1px solid #dedbda;
  border-radius: 4px;
  background: #fff;
  color: #4f4a4a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.product-card:hover,
.product-card:focus-visible {
  outline: 0;
}

.product-card:hover img,
.product-card:focus-visible img {
  transform: scale(1.035);
}

.product-card:hover .product-cta,
.product-card:focus-visible .product-cta {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.listing-page {
  max-width: none;
  min-height: 760px;
  margin: 0;
  padding: 0 50px 86px;
  color: var(--wine);
  background: #fff;
}

.product-category-rail {
  background: #fff;
  color: var(--wine);
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 64px;
  border-bottom: 1px solid #eef3fb;
  color: var(--wine-soft);
  font-size: 17px;
  line-height: 1;
}

.product-breadcrumb a,
.product-breadcrumb span[aria-hidden="true"] {
  color: var(--wine-soft);
}

.product-breadcrumb span:last-child {
  color: var(--wine);
}

.category-rail-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 41px 30px 34px;
  background: #f3eaf3;
}

.category-rail-card {
  display: grid;
  min-width: 0;
  gap: 24px;
  color: var(--wine);
}

.category-rail-card img {
  display: block;
  width: 100%;
  aspect-ratio: auto;
  height: calc(100% + 4px);
  background: #fff;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.category-rail-card:hover img,
.category-rail-card:focus-visible img {
  transform: scale(1.012);
}

.category-rail-card strong {
  overflow: hidden;
  color: var(--wine);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-page h1 {
  margin: 0;
  padding: 70px 0 72px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.listing-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 32px;
}

.listing-filter {
  padding-top: 4px;
}

.listing-filter section {
  display: grid;
  gap: 23px;
  margin-bottom: 45px;
}

.listing-filter button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
}

.filter-toggle-icon {
  width: 10px;
  height: 10px;
  margin-right: 49px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(225deg);
  transition: transform 0.16s ease, margin-top 0.16s ease;
}

.listing-filter section.is-collapsed .filter-toggle-icon {
  margin-top: -5px;
  transform: rotate(45deg);
}

.listing-filter section.is-collapsed label,
.listing-filter section.is-collapsed .filter-options {
  display: none;
}

.listing-filter label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--wine);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

.filter-options {
  display: grid;
  gap: 23px;
}

.listing-filter input {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  margin: 0;
  appearance: none;
  background: #fff;
}

.listing-filter input:checked {
  border-color: #b8d5f7;
  background: #fff;
}

.listing-filter input:checked::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 12px;
  height: 12px;
  background: #f2a9c7;
  content: "";
}

.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.listing-toolbar p {
  margin: 0;
  color: var(--wine);
  font-size: 21px;
}

.listing-toolbar select {
  width: 246px;
  height: 56px;
  padding: 0 46px 0 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--wine);
  font: inherit;
  font-size: 21px;
  appearance: auto;
}

.listing-results {
  width: calc(100% + 50px);
  transform: translateX(-50px);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 330px);
  gap: 42px;
  justify-content: space-between;
}

.listing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 330px;
  min-width: 0;
}

.listing-card-media {
  position: relative;
  overflow: hidden;
  width: 330px;
  height: 330px;
  background: #fbfbfb;
}

.listing-card-media img {
  display: block;
  width: 330px;
  height: 330px;
  object-fit: cover;
  transition: filter 0.22s ease, transform 0.22s ease;
}

.listing-card:hover,
.listing-card:focus-within {
  color: var(--wine);
}

.listing-card:hover .listing-card-media img,
.listing-card:focus-within .listing-card-media img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.listing-card:hover h2,
.listing-card:focus-within h2 {
  color: var(--wine);
}

.tile-badge {
  position: absolute;
  top: 4px;
  left: 7px;
  z-index: 1;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.tile-badge.pink {
  background: #f45bad;
}

.tile-badge.navy {
  background: var(--wine);
}

.tile-badge.badge-offset {
  left: 82px;
}

.listing-card h2 {
  display: -webkit-box;
  overflow: hidden;
  margin: 18px 0 0;
  color: var(--wine);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.listing-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--wine);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(76, 16, 25, 0.08);
}

.listing-card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wine);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-underline-offset: 4px;
}

.listing-card-button-arrow {
  display: inline-block;
  transition: transform 0.18s ease;
}

.listing-card:hover .listing-card-button-arrow,
.listing-card:focus-within .listing-card-button-arrow {
  transform: translateX(3px);
}

.listing-card:hover .listing-card-button-text,
.listing-card:focus-within .listing-card-button-text {
  text-decoration: underline;
}

.listing-card p {
  margin: 8px 0 0;
  color: var(--wine-soft);
  font-size: 16px;
  line-height: 1.25;
}

.product-detail-page {
  padding: 0 50px 80px;
  background: #fff;
  color: var(--wine);
}

.product-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  color: var(--muted);
  font-size: 14px;
}

.product-detail-breadcrumb a {
  color: var(--wine);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(390px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.product-detail-gallery {
  width: min(100%, 690px);
  min-width: 0;
}

.product-detail-main-image {
  display: grid;
  width: 100%;
  overflow: visible;
  place-items: center;
  background: #faf8f7;
}

.product-detail-main-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  width: 100%;
}

.product-detail-thumbs button {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 2px solid transparent;
  background: #faf8f7;
}

.product-detail-thumbs button.active {
  border-color: var(--wine);
}

.product-detail-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-info {
  display: grid;
  gap: 24px;
  padding-top: 4px;
}

.product-detail-info h1 {
  margin: 0;
  color: var(--wine);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: clamp(16px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.product-spec-list {
  display: grid;
  border-top: 1px solid var(--line);
  margin: 0;
}

.product-spec-list div {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.product-spec-list dt {
  color: var(--wine);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.product-spec-list dd {
  margin: 0;
  color: #3f3839;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.product-inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  margin-top: 14px;
  border-radius: 4px;
  background: var(--wine);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  transition: background 0.18s ease, transform 0.18s ease;
}

.product-inquiry-btn:hover,
.product-inquiry-btn:focus-visible {
  background: #651825;
  outline: 0;
  transform: translateY(-2px);
}

.set-series {
  display: grid;
  grid-template-columns: minmax(360px, 620px) minmax(420px, 1fr) minmax(360px, 618px);
  align-items: center;
  overflow: hidden;
  min-height: 620px;
  padding: 40px 39px;
  background: radial-gradient(circle at 50% 50%, #5b1d1a 0%, #4b1713 52%, #3e130f 100%);
  color: #fff8f2;
}

.set-series-media {
  overflow: hidden;
  align-self: stretch;
  min-height: 0;
}

.set-series-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.set-series-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0 22px 3px;
  text-align: center;
}

.set-series-mark {
  position: relative;
  display: grid;
  width: 62px;
  height: 56px;
  place-items: center;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.set-series-mark::after {
  position: absolute;
  right: 1px;
  bottom: 4px;
  left: 1px;
  height: 14px;
  border-bottom: 1px solid rgba(255, 248, 242, 0.82);
  content: "";
  background:
    linear-gradient(30deg, transparent 38%, rgba(255, 248, 242, 0.72) 39% 43%, transparent 44%) left 5px bottom 0 / 18px 12px no-repeat,
    linear-gradient(-30deg, transparent 38%, rgba(255, 248, 242, 0.72) 39% 43%, transparent 44%) right 5px bottom 0 / 18px 12px no-repeat;
}

.set-series-brand {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 12px;
  text-indent: 12px;
}

.set-series h2 {
  max-width: 100%;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.set-series-rule {
  position: relative;
  width: 265px;
  height: 14px;
  margin: 24px 0 18px;
}

.set-series-rule::before,
.set-series-rule::after {
  position: absolute;
  top: 6px;
  width: 121px;
  height: 1px;
  background: rgba(255, 248, 242, 0.28);
  content: "";
}

.set-series-rule::before {
  left: 0;
}

.set-series-rule::after {
  right: 0;
}

.set-series-rule span {
  display: block;
  width: 7px;
  height: 7px;
  margin: 3px auto 0;
  border-radius: 50%;
  background: #fff8f2;
}

.set-series-text {
  max-width: 520px;
  margin: 0;
  color: #fff8f2;
  font-size: 16px;
  font-weight: 100;
  line-height: 1.38;
}

.set-series-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 264px;
  height: 64px;
  margin-top: 32px;
  border-radius: 5px;
  background: #fffaf4;
  color: #35130f;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.set-series-button:hover,
.set-series-button:focus-visible {
  background: #fff;
  box-shadow: 0 14px 28px rgba(31, 8, 7, 0.24);
  outline: 0;
  transform: translateY(-2px);
}

.custom-solution {
  background: #fff;
  color: #3c3838;
}

.custom-solution-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 58px 64px 78px;
}

.custom-solution h2 {
  margin: 0;
  color: #312c2c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
}

.custom-solution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 25px;
}

.custom-solution-tabs button,
.custom-solution-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 23px;
  border: 1px solid #dedbda;
  border-radius: 999px;
  background: #fff;
  color: #303033;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.custom-solution-tabs button.active,
.custom-solution-tabs button:hover,
.custom-solution-tabs button:focus-visible,
.custom-solution-tabs a.active,
.custom-solution-tabs a:hover,
.custom-solution-tabs a:focus-visible {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
  box-shadow: none;
  outline: 0;
}

.custom-solution-feature {
  display: grid;
  grid-template-columns: minmax(420px, calc(45.2vw - 100px)) minmax(420px, 1fr);
  gap: 76px;
  align-items: start;
  margin-top: 46px;
}

.custom-solution-image {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  background: #f5efec;
}

.custom-solution-image-link {
  display: block;
}

.custom-solution-image img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.custom-solution-copy {
  max-width: 720px;
  padding-top: 14px;
}

.custom-solution-copy p {
  margin: 0;
  color: #3d3d3d;
  font-size: clamp(22px, 1.45vw, 30px);
  font-weight: 700;
  line-height: 1.34;
}

.custom-solution-link {
  display: block;
  width: fit-content;
  margin-top: 42px;
  color: #3d3d3d;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.custom-solution-copy span {
  display: block;
  margin-top: 20px;
  color: #555;
  font-size: 21px;
  line-height: 1.25;
}

.custom-solution-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 232px;
  height: 66px;
  margin-top: 88px;
  padding: 0 31px;
  border: 1px solid #4b4644;
  border-radius: 4px;
  color: #3d3a3a;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.custom-solution-button:hover,
.custom-solution-button:focus-visible {
  background: #4c1019;
  color: #fffaf8;
  box-shadow: 0 12px 24px rgba(76, 16, 25, 0.14);
  outline: 0;
  transform: translateY(-2px);
}

.content-page {
  background: #fffaf8;
  color: #3c3838;
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1fr);
  gap: 76px;
  align-items: center;
  padding: 78px 64px 84px;
}

.content-hero img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.content-copy h1 {
  margin: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 1.08;
}

.content-copy p {
  max-width: 1300px;
  margin: 28px 0 0;
  color: #3d3d3d;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.42;
}

.content-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 58px;
  margin-top: 48px;
  padding: 0 28px;
  border: 1px solid var(--wine);
  border-radius: 4px;
  color: var(--wine);
  font-size: 18px;
  font-weight: 500;
}

.content-copy a:hover,
.content-copy a:focus-visible {
  background: var(--wine);
  color: #fff;
  outline: 0;
}

.custom-process {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(56px, 8vw, 132px);
  align-items: start;
  width: min(1220px, calc(100% - 128px));
  margin: 0 auto;
  padding: 108px 0 124px;
  color: #3c3838;
}

.custom-process-intro {
  position: sticky;
  top: 140px;
}

.custom-process-kicker {
  margin: 0 0 22px;
  color: #7d7675;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1;
}

.custom-process-intro h2 {
  max-width: 520px;
  margin: 0;
  color: #272324;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: clamp(10px, 4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.03;
}

.custom-process-summary {
  max-width: 560px;
  margin: 30px 0 20px;
  color: #777071;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.custom-process-visual {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 430px);
  height: 298px;
  margin-top: 0;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(135deg, #f6e9e7, #f1d8d3);
}

.custom-process-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-process-tile {
  position: absolute;
  display: grid;
  width: 78px;
  height: 94px;
  place-items: center;
  border: 1px solid rgba(90, 42, 55, 0.2);
  border-radius: 7px;
  background: #fffaf8;
  box-shadow: 0 12px 22px rgba(90, 42, 55, 0.12);
  color: #5a2a37;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.custom-process-tile-one { left: 58px; top: 37px; transform: rotate(-12deg); }
.custom-process-tile-two { left: 158px; top: 28px; transform: rotate(4deg); }
.custom-process-tile-three { left: 258px; top: 44px; transform: rotate(13deg); }

.custom-process-line {
  position: absolute;
  right: 30px;
  bottom: 34px;
  left: 30px;
  height: 1px;
  background: rgba(90, 42, 55, 0.3);
}

.custom-process-caption {
  position: absolute;
  right: 30px;
  bottom: 12px;
  color: #8a686d;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.custom-process-steps {
  display: grid;
  gap: 36px;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
}

.custom-process-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.custom-process-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #f4e9eb;
  color: #5a2a37;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.custom-process-steps h3 {
  margin: 0;
  color: #272324;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

.custom-process-steps p {
  max-width: 700px;
  margin: 10px 0 0;
  color: #777071;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.custom-options {
  padding: 0 18px 76px;
  background: #fffaf6;
  color: #4c1019;
}

.custom-options-inner {
  max-width: 1340px;
  margin: 0 auto;
}

.custom-options-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 34px;
  text-align: center;
}

.custom-options-heading-lower {
  margin-top: 130px;
  margin-bottom: 0;
}

.custom-options-heading-customize {
  margin-bottom: 0;
}

.custom-options-heading.custom-options-heading-customize h2 {
  font-weight: 700;
}

.custom-options-heading.custom-options-heading-lower h2 {
  font-weight: 700;
}

.custom-options-subtitle {
  margin: 24px 0 44px;
  color: #4e4947;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.custom-options-actions {
  justify-content: center;
  margin-top: 74px;
}

.custom-options-actions .btn {
  width: 274px;
}

.custom-options-actions-what .btn {
  width: 374px;
}

@media (min-width: 901px) {
  .custom-options-heading-customize,
  .custom-options-subtitle,
  .custom-options-grid-customize,
  .custom-options-grid-set,
  .custom-options-actions {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}

.custom-options-heading h2 {
  margin: 0;
  color: #5a1722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.custom-options-heading span {
  display: none;
}

.custom-options-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.custom-option-card {
  overflow: hidden;
  border: 1px solid #eadfd9;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 4px 14px rgba(76, 16, 25, 0.06);
}

.custom-option-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  background: #f7f1ee;
  object-fit: cover;
}

.custom-options-grid-customize .custom-option-card {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.custom-options-grid-customize {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.custom-options-grid-customize .custom-option-card img {
  width: 100%;
  height: 230px;
  aspect-ratio: auto;
  object-fit: cover;
  background: transparent;
}

.custom-options-grid-customize .custom-option-card div {
  min-height: 0;
  padding: 20px 0 0;
  text-align: left;
}

.custom-options-grid-customize .custom-option-card h3 {
  font-size: 18px;
  text-transform: none;
}

.custom-options-grid-customize .custom-option-card p {
  width: calc(100% - 10px);
  font-size: 14px;
}

.custom-options-grid-set {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.custom-options-grid-set .custom-option-card {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.custom-options-grid-set .custom-option-card img {
  width: 100%;
  height: 230px;
  aspect-ratio: auto;
  background: transparent;
  object-fit: cover;
}

.custom-options-grid-set .custom-option-card div {
  min-height: 0;
  align-items: flex-start;
  padding: 20px 0 0;
  text-align: left;
}

.custom-options-grid-set .custom-option-card h3 {
  min-height: 0;
  font-size: 18px;
  text-align: left;
  text-transform: none;
  width: 100%;
}

.custom-options-grid-set .custom-option-card p {
  width: calc(100% - 10px);
  font-size: 14px;
  text-align: left;
}

.custom-options-grid-customize .custom-option-card img,
.custom-options-grid-set .custom-option-card img {
  transition: transform 0.24s ease;
}

.custom-options-grid-customize .custom-option-card:hover img,
.custom-options-grid-customize .custom-option-card:focus-within img,
.custom-options-grid-set .custom-option-card:hover img,
.custom-options-grid-set .custom-option-card:focus-within img {
  transform: scale(1.035);
}

.custom-option-card div {
  min-height: 132px;
  padding: 17px 16px 20px;
  text-align: center;
}

.custom-option-card h3 {
  margin: 0;
  color: #5a1722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.custom-option-card p {
  margin: 15px 0 0;
  color: #4e4947;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.custom-set-card div {
  min-height: 206px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-set-card h3 {
  min-height: 32px;
}

.custom-set-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 142px);
  height: 40px;
  margin-top: auto;
  border: 1px solid rgba(76, 16, 25, 0.58);
  border-radius: 2px;
  color: #5a1722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.custom-set-card a:hover,
.custom-set-card a:focus-visible {
  border-color: #4c1019;
  background: #4c1019;
  color: #fff;
  outline: 0;
}

.custom-voices {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: 58px 50px 0;
  background: #fff;
  color: #111;
}

.custom-voices-inner {
  max-width: 1460px;
  margin: 0 auto;
}

.custom-voices-kicker {
  margin: 0 0 56px 50px;
  color: #111;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
}

.custom-voices-slides {
  position: relative;
  height: 565px;
}

.custom-voice-slide {
  display: grid;
  position: absolute;
  inset: 0;
  grid-template-columns: minmax(0, 1fr) 514px;
  gap: 96px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.custom-voice-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.custom-voice-copy {
  display: flex;
  min-height: 514px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding-left: 50px;
  transform: translateY(-30px);
}

.custom-voice-copy blockquote {
  margin: 0;
  color: #050505;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 1.95vw, 30px);
  font-weight: 100;
  line-height: calc(1.18em + 2px);
  transform: translateX(40px);
}

.custom-voice-role {
  position: absolute;
  bottom: 0;
  left: 90px;
  margin: 0;
  color: #151515;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.custom-voice-role strong,
.custom-voice-role span {
  display: block;
}

.custom-voice-role strong {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.custom-voice-slide img {
  display: block;
  width: 514px;
  height: 514px;
  object-fit: cover;
  transform: translateX(-100px);
}

.custom-voices-arrow {
  display: grid;
  position: absolute;
  z-index: 2;
  top: 48%;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #8c8c8c;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
}

.custom-voices-arrow::before {
  display: block;
  width: 12px;
  height: 12px;
  border: 0 solid currentColor;
  content: "";
}

.custom-voices-arrow-prev::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
  transform: rotate(45deg);
}

.custom-voices-arrow-next::before {
  border-right-width: 2px;
  border-top-width: 2px;
  transform: rotate(45deg);
}

.custom-voices-arrow:hover,
.custom-voices-arrow:focus-visible {
  color: #4c1019;
  outline: 0;
}

.custom-voices-arrow-prev {
  left: 50px;
}

.custom-voices-arrow-next {
  right: 50px;
}

.custom-voices-dots {
  display: flex;
  justify-content: center;
  gap: 28px;
  min-height: 8px;
  margin-top: 58px;
}

.custom-voices-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cfcac6;
  cursor: pointer;
}

.custom-voices-dots button.active,
.custom-voices-dots button:hover,
.custom-voices-dots button:focus-visible {
  background: #1d1d1d;
  outline: 0;
}

.mahjong-products {
  background: #fcf9f8;
  color: #141414;
}

.mahjong-products-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 66px 50px 58px;
}

.mahjong-products-heading {
  text-align: left;
}

.mahjong-products-heading h2 {
  margin: 0;
  color: #312c2c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
}

.mahjong-product-map {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 25px;
}

.mahjong-product-map::before {
  display: none;
}

.mahjong-product-node {
  display: block;
  min-width: 0;
  color: #303033;
}

.mahjong-product-node::before {
  display: none;
}

.mahjong-product-node span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin: 0;
  padding: 0 23px;
  border: 1px solid #dedbda;
  border-radius: 999px;
  background: #fff;
  color: #303033;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.mahjong-product-node:hover,
.mahjong-product-node:focus-visible {
  outline: 0;
}

.mahjong-product-node:hover span,
.mahjong-product-node:focus-visible span,
.mahjong-product-node:first-child span {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
  box-shadow: none;
}

.categories,
.collections {
  display: grid;
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 30px;
  gap: 22px;
}

.categories {
  grid-template-columns: repeat(6, 1fr);
}

.category-card {
  overflow: hidden;
  min-width: 0;
  border-radius: 7px;
  background: #fbf6f3;
}

.category-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.31;
  object-fit: cover;
}

.category-card strong {
  display: block;
  padding: 14px 14px 0;
  font-size: 14px;
  line-height: 1.1;
}

.category-card span {
  display: block;
  padding: 9px 14px 16px;
  color: #332b2c;
  font-size: 11px;
}

.collection-section {
  max-width: none;
  margin: 17px 0 0;
  padding: 0 50px;
}

.collection-section .section-heading {
  padding: 0 0 14px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 14px;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.section-heading a {
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
}

.collections {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: none;
  padding: 0 0 34px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  min-height: 137px;
  border-radius: 8px 8px 0 0;
  background: #221719;
}

.collection-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(40, 18, 20, 0.28);
}

.collection-card img {
  display: block;
  width: 100%;
  height: 137px;
  object-fit: cover;
}

.collection-card span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.site-footer {
  display: grid;
  min-height: 520px;
  padding: 82px 64px 54px;
  background: #fff;
  color: #3b3b3d;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(460px, 1fr) 190px 260px 300px;
  gap: clamp(36px, 5vw, 86px);
  align-items: start;
}

.footer-cta h2 {
  max-width: 810px;
  margin: 0;
  color: #383638;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.55vw, 36px);
  font-weight: 400;
  line-height: 1.28;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 41px;
}

.footer-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 48px;
  padding: 0 24px;
  border: 1px solid #ddd9d6;
  border-radius: 5px;
  background: #fff;
  color: #444246;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.footer-buttons a:hover,
.footer-buttons a:focus-visible {
  border-color: #4c1019;
  color: #4c1019;
  box-shadow: 0 10px 22px rgba(76, 16, 25, 0.08);
  outline: 0;
}

.footer-column {
  display: grid;
  gap: 17px;
  color: #4d4d50;
  font-size: 15px;
  line-height: 1.2;
}

.footer-column h3 {
  margin: 0 0 3px;
  color: #333336;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-column a {
  width: fit-content;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #4c1019;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 32px 28px;
  min-width: 300px;
  padding-top: 2px;
  color: #060606;
  transform: translateX(-50px);
}

.footer-socials::after {
  flex: 0 0 100%;
  color: #3b3b3d;
  content: "Email: Contact@mahjoco.com";
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  text-align: right;
}

.footer-socials a {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  overflow: visible;
}

.footer-socials svg {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-socials a[aria-label="Facebook"] svg,
.footer-socials a[aria-label="Pinterest"] svg,
.footer-socials a[aria-label="TikTok"] svg,
.footer-socials a[aria-label="LinkedIn"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-socials a[aria-label="X"] span {
  display: block;
  color: #060606;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: auto;
  padding-top: 72px;
  color: #555558;
  font-size: 14px;
  line-height: 1.35;
}

.seasonal-collections {
  max-width: none;
  padding: 40px 50px 54px;
  background: #fff;
  color: #3d3838;
}

.seasonal-collections-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.seasonal-collections-heading h1,
.seasonal-collections-heading h2 {
  margin: 0;
  color: #303033;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.12;
}

.seasonal-collections-heading a {
  color: #3d3838;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seasonal-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.seasonal-collection-card {
  display: block;
  min-width: 0;
  color: #3d3838;
}

.seasonal-collection-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  border-radius: 4px;
  background: #f4efec;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.seasonal-collection-card h3 {
  margin: 20px 0 0;
  color: #3d3838;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.collection-detail-page {
  min-height: 720px;
  padding: 64px 50px 86px;
  background: #fff;
  color: var(--wine);
}

.collection-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.collection-detail-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  border-radius: 4px;
  background: #f4efec;
  object-fit: cover;
}

.collection-detail-copy h1 {
  margin: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
}

.collection-detail-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #4f4a4a;
  font-size: 20px;
  line-height: 1.55;
}

.collection-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
}

.collection-detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  height: 46px;
  padding: 0 22px;
  border: 1px solid var(--wine);
  border-radius: 4px;
  color: var(--wine);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease;
}

.collection-detail-actions a:first-child,
.collection-detail-actions a:hover,
.collection-detail-actions a:focus-visible {
  background: var(--wine);
  color: #fff;
  outline: 0;
}

.christmas-collection-page {
  padding: 0 0 86px;
}

.christmas-collection-page .collection-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
  gap: 0;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
}

.christmas-collection-page .collection-detail-hero img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  align-self: stretch;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
}

.christmas-collection-page .collection-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 500px;
  max-width: none;
  padding: 66px 50px;
  background: #5A2A37;
}

.easter-collection-page .collection-detail-copy {
  background: #dfe9c8;
}

.christmas-collection-page.easter-collection-page .collection-detail-copy h1,
.christmas-collection-page.easter-collection-page .christmas-hero-kicker,
.christmas-collection-page.easter-collection-page .christmas-hero-note {
  color: #23422f;
}

.christmas-collection-page.easter-collection-page .collection-detail-actions a:first-child {
  color: #23422f;
}

.easter-collection-page .easter-featured-copy {
  min-height: 0;
  width: 100%;
  padding: 34px 0 0;
  transform: none;
}

.christmas-collection-page .collection-detail-copy h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 2.3vw, 38px);
  font-weight: 100;
  line-height: 1.18;
  transform: translateY(-20px);
}

.lunar-new-year-page .collection-detail-copy {
  background: #6f202c;
}

.halloween-collection-page .collection-detail-copy {
  background: #48215f;
}

.valentine-collection-page .collection-detail-copy {
  background: #d97d97;
}

.valentine-collection-page .collection-detail-actions a {
  color: #7a2948;
}

.valentine-collection-page .collection-detail-actions a:first-child {
  color: #7a2948;
}

.valentine-collection-page .collection-detail-actions a:first-child:hover,
.valentine-collection-page .collection-detail-actions a:first-child:focus-visible {
  color: #7a2948;
}

.valentine-collection-page .christmas-featured-panel[data-christmas-featured-panel="sets"] .christmas-featured-copy h3 {
  color: #a56068;
  font-size: 26px;
}

.halloween-collection-page .christmas-featured-panel[data-christmas-featured-panel="sets"] .christmas-featured-main-image {
  width: 460px;
  max-width: 100%;
}

.halloween-collection-page .halloween-featured-set-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.halloween-collection-page .christmas-featured-panel[data-christmas-featured-panel="sets"] .christmas-featured-button {
  background: linear-gradient(90deg, #e85b8a, #d94378);
}

.halloween-collection-page .christmas-featured-panel[data-christmas-featured-panel="sets"] .christmas-featured-button:hover,
.halloween-collection-page .christmas-featured-panel[data-christmas-featured-panel="sets"] .christmas-featured-button:focus-visible {
  background: #c62f68;
}

.halloween-collection-page .christmas-featured-panel[data-christmas-featured-panel="sets"] .christmas-featured-copy h3 {
  color: var(--wine);
}

.halloween-collection-page .christmas-featured-tabs button {
  font-size: 16px;
}

.christmas-collection-page .christmas-hero-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-20px);
}

.christmas-collection-page .christmas-hero-note {
  margin: 14px 0 0;
  color: #fff;
  width: 100%;
  max-width: none;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}

.christmas-collection-page .collection-detail-actions {
  margin-top: 40px;
}

.christmas-collection-page .collection-detail-actions a {
  min-width: 248px;
  height: 62px;
  padding: 0 28px;
  border: 1px solid #fff;
  background: #fff;
  color: #5A2A37;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.christmas-collection-page .collection-detail-actions a:nth-child(2) {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.christmas-collection-page .collection-detail-actions a:first-child:hover,
.christmas-collection-page .collection-detail-actions a:first-child:focus-visible {
  border-color: #fff;
  background: #f6ece7;
  color: #5A2A37;
  box-shadow: 0 10px 22px rgba(36, 10, 18, 0.18);
  transform: translateY(-2px);
}

.christmas-collection-page .collection-detail-actions a:nth-child(2):hover,
.christmas-collection-page .collection-detail-actions a:nth-child(2):focus-visible {
  border-color: #fff;
  background: #fff;
  color: #5A2A37;
  box-shadow: 0 10px 22px rgba(36, 10, 18, 0.14);
  transform: translateY(-2px);
}

.christmas-collection-page .collection-detail-actions a:hover,
.christmas-collection-page .collection-detail-actions a:focus-visible {
  outline: 0;
}

.christmas-collection-page .collection-detail-actions a:first-child {
  background: #fff;
  color: #5A2A37;
}

.christmas-collection-page .collection-detail-actions a:first-child:hover,
.christmas-collection-page .collection-detail-actions a:first-child:focus-visible {
  background: #f6ece7;
}

.valentine-gift-banner {
  display: grid;
  min-height: 320px;
  width: min(1340px, calc(100% - 100px));
  margin: 60px auto 0;
  place-items: center;
  padding: 72px 50px;
  border-radius: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/collections/valentine-collection/gift-banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  text-align: center;
}

.valentine-gift-banner-content {
  width: min(100%, 760px);
}

.valentine-gift-banner h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.12;
}

.valentine-gift-banner p {
  max-width: 650px;
  margin: 22px auto 0;
  color: #fff;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.valentine-gift-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 248px;
  min-height: 62px;
  margin-top: 34px;
  padding: 0 28px;
  border: 1px solid #fff;
  background: #fff;
  color: #5A2A37;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.valentine-gift-banner-button:hover,
.valentine-gift-banner-button:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #5A2A37;
  box-shadow: 0 10px 22px rgba(76, 16, 25, 0.18);
  transform: translateY(-2px);
  outline: 0;
}

/* Keep collection hero button colors unchanged while matching the home hero hover motion. */
.christmas-collection-page .collection-detail-hero .collection-detail-actions a:hover,
.christmas-collection-page .collection-detail-hero .collection-detail-actions a:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #5A2A37;
  box-shadow: 0 10px 22px rgba(76, 16, 25, 0.18);
  transform: translateY(-2px);
  outline: 0;
}

.christmas-story {
  display: grid;
  grid-template-columns: 580px minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
  padding: 116px 100px 104px;
  background: #fff;
}

.christmas-story img {
  display: block;
  width: 580px;
  max-width: 100%;
  aspect-ratio: 1.37 / 1;
  object-fit: cover;
}

.christmas-story-copy {
  max-width: 720px;
  transform: translateY(30px);
}

.christmas-story-copy h2 {
  margin: 0;
  color: #353232;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, calc(3.4vw - 10px), 40px);
  font-weight: 400;
  line-height: 1.12;
}

.christmas-story-copy p {
  margin: 0;
  color: #5b574f;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}

.christmas-story-copy h2 + p {
  margin-top: 20px;
}

@media (min-width: 701px) {
  .lunar-new-year-page .christmas-story-copy {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

.lunar-new-year-page .christmas-story > img {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .lunar-new-year-page .christmas-story-copy h2 {
    transform: translateY(-20px);
  }

  .valentine-collection-page .valentine-story-copy {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

  .valentine-collection-page .valentine-story > img {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .valentine-collection-page .valentine-story-copy h2 {
    transform: translateY(-20px);
  }
}

.christmas-featured {
  padding: 24px 100px 74px;
  background: #fff;
}

.christmas-featured h2 {
  margin: 0;
  color: #312c2c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 200;
  line-height: 1.15;
  text-transform: uppercase;
}

.christmas-featured-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  margin-bottom: 30px;
}

.christmas-featured-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 23px;
  border: 1px solid #dedbda;
  border-radius: 999px;
  background: #fff;
  color: #303033;
  font-family: inherit;
  font-size: 14px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.christmas-featured-tabs button.active,
.christmas-featured-tabs button:hover,
.christmas-featured-tabs button:focus-visible {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
  outline: 0;
}

.christmas-featured-panel[hidden] {
  display: none;
}

.christmas-featured-content {
  display: grid;
  grid-template-columns: minmax(0, calc(50% - 120px)) minmax(0, calc(50% + 120px));
  gap: 0;
  align-items: center;
  margin-top: 20px;
  overflow: hidden;
  border: 0;
  border-radius: 0 10px 10px 0;
  background: #fff;
}

.christmas-featured-main-image {
  display: block;
  width: 460px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #f7f4f2;
  object-fit: cover;
}

.christmas-featured-copy {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: center;
  width: calc(100% + 60px);
  padding: 34px 44px;
  border-left: 0;
  color: #4e4a4b;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  transform: translateX(-60px);
}

.christmas-featured-kicker {
  margin: 0 0 14px;
  color: #b21f2b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 1;
  text-transform: uppercase;
}

.christmas-featured-copy h3 {
  margin: 0 0 18px;
  color: #173c28;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.12;
}

.christmas-collection-page .christmas-featured-copy h3 {
  font-size: 26px;
}

.christmas-featured-copy p {
  margin: 0;
  color: #4f4b4d;
  font-size: 16px;
  line-height: 1.45;
}

.christmas-featured-copy p + p {
  margin-top: 8px;
}

.christmas-featured-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  width: calc(100% + 30px);
}

.christmas-featured-card {
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #fff;
}

.christmas-featured-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  background: rgb(236, 231, 228);
  object-fit: contain;
}

.christmas-featured-gallery > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  background: rgb(236, 231, 228);
  object-fit: contain;
}

.lunar-featured-gallery {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  margin-top: 20px;
}

.lunar-featured-gallery figure {
  min-width: 0;
  margin: 0;
}

.lunar-featured-gallery figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.lunar-featured-gallery figcaption {
  margin-top: 20px;
  padding-top: 0;
  color: #2c2628;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}

.lunar-featured-gallery h3 {
  margin: 0;
  color: inherit;
  font: inherit;
}

.lunar-featured-gallery p {
  margin: 10px 0 14px;
  color: #514d4f;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.28;
}

.lunar-new-year-page .christmas-featured-panel[data-christmas-featured-panel="related"] .christmas-packaging-gallery {
  margin-top: 20px;
}

@media (max-width: 700px) {
  .lunar-featured-gallery {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
  }
}

.christmas-featured-card h4 {
  margin: 10px 12px 4px;
  color: #2c2628;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.08;
  white-space: nowrap;
}

.christmas-featured-card p {
  margin: 0 12px 14px;
  color: #514d4f;
  font-size: 15px;
  line-height: 1.28;
}

.christmas-featured-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 260px;
  height: 58px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #b21624, #a70f20);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.christmas-featured-button:hover,
.christmas-featured-button:focus-visible {
  background: #651825;
  outline: 0;
  box-shadow: 0 10px 22px rgba(76, 16, 25, 0.18);
  transform: translateY(-2px);
}

.christmas-featured-panel[data-christmas-featured-panel="sets"] .christmas-featured-button {
  margin-top: 22px;
  margin-bottom: 4px;
}

.lunar-showcase {
  padding: 82px 7.2vw 96px;
  background: #fff;
}

.lunar-showcase-kicker {
  margin: 0 0 26px;
  color: #565961;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.lunar-showcase h2 {
  margin: 0;
  color: #353232;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, calc(3.4vw - 6px), 44px);
  font-weight: 400;
  line-height: 1.12;
}

.lunar-showcase-intro {
  max-width: 700px;
  margin: 28px 0 0;
  color: #17181b;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: clamp(15px, calc(1.55vw - 6px), 22px);
  font-weight: 400;
  line-height: 1.35;
}

.lunar-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.2vw;
  margin-top: 60px;
}

.lunar-showcase-grid img {
  display: block;
  width: calc(100% + 10px);
  height: auto;
  aspect-ratio: auto;
  border-radius: 18px;
  background: #f7f1ed;
  object-fit: contain;
}

@media (max-width: 700px) {
  .lunar-showcase-grid img {
    height: auto;
    aspect-ratio: auto;
  }
}

.lunar-showcase-card {
  margin: 0;
  width: calc(100% + 10px);
}

.lunar-showcase-card figcaption {
  padding: 32px 4px 0;
}

.lunar-showcase-card h3 {
  margin: 0;
  color: #353232;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.lunar-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.lunar-showcase-tags span {
  padding: 7px 11px;
  border: 1px solid #d8c6c2;
  border-radius: 999px;
  color: #6f202c;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.lunar-showcase-card p {
  margin: 18px 0 0;
  color: #565961;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.christmas-packaging-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 54px;
}

.christmas-packaging-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f4f2;
  object-fit: cover;
}

.christmas-branded-gallery.valentine-product-gallery figure {
  margin: 0;
}

.christmas-branded-gallery.valentine-product-gallery figcaption {
  margin-top: 20px;
  color: #2c2628;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
  text-align: left;
}

.christmas-branded-gallery.valentine-product-gallery figcaption strong,
.christmas-branded-gallery.valentine-product-gallery figcaption span {
  display: block;
  text-align: left;
}

.christmas-branded-gallery.valentine-product-gallery figcaption span {
  margin-top: 10px;
  color: #514d4f;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.28;
}

.christmas-branded-gallery figure {
  margin: 0;
}

.christmas-branded-gallery figcaption {
  margin-top: 20px;
  color: #2c2628;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.lunar-new-year-page .christmas-branded-gallery figcaption strong,
.lunar-new-year-page .christmas-branded-gallery figcaption span {
  display: block;
  text-align: left;
}

.lunar-new-year-page .christmas-branded-gallery figcaption span {
  margin-top: 10px;
  color: #514d4f;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.28;
}

.christmas-branded-button {
  display: flex;
  width: 460px;
  border: 1px solid var(--wine);
  background: transparent;
  color: var(--wine);
  margin: 54px auto 0;
}

.christmas-branded-button:hover,
.christmas-branded-button:focus-visible {
  background: #651825;
  border-color: #651825;
  color: #fff;
}

@media (max-width: 700px) {
  .valentine-gift-banner {
    width: calc(100% - 48px);
    padding: 56px 24px;
  }

  .christmas-collection-page .collection-detail-copy {
    left: 24px;
    right: 24px;
  }

  .christmas-collection-page .christmas-hero-note {
    width: 100%;
  }

  .christmas-story {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 84px 24px 78px;
  }

  .christmas-featured {
    padding: 18px 24px 54px;
  }

  .christmas-featured-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .christmas-featured-main-image {
    width: min(100%, 420px);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .christmas-featured-copy {
    min-height: auto;
    padding: 28px 22px;
  }

  .christmas-featured-gallery {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .christmas-featured-card img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .christmas-featured-button {
    width: min(100%, 260px);
    gap: 24px;
  }

  .christmas-branded-button {
    width: min(100%, 460px);
  }

  .christmas-packaging-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.seasonal-collection-card p {
  margin: 8px 0 0;
  color: #4f4a4a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.42;
}

.seasonal-collection-card:hover img,
.seasonal-collection-card:focus-visible img {
  transform: scale(1.018);
}

.seasonal-collection-card:focus-visible {
  outline: 1px solid var(--wine);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .seasonal-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .seasonal-collections {
    padding: 34px 20px 44px;
  }

  .seasonal-collections-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .seasonal-collections-heading h1,
  .seasonal-collections-heading h2 {
    font-size: 28px;
  }

  .seasonal-collection-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:first-child {
  white-space: nowrap;
}

.footer-bottom strong {
  font-weight: 800;
}

.footer-bottom p:last-child {
  color: #858487;
  white-space: nowrap;
  transform: translateX(-50px);
}

.whatsapp-contact {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  box-shadow: 0 14px 28px rgba(76, 16, 25, 0.22);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.whatsapp-contact:hover,
.whatsapp-contact:focus-visible {
  background: #651825;
  box-shadow: 0 18px 34px rgba(76, 16, 25, 0.26);
  outline: 0;
  transform: translateY(-2px);
}

.whatsapp-contact svg {
  display: block;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .mainnav {
    grid-template-columns: 1fr auto;
    row-gap: 16px;
    padding: 18px 24px;
  }

  .navlinks {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero-copy {
    width: min(560px, 58vw);
  }

  .categories,
  .collections {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    max-width: none;
  }

  .listing-page {
    padding-inline: 34px;
  }

  .category-rail-inner {
    padding-inline: 34px;
  }

  .category-rail-card strong {
    font-size: 18px;
  }

  .listing-layout {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
  }

  .listing-results {
    width: 100%;
    transform: none;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 330px));
    gap: 30px;
    justify-content: space-between;
  }

  .set-series {
    grid-template-columns: minmax(260px, 1fr) minmax(360px, 0.92fr) minmax(260px, 1fr);
    min-height: 510px;
    padding: 42px 24px;
  }

  .set-series-media img {
    min-height: 450px;
  }

  .set-series-copy {
    padding-inline: 28px;
  }

  .set-series-brand {
    margin-bottom: 24px;
    font-size: 16px;
    letter-spacing: 10px;
    text-indent: 10px;
  }

  .set-series-text {
    max-width: 520px;
    font-size: 13px;
  }

  .set-series-button {
    width: 230px;
    height: 66px;
    margin-top: 40px;
    font-size: 21px;
  }

  .custom-solution-inner {
    padding: 54px 34px 68px;
  }

  .custom-solution-tabs button,
  .custom-solution-tabs a {
    font-size: 14px;
  }

  .custom-solution-feature {
    grid-template-columns: minmax(340px, 0.95fr) minmax(360px, 1fr);
    gap: 42px;
  }

  .custom-solution-image img {
    height: 500px;
  }

  .custom-solution-button {
    margin-top: 56px;
  }

  .site-footer {
    padding: 70px 34px 42px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) 190px 250px;
  }

  .footer-socials {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 0;
  }

  .footer-socials::after {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 56px;
  }

  .footer-bottom p:last-child {
    white-space: normal;
  }

  .footer-bottom p:first-child {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-main-image {
    min-height: 0;
  }

  .product-detail-main-image img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .set-series {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    padding: 34px 20px 42px;
  }

  .set-series-media {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .set-series-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 620 / 696;
  }

  .set-series-copy {
    order: -1;
    padding: 0;
  }

  .set-series h2 {
    font-size: 34px;
  }

  .set-series-text {
    max-width: min(500px, 100%);
    font-size: 12px;
  }

  .set-series-button {
    width: min(100%, 264px);
    height: 58px;
    margin-top: 30px;
    font-size: 19px;
  }

  .custom-solution-inner {
    padding: 48px 24px 62px;
  }

  .custom-solution-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-top: 28px;
    padding-bottom: 4px;
  }

  .custom-solution-tabs button,
  .custom-solution-tabs a {
    flex: 0 0 auto;
    height: 42px;
    padding: 0 23px;
    font-size: 14px;
  }

  .custom-solution-feature {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 36px;
  }

  .custom-solution-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .custom-solution-copy p {
    font-size: 12px;
    line-height: 1.38;
  }

  .custom-solution-link {
    margin-top: 28px;
    font-size: 21px;
  }

  .custom-solution-copy span {
    margin-top: 14px;
    font-size: 17px;
  }

  .custom-solution-button {
    width: min(100%, 260px);
    height: 56px;
    margin-top: 38px;
    font-size: 17px;
  }

  .content-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 24px 58px;
  }

  .content-hero img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .content-copy p {
    font-size: 19px;
  }

  .custom-process {
    grid-template-columns: 1fr;
    gap: 54px;
    width: auto;
    margin-inline: 24px;
    padding: 72px 0 78px;
  }

  .custom-process-intro {
    position: static;
  }

  .custom-process-intro h2 {
    max-width: 660px;
    font-size: clamp(8px, 8vw, 26px);
  }

  .custom-process-visual {
    margin-top: 38px;
  }

  .custom-options {
    padding: 0 24px 58px;
  }

  .custom-options-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .custom-voices {
    padding: 38px 24px 0;
  }

  .custom-voices-kicker {
    margin: 0 0 34px;
  }

  .custom-voices-slides {
    height: auto;
  }

  .custom-voice-slide,
  .custom-voice-slide.active {
    position: relative;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .custom-voice-slide:not(.active) {
    display: none;
  }

  .custom-voice-copy {
    display: block;
    min-height: 0;
    max-width: none;
    padding-left: 0;
    transform: translateY(-30px);
  }

  .custom-voice-copy blockquote {
    font-size: 30px;
    transform: none;
  }

  .custom-voice-role {
    position: static;
    margin-top: 44px;
  }

  .custom-voice-slide img {
    width: min(100%, 514px);
    height: auto;
    aspect-ratio: 1 / 1;
    transform: none;
  }

  .custom-voices-arrow {
    top: auto;
    bottom: 42px;
    width: 32px;
    height: 32px;
  }

  .custom-voices-arrow-prev {
    left: 24px;
  }

  .custom-voices-arrow-next {
    right: 24px;
  }

  .custom-voices-dots {
    min-height: 8px;
    margin-top: 34px;
  }

  .mahjong-products-inner {
    padding: 54px 24px 68px;
  }

  .mahjong-product-map {
    gap: 14px;
    margin-top: 25px;
  }

  .mahjong-product-node span {
    height: 42px;
    padding: 0 23px;
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr;
    height: auto;
    gap: 8px;
    padding: 10px 18px;
    text-align: center;
  }

  .topbar-left,
  .socials {
    display: none;
  }

  .shipping {
    gap: 18px;
    font-size: 12px;
  }

  .mainnav {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 35px;
  }

  .nav-actions {
    justify-content: space-between;
  }

  .navlinks {
    gap: 18px;
  }

  .listing-page {
    padding: 0 24px 64px;
  }

  .product-breadcrumb {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 24px;
  }

  .category-rail-inner {
    display: flex;
    overflow-x: auto;
    padding: 50px 14px 48px;
  }

  .category-rail-card {
    flex: 0 0 260px;
  }

  .listing-page h1 {
    padding: 88px 0 44px;
    font-size: 40px;
  }

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .listing-filter {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding-top: 0;
  }

  .listing-filter section {
    margin-bottom: 0;
  }

  .listing-filter label {
    font-size: 17px;
  }

  .listing-toolbar {
    margin-top: 16px;
  }

  .search-panel {
    width: min(100vw, 620px);
  }

  .search-panel-inner {
    padding: 22px 20px 40px;
  }

  .search-form {
    grid-template-columns: 34px 1fr 36px;
  }

  .search-form svg {
    width: 28px;
    height: 28px;
  }

  .search-form input {
    font-size: 18px;
  }

  .popular-searches {
    padding: 34px 0 32px;
  }

  .searched-products {
    padding-top: 34px;
  }

  .popular-searches h2,
  .searched-products h2 {
    font-size: 17px;
  }

  .popular-searches p {
    margin-top: 22px;
    font-size: 15px;
  }

  .search-product-list {
    gap: 34px;
    margin-top: 34px;
  }

  .search-product {
    grid-template-columns: 112px 1fr;
    gap: 18px;
  }

  .search-product img {
    width: 112px;
    height: 112px;
  }

  .search-product strong {
    font-size: 17px;
  }

  .search-product em {
    margin-top: 14px;
    font-size: 15px;
  }

  .hero {
    min-height: 800px;
    background-image: linear-gradient(180deg, rgba(252, 247, 243, 0.9) 0%, rgba(252, 247, 243, 0.66) 47%, rgba(252, 247, 243, 0.14) 72%), url("assets/home/hero-banner.webp");
    background-position: 58% bottom;
    background-size: cover;
  }

  .hero-copy {
    width: auto;
    padding: 42px 4px 0;
  }

  .eyebrow {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .intro {
    width: auto;
    font-size: 17px;
  }

  .hero-buttons {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: calc(50% - 6px);
    height: 62px;
    min-width: 0;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 24px;
  }

  .product-showcase-inner {
    padding: 56px 50px 62px;
  }

  .product-showcase-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .product-showcase h2 {
    font-size: 30px;
  }

  .product-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .product-tabs button {
    flex: 0 0 auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: stretch;
  }

  .product-card,
  .product-image {
    width: 100%;
  }

  .product-image {
    height: auto;
    aspect-ratio: 1;
  }

  .set-series {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    padding: 34px 20px 42px;
  }

  .set-series-media {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .set-series-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 620 / 696;
  }

  .set-series-copy {
    order: -1;
    padding: 0;
  }

  .set-series-mark {
    margin-bottom: 14px;
  }

  .set-series-brand {
    margin-bottom: 20px;
  }

  .set-series h2 {
    font-size: 34px;
  }

  .set-series-rule {
    margin: 24px 0 19px;
  }

  .set-series-text {
    max-width: min(500px, 100%);
    font-size: 12px;
  }

  .set-series-button {
    width: min(100%, 264px);
    height: 58px;
    margin-top: 30px;
    font-size: 19px;
  }

  .mahjong-products-inner {
    padding: 46px 20px 58px;
  }

  .mahjong-product-map {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .mahjong-product-node {
    flex: 0 0 auto;
  }

  .mahjong-product-node span {
    height: 42px;
    padding: 0 23px;
    font-size: 14px;
  }

  .categories,
  .collections {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 20px;
    gap: 16px;
  }

  .section-heading {
    padding-inline: 20px;
  }

  .site-footer {
    min-height: auto;
    padding: 52px 24px 34px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-cta h2 {
    font-size: 22px;
    line-height: 1.22;
  }

  .footer-buttons {
    gap: 12px;
    margin-top: 30px;
  }

  .footer-buttons a {
    min-width: calc(50% - 6px);
    height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }

  .footer-column {
    gap: 16px;
    font-size: 15px;
  }

  .footer-socials {
    gap: 24px;
  }

  .footer-bottom {
    gap: 16px;
    padding-top: 46px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .custom-options-heading {
    gap: 8px;
  }

  .custom-options-heading h2 {
    font-size: 22px;
  }

  .custom-options-heading span {
    width: 30px;
  }

  .custom-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-option-card div {
    padding-inline: 12px;
  }

  .quote {
    width: 120px;
  }

  .product-detail-page {
    padding-inline: 18px;
  }

  .product-detail-info h1 {
    font-size: 22px;
  }

  .product-spec-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-detail-thumbs {
    display: flex;
    overflow-x: auto;
  }

  .product-detail-thumbs button {
    flex: 0 0 92px;
    height: 92px;
  }

  .search-panel {
    width: 100vw;
  }

  .search-product {
    grid-template-columns: 88px 1fr;
  }

  .search-product img {
    width: 88px;
    height: 88px;
  }

  .search-product strong {
    font-size: 16px;
  }

  .search-product em {
    font-size: 14px;
  }

  .features,
  .product-grid,
  .categories,
  .collections {
    grid-template-columns: 1fr;
  }

  .listing-page {
    padding-inline: 18px;
  }

  .product-breadcrumb {
    padding-inline: 18px;
    font-size: 15px;
  }

  .category-rail-inner {
    padding-right: 8px;
    padding-left: 8px;
  }

  .category-rail-card {
    flex-basis: 220px;
  }

  .category-rail-card strong {
    font-size: 17px;
  }

  .listing-page h1 {
    padding-top: 88px;
    font-size: 34px;
  }

  .listing-filter,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .listing-card,
  .listing-card-media,
  .listing-card-media img {
    width: min(100%, 330px);
  }

  .listing-card-media,
  .listing-card-media img {
    height: min(330px, calc(100vw - 36px));
  }

  .listing-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-toolbar select {
    width: 100%;
  }

  .set-series {
    padding-inline: 16px;
  }

  .set-series-brand {
    font-size: 14px;
    letter-spacing: 7px;
    text-indent: 7px;
  }

  .set-series h2 {
    font-size: 28px;
  }

  .set-series-rule {
    width: 220px;
  }

  .set-series-rule::before,
  .set-series-rule::after {
    width: 98px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-cta h2 {
    font-size: 20px;
  }

  .footer-buttons a {
    width: 100%;
    min-width: 0;
  }
}

/* Page-wide typography: keep the site in a lighter serif voice. */
body,
button,
input,
select,
textarea {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
}

.topbar,
.navlinks,
.nav-dropdown,
.quote,
.btn,
.hero-buttons .btn,
.features h2,
.product-tabs button,
.product-card strong,
.product-badge,
.product-cta,
.category-rail-card strong,
.listing-filter button span,
.listing-card h2,
.tile-badge,
.mahjong-products-heading p,
.section-heading a,
.collection-card span,
.footer-buttons a,
.footer-column h3,
.footer-bottom strong,
.search-product strong,
.popular-searches h2,
.searched-products h2 {
  font-weight: 500;
}

.product-card strong,
.product-badge,
.collection-card span,
.footer-bottom strong {
  font-weight: 600;
}

.footer-socials a[aria-label="X"] span {
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* Custom solution detail pages */
.solution-page {
  background: #fff;
  color: var(--ink);
}

.private-value-section {
  background: #fff;
  color: #101114;
  font-family: inherit;
  padding: 50px 100px 60px;
}

.private-value-inner {
  max-width: none;
  margin: 0 auto;
}

.private-value-kicker {
  margin: 0 0 27px;
  color: #303033;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1;
}

.private-value-section h2 {
  margin: 0;
  color: #050608;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: clamp(10px, 4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.03;
}

.private-value-intro {
  max-width: 760px;
  margin: 30px 0 44px;
  color: #777071;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.58;
}

.private-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.private-value-card {
  display: flex;
  align-items: center;
  min-height: 160px;
  padding: 37px 38px;
  border: 1px solid #e4e4e4;
  border-radius: 22px;
  background: #fff;
}

.private-value-icon {
  display: grid;
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  margin-right: 56px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 22px;
  color: #fff;
  box-shadow: 0 12px 17px rgba(119, 58, 28, 0.22);
}

.private-value-card-wine .private-value-icon { background: #8f292e; }
.private-value-card-orange .private-value-icon { background: #c94d27; }
.private-value-card-tan .private-value-icon { background: #c8783d; }
.private-value-card-stone .private-value-icon { background: #928477; }

.private-value-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.private-value-card h3 {
  margin: 0 0 15px;
  color: #090a0c;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.private-value-card p {
  margin: 0;
  color: #4e4947;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .private-value-section { padding-inline: 100px; }
  .private-value-card { padding-inline: 28px; }
  .private-value-icon { margin-right: 28px; }
  .private-value-card h3 { font-size: 18px; }
  .private-value-card p { font-size: 16px; }
}

@media (max-width: 700px) {
  .private-value-section { padding: 42px 20px 48px; }
  .private-value-kicker { margin-bottom: 18px; font-size: 13px; }
  .private-value-section h2 { font-size: 28px; letter-spacing: -0.4px; }
  .private-value-intro { margin: 22px 0 34px; font-size: 18px; line-height: 1.5; }
  .private-value-desktop-break { display: none; }
  .private-value-grid { grid-template-columns: 1fr; gap: 16px; }
  .private-value-card { min-height: 0; padding: 23px 18px; border-radius: 16px; }
  .private-value-icon { width: 46px; height: 46px; flex-basis: 46px; margin-right: 18px; border-width: 4px; border-radius: 12px; }
  .private-value-icon svg { width: 32px; height: 32px; }
  .private-value-card h3 { margin-bottom: 10px; font-size: 18px; letter-spacing: 0; }
  .private-value-card p { font-size: 16px; line-height: 1.45; }
}

.solution-page .content-page,
.solution-page .custom-options {
  background: #fff;
}

.solution-detail {
  background: #fffaf6;
}

.solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
  padding: 108px 0 88px;
}

.solution-kicker {
  margin: 0 0 18px;
  color: var(--wine);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.solution-hero h1 {
  margin: 0;
  color: var(--wine);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 400;
  line-height: 0.98;
}

.solution-hero p:not(.solution-kicker) {
  max-width: 650px;
  margin: 28px 0 0;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.solution-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.solution-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.solution-actions a:first-child {
  background: var(--wine);
  color: #fff;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 96px;
  background: var(--line);
}

.solution-grid article {
  min-height: 250px;
  padding: 42px 38px;
  background: #fffaf6;
}

.solution-grid h2,
.solution-process h2 {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
}

.solution-grid p {
  margin: 0;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.58;
}

.solution-process {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 118px;
}

.solution-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: solution-step;
}

.solution-process li {
  position: relative;
  min-height: 190px;
  padding: 66px 28px 30px;
  border-top: 1px solid var(--wine);
  counter-increment: solution-step;
}

.solution-process li::before {
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--wine);
  content: "0" counter(solution-step);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.solution-process strong {
  display: block;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 24px;
  font-weight: 400;
}

.solution-process span {
  display: block;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .solution-hero,
  .solution-grid,
  .solution-process,
  .solution-process ol {
    grid-template-columns: 1fr;
  }

  .solution-hero,
  .solution-grid,
  .solution-process {
    width: min(100% - 44px, 680px);
  }

  .solution-hero {
    padding: 70px 0 58px;
  }
}

/* About page */
.about-page {
  --about-olive: #5c5a45;
  --about-sage: #999f87;
  --about-paper: var(--paper);
  --about-text: #57544d;
  background: var(--about-paper);
  color: var(--about-text);
}

.about-page main {
  background: var(--about-paper);
}

.about-page .site-footer {
  background: var(--about-paper);
}

.about-hero {
  display: grid;
  height: 400px;
  place-content: center;
  padding: 0 24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("assets/about/about-hero.webp") center / cover no-repeat;
  color: #f7f3ec;
  text-align: center;
}

.about-hero p {
  margin: 0 0 20px;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.about-hero h1 {
  width: min(620px, 92vw);
  margin: 0 auto;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 200;
  line-height: 1.08;
}

.about-story,
.about-values,
.about-offices {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  width: min(1172px, 100%);
  margin: 0 auto;
}

.about-story {
  column-gap: 132px;
}

.about-story-local {
  padding: 104px 0 88px;
}

.about-story-started {
  padding: 0 0 102px;
  column-gap: 122px;
}

.about-copy {
  max-width: 590px;
}

.about-story-local .about-copy {
  align-self: center;
}

.about-story-started .about-copy {
  justify-self: center;
  padding-top: 24px;
}

.about-copy h2,
.about-values h2,
.about-offices h2 {
  margin: 0 0 28px;
  color: #5b574f;
  font-size: 34px;
  font-weight: 100;
  line-height: 1.29;
}

.about-copy p,
.about-values p,
.about-offices p {
  margin: 0;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}

.about-copy a,
.about-offices a {
  display: inline-block;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.about-story img {
  display: block;
  width: 100%;
  height: auto;
}

.about-story-local img {
  max-width: 445px;
  justify-self: end;
}

.about-story-started img {
  max-width: 445px;
}

.about-stats {
  background: var(--about-sage);
  color: #f5f0e9;
  display: grid;
  align-items: center;
}

.about-stats-inner {
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  align-items: center;
  gap: 72px;
  width: min(1420px, calc(100% - 160px));
  min-height: 440px;
  margin: 0 auto;
}

.about-stats dl {
  display: grid;
  align-self: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 76px;
  margin: 0;
  transform: translateX(30px);
}

.about-stats dt {
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  white-space: nowrap;
}

.about-stats dd {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 100;
  line-height: 1.25;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.about-stats dl > div:nth-child(even) {
  transform: translateX(40px);
}

.about-stats-global,
.about-stats-serve {
  display: block;
  overflow: visible;
  white-space: nowrap;
}

.about-stats img {
  width: 100%;
  max-width: 625px;
  align-self: center;
  justify-self: center;
  margin-block: auto;
  mix-blend-mode: screen;
  opacity: 0.86;
  transform: translateY(30px);
}

.about-shelf {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
}

.about-values {
  align-items: start;
  gap: 128px;
  padding: 104px 0 86px;
}

.about-values-list {
  width: 100%;
  max-width: 646px;
}

.about-values-list h2 {
  margin: 0 0 46px;
  color: #4f4b46;
  font-size: 34px;
  font-weight: 100;
  line-height: 1.29;
}

.about-values details {
  border-top: 1px solid #ddd9d4;
}

.about-values details:last-child {
  border-bottom: 1px solid #ddd9d4;
}

.about-values summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 26px 0 22px;
  color: #4d4944;
  list-style: none;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
}

.about-values summary::-webkit-details-marker {
  display: none;
}

.about-values summary::after {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #77736e;
  border-bottom: 1.5px solid #77736e;
  content: "";
  transform: rotate(45deg) translateY(-3px);
}

.about-values details[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.about-values details p {
  max-width: 770px;
  padding: 0 26px 24px 22px;
  color: #625d57;
  font-size: 16px;
  line-height: 1.62;
}

.about-values img {
  width: 430px;
  justify-self: end;
}

.about-offices {
  gap: 132px;
  padding: 0 0 142px;
}

.about-offices img {
  display: block;
  width: 100%;
  max-width: 445px;
  height: auto;
}

.about-offices > div {
  align-self: center;
}

.about-offices h2 {
  margin-bottom: 48px;
}

.about-offices ul {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  grid-template-rows: repeat(3, auto);
  column-gap: 60px;
  row-gap: 22px;
  margin: 0 0 48px;
  padding: 0;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  list-style: none;
}

.about-offices li {
  text-align: left;
}

/* Halloween collection editorial showcase */
.halloween-collection-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 1.08fr);
  gap: clamp(54px, 5vw, 88px);
  align-items: center;
  width: calc(100% - 100px);
  min-height: 780px;
  margin: 0 50px 18px;
  padding: 18px 48px;
  overflow: hidden;
  border-radius: 32px;
  background: #f5f4fc;
}

.halloween-showcase-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 0.86fr 1fr;
  gap: 22px 24px;
  height: 744px;
}

.halloween-showcase-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #eeeaf5;
}

.halloween-showcase-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.halloween-showcase-card span {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 26px;
  border-radius: 999px;
  background: #f8e6b6;
  color: #161525;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.halloween-showcase-card-purple span {
  right: 50%;
  bottom: 16px;
  transform: translateX(50%);
}

.halloween-showcase-card-gift span {
  top: 16px;
  right: 16px;
  background: #6f3d8c;
  color: #fff;
}

.halloween-showcase-card-essentials span {
  right: 50%;
  bottom: 16px;
  background: #5b2b73;
  color: #fff;
  transform: translateX(50%);
}

.halloween-showcase-copy {
  max-width: 860px;
  padding: 20px 0;
}

.halloween-showcase-kicker {
  margin: 0 0 30px;
  color: #70439d;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.halloween-showcase-copy h2 {
  margin: 0;
  color: #101020;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: clamp(40px, 3.25vw, 60px);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.halloween-showcase-intro {
  max-width: 820px;
  margin: 32px 0 44px;
  color: #4c4b6f;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.halloween-showcase-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 334px;
  min-height: 76px;
  padding: 0 28px 0 34px;
  border: 1px solid #5b2b73;
  border-radius: 999px;
  background: #5b2b73;
  color: #fff;
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.halloween-showcase-button span {
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.halloween-showcase-button:hover,
.halloween-showcase-button:focus-visible {
  background: #48215f;
  border-color: #48215f;
  color: #fff;
  box-shadow: 0 10px 22px rgba(91, 43, 115, 0.18);
  outline: 0;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .halloween-collection-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
    padding-inline: 28px;
  }

  .halloween-showcase-gallery {
    height: 620px;
  }

  .halloween-showcase-copy h2 {
    font-size: clamp(36px, 4.2vw, 52px);
  }

  .halloween-showcase-intro {
    font-size: 17px;
  }
}

@media (max-width: 700px) {
  .halloween-collection-showcase {
    grid-template-columns: 1fr;
    gap: 44px;
    width: 100%;
    min-height: 0;
    margin: 0 0 18px;
    padding: 16px;
    border-radius: 24px;
  }

  .halloween-showcase-gallery {
    height: min(112vw, 610px);
    gap: 12px;
  }

  .halloween-showcase-card {
    border-radius: 18px;
  }

  .halloween-showcase-card span {
    min-height: 32px;
    padding: 0 14px;
    font-size: 13px;
  }

  .halloween-showcase-kicker {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .halloween-showcase-copy h2 {
    font-size: clamp(30px, 10vw, 44px);
    letter-spacing: -0.7px;
  }

  .halloween-showcase-intro {
    margin: 22px 0 30px;
    font-size: 14px;
  }

  .halloween-showcase-button {
    width: min(100%, 334px);
    min-height: 62px;
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .about-story,
  .about-values,
  .about-offices,
  .about-stats-inner {
    width: min(100% - 4px, 660px);
  }

  .about-story,
  .about-values,
  .about-offices,
  .about-stats-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-stats img {
    transform: none;
  }

  .about-story-local,
  .about-story-started,
  .about-values,
  .about-offices {
    padding: 68px 0;
  }

  .about-story-local img,
  .about-story-started img,
  .about-values img,
  .about-offices img {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .about-story-started img {
    order: 2;
  }

  .about-story-started .about-copy {
    order: 1;
    justify-self: start;
    padding-top: 0;
  }

  .about-stats-inner {
    min-height: 0;
    padding: 64px 0;
  }

  .about-stats dl {
    grid-template-columns: 1fr 1fr;
    transform: none;
  }

  .about-shelf {
    height: 230px;
  }

  .about-offices ul {
    grid-template-columns: 1fr;
    gap: 18px;
  }

}

@media (max-width: 560px) {
  .about-hero {
    min-height: 360px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-copy h2,
  .about-values h2,
  .about-offices h2 {
    font-size: 30px;
  }

  .about-stats dl,
  .about-offices ul {
    grid-template-columns: 1fr;
  }

}

/* Standardize action button corners without changing labels or tab controls. */
.quote,
.btn,
.set-series-button,
.custom-solution-button,
.product-cta,
.product-inquiry-btn,
.listing-card-button,
.footer-buttons a,
.collection-detail-actions a,
.solution-actions a,
.christmas-featured-button,
.christmas-branded-button,
.halloween-showcase-button,
.valentine-gift-banner-button,
.not-found-actions a {
  border-radius: 2px;
}

/* Align collection featured product titles and descriptions consistently. */
.christmas-collection-page .christmas-featured-copy h3,
.christmas-collection-page .lunar-featured-gallery h3,
.christmas-collection-page .christmas-branded-gallery figcaption strong,
.christmas-collection-page .valentine-product-gallery figcaption strong {
  transform: translateX(2px);
}

.christmas-collection-page .christmas-featured-copy p,
.christmas-collection-page .lunar-featured-gallery p,
.christmas-collection-page .christmas-branded-gallery figcaption span,
.christmas-collection-page .valentine-product-gallery figcaption span {
  width: calc(100% - 10px);
  margin-top: 4px;
}

.christmas-collection-page .christmas-featured-copy p + p {
  margin-top: 12px;
}

.christmas-collection-page .lunar-featured-gallery p,
.christmas-collection-page .christmas-branded-gallery figcaption span,
.christmas-collection-page .valentine-product-gallery figcaption span {
  margin-top: 14px;
}
