/* ==========================================================================
   CORE STYLES
   ========================================================================== */
/* styles.css */
.header-logo {
  display: flex;
  align-items: center;
  width: 155px;
  height: 58px;
  padding: 3px 0;
  transform: none !important;
  text-shadow: none !important;
}

.header-logo::after {
  display: none !important;
}

.header-logo img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: left center !important;
}

@media (max-width: 640px) {
  .header-logo {
    width: 128px;
    height: 50px;
  }
}

html {
  scroll-behavior: smooth;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

/* Cream-gold navigation and refined wordmark */
header {
  background: linear-gradient(
    105deg,
    #fcfbf8 0%,
    #faf7f2 48%,
    #f6eddc 100%
  ) !important;
  border-bottom: 1px solid #e8d6b0;
  box-shadow: 0 4px 18px rgba(155, 30, 70, 0.07) !important;
}

header > a {
  position: relative;
  color: #9b1e46 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-shadow:
    0 1px 0 #ffffff,
    0 2px 10px rgba(155, 30, 70, 0.12);
  transition:
    color 0.3s,
    transform 0.3s;
}

header > a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -5px;
  height: 2px;
  background: linear-gradient(90deg, #9b1e46, #c8a96a);
  transform: scaleX(0.55);
  transform-origin: left;
  transition: transform 0.35s;
}

header > a:hover {
  color: #9b1e46 !important;
  transform: translateY(-1px);
}

header > a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 640px) {
  header > a {
    font-size: 21px !important;
    letter-spacing: 0.055em !important;
  }
}

/* Reference footer */
.legacy-footer {
  display: none;
}

.reference-footer {
  background: #2b211c !important;
  color: #ccc !important;
  border-top: 0;
  font-size: 12px !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr 1.45fr 1.55fr;
  gap: clamp(28px, 4vw, 70px);
}

.footer-brand > div {
  font-size: 27px !important;
  letter-spacing: 0.04em;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.65;
}

.footer-column > b {
  display: block;
  color: #fff !important;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.footer-column a,
.footer-column p {
  font-size: 12px;
  line-height: 2;
  color: #ccc;
}

.socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.socials a {
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-weight: 700;
  font-size: 17px;
}

.socials svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.socials a:hover {
  color: #c8a96a !important;
  transform: translateY(-2px);
}

.contact-column p {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-column p span {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.contact-column svg {
  width: 16px;
  height: 16px;
  color: #d8cec6;
  flex: none;
}

.payment-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.payment-badges > span {
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.13);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}

.payment-badges .visa {
  color: #b9e3ff;
  font-size: 17px;
}

.payment-badges .rupay {
  color: #dae8ff;
}

.payment-badges .upi {
  color: #e8d6b0;
}

.master {
  position: relative;
}

.master i {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #e62a2a;
}

.master i + i {
  background: #f2a51a;
  margin-left: -6px;
  opacity: 0.9;
}

.secure-payment {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.secure-payment > svg {
  width: 37px;
  height: 37px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 7px;
}

.secure-payment p {
  line-height: 1.3;
}

.secure-payment strong,
.secure-payment small {
  display: block;
}

.secure-payment strong {
  color: #fff;
  font-size: 11px;
}

.secure-payment small {
  font-size: 10px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 28px;
  padding-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  font-size: 11px;
}

.footer-bottom > span:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.footer-bottom > span:last-child {
  text-align: right;
}

.footer-bottom a {
  color: #ccc;
}

.footer-bottom i {
  display: block;
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 22px;
  }

  .payment-column,
  .contact-column {
    grid-column: span 2;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom > span:last-child {
    text-align: center;
  }

  .footer-brand > div {
    font-size: 24px !important;
  }
}

@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .payment-column,
  .contact-column {
    grid-column: auto;
  }

  .payment-badges {
    gap: 6px;
  }
}

/* Tighter spacing between page sections */
main section.py-14 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

main section.py-12 {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

main section.py-10 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

main section.py-8 {
  padding-top: 26px !important;
  padding-bottom: 26px !important;
}

main .mt-8 {
  margin-top: 24px !important;
}

main .mt-7,
main .mt-6 {
  margin-top: 18px !important;
}

main .mb-20 {
  margin-bottom: 28px !important;
}

.fabric-heading {
  margin-bottom: 18px !important;
}

.mood-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.mood-heading h2 {
  margin: 0 !important;
  font-size: clamp(2rem, 3vw, 2.65rem) !important;
  font-weight: 600;
  line-height: 1.2 !important;
}

.mood-heading p {
  display: block;
  margin: 0 !important;
  font-size: 10px !important;
  font-weight: 600;
  line-height: 1.6 !important;
  letter-spacing: 0.22em;
}

@media (max-width: 640px) {
  .mood-heading {
    gap: 8px;
    margin-bottom: 18px;
  }

  .mood-heading h2 {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }

  .mood-heading p {
    font-size: 9px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 640px) {
  main section.py-14,
  main section.py-12 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  main section.py-10,
  main section.py-8 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  main .mb-20 {
    margin-bottom: 20px !important;
  }
}

body {
  overflow-x: hidden;
  color: #555;
  background: #faf7f2;
}

h1,
h2,
h3 {
  color: #1f1f1f;
}

a {
  transition: 0.2s;
}

a:hover {
  color: #c8a96a;
}

.header-actions svg,
.header-actions .bi {
  width: 18px;
  height: 18px;
  color: #1f1f1f;
}

.header-actions button:hover svg {
  color: #9b1e46;
}

.bg-white {
  background-color: #fff;
}

.border-stone-200 {
  border-color: #e5e5e5;
}

.text-coffee {
  color: #1f1f1f;
}

.text-rust {
  color: #9b1e46;
}

.bg-rust {
  background-color: #9b1e46;
}

.bg-coffee {
  background-color: #2b1f1a;
}

section.bg-coffee {
  background: linear-gradient(
    100deg,
    #241915 0%,
    #33251f 50%,
    #2b1f1a 100%
  ) !important;
  border-top: 1px solid rgba(200, 169, 106, 0.45);
  border-bottom: 1px solid rgba(200, 169, 106, 0.45);
}

section.bg-coffee > div > div {
  position: relative;
}

section.bg-coffee > div > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: rgba(232, 214, 176, 0.28);
}

section.bg-coffee strong {
  color: #e8d6b0 !important;
}

section.bg-coffee small {
  color: #ffffff;
}

@media (max-width: 767px) {
  section.bg-coffee > div > div:nth-child(2)::after {
    display: none;
  }
}

.hero button {
  background: #9b1e46;
  border: 0;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
}

.hero button:hover {
  background: #9b1e46;
}

.benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem;
  border-right: 1px solid #e5e5e5;
}

.benefit:last-child {
  border: 0;
}

.benefit svg {
  width: 25px;
  height: 25px;
  color: #9b1e46;
}

.benefit:nth-child(2) svg {
  color: #c8a96a;
}

.benefit:nth-child(4) svg {
  color: #1565c0;
}

.benefit p {
  display: flex;
  flex-direction: column;
  font-size: 9px;
  line-height: 1.5;
}

.benefit small {
  color: #777;
  font-size: 8px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.section-head a {
  font-size: 8px;
  letter-spacing: 0.14em;
}

/* Keep the collections title visually aligned with every other section heading. */
#collections .section-head {
  position: relative;
  justify-content: center;
  text-align: center;
}

#collections .section-head h2 {
  color: #9b1e46;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

#collections .section-head a {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
}

.collection,
.artisan,
.fabric {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(0deg, rgba(20, 10, 5, 0.75), transparent 70%),
    url("assets/hero.png");
  background-size: cover;
  transition:
    transform 0.4s,
    filter 0.4s;
}

.collection:hover,
.artisan:hover,
.fabric:hover {
  transform: translateY(-4px);
  filter: saturate(1.15);
}

.collection {
  height: 310px;
}

.collection div {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: white;
}

.collection h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
}

.collection {
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center !important;
  background-color: #f5efe7;
  aspect-ratio: 4 / 5;
  height: auto !important;
  min-height: 260px;
  filter: none !important;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease !important;
}

.artisan,
.fabric,
.portrait,
.insta-grid div,
.press [class*="bg-\[url"] {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #f5efe7;
}

.collection::after {
  display: none !important;
}

.collection:hover {
  transform: translateY(-6px) scale(1.015) !important;
  box-shadow: 0 16px 30px rgba(31, 31, 31, 0.14) !important;
  filter: none !important;
}

.collection div {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.75),
    0 1px 3px rgba(0, 0, 0, 0.9);
}

.collection h3,
.collection p {
  color: #ffffff !important;
}

@media (max-width: 640px) {
  .collection {
    aspect-ratio: 3 / 4;
    min-height: 220px;
  }
}

.collection p {
  font-size: 9px;
}

.c1 {
  background-position: 56% center;
}

.c2 {
  background-position: 74% center;
  filter: sepia(0.3);
}

.c3 {
  background-position: 66% center;
  filter: hue-rotate(325deg);
}

.c4 {
  background-position: 82% center;
  filter: saturate(0.65);
}

.c5 {
  background-position: 62% center;
  filter: hue-rotate(145deg);
}

.artisan-story {
  background: #f8f2ea;
}

.artisan-story h2 {
  color: #9b1e46;
}

.portrait {
  display: block;
  overflow: hidden;
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.reason {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.reason svg {
  width: 25px;
  color: #9b1e46;
}

.reason span {
  font-size: 9px;
  line-height: 1.45;
}

.artisan {
  height: 260px;
  border-radius: 12px;
}

.artisan div {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 72%;
  background: #faf7f2;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  color: #1f1f1f;
}

.artisan b,
.artisan span {
  display: block;
}

.artisan b {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
}

.artisan span {
  font-size: 8px;
}

.a1 {
  background-position: 66% 40%;
}

.a2 {
  background-position: 80% 50%;
  filter: sepia(0.55);
}

.a3 {
  background-position: 55% 50%;
  filter: hue-rotate(300deg);
}

.a4 {
  background-position: 72% 48%;
  filter: sepia(0.2) saturate(1.15);
}

.review {
  text-align: center;
  font-size: 10px;
  line-height: 1.7;
  color: #666;
}

.review div {
  color: #f5b400;
  letter-spacing: 0.18em;
}

.review b {
  color: #1f1f1f;
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step svg {
  width: 26px;
  color: #9b1e46;
}

.step span {
  font-size: 9px;
}

.flow-arrow {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  color: #9b1e46;
  min-width: 38px;
  text-align: center;
}

@media (max-width: 900px) and (min-width: 641px) {
  .flow-arrow {
    font-size: 23px;
    min-width: 24px;
  }
}

/* Refined loom-to-closet journey */
.step {
  position: relative;
  min-width: 92px;
  padding: 10px 8px;
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.step svg {
  width: 30px;
  height: 30px;
  padding: 5px;
  overflow: visible;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  background: #fcfbf8;
  box-sizing: content-box;
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background-color 0.35s ease;
}

.step:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(155, 30, 70, 0.09);
}

.step:hover svg {
  color: #ffffff;
  background: #9b1e46;
  transform: scale(1.08) rotate(-4deg);
}

.flow-arrow {
  display: inline-block;
  animation: arrowFlow 1.8s ease-in-out infinite;
}

.flow-arrow:nth-of-type(2) {
  animation-delay: 0.15s;
}

.flow-arrow:nth-of-type(3) {
  animation-delay: 0.3s;
}

.flow-arrow:nth-of-type(4) {
  animation-delay: 0.45s;
}

@keyframes arrowFlow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(7px);
    opacity: 1;
    color: #c8a96a;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-arrow {
    animation: none;
  }
}

.mood {
  background: #f5efe7;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #efe8e1;
}

.mood svg {
  width: 23px;
  color: #9b1e46;
}

.mood span {
  font-size: 9px;
}

.fabric {
  height: 135px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 47%, transparent 70%),
    url("assets/hero.png");
  color: #1f1f1f;
  border: 1px solid #efe8e1;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.25s;
}

.fabric:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.fabric span {
  position: absolute;
  left: 16px;
  top: 43px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}

.fabric small {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 7px;
  margin-top: 4px;
}

.f1 {
  background-position: 64% 45%;
}

.f2 {
  background-position: 76% 55%;
  filter: sepia(0.5);
}

.f3 {
  background-position: 57% 40%;
  filter: hue-rotate(170deg);
}

.f4 {
  background-position: 80% 60%;
  filter: saturate(0.6);
}

section.bg-coffee strong {
  display: block;
  font:
    2rem "Cormorant Garamond",
    serif;
  color: #fff;
}

section.bg-coffee small {
  display: block;
  font-size: 8px;
  line-height: 1.5;
}

.press,
.instagram {
  background: #faf7f2;
}

.secondary-btn {
  border: 1px solid #9b1e46;
  color: #9b1e46;
  padding: 0.65rem 1rem;
  font-size: 9px;
}

.secondary-btn:hover {
  background: #faf7f2;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.insta-grid div {
  height: 130px;
  background: url("assets/hero.png") center/cover;
  position: relative;
}

.insta-grid div:nth-child(2n) {
  background-position: 70% center;
  filter: sepia(0.25);
}

.insta-grid div:nth-child(3n) {
  background-position: 55% center;
  filter: hue-rotate(325deg);
}

.insta-grid div:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(155, 30, 70, 0.75);
  opacity: 0;
  transition: 0.25s;
}

.insta-grid div:hover:after {
  opacity: 1;
}

footer {
  background: linear-gradient(
    135deg,
    #33251f 0%,
    #2b1f1a 55%,
    #241915 100%
  ) !important;
  color: #d8cec6 !important;
  border-top: 3px solid #c8a96a;
}

footer .text-white,
footer b {
  color: #ffffff !important;
}

footer .border-white\/15 {
  border-color: rgba(232, 214, 176, 0.22) !important;
}

footer a {
  display: block;
}

footer a:hover {
  color: #c8a96a;
}

@media (max-width: 640px) {
  .hero {
    height: 520px;
    background: #faf7f2;
  }

  .collection {
    height: 240px;
  }

  .benefit {
    justify-content: flex-start;
    border: 0;
  }

  .section-head h2 {
    font-size: 1.75rem;
  }

  .flow-arrow {
    display: none;
  }

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

  .insta-grid div {
    height: 100px;
  }
}

/* Luxury motion and interaction layer */
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.65, 0.25, 1),
    transform 0.85s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.is-visible .reveal-item {
  opacity: 1;
  transform: none;
}

.is-visible .reveal-item:nth-child(2) {
  transition-delay: 0.08s;
}

.is-visible .reveal-item:nth-child(3) {
  transition-delay: 0.16s;
}

.is-visible .reveal-item:nth-child(4) {
  transition-delay: 0.24s;
}

.is-visible .reveal-item:nth-child(5) {
  transition-delay: 0.32s;
}

.is-visible .reveal-item:nth-child(6) {
  transition-delay: 0.4s;
}

.hero > img {
  animation: heroDrift 16s ease-in-out infinite alternate;
  will-change: transform;
}

.hero .relative > * {
  opacity: 0;
  animation: heroCopy 0.85s ease forwards;
}

.hero .relative > :nth-child(2) {
  animation-delay: 0.18s;
}

.hero .relative > :nth-child(3) {
  animation-delay: 0.34s;
}

@keyframes heroDrift {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.075) translateX(-0.6%);
  }
}

@keyframes heroCopy {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.header-actions svg {
  transition:
    transform 0.25s,
    color 0.25s;
}

.header-actions button:hover svg {
  transform: translateY(-2px) scale(1.08);
}

.hero button {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}

.hero button:after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -60%;
  width: 38%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: 0.65s;
}

.hero button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(155, 30, 70, 0.28);
}

.hero button:hover:after {
  left: 125%;
}

.collection,
.artisan,
.fabric {
  transition:
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.4s,
    box-shadow 0.4s;
}

.collection:after,
.artisan:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.14),
    transparent 70%
  );
  transform: translateX(-120%);
  transition: 0.7s;
}

.collection:hover,
.artisan:hover,
.fabric:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 35px rgba(31, 31, 31, 0.13);
}

.collection:hover:after,
.artisan:hover:after {
  transform: translateX(120%);
}

.reason,
.mood {
  transition:
    transform 0.35s,
    background 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
}

.reason svg,
.mood svg {
  transition:
    transform 0.35s,
    color 0.35s;
}

.reason:hover {
  transform: translateY(-4px);
}

.reason:hover svg {
  color: #c8a96a;
  transform: rotate(-5deg) scale(1.13);
}

.mood:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: #e8d6b0;
}

.mood:hover svg {
  color: #c8a96a;
  transform: scale(1.14);
}

section.bg-coffee strong {
  transition:
    transform 0.3s,
    color 0.3s;
}

section.bg-coffee > div > div:hover strong {
  color: #e8d6b0;
  transform: scale(1.08);
}

.secondary-btn {
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}

.secondary-btn:hover {
  background: #9b1e46;
  color: #fff;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero > img,
  .hero .relative > * {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Clear, Figma-like typography scale */
body {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.015em;
}

header nav {
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.1em !important;
}

header > a {
  font-size: 24px !important;
  font-weight: 700;
  letter-spacing: 0.07em !important;
}

.hero p:first-child {
  font-size: clamp(3.25rem, 5vw, 5rem) !important;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero p:nth-child(2) {
  font-size: 14px !important;
  line-height: 1.8;
  font-weight: 400;
}

.hero button {
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.12em !important;
}

.section-head h2,
.artisan-story h2,
#artisans h2,
section > h2,
.press h3 {
  font-size: clamp(2rem, 3vw, 2.65rem) !important;
  font-weight: 600;
  line-height: 1.1;
}

.section-head a {
  font-size: 10px;
  font-weight: 700;
}

.benefit p {
  font-size: 11px;
  font-weight: 500;
}

.benefit p b {
  font-weight: 700;
}

.benefit small {
  font-size: 10px;
  line-height: 1.5;
}

.collection h3 {
  font-size: 25px;
  font-weight: 600;
}

.collection p {
  font-size: 11px;
  font-weight: 500;
}

.artisan-story p {
  font-size: 13px !important;
  line-height: 1.75;
}

.artisan-story .siakari-serif.font-italic {
  font-size: 16px !important;
  font-weight: 600;
}

.reason span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

#artisans > div > p,
section > p.text-center {
  font-size: 10px !important;
  font-weight: 600;
}

.artisan b {
  font-size: 19px;
  font-weight: 700;
}

.artisan span {
  font-size: 10px;
  font-weight: 500;
}

.review {
  font-size: 12px;
  line-height: 1.75;
}

.review b {
  font-size: 16px;
  font-weight: 700;
}

.step span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.mood span {
  font-size: 11px;
  font-weight: 600;
}

.fabric span {
  font-size: 18px;
  font-weight: 600;
}

.fabric small {
  font-size: 9px;
  line-height: 1.5;
  font-weight: 500;
}

section.bg-coffee strong {
  font-size: 2.35rem;
  font-weight: 600;
}

section.bg-coffee small {
  font-size: 10px;
  font-weight: 500;
}

.press p {
  font-size: 11px !important;
  line-height: 1.65;
}

.instagram b {
  font-size: 14px;
}

.instagram span {
  font-size: 10px !important;
}

.secondary-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

footer {
  font-size: 11px !important;
}

footer b {
  font-size: 11px;
  letter-spacing: 0.06em;
}

footer p,
footer a {
  font-size: 11px;
  line-height: 1.9;
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero p:first-child {
    font-size: 2.8rem !important;
  }

  .hero p:nth-child(2) {
    font-size: 13px !important;
  }

  .section-head h2,
  .artisan-story h2,
  #artisans h2,
  section > h2,
  .press h3 {
    font-size: 2rem !important;
  }

  .benefit p {
    font-size: 10px;
  }

  .collection h3 {
    font-size: 21px;
  }

  .instagram span {
    display: none;
  }
}

.fabric-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.fabric-heading h2 {
  margin: 0 !important;
  font-size: clamp(2rem, 3vw, 2.65rem) !important;
  font-weight: 600;
  line-height: 1.2 !important;
}

.fabric-heading p {
  display: block;
  margin: 0 !important;
  font-size: 10px !important;
  font-weight: 600;
  line-height: 1.5 !important;
  letter-spacing: 0.22em;
}

@media (max-width: 640px) {
  .fabric-heading {
    gap: 8px;
    margin-bottom: 22px;
  }

  .fabric-heading h2 {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }

  .fabric-heading p {
    font-size: 9px !important;
    line-height: 1.6 !important;
  }
}

/* footer-overrides.css */
.socials a {
  width: 20px;
  height: 20px;
  font-size: 18px;
  transition:
    color 0.25s,
    transform 0.25s;
}

.socials a:hover {
  color: #c8a96a !important;
  transform: translateY(-2px) scale(1.08);
}

.company-name {
  display: block;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.5;
  margin: -2px 0 9px;
}

.contact-column p span {
  white-space: normal;
}

.contact-column p .address {
  align-items: flex-start;
  line-height: 1.55;
  max-width: 290px;
}

.contact-column p a {
  display: inline;
  line-height: inherit;
}

.contact-column svg {
  margin-top: 2px;
}

/* search.css */
body.search-open {
  overflow: hidden;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 20, 16, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s;
}

.search-panel {
  position: relative;
  margin: 0 auto;
  background: #fcfbf8;
  width: min(760px, calc(100% - 30px));
  padding: 28px 32px 30px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 24px 60px rgba(31, 20, 16, 0.25);
  transform: translateY(-105%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.search-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.search-overlay.is-open .search-backdrop {
  opacity: 1;
}

.search-overlay.is-open .search-panel {
  transform: none;
}

.search-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.search-panel-head p {
  font:
    600 30px/1.1 "Cormorant Garamond",
    serif;
  color: #1f1f1f;
}

.search-panel-head span {
  font-size: 11px;
  color: #777;
}

.search-panel-head button {
  color: #9b1e46;
  padding: 5px;
}

.search-input-wrap {
  height: 54px;
  border: 1px solid #e8d6b0;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 4px;
  box-shadow: 0 5px 18px rgba(155, 30, 70, 0.06);
}

.search-input-wrap svg {
  width: 20px;
  color: #9b1e46;
}

.search-input-wrap input {
  flex: 1;
  min-width: 0;
  outline: 0;
  background: transparent;
  color: #1f1f1f;
  font-size: 14px;
}

.search-input-wrap input::placeholder {
  color: #999;
}

.search-input-wrap kbd {
  font-size: 9px;
  color: #777;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 2px 6px;
}

.search-popular {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 17px;
}

.search-popular > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-right: 4px;
}

.search-popular a {
  display: inline-block;
  font-size: 10px;
  border: 1px solid #e8d6b0;
  border-radius: 20px;
  padding: 5px 11px;
  background: #f5efe7;
  color: #1f1f1f;
  text-decoration: none;
  transition: 0.2s;
}

.search-popular a:hover,
.search-popular a:focus-visible {
  background: #9b1e46;
  color: #fff;
  border-color: #9b1e46;
}

.search-results {
  margin-top: 18px;
  max-height: 320px;
  overflow: auto;
}

.result-count {
  font-size: 10px;
  color: #777;
  margin-bottom: 7px;
}

.search-results > a {
  display: grid;
  grid-template-columns: 1fr auto 18px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #efe8e1;
  padding: 12px 5px;
  color: #1f1f1f;
}

.search-results > a:hover {
  color: #9b1e46;
  padding-left: 10px;
}

.search-results > a span {
  font:
    600 17px "Cormorant Garamond",
    serif;
}

.search-results > a small {
  font-size: 9px;
  color: #777;
}

.search-results > a svg {
  width: 15px;
}

.no-results {
  text-align: center;
  padding: 24px;
}

.no-results svg {
  margin: auto;
  color: #c8a96a;
}

.no-results p {
  font:
    600 18px "Cormorant Garamond",
    serif;
  margin-top: 7px;
}

.no-results span {
  font-size: 10px;
  color: #777;
}

@media (max-width: 640px) {
  .search-panel {
    width: 100%;
    padding: 24px 18px;
  }

  .search-panel-head p {
    font-size: 26px;
  }

  .search-input-wrap kbd {
    display: none;
  }
}

/* slider.css */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 461px;
  max-height: 461px;
  margin: 0;
  background: #2b211c;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s ease,
    visibility 0.9s;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: none;
  transition: none;
}

.hero-slide.is-active > img {
  transform: none;
}

.slide-wedding > img {
  object-position: 73% center;
  filter: sepia(0.28) saturate(1.12);
}

.slide-artisan > img {
  object-position: 58% 58%;
  filter: saturate(0.72) contrast(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(25, 14, 10, 0.78) 0%,
    rgba(25, 14, 10, 0.48) 32%,
    rgba(25, 14, 10, 0.08) 68%,
    transparent
  );
}

.hero-copy {
  position: relative;
  width: 100%;
  padding: 0 7rem;
  color: #fff;
  transform: translateY(25px);
  opacity: 0;
  transition:
    transform 0.8s 0.25s ease,
    opacity 0.8s 0.25s ease;
}

.hero-slide.is-active .hero-copy {
  transform: none;
  opacity: 1;
}

.hero-copy p:first-child {
  font-size: clamp(3.25rem, 5vw, 5rem) !important;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero-copy p:nth-child(2) {
  margin-top: 1.5rem;
  font-size: 14px !important;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.hero-cta {
  display: inline-block;
  margin-top: 1.75rem;
  background: #9b1e46;
  color: #fff !important;
  padding: 0.85rem 1.2rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: 0.3s;
}

.hero-cta:hover {
  background: #9b1e46;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(20, 10, 8, 0.28);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(31, 20, 16, 0.18);
  backdrop-filter: blur(4px);
  opacity: 0.72;
  transition: 0.3s;
}

.slider-arrow:hover {
  opacity: 1;
  background: #9b1e46;
  border-color: #9b1e46;
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow svg {
  width: 20px;
}

.slider-prev {
  left: 24px;
  transform: translateY(-50%);
}

.slider-next {
  right: 24px;
  transform: translateY(-50%);
}

.slider-dots {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.slider-dots button {
  width: 7px;
  height: 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  transition: 0.3s;
}

.slider-dots button.is-active {
  width: 28px;
  background: #fff;
}

.slider-progress {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
}

.slider-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: #c8a96a;
}

.hero-slider.is-playing .slider-progress i {
  animation: slideProgress 6s linear forwards;
}

@keyframes slideProgress {
  to {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .hero-copy {
    padding: 0 2rem;
  }

  .hero-copy p:first-child {
    font-size: 2.8rem !important;
  }

  .hero-copy p:nth-child(2) {
    font-size: 12px !important;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 17px;
  }

  .slider-prev {
    left: 18px;
    transform: none;
  }

  .slider-next {
    right: 18px;
    transform: none;
  }

  .slider-arrow:hover {
    transform: scale(1.06);
  }

  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(25, 14, 10, 0.75),
      rgba(25, 14, 10, 0.2)
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide > img,
  .hero-copy {
    transition: none;
  }

  .hero-slider.is-playing .slider-progress i {
    animation: none;
  }
}

/* slider-overrides.css */
.hero .slider-arrow,
.hero .slider-dots button {
  padding: 0;
}

.hero .slider-arrow::after,
.hero .slider-dots button::after {
  display: none;
}

.hero-slide > img {
  background: #2b211c;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover !important;
  object-position: center center;
}

.slide-wedding > img,
.slide-artisan > img {
  filter: none !important;
}

/* Precisely aligned carousel navigation */
.hero-slider .slider-controls {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-slider .slider-arrow {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px;
  padding: 0 !important;
  margin: 0;
  box-sizing: border-box;
  display: grid !important;
  place-items: center;
  line-height: 0;
  transform: none !important;
  pointer-events: auto;
}

.hero-slider .slider-prev {
  left: auto !important;
  right: auto !important;
}

.hero-slider .slider-next {
  right: auto !important;
  left: auto !important;
}

.hero-slider .slider-arrow svg {
  display: block;
  width: 22px !important;
  height: 22px !important;
  margin: 0;
  flex: none;
}

.hero-slider .slider-arrow:hover {
  transform: scale(1.06) !important;
}

@media (max-width: 700px) {
  .hero-slider .slider-controls {
    padding: 0 14px;
  }

  .hero-slider .slider-arrow {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
  }
}

@media (max-width: 700px) {
  .review-shell {
    position: relative;
    padding-left: 34px !important;
    padding-right: 34px !important;
  }

  .review-track {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 6px !important;
    width: 100%;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-track::-webkit-scrollbar {
    display: none;
  }

  .review-track .review,
  .review-track .review:nth-child(n + 4) {
    display: block !important;
    flex: 0 0 calc((100% - 12px) / 3);
    min-width: calc((100% - 12px) / 3);
    scroll-snap-align: start;
  }

  .review-arrow {
    display: grid !important;
    width: 28px !important;
    height: 28px !important;
  }

  .review-prev {
    left: 0;
  }

  .review-next {
    right: 0;
  }

  .review-arrow[hidden] {
    display: none !important;
  }

  .review-view-all {
    display: block !important;
    margin-top: 14px;
  }

  .review-view-all button {
    padding: 9px 14px;
    font-size: 8px;
  }
}

@media (max-width: 700px) {
  #collections .section-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
  }

  #collections .section-head h2 {
    margin: 0;
    white-space: nowrap;
  }

  #collections .section-head a {
    flex: none;
    white-space: nowrap;
    font-size: 0 !important;
  }

  #collections .section-head a::after {
    content: "VIEW ALL";
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #9b1e46;
  }

  .review-shell + .review-view-all,
  .review-shell {
    max-width: 100%;
  }

  section:has(.review-shell) > h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    font-size: clamp(1.25rem, 6vw, 1.65rem) !important;
    line-height: 1.25 !important;
  }
}

/* reviews.css */
.review-shell {
  position: relative;
  padding: 0 54px;
}

.review-track {
  display: flex !important;
  gap: 28px !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 12px;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-track .review {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
  opacity: 1 !important;
  transform: none !important;
  padding: 20px 18px;
  background: #fcfbf8;
  border: 1px solid #efe8e1;
  border-radius: 6px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.review-track .review:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 24px rgba(155, 30, 70, 0.08);
}

.review-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #9b1e46;
  transform: translateY(-50%);
  transition: 0.25s;
}

.review-arrow:after {
  display: none !important;
}

.review-arrow:hover:not(:disabled) {
  background: #9b1e46;
  color: #fff;
  border-color: #9b1e46;
}

.review-arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.review-arrow svg {
  width: 18px;
}

.review-prev {
  left: 0;
}

.review-next {
  right: 0;
}

.review-arrow[hidden] {
  display: none;
}

@media (max-width: 800px) {
  .review-track .review {
    flex-basis: calc((100% - 22px) / 2);
  }

  .review-track {
    gap: 22px !important;
  }
}

@media (max-width: 560px) {
  .review-shell {
    padding: 0 40px;
  }

  .review-track .review {
    flex-basis: 100%;
  }

  .review-track {
    gap: 16px !important;
  }

  .review-arrow {
    width: 33px;
    height: 33px;
  }
}

/* reviews-extra.css */
.review-avatar {
  width: 110px !important;
  height: 110px !important;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover !important;
  object-position: center;
  border: 4px solid #fff;
  box-shadow:
    0 0 0 1px #e8d6b0,
    0 8px 18px rgba(155, 30, 70, 0.14);
}

.review-view-all {
  text-align: center;
  margin-top: 18px;
}

.review-view-all button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #9b1e46;
  color: #9b1e46;
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.review-view-all button:hover {
  background: #9b1e46;
  color: #fff;
  transform: translateY(-2px);
}

.review-view-all svg {
  width: 14px;
}

.review-shell.show-all {
  padding: 0;
}

.review-shell.show-all .review-track {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  overflow: visible;
}

.review-shell.show-all .review {
  width: auto;
  max-width: none;
}

.review-shell.show-all .review-arrow {
  display: none !important;
}

@media (max-width: 800px) {
  .review-shell.show-all .review-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .review-shell.show-all .review-track {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .review-avatar {
    width: 92px !important;
    height: 92px !important;
  }
}

/* conditional-sliders.css */
.conditional-shell {
  position: relative;
}

.conditional-track {
  display: flex !important;
  gap: 12px !important;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.conditional-track::-webkit-scrollbar {
  display: none;
}

.conditional-track > * {
  flex: 0 0
    calc(
      (100% - (var(--visible-cards, 4) - 1) * 12px) / var(--visible-cards, 4)
    );
  scroll-snap-align: start;
}

.conditional-shell.has-overflow {
  padding: 0 48px;
}

.conditional-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #9b1e46;
  transform: translateY(-50%);
  transition: 0.25s;
}

.conditional-arrow:after {
  display: none !important;
}

.conditional-arrow:hover:not(:disabled) {
  background: #9b1e46;
  color: #fff;
  border-color: #9b1e46;
}

.conditional-arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.conditional-arrow svg {
  width: 18px;
}

.conditional-prev {
  left: 0;
}

.conditional-next {
  right: 0;
}

.conditional-arrow[hidden] {
  display: none;
}

@media (max-width: 639px) {
  .conditional-shell.has-overflow {
    padding: 0 40px;
  }

  .conditional-arrow {
    width: 33px;
    height: 33px;
  }
}

/* typography.css */
html,
body,
button,
input,
textarea,
select,
.siakari-serif,
.font-sans,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
small,
strong,
b,
blockquote,
label,
kbd {
  font-family: "Poppins", Arial, sans-serif !important;
}

/* Preserve the proper social-media icon font. */
.fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-solid,
.fab,
.far,
.fas {
  font-family: var(--fa-style-family, "Font Awesome 6 Free") !important;
}

/* Keep brand icons visible when Poppins is applied globally. */
.socials .fa-brands,
.socials .fab {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: auto !important;
  height: auto !important;
  font-family: "Font Awesome 6 Brands" !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 19px !important;
  line-height: 1 !important;
  color: currentColor !important;
}

.socials a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 28px !important;
  height: 28px !important;
  color: #ffffff !important;
}

.socials a:hover {
  color: #c8a96a !important;
}

/* Complete mobile layout refinement */
@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
  }

  body > header,
  body > main,
  body > footer,
  main > section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  body > header {
    height: 70px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header-logo {
    width: 120px !important;
    height: 54px !important;
    flex: 0 0 120px;
  }

  .header-actions {
    gap: 14px !important;
    margin-left: auto;
  }

  .header-actions svg {
    width: 20px;
    height: 20px;
  }

  #mobileNav {
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 10px 18px 18px !important;
    background: rgba(252, 251, 248, 0.98) !important;
    border-top: 1px solid #e8d6b0;
    box-shadow: 0 18px 30px rgba(31, 20, 16, 0.14);
  }

  #mobileNav a {
    padding: 13px 8px;
    margin: 0 !important;
    border-bottom: 1px solid #efe8e1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  #mobileNav a:last-child {
    border-bottom: 0;
  }

  .mobile-menu-open {
    overflow: hidden;
  }

  .hero-slider {
    width: 100% !important;
    height: 700px !important;
    min-height: 700px;
    max-height: 700px;
  }

  .hero-slide > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(25, 14, 10, 0.76),
      rgba(25, 14, 10, 0.28)
    ) !important;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 0 28px !important;
    box-sizing: border-box;
  }

  .hero-copy p:first-child,
  .hero p:first-child {
    max-width: 390px;
    font-size: clamp(2.25rem, 10vw, 3rem) !important;
    line-height: 1.08 !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-copy p:nth-child(2),
  .hero p:nth-child(2) {
    max-width: 340px;
    margin-top: 18px !important;
    font-size: 12px !important;
    line-height: 1.75 !important;
  }

  .hero-cta {
    margin-top: 22px;
    padding: 12px 16px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero-slider .slider-controls {
    top: auto !important;
    bottom: 46px;
    padding: 0 16px;
    transform: none;
  }

  .hero-slider .slider-arrow {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px;
    background: rgba(155, 30, 70, 0.9);
  }

  .slider-dots {
    bottom: 18px;
  }

  main section:not(.hero-slider) {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .section-head {
    align-items: center;
    gap: 12px;
  }

  .section-head h2 {
    font-size: 1.75rem !important;
  }

  .section-head a {
    white-space: nowrap;
  }

  .collection {
    min-height: 280px;
  }

  .conditional-shell.has-overflow,
  .review-shell {
    width: 100%;
    padding-left: 38px;
    padding-right: 38px;
    box-sizing: border-box;
  }

  .conditional-track,
  .review-track {
    width: 100%;
  }

  .artisan-story .siakari-grid,
  .press .siakari-grid {
    gap: 28px !important;
  }

  .footer-grid {
    width: 100%;
  }

  .reference-footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

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

@media (max-width: 390px) {
  body > header {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .header-logo {
    width: 105px !important;
    flex-basis: 105px;
  }

  .header-actions {
    gap: 11px !important;
  }

  .hero-copy {
    padding: 0 22px !important;
  }

  .hero-copy p:first-child,
  .hero p:first-child {
    font-size: 2.15rem !important;
  }
}

/* Final Siakari brand colors */
.stats-strip {
  background: #9b1e46 !important;
  color: #ffffff !important;
}

.stats-strip strong,
.stats-strip small {
  color: #ffffff !important;
}

.insta-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.insta-title {
  display: inline-flex;
  align-items: center;
}

.insta-description {
  font-size: 11px;
  line-height: 1.4;
  color: #555;
}

@media (max-width: 700px) {
  .insta-label-row {
    gap: 7px;
  }

  .insta-description {
    font-size: 9px;
  }
}

.insta-title-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-right: 7px;
  color: #9b1e46;
}

footer.reference-footer {
  background: #9b1e46 !important;
  border-top-color: #c8a96a !important;
}

#artisans > div:first-child > h2,
section:has(.step) > h2,
section:has(.review-shell) > h2,
.mood-heading > h2,
.fabric-heading > h2,
.press h3 {
  color: #9b1e46 !important;
}

@media (max-width: 700px) {
  #artisans > div:first-child > h2,
  section:has(.step) > h2,
  section:has(.review-shell) > h2,
  .mood-heading > h2,
  .fabric-heading > h2,
  .press h3 {
    font-size: 1.3rem !important;
    line-height: 1.25 !important;
  }
}

/* Mobile composition matched to the supplied Siakari reference */
@media (max-width: 700px) {
  body > header {
    position: sticky;
    height: 60px !important;
    padding: 0 14px !important;
  }

  .header-logo {
    position: absolute;
    left: 40%;
    width: 112px !important;
    height: 50px !important;
    transform: translateX(-50%) !important;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 17px !important;
  }

  #menu {
    position: absolute;
    left: 14px;
    display: grid;
    place-items: center;
  }

  .header-actions > button[aria-label="Account"] {
    display: none;
  }

  #mobileNav {
    top: 60px !important;
  }

  .hero-slider {
    height: 700px !important;
    min-height: 700px !important;
    max-height: 700px !important;
  }

  .hero-copy {
    padding: 0 20px !important;
  }

  .hero-copy p:first-child,
  .hero p:first-child {
    max-width: 245px;
    font-size: 2rem !important;
    line-height: 1.08 !important;
  }

  .hero-copy p:nth-child(2),
  .hero p:nth-child(2) {
    max-width: 235px;
    margin-top: 14px !important;
    font-size: 9px !important;
    line-height: 1.65 !important;
  }

  .hero-cta {
    margin-top: 15px;
    padding: 10px 14px;
    font-size: 8px;
  }

  .hero-slider .slider-controls,
  .hero-slider .slider-dots {
    display: none !important;
  }

  .trust-section {
    padding: 10px 8px !important;
  }

  .trust-section > .trust-slider {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .trust-section .benefit:first-child {
    display: none;
  }

  .trust-section .benefit {
    padding: 5px 4px;
    border-right: 1px solid #efe8e1;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    gap: 5px;
  }

  .trust-section .benefit:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .trust-section .benefit svg {
    width: 23px;
    height: 23px;
  }

  .trust-section .benefit p,
  .trust-section .benefit small {
    font-size: 7px;
    line-height: 1.4;
  }

  #collections {
    padding-top: 24px !important;
    padding-bottom: 26px !important;
  }

  #collections .section-head h2 {
    font-size: 1.45rem !important;
  }

  #collections .siakari-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  #collections .collection {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 5px;
  }

  #collections .collection:last-child {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }

  .collection div {
    left: 10px;
    right: 10px;
    bottom: 9px;
    text-align: center;
  }

  .collection h3 {
    font-size: 14px;
  }

  .collection p {
    font-size: 7px;
  }

  .artisan-story > div {
    display: block !important;
  }

  .artisan-story > div > div:first-child {
    display: grid !important;
    grid-template-columns: 115px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 26px;
  }

  .artisan-story .portrait {
    grid-column: 1;
    grid-row: 1;
    width: 115px;
    height: 150px !important;
    border-radius: 0;
  }

  .artisan-story > div > div:first-child > div:first-child {
    grid-column: 2;
    grid-row: 1;
  }

  .artisan-story h2 {
    font-size: 1.25rem !important;
  }

  .artisan-story p {
    font-size: 9px !important;
    line-height: 1.55 !important;
  }

  .artisan-story > div > div:last-child h2 {
    text-align: center;
    margin-bottom: 18px;
  }

  .reason span {
    font-size: 7px;
  }

  #artisans [data-conditional-slider="artisans"] {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px !important;
    overflow: visible;
  }

  #artisans .conditional-shell {
    padding: 0 !important;
  }

  #artisans .conditional-arrow {
    display: none !important;
  }

  #artisans .artisan {
    min-width: 0;
    height: 155px;
  }

  #artisans .artisan div {
    width: 90%;
    bottom: 5px;
    padding: 5px 2px;
  }

  #artisans .artisan b {
    font-size: 9px;
  }

  #artisans .artisan span {
    font-size: 6px;
    line-height: 1.35;
  }

  .review-shell {
    padding: 0 !important;
  }

  .review-track {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px !important;
    overflow: hidden;
  }

  .review-track .review {
    width: auto;
    min-width: 0;
    padding: 10px 6px;
    font-size: 7px;
    text-align: left;
  }

  .review-track .review:nth-child(n + 4) {
    display: none;
  }

  .review-avatar {
    width: 42px !important;
    height: 52px !important;
    margin: 8px 0 0 auto;
    border-radius: 4px;
    float: right;
  }

  .review-track .review div,
  .review-track .review p,
  .review-track .review b {
    font-size: 7px;
    line-height: 1.5;
  }

  .review-arrow {
    display: none !important;
  }

  .review-view-all {
    display: none;
  }

  .flow-arrow {
    display: inline-block !important;
    min-width: 10px;
    font-size: 14px;
  }

  .step {
    min-width: 0;
    padding: 4px 2px;
  }

  .step svg {
    width: 19px;
    height: 19px;
    padding: 4px;
  }

  .step span {
    font-size: 6px;
  }

  .mood-heading {
    margin-bottom: 14px !important;
  }

  .mood-heading + div {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 5px;
  }

  .mood {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mood svg {
    width: 46px;
    height: 46px;
    padding: 12px;
    border-radius: 50%;
    background: #f5efe7;
  }

  .mood span {
    font-size: 6px;
    line-height: 1.35;
    text-align: center;
  }

  .fabric-section .conditional-shell {
    padding: 0 !important;
  }

  .fabric-section [data-conditional-slider="fabrics"] {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 6px !important;
    overflow: visible;
    margin-bottom: 0 !important;
  }

  .fabric-section .conditional-arrow {
    display: none !important;
  }

  .fabric-section .fabric {
    width: 100%;
    height: 76px;
    min-height: 76px;
    aspect-ratio: auto;
    border-radius: 4px;
  }

  section.bg-coffee {
    padding: 18px 8px !important;
  }

  section.bg-coffee > div {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  section.bg-coffee strong {
    font-size: 1.35rem;
  }

  section.bg-coffee small {
    font-size: 6px;
  }

  .press > div {
    display: block !important;
  }

  .press > div > div {
    margin-bottom: 26px;
  }

  .insta-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }

  .insta-grid div {
    height: 82px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .footer-brand,
  .payment-column,
  .contact-column {
    grid-column: auto;
  }

  .footer-brand > div {
    font-size: 20px !important;
  }

  .footer-column a,
  .footer-column p,
  .footer-brand p,
  .company-name {
    font-size: 8px;
    line-height: 1.6;
  }

  .footer-column > b {
    font-size: 9px;
  }

  .payment-column {
    grid-column: span 2;
  }

  .contact-column {
    grid-column: span 1;
  }
}

@media (max-width: 380px) {
  .mood svg {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  #artisans .artisan {
    height: 140px;
  }
}

@media (max-width: 700px) {
  .trust-section > .trust-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .trust-section > .trust-slider::-webkit-scrollbar {
    display: none;
  }

  .trust-section .trust-slider .benefit,
  .trust-section .trust-slider .benefit:first-child {
    display: flex !important;
    flex: 0 0 25%;
    min-width: 25%;
    box-sizing: border-box;
    scroll-snap-align: start;
  }

  .trust-section .trust-slider .benefit:last-child {
    border-right: 0;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 700px) {
  body .review-shell {
    position: relative;
    padding-left: 34px !important;
    padding-right: 34px !important;
  }

  body .review-shell .review-track {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 6px !important;
    width: 100%;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body .review-shell .review-track::-webkit-scrollbar {
    display: none;
  }

  body .review-shell .review-track .review,
  body .review-shell .review-track .review:nth-child(n + 4) {
    display: block !important;
    flex: 0 0 calc((100% - 12px) / 3) !important;
    min-width: calc((100% - 12px) / 3) !important;
    scroll-snap-align: start;
  }

  body .review-shell .review-track .review {
    text-align: center !important;
    padding: 10px 6px 12px !important;
    overflow: hidden;
  }

  body .review-shell .review-avatar {
    display: block !important;
    float: none !important;
    width: 54px !important;
    height: 64px !important;
    margin: 0 auto 9px !important;
    border-radius: 5px !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body .review-shell .review div,
  body .review-shell .review p,
  body .review-shell .review b {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  body .review-shell .review p {
    min-height: 64px;
    font-size: 7px !important;
    line-height: 1.5 !important;
  }

  body .review-shell .review b {
    display: block;
    font-size: 7px !important;
    line-height: 1.4 !important;
  }

  body .review-shell .review-arrow {
    display: grid !important;
    width: 28px !important;
    height: 28px !important;
  }

  body .review-shell .review-prev {
    left: 0;
  }

  body .review-shell .review-next {
    right: 0;
  }

  body .review-shell .review-arrow[hidden] {
    display: none !important;
  }

  body .review-view-all {
    display: block !important;
    margin-top: 14px;
  }

  body .review-view-all button {
    padding: 9px 14px;
    font-size: 8px;
  }

  body section.bg-coffee {
    padding: 12px 5px !important;
  }

  body section.bg-coffee > div {
    gap: 0 !important;
  }

  body section.bg-coffee > div > div {
    padding: 0 4px;
  }

  body section.bg-coffee strong {
    font-size: 1.05rem !important;
    line-height: 1.15 !important;
    margin-bottom: 3px;
  }

  body section.bg-coffee small {
    font-size: 5.5px !important;
    line-height: 1.35 !important;
  }

  body section.bg-coffee > div > div:not(:last-child)::after {
    height: 62%;
    top: 19%;
  }

  body .instagram .insta-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    width: 100%;
    gap: 5px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  body .instagram .insta-grid::-webkit-scrollbar {
    display: none;
  }

  body .instagram .insta-grid > div {
    flex: 0 0 calc((100% - 20px) / 5);
    min-width: calc((100% - 20px) / 5);
    height: 82px !important;
    scroll-snap-align: start;
  }

  body .reference-footer {
    padding: 20px 10px 10px !important;
  }

  body .reference-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 0.72fr 0.8fr 1.35fr !important;
    gap: 12px 8px !important;
    align-items: start;
  }

  body .reference-footer .footer-grid > div {
    grid-column: auto !important;
    min-width: 0;
  }

  body .reference-footer .footer-grid > div:nth-child(4) {
    display: none;
  }

  body .reference-footer .footer-brand > div {
    font-size: 15px !important;
    letter-spacing: 0.04em;
  }

  body .reference-footer .footer-brand p {
    margin-top: 7px !important;
    font-size: 5.5px !important;
    line-height: 1.55 !important;
  }

  body .reference-footer .footer-column > b {
    margin-bottom: 5px;
    font-size: 5.5px !important;
    letter-spacing: 0.03em;
  }

  body .reference-footer .footer-column a,
  body .reference-footer .footer-column p,
  body .reference-footer .company-name {
    font-size: 5.5px !important;
    line-height: 1.7 !important;
  }

  body .reference-footer .company-name {
    margin: 0 0 4px;
    display: block;
  }

  body .reference-footer .contact-column p {
    gap: 2px;
  }

  body .reference-footer .contact-column p span {
    gap: 3px;
    align-items: flex-start;
  }

  body .reference-footer .contact-column svg {
    width: 7px;
    height: 7px;
    min-width: 7px;
    margin-top: 1px;
  }

  body .reference-footer .contact-column .address {
    max-width: none;
    line-height: 1.45;
  }

  body .reference-footer .socials {
    gap: 6px;
    margin-top: 8px !important;
    flex-wrap: nowrap;
  }

  body .reference-footer .socials a {
    width: 12px !important;
    height: 12px !important;
    font-size: 10px !important;
  }

  body .reference-footer .socials .fa-brands {
    font-size: 10px !important;
  }

  body .reference-footer .payment-column {
    display: grid !important;
    grid-template-columns: 1.55fr 1fr !important;
    gap: 15px !important;
    grid-column: 1/-1 !important;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  body .reference-footer .payment-column > b {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  body .reference-footer .payment-badges {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 5px;
  }

  body .reference-footer .payment-badges > span {
    height: 25px;
    font-size: 7px;
    border-radius: 2px;
  }

  body .reference-footer .payment-badges .visa {
    font-size: 10px;
  }

  body .reference-footer .master i {
    width: 10px;
    height: 10px;
  }

  body .reference-footer .secure-payment {
    grid-column: 2;
    grid-row: 1/3;
    margin: 0;
    align-self: end;
    gap: 6px;
  }

  body .reference-footer .secure-payment > svg {
    width: 28px;
    height: 28px;
    padding: 5px;
  }

  body .reference-footer .secure-payment strong {
    font-size: 6px;
  }

  body .reference-footer .secure-payment small {
    font-size: 5.5px;
  }

  body .reference-footer .footer-bottom {
    margin-top: 10px;
    padding-top: 8px;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 5px;
    font-size: 5.5px !important;
    text-align: left !important;
  }

  body .reference-footer .footer-bottom > span:nth-child(2) {
    gap: 4px;
    justify-content: center;
    white-space: nowrap;
  }

  body .reference-footer .footer-bottom > span:last-child {
    text-align: right !important;
    white-space: nowrap;
  }

  body .reference-footer .footer-bottom i {
    height: 7px;
  }
}

@media (max-width: 380px) {
  body .reference-footer .footer-grid {
    grid-template-columns: 1.15fr 0.7fr 0.75fr 1.3fr !important;
    gap: 9px 5px !important;
  }

  body .reference-footer .footer-column a,
  body .reference-footer .footer-column p,
  body .reference-footer .company-name {
    font-size: 5px !important;
  }
}

@media (max-width: 700px) {
  body main section.press {
    padding-bottom: 6px !important;
  }

  body main section.press > div > div:last-child {
    margin-bottom: 0 !important;
  }

  body main section.instagram {
    padding-top: 10px !important;
  }

  body main section.instagram > div > div:first-child {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
  }
}

/* ==========================================================================
   MOOD CARDS AND MOOD SLIDER
   ========================================================================== */
.mood-heading + div {
  align-items: stretch;
}

.mood {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 235px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #efe8e1;
  border-radius: 8px;
  background: #fff;
  color: #1f1f1f;
  box-shadow: 0 5px 16px rgba(31, 31, 31, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.mood img {
  display: block;
  width: 100% !important;
  height: 190px !important;
  object-fit: cover !important;
  object-position: center top !important;
  transition: transform 0.5s ease;
}

.mood span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 44px;
  padding: 9px 5px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: #1f1f1f;
}

.mood:hover {
  background: #fff;
  transform: translateY(-6px);
  border-color: #e8d6b0;
  box-shadow: 0 15px 28px rgba(155, 30, 70, 0.13);
}

.mood:hover img {
  transform: scale(1.045);
}

@media (max-width: 700px) {
  .mood-heading + div {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .mood {
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mood img {
    width: 46px !important;
    height: 46px !important;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover !important;
    object-position: center top !important;
    border: 2px solid #fff;
    box-shadow:
      0 0 0 1px #e8d6b0,
      0 4px 10px rgba(155, 30, 70, 0.12);
  }

  .mood span {
    display: block;
    min-height: 0;
    padding: 7px 0 0;
    font-size: 6px;
    line-height: 1.35;
    color: #1f1f1f;
  }

  .mood:hover {
    transform: none;
    box-shadow: none;
  }

  .mood:hover img {
    transform: scale(1.06);
  }
}

@media (max-width: 380px) {
  .mood-heading + div {
    gap: 4px !important;
  }

  .mood img {
    width: 40px !important;
    height: 40px !important;
  }

  .mood span {
    font-size: 5.5px;
  }
}

.mood-slider-shell {
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 46px;
}

.mood-slider-track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 8px !important;
  max-width: none !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.mood-slider-track::-webkit-scrollbar {
  display: none;
}

.mood-slider-track > .mood {
  flex: 0 0 calc((100% - 40px) / 6);
  min-width: calc((100% - 40px) / 6);
  scroll-snap-align: start;
}

.mood-slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 36px;
  height: 36px;
  padding: 0 !important;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #9b1e46;
  transform: translateY(-50%);
  transition: 0.25s;
}

.mood-slider-arrow:after {
  display: none !important;
}

.mood-slider-arrow:hover:not(:disabled) {
  background: #9b1e46;
  color: #fff;
  border-color: #9b1e46;
}

.mood-slider-arrow:disabled {
  opacity: 0.28;
}

.mood-slider-arrow svg {
  width: 17px;
}

.mood-slider-prev {
  left: 0;
}

.mood-slider-next {
  right: 0;
}

@media (max-width: 700px) {
  .mood-slider-shell {
    padding: 0 32px;
  }

  .mood-slider-track {
    display: flex !important;
    gap: 7px !important;
  }

  .mood-slider-track > .mood {
    flex: 0 0 calc((100% - 35px) / 6);
    min-width: calc((100% - 35px) / 6);
  }

  .mood-slider-arrow {
    width: 27px;
    height: 27px;
  }

  .mood-slider-arrow svg {
    width: 14px;
  }
}

.mood-slider-arrow[hidden] {
  display: none !important;
}

.mood-slider-shell:not(.has-overflow) {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 700px) {
  .mood-heading + div {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .mood-slider-track {
    gap: 9px !important;
  }

  .mood-slider-track > .mood {
    flex: 0 0 calc((100% - 27px) / 4);
    min-width: calc((100% - 27px) / 4);
  }

  .mood img {
    width: 72px !important;
    height: 72px !important;
  }

  .mood span {
    font-size: 7px;
  }
}

@media (max-width: 380px) {
  .mood-slider-track {
    gap: 7px !important;
  }

  .mood-slider-track > .mood {
    flex-basis: calc((100% - 21px) / 4);
    min-width: calc((100% - 21px) / 4);
  }

  .mood img {
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 700px) {
  .mood-slider-shell.has-overflow {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 38px !important;
    box-sizing: border-box;
  }

  .mood-slider-shell.has-overflow .mood-slider-track {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    gap: 10px !important;
    overflow-x: auto !important;
  }

  .mood-slider-shell.has-overflow .mood-slider-track > .mood {
    display: flex !important;
    flex: 0 0 calc((100% - 30px) / 4) !important;
    width: calc((100% - 30px) / 4) !important;
    min-width: calc((100% - 30px) / 4) !important;
    max-width: calc((100% - 30px) / 4) !important;
    box-sizing: border-box;
  }

  .mood-slider-shell.has-overflow .mood img {
    width: 76px !important;
    height: 76px !important;
    max-width: 100% !important;
  }

  .mood-slider-shell.has-overflow .mood span {
    padding-top: 8px;
    font-size: 7.5px !important;
    font-weight: 600;
    line-height: 1.3;
  }

  .mood-slider-shell.has-overflow .mood-slider-arrow {
    top: 42%;
    width: 30px;
    height: 30px;
  }

  .mood-slider-shell.has-overflow .mood-slider-prev {
    left: 2px;
  }

  .mood-slider-shell.has-overflow .mood-slider-next {
    right: 2px;
  }

  .mood-heading {
    margin-bottom: 10px !important;
  }

  .mood-heading + div,
  .mood-heading + .mood-slider-shell {
    margin-top: 12px !important;
  }
}

@media (max-width: 390px) {
  .mood-slider-shell.has-overflow {
    padding: 0 34px !important;
  }

  .mood-slider-shell.has-overflow .mood-slider-track {
    gap: 8px !important;
  }

  .mood-slider-shell.has-overflow .mood-slider-track > .mood {
    flex-basis: calc((100% - 24px) / 4) !important;
    width: calc((100% - 24px) / 4) !important;
    min-width: calc((100% - 24px) / 4) !important;
    max-width: calc((100% - 24px) / 4) !important;
  }

  .mood-slider-shell.has-overflow .mood img {
    width: 66px !important;
    height: 66px !important;
  }

  .mood-slider-shell.has-overflow .mood span {
    font-size: 6.5px !important;
  }
}

/* Browser-safe slider sizing: avoid unsupported division inside calc(). */
.mood-slider-track > .mood {
  flex: 0 0 calc(16.6667% - 6.667px) !important;
  width: calc(16.6667% - 6.667px) !important;
  min-width: calc(16.6667% - 6.667px) !important;
  max-width: calc(16.6667% - 6.667px) !important;
}

@media (max-width: 700px) {
  .mood-slider-shell.has-overflow .mood-slider-track > .mood {
    flex: 0 0 calc(25% - 7.5px) !important;
    width: calc(25% - 7.5px) !important;
    min-width: calc(25% - 7.5px) !important;
    max-width: calc(25% - 7.5px) !important;
  }

  .mood-slider-shell.has-overflow .mood img {
    display: block !important;
    width: min(76px, 100%) !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 50% !important;
  }

  .mood-slider-shell.has-overflow .mood span {
    display: block !important;
    width: 100%;
    min-height: 28px;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .mood-slider-shell.has-overflow .mood-slider-track > .mood {
    flex-basis: calc(25% - 6px) !important;
    width: calc(25% - 6px) !important;
    min-width: calc(25% - 6px) !important;
    max-width: calc(25% - 6px) !important;
  }

  .mood-slider-shell.has-overflow .mood img {
    width: min(66px, 100%) !important;
  }
}

@media (max-width: 700px) {
  .mood-slider-shell.has-overflow {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .mood-slider-shell.has-overflow .mood-slider-track {
    box-sizing: border-box !important;
    width: calc(100vw - 112px) !important;
    min-width: calc(100vw - 112px) !important;
    max-width: calc(100vw - 112px) !important;
    margin: 0 auto !important;
  }

  .mood-slider-shell.has-overflow .mood-slider-track > .mood {
    box-sizing: border-box !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
  }

  .mood-slider-shell.has-overflow .mood img {
    min-width: 54px !important;
    min-height: 54px !important;
  }
}

@media (max-width: 390px) {
  .mood-slider-shell.has-overflow .mood-slider-track {
    width: calc(100vw - 104px) !important;
    min-width: calc(100vw - 104px) !important;
    max-width: calc(100vw - 104px) !important;
  }

  .mood-slider-shell.has-overflow .mood img {
    min-width: 50px !important;
    min-height: 50px !important;
  }
}

/* ==========================================================================
   PRICE AND PRODUCT SECTIONS
   ========================================================================== */
.price-section {
  background: #faf7f2;
}

.best-sellers {
  background: #fff;
}

.commerce-heading {
  text-align: center;
  margin-bottom: 25px;
}

.commerce-heading h2 {
  margin: 0;
  color: #9b1e46;
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 600;
  line-height: 1.2;
}

.commerce-heading p {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.commerce-heading-row {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: left;
}

.commerce-heading-row > a {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9b1e46;
}

.price-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-color: #c8a96a transparent;
  scrollbar-width: thin;
  padding: 5px 4px 16px;
}

/* Hide preview reviews whenever real review markup is present. */
.review-track:has(.review:not([data-placeholder])) .review[data-placeholder] {
  display: none;
}

/* Placeholder content is disabled. Add only real dynamic cards without data-placeholder. */
.review[data-placeholder],
.insta-card[data-placeholder] {
  display: none !important;
}

.price-track::-webkit-scrollbar {
  height: 5px;
}

.price-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c8a96a;
}

/* Hide preview cards whenever real cards are added to this track. */
.price-track:has(.price-card:not([data-placeholder]))
  .price-card[data-placeholder] {
  display: none;
}

.price-card {
  flex: 0 0 calc((100% - 72px) / 5);
  min-width: calc((100% - 72px) / 5);
  scroll-snap-align: start;
  text-align: center;
  color: #1f1f1f;
}

.price-card img {
  display: block;
  width: 138px !important;
  height: 138px !important;
  margin: 0 auto 13px;
  border-radius: 50%;
  object-fit: cover !important;
  object-position: center top !important;
  border: 4px solid #fff;
  box-shadow:
    0 0 0 1px #e8d6b0,
    0 10px 22px rgba(155, 30, 70, 0.12);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}

.price-card:hover img {
  transform: translateY(-5px) scale(1.03);
  box-shadow:
    0 0 0 1px #c8a96a,
    0 16px 28px rgba(155, 30, 70, 0.18);
}

.price-card strong {
  display: block;
  font-size: 12px;
  color: #9b1e46;
}

.price-card span {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  color: #777;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid #efe8e1;
  border-radius: 8px;
  background: #fff;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(31, 31, 31, 0.11);
}

.product-image {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: #f5efe7;
}

.product-image > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transition: transform 0.5s;
}

.product-card:hover .product-image > img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 8px;
  background: #9b1e46;
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.wishlist-button {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  padding: 0 !important;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #c8a96a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: 0.25s;
}

.wishlist-button:after {
  display: none !important;
}

.wishlist-button svg {
  width: 17px;
}

.wishlist-button:hover,
.wishlist-button.is-selected {
  background: #9b1e46;
  color: #fff;
  transform: scale(1.06);
}

.product-info {
  padding: 14px;
}

.product-info h3 {
  margin: 0;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.product-info > p {
  margin-top: 4px;
  color: #777;
  font-size: 9px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 13px;
}

.product-bottom > strong {
  color: #9b1e46;
  font-size: 14px;
}

.add-cart {
  padding: 8px 10px;
  border: 1px solid #9b1e46;
  color: #9b1e46;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: 0.25s;
}

.add-cart:hover,
.add-cart.is-added {
  background: #9b1e46;
  color: #fff;
}

@media (max-width: 900px) {
  .price-track {
    gap: 12px;
  }

  .price-card img {
    width: 110px !important;
    height: 110px !important;
  }

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

@media (max-width: 700px) {
  .commerce-heading {
    margin-bottom: 16px;
  }

  .commerce-heading h2 {
    font-size: 1.3rem;
  }

  .commerce-heading p {
    font-size: 7px;
  }

  .commerce-heading-row {
    align-items: center;
  }

  .price-track {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .price-track::-webkit-scrollbar {
    display: none;
  }

  .price-card {
    flex: 0 0 calc(25% - 7px);
    min-width: calc(25% - 7px);
    scroll-snap-align: start;
  }

  .price-card img {
    width: min(72px, 100%) !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    margin-bottom: 8px;
  }

  .price-card strong {
    font-size: 7px;
  }

  .price-card span {
    font-size: 6px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-image {
    height: 220px;
  }

  .product-info {
    padding: 9px;
  }

  .product-info h3 {
    font-size: 9px;
  }

  .product-info > p {
    font-size: 7px;
  }

  .product-bottom {
    display: block;
    margin-top: 8px;
  }

  .product-bottom > strong {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
  }

  .add-cart {
    width: 100%;
    padding: 7px 4px;
    font-size: 7px;
  }

  .wishlist-button {
    width: 29px;
    height: 29px;
  }

  .product-badge {
    font-size: 6px;
  }

  .commerce-heading-row > a {
    font-size: 8px;
  }
}

@media (max-width: 390px) {
  .product-image {
    height: 195px;
  }

  .price-card img {
    width: min(64px, 100%) !important;
  }
}

/* Best sellers: four-column grid with balanced square product imagery. */
.best-sellers .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.best-sellers .product-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.best-sellers .commerce-heading-row > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #9b1e46;
  border-radius: 4px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.best-sellers .commerce-heading-row > a:hover {
  background: #9b1e46;
  color: #fff;
  transform: translateY(-2px);
}

.mobile-view-all {
  display: none;
}

@media (max-width: 900px) {
  .best-sellers .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Final compact cart sizing: keep the complete checkout visible with minimal scrolling. */
.cart-drawer-header {
  min-height: 50px;
  padding: 7px 14px;
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.cart-drawer-header .eyebrow {
  margin-bottom: 3px;
  font-size: 6px;
}

#closeCart {
  width: 30px;
  height: 30px;
}

.cart-gift-progress {
  padding: 7px 14px 8px;
}

.cart-gift-progress > p {
  margin: 0 0 5px;
  font-size: 9px;
}

.cart-progress-track {
  height: 5px;
}

.cart-progress-labels {
  margin-top: 4px;
  font-size: 7px;
}

.cart-items {
  padding: 9px 14px;
}

.cart-item {
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 9px;
  padding-bottom: 8px;
}

.cart-item > img {
  width: 62px;
  height: 78px;
}

.cart-item-copy h3 {
  margin-bottom: 3px;
  font-size: 10px;
}

.cart-item-copy p {
  margin-bottom: 4px;
  font-size: 8px;
}

.cart-item-price {
  font-size: 11px;
}

.cart-quantity {
  margin-top: 7px;
}

.cart-quantity button,
.cart-quantity output {
  width: 28px;
  height: 27px;
}

.cart-remove {
  right: 2px;
  bottom: 8px;
}

footer.cart-summary {
  padding: 8px 14px 9px;
}

.cart-coupons {
  position: relative;
  margin-bottom: 6px;
  padding-bottom: 7px;
}

.cart-coupon-heading {
  margin-bottom: 5px;
}

.cart-coupon-heading span {
  font-size: 6px;
}

.cart-coupon-heading h3,
.cart-price-details > h3 {
  font-size: 12px;
}

.cart-coupon-list {
  gap: 6px;
  padding: 1px 0 3px;
  scrollbar-width: none;
}

.cart-coupon-list::-webkit-scrollbar {
  display: none;
}

.cart-coupon-card {
  flex-basis: calc((100% - 6px) / 2) !important;
  min-width: calc((100% - 6px) / 2);
  min-height: 56px;
  padding: 7px 40px 6px 8px;
}

.cart-coupon-card strong {
  font-size: 9px;
}

.cart-coupon-card p {
  margin-top: 2px;
  font-size: 6.5px;
  line-height: 1.3;
}

.cart-coupon-action {
  top: 7px;
  right: 7px;
  font-size: 6px;
}

.coupon-nav {
  position: absolute;
  z-index: 3;
  top: 54px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  background: #fcfbf8;
  color: #9b1e46;
  box-shadow: 0 3px 9px rgba(66, 47, 18, 0.09);
}

.coupon-prev {
  left: -11px;
}

.coupon-next {
  right: -11px;
}

.coupon-nav svg {
  width: 12px;
  height: 12px;
}

.coupon-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.cart-price-details > h3 {
  margin-bottom: 3px;
}

.cart-price-details > div {
  padding: 2px 0;
  font-size: 9px;
}

.cart-price-details > div > strong {
  font-size: 9px;
}

.cart-price-details .cart-total-row {
  margin-top: 3px;
  padding-top: 6px;
  font-size: 12px;
}

.cart-price-details .cart-total-row > strong {
  font-size: 15px;
}

.cart-checkout {
  min-height: 40px;
  margin-top: 7px;
  padding: 7px 15px;
}

.cart-summary > p {
  margin-top: 6px;
  font-size: 6.5px;
}

@media (max-width: 700px) {
  .cart-drawer-header {
    min-height: 48px;
    padding: 6px 12px;
  }

  .cart-gift-progress {
    padding: 6px 12px 7px;
  }

  .cart-items {
    padding: 8px 12px;
  }

  footer.cart-summary {
    padding: 7px 12px 8px;
  }

  .cart-coupon-card {
    flex-basis: calc((100% - 6px) / 2) !important;
    min-width: calc((100% - 6px) / 2);
  }
}

/* Extra-compact cart composition and coupon navigation. */
.cart-drawer-header {
  min-height: 52px;
  padding: 8px 16px;
}

.cart-drawer-header h2 {
  font-size: 18px;
}

#closeCart {
  width: 32px;
  height: 32px;
}

.cart-gift-progress {
  padding: 8px 16px 9px;
}

.cart-gift-progress > p {
  margin-bottom: 6px;
  font-size: 9px;
}

.cart-progress-labels {
  margin-top: 5px;
  font-size: 7px;
}

.cart-progress-track {
  height: 5px;
}

.cart-items {
  padding: 11px 16px;
}

.cart-item {
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 10px;
  padding-bottom: 10px;
}

.cart-item > img {
  width: 66px;
  height: 88px;
}

.cart-item-copy h3 {
  font-size: 11px;
}

.cart-quantity {
  grid-template-columns: 27px 33px 27px;
  margin-top: 8px;
}

.cart-quantity button,
.cart-quantity output {
  height: 25px;
}

.cart-remove {
  bottom: 10px;
}

footer.cart-summary {
  padding: 9px 16px 11px;
}

.cart-coupons {
  position: relative;
  margin-bottom: 7px;
  padding-bottom: 7px;
}

.cart-coupon-heading {
  margin-bottom: 5px;
}

.cart-coupon-heading h3 {
  font-size: 12px;
}

.cart-coupon-list {
  gap: 6px;
  padding: 1px 0 4px;
  scrollbar-width: none;
}

.cart-coupon-list::-webkit-scrollbar {
  display: none;
}

.cart-coupon-card {
  flex-basis: calc((100% - 6px) / 2) !important;
  min-width: calc((100% - 6px) / 2);
  min-height: 58px;
  height: 58px;
  padding: 6px 42px 6px 8px;
}

.cart-coupon-card strong {
  font-size: 9px;
}

.cart-coupon-card p {
  margin-top: 2px;
  font-size: 6.5px;
  line-height: 1.35;
}

.cart-coupon-action {
  top: 6px;
  right: 7px;
  font-size: 6.5px;
}

.coupon-nav {
  position: absolute;
  z-index: 4;
  top: 66px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  background: #ffffff;
  color: #9b1e46;
  box-shadow: 0 4px 10px rgba(155, 30, 70, 0.12);
}

.coupon-nav svg {
  width: 13px;
}

.coupon-prev {
  left: -9px;
}

.coupon-next {
  right: -9px;
}

.coupon-nav:disabled {
  opacity: 0.3;
}

.cart-price-details > h3 {
  margin-bottom: 3px;
  font-size: 12px;
}

.cart-price-details > div {
  padding: 2px 0;
  font-size: 9px;
}

.cart-price-details .cart-total-row {
  margin-top: 3px;
  padding-top: 7px;
  font-size: 13px;
}

.cart-price-details .cart-total-row > strong {
  font-size: 15px;
}

.cart-checkout {
  min-height: 41px;
  margin-top: 8px;
}

.cart-summary > p {
  margin-top: 6px;
}

@media (max-width: 700px) {
  .cart-drawer-header {
    min-height: 48px;
    padding: 7px 12px;
  }

  .cart-gift-progress {
    padding: 7px 12px 8px;
  }

  .cart-items {
    padding: 10px 12px;
  }

  footer.cart-summary {
    padding: 8px 12px 10px;
  }

  .cart-coupon-card {
    flex-basis: calc((100% - 6px) / 2) !important;
    min-width: calc((100% - 6px) / 2);
  }
}

@media (max-width: 700px) {
  .best-sellers .commerce-heading-row > a {
    font-size: 0 !important;
  }

  .best-sellers .commerce-heading-row > a::after {
    content: "VIEW MORE";
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #9b1e46;
  }
}

/* @media (max-width: 700px) {
  .best-sellers .commerce-heading-row > a {
    min-height: 30px;
    padding: 0 10px;
    font-size: 7px;
  }
} */

/* ==========================================================================
   CUSTOMER REVIEW CARDS
   ========================================================================== */
/* Customer testimonial cards inspired by the supplied review reference. */
section:has(.review-shell) {
  background: #fff;
}

.review-shell {
  max-width: 1240px !important;
  padding: 0 50px !important;
}

.review-track {
  gap: 22px !important;
  padding: 8px 2px 18px !important;
  align-items: stretch;
}

.review-track .review,
body .review-shell .review-track .review {
  flex: 0 0 calc((100% - 44px) / 3) !important;
  min-width: calc((100% - 44px) / 3) !important;
  display: flex !important;
  flex-direction: column;
  padding: 14px !important;
  text-align: left !important;
  background: #faf7f2 !important;
  border: 1px solid #e8d6b0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  color: #555 !important;
}

.review-track .review-avatar,
body .review-shell .review-avatar {
  order: -1;
  display: block !important;
  float: none !important;
  width: 100% !important;
  height: 390px !important;
  margin: 0 0 18px !important;
  border: 0 !important;
  border-radius: 15px !important;
  object-fit: cover !important;
  object-position: center !important;
  box-shadow: none !important;
}

.review-track .review-copy,
body .review-shell .review p {
  min-height: 66px;
  margin: 0 0 18px !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  text-align: left !important;
  color: #333 !important;
}

.review-copy a {
  color: #9b1e46;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.review-date {
  display: block;
  margin-bottom: 16px;
  color: #777;
  font-size: 11px;
  font-style: italic;
}

.review-track .review b,
body .review-shell .review b {
  display: block;
  margin: 0 0 10px !important;
  font-family: Poppins, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-align: left !important;
  color: #1f1f1f !important;
}

.review-track .review-stars,
body .review-shell .review .review-stars {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  margin-top: auto !important;
  color: #f5b400 !important;
  font-size: 17px !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  text-align: left !important;
}

.review-arrow {
  width: 44px !important;
  height: 44px !important;
  background: #9b1e46 !important;
  border-color: #9b1e46 !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(155, 30, 70, 0.18);
}

.review-prev {
  left: 26px !important;
}

.review-next {
  right: 26px !important;
}

@media (max-width: 800px) {
  .review-track .review,
  body .review-shell .review-track .review {
    flex-basis: calc((100% - 18px) / 2) !important;
    min-width: calc((100% - 18px) / 2) !important;
  }
}

@media (max-width: 560px) {
  .review-shell,
  body .review-shell {
    width: 100%;
    padding: 0 22px !important;
  }

  .review-track,
  body .review-shell .review-track {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto !important;
  }

  .review-track .review,
  .review-track .review:nth-child(n + 4),
  body .review-shell .review-track .review,
  body .review-shell .review-track .review:nth-child(n + 4) {
    display: flex !important;
    flex: 0 0 100% !important;
    min-width: 100% !important;
    padding: 12px !important;
  }

  .review-track .review-avatar,
  body .review-shell .review-avatar {
    width: 100% !important;
    height: min(112vw, 475px) !important;
    margin-bottom: 15px !important;
    border-radius: 14px !important;
  }

  .review-track .review-copy,
  body .review-shell .review p {
    min-height: 0;
    margin-bottom: 14px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .review-arrow,
  body .review-shell .review-arrow {
    display: grid !important;
    width: 38px !important;
    height: 38px !important;
  }

  .review-prev {
    left: 4px !important;
  }

  .review-next {
    right: 4px !important;
  }

  .review-view-all,
  body .review-view-all {
    display: block !important;
  }
}

/* ==========================================================================
   BOOTSTRAP 4.3.1 LAYOUT AND FINAL OVERRIDES
   ========================================================================== */
/*
 * Bootstrap 4.3.1 migration layer.
 * Bootstrap supplies the framework/reset; these component rules retain the
 * approved Siakari composition using Bootstrap and component styles.
 */
:root {
  --siakari-burgundy: #9b1e46;
  --siakari-ivory: #faf7f2;
  --siakari-beige: #f5efe7;
  --siakari-gold: #c8a96a;
  --siakari-ink: #1f1f1f;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--siakari-ivory);
  color: var(--siakari-ink);
  font-family: Poppins, Arial, sans-serif;
}

a {
  color: inherit;
}

a:hover {
  color: var(--siakari-burgundy);
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
}

.siakari-serif {
  font-family: "Cormorant Garamond", Georgia, serif !important;
}

/* Bootstrap-style shared containers used by the existing components. */
.siakari-container-xl {
  width: 100%;
  max-width: 1280px;
}

.siakari-container-lg {
  width: 100%;
  max-width: 1152px;
}

.siakari-container-md {
  width: 100%;
  max-width: 1024px;
}

.siakari-container-sm {
  width: 100%;
  max-width: 896px;
}

.siakari-container-wide {
  width: 100%;
  max-width: 1400px;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Header / Bootstrap navbar composition. */
body > header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.header-logo {
  width: 135px !important;
  height: 52px !important;
  flex: 0 0 135px !important;
}

.header-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

body > header nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions button {
  position: relative;
  display: inline-grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  outline: 0;
  background: transparent !important;
  color: var(--siakari-ink);
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
}

.header-actions button:hover,
.header-actions button:active,
.header-actions button:focus {
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.header-actions button:focus-visible {
  outline: 2px solid var(--siakari-burgundy);
  outline-offset: 4px;
}

#cartButton > span,
#headerWishlist > span {
  position: absolute !important;
  top: -9px !important;
  right: -10px !important;
  display: flex !important;
  width: 18px !important;
  min-width: 18px;
  height: 18px !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 2px solid #fcfbf8;
  border-radius: 50%;
  background: #9b1e46;
  color: #ffffff;
  font-size: 9px !important;
  font-weight: 600;
  line-height: 1 !important;
  text-align: center;
  z-index: 2;
}

#menu {
  display: none;
}

.site-header
  .header-actions
  > button:not(#menu) {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.site-header
  .header-actions
  > button:not(#menu)
  > .bi {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
}

.site-header
  .header-actions
  > #profileButton {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.site-header #profileButton > .bi {
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 28px;
}

#mobileNav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 64px;
  z-index: 1020;
  padding: 24px;
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

#mobileNav:not(.d-none) {
  display: block;
}

#mobileNav a {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
}

/* Keep the search drawer below the sticky header and remove Bootstrap's input chrome. */
.search-overlay {
  top: 64px !important;
  z-index: 1025 !important;
}

.search-input-wrap input {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.search-input-wrap input:focus {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* Generic section spacing formerly supplied by utility classes. */
main > section:not(.hero) {
  box-sizing: border-box;
}

#collections,
#artisans {
  padding: 48px 20px;
}

.artisan-story {
  padding: 56px 24px;
}

section:has(.review-shell) {
  padding: 48px 20px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

section:has(.step) {
  padding: 40px 20px;
  text-align: center;
}

.mood-heading,
.fabric-heading,
.commerce-heading {
  text-align: center;
}

.price-section,
.best-sellers,
.fabric-section,
.press {
  padding: 40px 20px;
}

.instagram {
  padding: 32px 20px;
}

/* Hero. */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-copy {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Luxury motion for each hero carousel action. */
.hero-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-right: 42px !important;
  border: 1px solid rgba(232, 214, 176, 0.55);
  box-shadow: 0 8px 22px rgba(155, 30, 70, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease !important;
}

.hero-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -35%;
  left: -45%;
  width: 28%;
  height: 170%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.34),
    transparent
  );
  transform: skewX(-20deg);
  animation: heroCtaShine 4.5s ease-in-out infinite;
}

.hero-cta::after {
  content: "→";
  position: absolute;
  right: 17px;
  top: 50%;
  color: #e8d6b0;
  font-size: 17px;
  line-height: 1;
  transform: translateY(-53%);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.hero-slide.is-active .hero-cta {
  animation:
    heroCtaEntrance 0.7s 0.65s both,
    heroCtaGlow 2.8s 1.5s ease-in-out infinite;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: #7f1739 !important;
  transform: translateY(-4px) scale(1.025) !important;
  box-shadow:
    0 15px 32px rgba(155, 30, 70, 0.38),
    0 0 0 3px rgba(200, 169, 106, 0.16) !important;
}

.hero-cta:hover::after,
.hero-cta:focus-visible::after {
  color: #fff;
  transform: translate(5px, -53%);
}

@keyframes heroCtaEntrance {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCtaGlow {
  0%,
  100% {
    box-shadow: 0 8px 22px rgba(155, 30, 70, 0.22);
  }

  50% {
    box-shadow:
      0 11px 28px rgba(155, 30, 70, 0.4),
      0 0 0 3px rgba(200, 169, 106, 0.1);
  }
}

@keyframes heroCtaShine {
  0%,
  58% {
    left: -45%;
    opacity: 0;
  }

  63% {
    opacity: 1;
  }

  82%,
  100% {
    left: 125%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .hero-cta,
  .hero-cta::before {
    animation: none;
  }
}

/* Trust strip grid. */
.trust-section {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.trust-section > .trust-slider {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  row-gap: 20px;
  padding: 24px 20px;
}

/* Collections and artisan grids. */
#collections > .siakari-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.artisan-story > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
  max-width: 1152px;
  margin: auto;
}

.artisan-story > div > div:first-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.artisan-story .portrait {
  height: 320px;
  border-radius: 0;
}

.artisan-story > div > div:last-child > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 32px;
  text-align: center;
}

#artisans > div[data-conditional-slider] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

/* Review base before the carousel script enhances it. */
section:has(.review) > .siakari-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 28px;
}

/* Once JavaScript enhances the reviews, the carousel owns the layout. */
section:has(.review-shell) > .review-shell {
  display: block;
  width: 100%;
  margin-top: 28px;
}

/* Process, mood, fabric and press layouts. */
section:has(.step) > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

[data-mood-slider] {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  max-width: 1024px;
  margin: 24px auto 0;
}

[data-conditional-slider="fabrics"] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1152px;
  margin: 24px auto 80px;
}

.stats-strip > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.press > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.press > div > div {
  text-align: center;
}

.press > div > div:first-child > div {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.press > div > div:last-child {
  height: 144px;
  background: url("assets/hero.png") 55% 55% / cover;
}

.instagram > div > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Footer sizing formerly supplied by utility classes. */
.reference-footer {
  padding: 44px 48px 20px;
}

.footer-brand > div {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

.legacy-footer {
  display: none !important;
}

@media (max-width: 991.98px) {
  body > header {
    padding: 0 20px;
  }

  body > header nav {
    display: none;
  }

  #menu {
    display: inline-grid;
  }

  .hero {
    height: 520px;
  }

  .trust-section > .trust-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #collections > .siakari-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .artisan-story > div {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #artisans > div[data-conditional-slider] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body > header {
    min-height: 64px;
  }

  .header-logo {
    width: 105px !important;
    height: 44px !important;
    flex-basis: 105px !important;
  }

  .search-overlay {
    top: 60px !important;
  }

  #collections,
  #artisans,
  .artisan-story,
  section:has(.review-shell),
  section:has(.step),
  .price-section,
  .best-sellers,
  .fabric-section,
  .press {
    padding-left: 10px;
    padding-right: 10px;
  }

  #collections > .siakari-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  #collections > .siakari-grid > :last-child {
    grid-column: span 2;
  }

  .artisan-story > div > div:first-child {
    grid-template-columns: 115px 1fr;
    gap: 14px;
  }

  #artisans > div[data-conditional-slider] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  [data-mood-slider] {
    display: flex;
  }

  [data-conditional-slider="fabrics"] {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .stats-strip {
    padding: 12px 5px;
  }

  .stats-strip > div {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .instagram {
    padding: 16px 10px;
  }

  .reference-footer {
    padding: 20px 10px 10px;
  }
}

/* Readable mobile footer composition. */
@media (max-width: 700px) {
  body .reference-footer {
    padding: 30px 18px 16px !important;
  }

  body .reference-footer .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px 14px !important;
    align-items: start !important;
  }

  body .reference-footer .footer-grid > div {
    display: flex !important;
    min-width: 0;
    grid-column: auto !important;
    flex-direction: column;
    align-items: flex-start;
  }

  body .reference-footer .footer-grid > div:nth-child(4) {
    display: flex !important;
  }

  body .reference-footer .footer-brand {
    grid-column: 1 / -1 !important;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  body .reference-footer .footer-brand > div {
    font-size: 22px !important;
    line-height: 1.2;
    letter-spacing: 0.04em;
  }

  body .reference-footer .footer-brand > p {
    margin: 10px 0 0 !important;
    font-size: 10px !important;
    line-height: 1.7 !important;
  }

  body .reference-footer .socials {
    display: flex !important;
    flex-direction: row !important;
    gap: 17px !important;
    margin-top: 15px !important;
  }

  body .reference-footer .socials a {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #ffffff;
    font-size: 16px;
  }

  body .reference-footer .footer-column > b {
    display: block;
    margin-bottom: 10px !important;
    color: #ffffff;
    font-size: 11px !important;
    line-height: 1.3;
    letter-spacing: 0.06em;
  }

  body .reference-footer .footer-column > a {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 10px !important;
    line-height: 1.5 !important;
  }

  body .reference-footer .contact-column {
    grid-column: 1 / -1 !important;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  body .reference-footer .company-name {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 11px !important;
    line-height: 1.5 !important;
  }

  body .reference-footer .contact-column > p {
    display: grid !important;
    width: 100%;
    gap: 9px;
    margin: 0;
  }

  body .reference-footer .contact-column > p > span {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 10px !important;
    line-height: 1.55 !important;
  }

  body .reference-footer .contact-column svg {
    width: 15px !important;
    height: 15px !important;
    flex: 0 0 15px;
    margin-top: 1px;
  }

  body .reference-footer .payment-column {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-column: 1 / -1 !important;
    gap: 10px !important;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  body .reference-footer .payment-column > b,
  body .reference-footer .payment-badges,
  body .reference-footer .secure-payment {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  body .reference-footer .payment-badges {
    display: grid !important;
    width: 100%;
    max-width: 300px;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  body .reference-footer .payment-badges > span {
    height: 34px !important;
    font-size: 10px !important;
    border-radius: 4px;
  }

  body .reference-footer .secure-payment {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 4px !important;
  }

  body .reference-footer .secure-payment > svg {
    width: 38px !important;
    height: 38px !important;
    padding: 7px;
  }

  body .reference-footer .secure-payment strong {
    font-size: 10.5px !important;
  }

  body .reference-footer .secure-payment small {
    font-size: 8px !important;
  }

  body .reference-footer .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 8px !important;
    margin-top: 24px !important;
    padding-top: 14px !important;
    font-size: 8px !important;
    line-height: 1.5;
    text-align: center !important;
  }

  body .reference-footer .footer-bottom > span,
  body .reference-footer .footer-bottom > span:last-child {
    width: 100%;
    text-align: center !important;
    white-space: normal !important;
  }
}

@media (max-width: 380px) {
  body .reference-footer {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body .reference-footer .footer-grid {
    gap: 22px 9px !important;
  }

  body .reference-footer .footer-column > a {
    font-size: 9px !important;
  }
}

@media (max-width: 700px) {
  body .reference-footer .contact-column a[href^="tel:"],
  body .reference-footer .contact-column a[href^="mailto:"] {
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 500;
    line-height: 1.5 !important;
  }

  body .reference-footer .payment-column {
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(120px, 0.8fr) !important;
    column-gap: 14px !important;
    row-gap: 10px !important;
    align-items: center !important;
  }

  body .reference-footer .payment-column > b {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    margin-bottom: 0 !important;
  }

  body .reference-footer .payment-badges {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100%;
    max-width: none;
    gap: 5px !important;
  }

  body .reference-footer .payment-badges > span {
    min-width: 0;
    height: 31px !important;
    padding: 0 3px;
    font-size: 8px !important;
  }

  body .reference-footer .secure-payment {
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: center !important;
    margin: 0 !important;
    gap: 7px;
  }

  body .reference-footer .secure-payment > svg {
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px;
    padding: 6px;
  }

  body .reference-footer .secure-payment strong {
    font-size: 8px !important;
    white-space: nowrap;
  }

  body .reference-footer .secure-payment small {
    font-size: 7px !important;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  body .reference-footer .payment-column {
    grid-template-columns: minmax(0, 1.4fr) minmax(108px, 0.8fr) !important;
    column-gap: 8px !important;
  }

  body .reference-footer .secure-payment strong {
    font-size: 7px !important;
  }

  body .reference-footer .secure-payment small {
    font-size: 6px !important;
  }
}

/* Precisely aligned loom-to-closet journey. */
section:has(.step) > div {
  display: grid !important;
  grid-template-columns: minmax(90px, 1fr) 42px minmax(90px, 1fr) 42px minmax(
      90px,
      1fr
    ) 42px minmax(90px, 1fr) 42px minmax(90px, 1fr);
  width: 100%;
  max-width: 960px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

section:has(.step) .step {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 104px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

section:has(.step) .step svg {
  width: 32px;
  height: 32px;
  color: #9b1e46 !important;
  stroke: currentColor;
}

section:has(.step) .step span {
  min-height: 32px;
  color: #1f1f1f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

section:has(.step) .flow-arrow {
  display: block !important;
  width: 42px;
  min-width: 42px;
  margin: 0;
  color: #9b1e46 !important;
  font-family: Arial, sans-serif;
  font-size: 40px !important;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  animation: processArrowMove 1.8s ease-in-out infinite;
}

@keyframes processArrowMove {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.65;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

@media (max-width: 700px) {
  section:has(.step) > div {
    grid-template-columns: minmax(48px, 1fr) 18px minmax(48px, 1fr) 18px minmax(
        48px,
        1fr
      ) 18px minmax(48px, 1fr) 18px minmax(48px, 1fr);
    gap: 2px;
  }

  section:has(.step) .step {
    min-height: 74px;
    padding: 3px 1px;
    gap: 5px;
  }

  section:has(.step) .step svg {
    width: 23px;
    height: 23px;
    padding: 3px;
  }

  section:has(.step) .step span {
    min-height: 25px;
    font-size: 6.5px;
    line-height: 1.35;
  }

  section:has(.step) .flow-arrow {
    width: 18px;
    min-width: 18px;
    font-size: 25px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  section:has(.step) .flow-arrow {
    animation: none;
  }
}

/* Conditional product carousel: the original grid remains untouched until needed. */
.product-slider-shell {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.product-slider-shell.has-overflow .product-grid {
  display: flex !important;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-slider-shell.has-overflow .product-grid::-webkit-scrollbar {
  display: none;
}

.product-slider-shell.has-overflow .product-card {
  flex: 0 0
    calc(
      (100% - (var(--visible-products) - 1) * 16px) / var(--visible-products)
    );
  min-width: calc(
    (100% - (var(--visible-products) - 1) * 16px) / var(--visible-products)
  );
  scroll-snap-align: start;
}

.product-slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  background: #ffffff;
  color: #9b1e46;
  box-shadow: 0 7px 18px rgba(155, 30, 70, 0.14);
  transform: translateY(-50%);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.product-slider-arrow svg {
  width: 18px;
}

.product-slider-prev {
  left: -20px;
}

.product-slider-next {
  right: -20px;
}

.product-slider-arrow:hover:not(:disabled) {
  background: #9b1e46;
  color: #ffffff;
}

.product-slider-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.product-slider-arrow[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .product-slider-shell.has-overflow .product-grid {
    gap: 8px;
  }

  .product-slider-shell.has-overflow .product-card {
    flex-basis: calc((100% - 8px) / 2);
    min-width: calc((100% - 8px) / 2);
  }

  .product-slider-arrow {
    width: 34px;
    height: 34px;
  }

  .product-slider-prev {
    left: 3px;
  }

  .product-slider-next {
    right: 3px;
  }
}

/* Two distinct press/story sections. */
.press-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 1px;
  background: #e8d6b0;
  border-top: 1px solid #e8d6b0;
  border-bottom: 1px solid #e8d6b0;
}

.press-row > .press {
  min-width: 0;
  border: 0 !important;
}

.press-row > .press-publications,
.press-row > .saree-story {
  background: #faf7f2 !important;
}

.press-publications {
  padding: 38px 20px !important;
  background: #ffffff !important;
  border-top: 1px solid #efe8e1;
  border-bottom: 1px solid #efe8e1;
}

.press-publications > div,
.press-publications > div > div {
  display: block !important;
  text-align: center;
}

.press-publications > div > div {
  height: auto !important;
  background: none !important;
}

.press-publications h3,
.saree-story h3 {
  margin: 0 !important;
  color: #9b1e46 !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.press-publications p {
  margin: 7px 0 24px !important;
  color: #555;
  font-size: 10px !important;
}

.press-publications .publication-logos {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px !important;
  margin: 0 !important;
}

.publication-logos img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: contain;
  filter: grayscale(1);
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}

.publication-logos img:hover {
  filter: grayscale(0);
  transform: translateY(-2px);
}

.saree-story {
  padding: 42px 20px !important;
  background: #faf7f2 !important;
  border-bottom: 1px solid #efe8e1;
}

.saree-story > div {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.9fr) !important;
  gap: 24px !important;
  align-items: center;
}

.saree-story-copy {
  text-align: left !important;
}

.saree-story-copy p {
  max-width: 520px;
  margin: 12px 0 0 !important;
  color: #555;
  font-size: 13px !important;
  line-height: 1.75 !important;
}

.saree-story > div > .saree-story-image {
  width: 100%;
  height: 210px !important;
  border-radius: 14px;
  background: url("assets/hero.png") 55% 55% / cover no-repeat !important;
  box-shadow: 0 12px 28px rgba(31, 31, 31, 0.1);
}

@media (max-width: 700px) {
  .press-row {
    grid-template-columns: 1fr;
  }

  .press-publications,
  .saree-story {
    padding: 28px 12px !important;
  }

  .press-publications h3,
  .saree-story h3 {
    font-size: 1.15rem !important;
    text-align: center;
  }

  .press-publications p {
    margin-bottom: 18px !important;
    font-size: 8px !important;
  }

  .press-publications .publication-logos {
    gap: 28px !important;
  }

  .publication-logos img {
    height: 48px;
  }

  .saree-story > div {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .saree-story-copy {
    text-align: center !important;
  }

  .saree-story-copy p {
    margin: 8px auto 0 !important;
    font-size: 9px !important;
    line-height: 1.6 !important;
  }

  .saree-story > div > .saree-story-image {
    height: 150px !important;
  }
}

.publication-slider-shell {
  position: relative;
  width: 100%;
}

.publication-slider-shell.has-overflow {
  padding: 0 34px;
}

.publication-slider-shell.has-overflow .publication-logos {
  display: flex !important;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.publication-slider-shell.has-overflow .publication-logos::-webkit-scrollbar {
  display: none;
}

.publication-slider-shell.has-overflow .publication-logos img {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: calc((100% - 36px) / 3);
  scroll-snap-align: start;
}

.publication-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  background: #ffffff;
  color: #9b1e46;
  transform: translateY(-50%);
}

.publication-arrow svg {
  width: 15px;
}

.publication-prev {
  left: 0;
}

.publication-next {
  right: 0;
}

.publication-arrow:disabled {
  opacity: 0.3;
}

.publication-arrow[hidden] {
  display: none !important;
}

/* Keep the responsive banner proportional to its 1265:461 source artwork. */
.hero-slider {
  height: auto !important;
  min-height: 0;
  max-height: none;
  aspect-ratio: 1265 / 461;
}

.hero-slide-link,
.hero-slide picture,
.hero-slide picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide picture img {
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 700px) {
  .publication-slider-shell.has-overflow .publication-logos img {
    flex-basis: calc((100% - 28px) / 2);
    min-width: calc((100% - 28px) / 2);
  }

  .publication-arrow {
    width: 26px;
    height: 26px;
  }
}

/* Larger Instagram identity row. */
.instagram .insta-title {
  color: #1f1f1f;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.3;
}

.instagram .insta-title span,
.instagram .insta-description {
  display: inline !important;
}

.instagram .insta-title-icon {
  width: 23px !important;
  height: 23px !important;
  flex: 0 0 23px !important;
  margin-right: 9px;
}

.instagram .insta-description {
  font-size: 12px !important;
  line-height: 1.5;
}

/* Search-by-colour and popular-tag discovery. */
.discovery-section {
  padding: 44px 20px;
  background: #ffffff;
  border-top: 1px solid #efe8e1;
}

.discovery-section > div {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.discovery-panel {
  padding: 28px;
  border: 1px solid #efe8e1;
  border-radius: 16px;
  background: #faf7f2;
  box-shadow: 0 10px 28px rgba(31, 31, 31, 0.045);
}

.discovery-heading {
  margin-bottom: 22px;
}

.discovery-kicker {
  display: block;
  margin-bottom: 5px;
  color: #c8a96a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.discovery-heading h2 {
  margin: 0;
  color: #9b1e46;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.25;
}

.discovery-heading p {
  margin: 6px 0 0;
  color: #777;
  font-size: 10px;
  line-height: 1.55;
}

.color-chip-grid,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.color-chip,
.tag-cloud .discovery-chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid #e5ded7;
  border-radius: 999px;
  background: #ffffff;
  color: #444;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.color-chip i {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 1px solid rgba(31, 31, 31, 0.13);
  border-radius: 50%;
  background: var(--chip-color);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.color-chip:hover,
.tag-cloud .discovery-chip:hover,
.color-chip:focus-visible,
.tag-cloud .discovery-chip:focus-visible {
  border-color: #9b1e46;
  color: #9b1e46;
  box-shadow: 0 6px 14px rgba(155, 30, 70, 0.09);
  transform: translateY(-2px);
}

.color-chip:focus-visible,
.tag-cloud .discovery-chip:focus-visible {
  outline: 2px solid rgba(155, 30, 70, 0.2);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .discovery-section > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .discovery-section {
    padding: 28px 10px;
  }

  .discovery-panel {
    padding: 20px 14px;
    border-radius: 12px;
  }

  .discovery-heading {
    margin-bottom: 16px;
    text-align: center;
  }

  .discovery-heading h2 {
    font-size: 1.15rem;
  }

  .discovery-heading p {
    font-size: 8px;
  }

  .color-chip-grid,
  .tag-cloud {
    gap: 7px;
    justify-content: center;
  }

  .color-chip,
  .tag-cloud .discovery-chip {
    min-height: 31px;
    padding: 6px 9px;
    font-size: 8px;
  }

  .color-chip i {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }
}

@media (max-width: 700px) {
  .instagram > div > div:first-child {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .instagram .insta-label-row {
    display: flex !important;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px !important;
  }

  .instagram .insta-title {
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap;
  }

  .instagram .insta-title span {
    display: inline !important;
  }

  .instagram .insta-description {
    display: block !important;
    max-width: 220px;
    white-space: normal;
  }

  .instagram .insta-title {
    font-size: 13px !important;
  }

  .instagram .insta-title-icon {
    width: 19px !important;
    height: 19px !important;
    flex-basis: 19px !important;
    margin-right: 6px;
  }

  .instagram .insta-description {
    font-size: 9px !important;
  }
}

/* Refined statistics strip with balanced spacing and light separators. */
.stats-strip {
  position: relative;
  padding: 10px 20px !important;
  background: linear-gradient(
    110deg,
    #86173b 0%,
    #9b1e46 50%,
    #86173b 100%
  ) !important;
  border-top: 1px solid rgba(232, 214, 176, 0.5);
  border-bottom: 1px solid rgba(232, 214, 176, 0.5);
  overflow: hidden;
}

.stats-strip > div {
  max-width: 1120px;
  margin: 0 auto;
  gap: 0 !important;
  align-items: stretch;
}

.stats-strip > div > div {
  position: relative;
  display: flex;
  min-height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 28px !important;
  transition: transform 0.3s ease;
}

.stats-strip > div > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: rgba(255, 255, 255, 0.28) !important;
}

.stats-strip strong {
  display: block;
  margin: 0 0 7px !important;
  color: #e8d6b0 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 2.35rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.stats-strip small {
  display: block;
  color: rgba(255, 255, 255, 0.94) !important;
  font-family: Poppins, Arial, sans-serif;
  font-size: 10px !important;
  font-weight: 500;
  line-height: 1.5 !important;
  letter-spacing: 0.015em;
}

.stats-strip > div > div:hover {
  transform: translateY(-3px);
}

@media (max-width: 700px) {
  .stats-strip {
    padding: 16px 5px !important;
  }

  .stats-strip > div > div {
    min-height: 62px;
    padding: 5px 6px !important;
  }

  .stats-strip > div > div:not(:last-child)::after {
    top: 18%;
    height: 64%;
    background: rgba(255, 255, 255, 0.24) !important;
  }

  .stats-strip strong {
    margin-bottom: 5px !important;
    font-size: 1.25rem !important;
  }

  .stats-strip small {
    font-size: 6.5px !important;
    line-height: 1.4 !important;
  }
}

/* Final shared heading composition: one centered block and one equal content gap. */
#collections .section-head,
#artisans > div:first-child,
section:has(.review) > h2,
section:has(.step) > h2,
.mood-heading,
.price-section .commerce-heading,
.best-sellers .commerce-heading,
.fabric-heading {
  position: relative;
  width: 100%;
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  text-align: center !important;
}

#collections .section-head h2,
#artisans > div:first-child h2,
section:has(.review) > h2,
section:has(.step) > h2,
.mood-heading h2,
.price-section .commerce-heading h2,
.best-sellers .commerce-heading h2,
.fabric-heading h2,
#artisans > div:first-child > p,
.mood-heading > p,
.price-section .commerce-heading p,
.best-sellers .commerce-heading p,
.fabric-heading > p {
  text-align: center !important;
}

.best-sellers .commerce-heading-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.best-sellers .commerce-heading-row > div {
  width: 100%;
  text-align: center;
}

.best-sellers .commerce-heading-row > a,
#collections .section-head > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.best-sellers .commerce-heading-row > a:hover {
  transform: translateY(calc(-50% - 2px));
}

#collections > .siakari-grid,
#artisans > [data-conditional-slider],
#artisans > .conditional-shell,
section:has(.review) > .review-shell,
section:has(.step) > div,
[data-mood-slider],
.mood-slider-shell,
.price-track,
.product-grid,
[data-conditional-slider="fabrics"],
.fabric-section > .conditional-shell {
  margin-top: 0 !important;
}

@media (max-width: 700px) {
  #collections .section-head,
  #artisans > div:first-child,
  section:has(.review) > h2,
  section:has(.step) > h2,
  .mood-heading,
  .price-section .commerce-heading,
  .best-sellers .commerce-heading,
  .fabric-heading {
    margin-bottom: 18px !important;
  }

  .best-sellers .commerce-heading-row > a,
  #collections .section-head > a {
    right: 2px;
  }

  .best-sellers .commerce-heading-row > a {
    display: none;
  }

  .best-sellers .mobile-view-all {
    display: flex;
    width: fit-content;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    margin: 18px auto 0;
    padding: 0 18px;
    border: 1px solid #9b1e46;
    border-radius: 4px;
    color: #9b1e46;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
}

/* Unified typography for all primary shopping and story sections. */
#collections .section-head h2,
#artisans > div:first-child h2,
section:has(.review) > h2,
section:has(.step) > h2,
.mood-heading h2,
.price-section .commerce-heading h2,
.best-sellers .commerce-heading h2,
.fabric-heading h2 {
  margin: 0 !important;
  color: #9b1e46 !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
}

#artisans > div:first-child > p,
.mood-heading > p,
.price-section .commerce-heading p,
.best-sellers .commerce-heading p,
.fabric-heading > p {
  margin: 6px 0 0 !important;
  color: #555555 !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
}

/* Equal vertical rhythm across the primary homepage sections. */
#collections,
#artisans,
section:has(.review),
section:has(.step),
section:has(.mood-heading),
.price-section,
.best-sellers,
.fabric-section {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

#collections > .siakari-grid,
#artisans > [data-conditional-slider],
section:has(.review) > .review-shell,
section:has(.step) > div,
[data-mood-slider],
[data-conditional-slider="fabrics"] {
  margin-top: 0 !important;
}

[data-conditional-slider="fabrics"] {
  margin-bottom: 0 !important;
}

.price-section .commerce-heading,
.best-sellers .commerce-heading,
.fabric-heading {
  margin-bottom: 22px !important;
}

#artisans > [data-conditional-slider] {
  margin-top: 0 !important;
}

@media (max-width: 700px) {
  #collections .section-head h2,
  #artisans > div:first-child h2,
  section:has(.review) > h2,
  section:has(.step) > h2,
  .mood-heading h2,
  .price-section .commerce-heading h2,
  .best-sellers .commerce-heading h2,
  .fabric-heading h2 {
    font-size: 1.15rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.015em !important;
  }

  #artisans > div:first-child > p,
  .mood-heading > p,
  .price-section .commerce-heading p,
  .best-sellers .commerce-heading p,
  .fabric-heading > p {
    margin-top: 4px !important;
    font-size: 7px !important;
    line-height: 1.45 !important;
    letter-spacing: 0.18em !important;
  }

  #collections,
  #artisans,
  section:has(.review),
  section:has(.step),
  section:has(.mood-heading),
  .price-section,
  .best-sellers,
  .fabric-section {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  #collections > .siakari-grid,
  #artisans > [data-conditional-slider],
  section:has(.review) > .review-shell,
  section:has(.step) > div,
  [data-mood-slider],
  [data-conditional-slider="fabrics"] {
    margin-top: 0 !important;
  }

  .price-section .commerce-heading,
  .best-sellers .commerce-heading,
  .fabric-heading {
    margin-bottom: 16px !important;
  }

  #artisans > [data-conditional-slider] {
    margin-top: 0 !important;
  }
}

/* Final mobile footer: simple top-to-bottom reading order. */
@media (max-width: 700px) {
  body .reference-footer .footer-grid {
    display: block !important;
  }

  body .reference-footer .footer-grid > div {
    width: 100%;
  }

  body .reference-footer .footer-brand {
    display: flex !important;
    align-items: center !important;
    padding-bottom: 22px;
    text-align: center;
  }

  body .reference-footer .footer-brand > p {
    width: 100%;
    margin-top: 8px !important;
    font-size: 9px !important;
    line-height: 1.5 !important;
    white-space: nowrap;
  }

  body .reference-footer .footer-brand .socials {
    justify-content: center;
    width: 100%;
    margin-top: 12px !important;
  }

  body
    .reference-footer
    .footer-grid
    > .footer-column:not(.contact-column):not(.payment-column) {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center !important;
    gap: 7px 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  body
    .reference-footer
    .footer-grid
    > .footer-column:not(.contact-column):not(.payment-column)
    > b {
    width: 100%;
    margin: 0 0 4px !important;
  }

  body
    .reference-footer
    .footer-grid
    > .footer-column:not(.contact-column):not(.payment-column)
    > a {
    width: auto;
    margin: 0 !important;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 10px !important;
  }

  body
    .reference-footer
    .footer-grid
    > .footer-column:not(.contact-column):not(.payment-column)
    > a:last-child {
    padding-right: 0;
    border-right: 0;
  }

  body .reference-footer .contact-column,
  body .reference-footer .payment-column {
    margin-top: 0;
    padding: 18px 0 !important;
  }

  body .reference-footer .contact-column {
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  body .reference-footer .payment-column {
    border-top: 0;
  }
}

@media (max-width: 380px) {
  body .reference-footer .footer-brand > p {
    font-size: 9.5px !important;
    letter-spacing: -0.02em;
  }

  body
    .reference-footer
    .footer-grid
    > .footer-column:not(.contact-column):not(.payment-column) {
    gap: 7px 10px;
  }

  body
    .reference-footer
    .footer-grid
    > .footer-column:not(.contact-column):not(.payment-column)
    > a {
    padding-right: 10px;
    font-size: 9px !important;
  }
}

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
body.cart-open {
  overflow: hidden;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}

.cart-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 20, 16, 0.58);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-overlay.is-open .cart-backdrop {
  opacity: 1;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-columns: 38% 62%;
  width: min(920px, 94vw);
  height: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: -18px 0 55px rgba(31, 20, 16, 0.24);
  transform: translateX(102%);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-overlay.is-open .cart-drawer {
  transform: none;
}

.cart-recommendations {
  padding: 30px 24px;
  overflow-y: auto;
  background: #faf7f2;
  border-right: 1px solid #e8d6b0;
}

.cart-section-heading span,
.cart-drawer-header > div > span {
  color: #c8a96a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.cart-section-heading h2,
.cart-drawer-header h2 {
  margin: 4px 0 0;
  color: #9b1e46;
  font-size: 22px;
  font-weight: 600;
}

.cart-recommendation-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.cart-recommendation {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5ded7;
}

.cart-recommendation > img {
  width: 74px;
  height: 96px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-recommendation h3 {
  margin: 2px 0 7px;
  color: #1f1f1f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.cart-recommendation p {
  display: flex;
  gap: 8px;
  margin: 0 0 10px;
  align-items: center;
}

.cart-recommendation del {
  color: #999;
  font-size: 9px;
}

.cart-recommendation strong {
  color: #9b1e46;
  font-size: 12px;
}

.cart-recommend-add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9b1e46;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.cart-recommend-add svg {
  width: 13px;
  transition: transform 0.2s;
}

.cart-recommend-add:hover svg {
  transform: translateX(4px);
}

.cart-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
}

.cart-drawer-header {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  border-bottom: 1px solid #efe8e1;
}

.cart-drawer-header h2 small {
  color: #777;
  font-size: 10px;
  font-weight: 500;
}

#closeCart {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #f5efe7;
  color: #9b1e46;
  font-size: 26px;
  line-height: 1;
}

#closeCart svg {
  width: 20px;
}

.cart-gift-progress {
  padding: 18px 26px 20px;
  background: linear-gradient(100deg, #faf7f2, #f5efe7);
  border-bottom: 1px solid #efe8e1;
}

.cart-gift-progress > p {
  margin: 0 0 12px;
  text-align: center;
  color: #555;
  font-size: 10px;
}

.cart-gift-progress > p strong {
  color: #9b1e46;
}

.cart-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 10px;
  background: #e8d6b0;
}

.cart-progress-track > i {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9b1e46, #c8a96a);
}

.cart-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: #777;
  font-size: 8px;
}

.cart-progress-labels span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart-progress-labels svg {
  width: 14px;
  color: #9b1e46;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 26px;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 15px;
  padding-bottom: 22px;
  border-bottom: 1px solid #efe8e1;
}

.cart-item > img {
  width: 92px;
  height: 122px;
  border-radius: 7px;
  object-fit: cover;
}

.cart-item-copy h3 {
  margin: 2px 0 5px;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.cart-item-copy > span {
  display: block;
  color: #777;
  font-size: 9px;
}

.cart-quantity {
  display: inline-grid;
  grid-template-columns: 30px 38px 30px;
  margin-top: 17px;
  border: 1px solid #e5ded7;
}

.cart-quantity button,
.cart-quantity output {
  display: grid;
  height: 29px;
  place-items: center;
  color: #555;
  font-size: 12px;
}

.cart-quantity output {
  border-right: 1px solid #e5ded7;
  border-left: 1px solid #e5ded7;
}

.cart-quantity button:hover {
  background: #faf7f2;
  color: #9b1e46;
}

.cart-item-price {
  color: #9b1e46;
  font-size: 14px;
  white-space: nowrap;
}

.cart-remove {
  position: absolute;
  right: 0;
  bottom: 22px;
  color: #999;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.cart-remove svg {
  width: 17px;
}

.cart-remove .bi {
  font-size: 17px;
  line-height: 1;
}

.cart-remove:hover {
  color: #9b1e46;
}

footer.cart-summary {
  padding: 20px 26px 22px;
  background: linear-gradient(135deg, #fcfbf8 0%, #f5efe7 100%) !important;
  color: #1f1f1f !important;
  border-top: 2px solid #e8d6b0;
  box-shadow: 0 -10px 26px rgba(109, 31, 44, 0.06);
}

.cart-summary::before {
  display: none !important;
}

.cart-summary .cart-subtotal > span {
  color: #1f1f1f !important;
}

.cart-summary .cart-subtotal small {
  color: #777777 !important;
}

.cart-summary .cart-subtotal > strong {
  color: #9b1e46 !important;
}

.cart-subtotal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cart-subtotal > span {
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 600;
}

.cart-subtotal small {
  display: block;
  max-width: 310px;
  margin-top: 3px;
  color: #777;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.5;
}

.cart-subtotal > strong {
  color: #9b1e46;
  font-size: 17px;
}

.cart-checkout {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 20px;
  background: #9b1e46;
  color: #fff;
  transition:
    background 0.25s,
    transform 0.25s;
}

.cart-checkout:hover {
  background: #7e1739;
  transform: translateY(-2px);
}

.cart-checkout span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: left;
}

.cart-checkout small {
  display: block;
  margin-top: 2px;
  color: #e8d6b0;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.cart-checkout svg {
  width: 18px;
}

.cart-summary > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  color: #777;
  font-size: 7px;
}

.cart-summary > p svg {
  width: 13px;
  color: #2e7d32;
}

.cart-empty {
  flex: 1;
  padding: 70px 25px;
  text-align: center;
}

.cart-empty > svg {
  width: 44px;
  height: 44px;
  color: #c8a96a;
}

.cart-empty h3 {
  margin: 14px 0 5px;
  color: #9b1e46;
  font-size: 20px;
}

.cart-empty p {
  color: #777;
  font-size: 10px;
}

.cart-empty button {
  margin-top: 14px;
  padding: 10px 15px;
  border: 1px solid #9b1e46;
  color: #9b1e46;
  font-size: 8px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .cart-drawer {
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow-y: auto;
  }

  .cart-main {
    order: 1;
    flex: 0 0 auto;
    min-height: 100vh;
  }

  .cart-recommendations {
    order: 2;
    flex: 0 0 auto;
    padding: 25px 16px;
    border-top: 1px solid #e8d6b0;
    border-right: 0;
  }

  .cart-drawer-header {
    min-height: 64px;
    padding: 13px 16px;
  }

  .cart-section-heading h2,
  .cart-drawer-header h2 {
    font-size: 18px;
  }

  .cart-gift-progress {
    padding: 14px 16px 17px;
  }

  .cart-items {
    min-height: 230px;
    padding: 19px 16px;
  }

  .cart-item {
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 11px;
  }

  .cart-item > img {
    width: 78px;
    height: 104px;
  }

  .cart-item-copy h3 {
    font-size: 11px;
  }

  .cart-item-price {
    font-size: 12px;
  }

  .cart-summary {
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding: 16px;
  }

  .cart-recommendation-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .cart-recommendation {
    grid-template-columns: 64px 1fr;
    gap: 9px;
  }

  .cart-recommendation > img {
    width: 64px;
    height: 84px;
  }
}

@media (max-width: 390px) {
  .cart-recommendation-list {
    grid-template-columns: 1fr;
  }

  .cart-subtotal > span {
    font-size: 12px;
  }
}

/* Cart coupons and price details. */
.cart-summary {
  max-height: 58vh;
  overflow-y: auto;
}

.cart-coupons {
  margin-bottom: 17px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8d6b0;
}

.cart-coupon-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.cart-coupon-heading span {
  color: #c8a96a;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.cart-coupon-heading h3,
.cart-price-details > h3 {
  margin: 2px 0 0;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 600;
}

.cart-coupon-heading > svg {
  width: 21px;
  color: #9b1e46;
}

.cart-coupon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.cart-coupon-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 76px;
  padding: 10px 52px 10px 11px;
  border: 1px dashed #c8a96a;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cart-coupon-radio-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.cart-coupon-card::before,
.cart-coupon-card::after {
  content: "";
  position: absolute;
  right: -5px;
  width: 9px;
  height: 9px;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  background: #f5efe7;
}

.cart-coupon-card::before {
  top: 14px;
}

.cart-coupon-card::after {
  bottom: 14px;
}

.cart-coupon-card:hover,
.cart-coupon-card:focus-visible {
  border-color: #9b1e46;
  background: #faf7f2;
  outline: none;
}

.cart-coupon-radio {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  border: 1.5px solid #c8a96a;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 14px;
}

.cart-coupon-radio i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  display: block;
}

.cart-coupon-copy {
  flex: 1;
  min-width: 0;
}

.cart-coupon-card strong {
  color: #9b1e46;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.cart-coupon-card p {
  margin: 4px 0 0;
  color: #777;
  font-size: 7px;
  line-height: 1.45;
}

.cart-coupon-action {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #9b1e46;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cart-coupon-card.is-selected {
  border-style: solid;
  border-color: #2e7d32;
  background: #eefaf0;
  box-shadow: 0 5px 14px rgba(46, 125, 50, 0.08);
}

.cart-coupon-card.is-selected .cart-coupon-radio {
  border-color: #2e7d32;
}

.cart-coupon-card.is-selected .cart-coupon-radio i {
  background: #2e7d32;
}

.cart-coupon-card.is-selected .cart-coupon-action {
  color: #2e7d32;
}

.cart-price-details > h3 {
  margin-bottom: 10px;
}

.cart-price-details > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 5px 0;
  color: #555;
  font-size: 10px;
}

.cart-price-details > div > span small {
  margin-left: 5px;
  border-bottom: 1px dashed #999;
  color: #777;
  font-size: 7px;
}

.cart-price-details > div > strong {
  color: #1f1f1f;
  font-size: 10px;
  font-weight: 500;
}

.cart-price-details .cart-saving {
  color: #2e7d32;
}

.cart-coupon-tools {
  display: flex;
  align-items: center;
}

.cart-coupon-trigger {
  border: 1px solid #9b1e46;
  border-radius: 999px;
  background: #fff;
  color: #9b1e46;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.cart-coupon-trigger:hover,
.cart-coupon-trigger:focus-visible {
  background: #9b1e46;
  color: #fff;
  outline: none;
}

.cart-coupon-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 10px;
}

.cart-coupon-input {
  flex: 1;
  min-width: 0;
  border: 1px solid #d8cfc6;
  border-radius: 8px;
  background: #fff;
  color: #1f1f1f;
  font-size: 10px;
  padding: 8px 10px;
}

.cart-coupon-input:focus {
  border-color: #9b1e46;
  outline: none;
  box-shadow: 0 0 0 3px rgba(155, 30, 70, 0.08);
}

.cart-coupon-inline-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-coupon-inline-apply,
.cart-coupon-inline-remove {
  border: 1px solid #9b1e46;
  border-radius: 6px;
  background: #fff;
  color: #9b1e46;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.cart-coupon-inline-apply {
  background: #9b1e46;
  color: #fff;
}

.cart-coupon-inline-remove {
  border-color: #d6c7b3;
  color: #6d5f53;
}

.coupon-error {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  /* margin-top: 8px; */
  color: red;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.cart-coupon-status {
  color: #9b1e46;
  font-size: 9px;
  font-weight: 600;
}

.cart-coupon-status.is-applied {
  color: #2e7d32;
}

.cart-price-details .cart-total-row {
  margin-top: 7px;
  padding-top: 12px;
  border-top: 1px dashed #d8cfc6;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 700;
}

.cart-price-details .cart-total-row > strong {
  color: #9b1e46;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .cart-summary {
    max-height: none;
  }

  .cart-coupon-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cart-coupon-list::-webkit-scrollbar {
    display: none;
  }

  .cart-coupon-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}

/* Compact, reliably scrollable cart layout. */
.cart-drawer {
  grid-template-columns: 35% 65%;
}

.cart-recommendations {
  height: 100%;
  min-height: 0;
  padding: 22px 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c8a96a transparent;
}

.cart-recommendations::-webkit-scrollbar,
.cart-main::-webkit-scrollbar {
  width: 6px;
}

.cart-recommendations::-webkit-scrollbar-thumb,
.cart-main::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #c8a96a;
}

.cart-section-heading h2 {
  font-size: 19px;
}

.cart-recommendation-list {
  gap: 13px;
  margin-top: 17px;
}

.cart-recommendation {
  grid-template-columns: 62px 1fr;
  gap: 10px;
  padding-bottom: 13px;
}

.cart-recommendation > img {
  width: 62px;
  height: 82px;
}

.cart-recommendation h3 {
  margin-top: 0;
  font-size: 10px;
}

.cart-main {
  display: block;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c8a96a transparent;
}

.cart-drawer-header {
  position: sticky;
  top: 0;
  z-index: 8;
  min-height: 66px;
  padding: 13px 20px;
  background: #fcfbf8;
}

.cart-gift-progress {
  padding: 13px 20px 14px;
}

.cart-gift-progress > p {
  margin-bottom: 8px;
}

.cart-items {
  min-height: 0;
  padding: 18px 20px;
  overflow: visible;
}

.cart-item {
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 12px;
  padding-bottom: 17px;
}

.cart-item > img {
  width: 78px;
  height: 104px;
}

.cart-quantity {
  margin-top: 12px;
}

.cart-remove {
  bottom: 17px;
}

footer.cart-summary {
  position: static;
  max-height: none;
  padding: 15px 20px 17px;
  overflow: visible;
}

.cart-coupons {
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.cart-coupon-heading {
  margin-bottom: 8px;
}

.cart-coupon-list {
  gap: 7px;
}

.cart-coupon-card {
  min-height: 66px;
  padding: 8px 47px 8px 9px;
}

.cart-coupon-card button {
  top: 8px;
  right: 8px;
}

.cart-price-details > h3 {
  margin-bottom: 6px;
}

.cart-price-details > div {
  padding: 3px 0;
}

.cart-price-details .cart-total-row {
  margin-top: 5px;
  padding-top: 9px;
}

.cart-checkout {
  min-height: 46px;
  margin-top: 12px;
}

@media (max-width: 700px) {
  .cart-drawer {
    display: block;
    overflow-y: auto;
  }

  .cart-main {
    height: auto;
    overflow: visible;
  }

  .cart-main,
  .cart-recommendations {
    min-height: 0;
  }

  .cart-recommendations {
    height: auto;
    padding: 20px 14px;
    overflow: visible;
  }

  .cart-drawer-header {
    min-height: 58px;
    padding: 10px 14px;
  }

  .cart-gift-progress {
    padding: 11px 14px 13px;
  }

  .cart-items {
    min-height: 0;
    padding: 15px 14px;
  }

  footer.cart-summary {
    position: static;
    padding: 14px;
  }

  .cart-coupon-card {
    flex-basis: 84%;
  }
}

/* Fully selectable coupon carousel: two offers visible at a time. */
.cart-coupon-list {
  display: flex;
  gap: 8px;
  padding: 2px 1px 7px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #c8a96a transparent;
}

.cart-coupon-list::-webkit-scrollbar {
  height: 4px;
}

.cart-coupon-list::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #c8a96a;
}

.cart-coupon-card {
  flex: 0 0 calc((100% - 8px) / 2) !important;
  min-width: calc((100% - 8px) / 2);
  cursor: pointer;
  scroll-snap-align: start;
  user-select: none;
}

.cart-coupon-card:hover,
.cart-coupon-card:focus-visible {
  border-color: #9b1e46;
  background: #faf7f2;
  outline: none;
}

.cart-coupon-action {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #9b1e46;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cart-coupon-card.is-applied .cart-coupon-action {
  color: #2e7d32;
}

@media (max-width: 700px) {
  .cart-coupon-card {
    flex-basis: calc((100% - 8px) / 2) !important;
    min-width: calc((100% - 8px) / 2);
  }

  .cart-recommendation-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cart-recommendation-list::-webkit-scrollbar {
    display: none;
  }

  .cart-recommendation {
    flex: 0 0 calc((100% - 10px) / 2);
    min-width: calc((100% - 10px) / 2);
    scroll-snap-align: start;
  }
}

/* Definitive compact cart overrides (must remain last). */
.cart-drawer-header {
  min-height: 50px;
  padding: 7px 14px;
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.cart-drawer-header .eyebrow {
  margin-bottom: 3px;
  font-size: 6px;
}

#closeCart {
  width: 30px;
  height: 30px;
}

.cart-gift-progress {
  padding: 7px 14px 8px;
}

.cart-gift-progress > p {
  margin: 0 0 5px;
  font-size: 9px;
}

.cart-progress-track {
  height: 5px;
}

.cart-progress-labels {
  margin-top: 4px;
  font-size: 7px;
}

.cart-items {
  padding: 9px 14px;
}

.cart-item {
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 9px;
  padding-bottom: 8px;
}

.cart-item > img {
  width: 62px;
  height: 78px;
}

.cart-item-copy h3 {
  margin-bottom: 3px;
  font-size: 10px;
}

.cart-item-copy p {
  margin-bottom: 4px;
  font-size: 8px;
}

.cart-item-price {
  font-size: 11px;
}

.cart-quantity {
  margin-top: 7px;
}

.cart-quantity button,
.cart-quantity output {
  width: 28px;
  height: 27px;
}

.cart-remove {
  right: 2px;
  bottom: 8px;
}

footer.cart-summary {
  padding: 8px 14px 9px;
}

.cart-coupons {
  position: relative;
  margin-bottom: 6px;
  padding-bottom: 7px;
}

.cart-coupon-heading {
  margin-bottom: 5px;
}

.cart-coupon-heading span {
  font-size: 6px;
}

.cart-coupon-heading h3,
.cart-price-details > h3 {
  font-size: 12px;
}

.cart-coupon-list {
  gap: 6px;
  padding: 1px 0 3px;
  scrollbar-width: none;
}

.cart-coupon-list::-webkit-scrollbar {
  display: none;
}

.cart-coupon-card {
  flex-basis: calc((100% - 6px) / 2) !important;
  min-width: calc((100% - 6px) / 2);
  min-height: 56px;
  padding: 7px 40px 6px 8px;
}

.cart-coupon-card strong {
  font-size: 9px;
}

.cart-coupon-card p {
  margin-top: 2px;
  font-size: 6.5px;
  line-height: 1.3;
}

.cart-coupon-action {
  top: 7px;
  right: 7px;
  font-size: 6px;
}

.coupon-nav {
  position: absolute;
  z-index: 3;
  top: 54px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  background: #fcfbf8;
  color: #9b1e46;
  box-shadow: 0 3px 9px rgba(66, 47, 18, 0.09);
}

.coupon-prev {
  left: -11px;
}

.coupon-next {
  right: -11px;
}

.coupon-nav svg {
  width: 12px;
  height: 12px;
}

.coupon-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.cart-price-details > h3 {
  margin-bottom: 3px;
}

.cart-price-details > div {
  padding: 2px 0;
  font-size: 9px;
}

.cart-price-details > div > strong {
  font-size: 9px;
}

.cart-price-details .cart-total-row {
  margin-top: 3px;
  padding-top: 6px;
  font-size: 12px;
}

.cart-price-details .cart-total-row > strong {
  font-size: 15px;
}

.cart-checkout {
  min-height: 40px;
  margin-top: 7px;
  padding: 7px 15px;
}

.cart-summary > p {
  margin-top: 6px;
  font-size: 6.5px;
}

@media (max-width: 700px) {
  .cart-drawer-header {
    min-height: 48px;
    padding: 6px 12px;
  }

  .cart-gift-progress {
    padding: 6px 12px 7px;
  }

  .cart-items {
    padding: 8px 12px;
  }

  footer.cart-summary {
    padding: 7px 12px 8px;
  }

  .cart-coupon-card {
    flex-basis: calc((100% - 6px) / 2) !important;
    min-width: calc((100% - 6px) / 2);
  }
}

/* Fixed storefront header and hover mega menus. */
body {
  padding-top: 70px;
}

body > .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1050;
  min-height: 70px;
  padding: 0 34px;
  border-bottom: 1px solid #efe8e1;
  background: #fcfbf8 !important;
}

.site-header .header-logo {
  width: 128px !important;
  height: 54px !important;
  flex-basis: 128px !important;
}

.desktop-navigation {
  align-self: stretch;
  gap: 27px !important;
  letter-spacing: 0.08em !important;
}

.desktop-navigation > a,
.nav-trigger {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-trigger {
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  letter-spacing: inherit;
  cursor: default;
}

.desktop-navigation > a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: #9b1e46;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.desktop-navigation > a:hover,
.nav-trigger:hover,
.nav-dropdown:hover > .nav-trigger {
  color: #9b1e46;
}

.desktop-navigation > a:hover::after,
.nav-trigger:hover::after,
.nav-dropdown:hover > .nav-trigger::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: static;
  display: flex;
  height: 100%;
  align-items: center;
}

.mega-menu {
  position: fixed;
  top: 70px;
  right: 18px;
  left: 18px;
  z-index: 1049;
  display: grid;
  max-height: calc(100vh - 82px);
  padding: 30px 42px 34px;
  overflow-y: auto;
  border-top: 1px solid #efe8e1;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(31, 31, 31, 0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown:hover > .mega-menu,
.nav-dropdown:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.shop-mega-menu {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 36px;
}

.mega-menu h3 {
  margin: 0 0 14px;
  color: #1f1f1f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.mega-menu div > a {
  display: block;
  margin: 0 0 8px;
  color: #333;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.mega-menu .mega-label {
  display: block;
  margin: 0 0 8px;
  color: #333;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.mega-menu div > a:hover {
  color: #9b1e46;
  transform: translateX(3px);
}

.simple-dropdown {
  position: fixed;
  top: 100px;
  left: 350px;
  z-index: 1049;
  display: flex;
  flex-direction: column;
  width: auto;
  max-width: 200px;
  padding: 12px 0;
  border: 1px solid #efe8e1;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(31, 31, 31, 0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover > .simple-dropdown,
.nav-dropdown:focus-within > .simple-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.simple-dropdown > a {
  display: block;
  padding: 10px 18px;
  color: #333;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s ease;
}

.simple-dropdown > a:last-child {
  border-bottom: none;
}

.simple-dropdown > a:hover {
  background: #f9f7f4;
  color: #9b1e46;
  transform: translateX(3px);
}

.collection-mega-menu {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, 1.25fr);
  gap: 42px;
}

.mega-feature {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(66, 47, 18, 0.9), rgba(155, 30, 70, 0.82)),
    url("assets/hero.png") center/cover;
  color: #fff;
}

.mega-feature span,
.mega-feature small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.mega-feature strong {
  margin: 8px 0 17px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
}

.sale-link {
  color: #9b1e46 !important;
  font-weight: 700 !important;
}

.sale-link span {
  margin-left: 4px;
  color: #c8a96a;
  font-size: 15px;
}

.site-header .header-actions {
  gap: 15px;
}

#headerWishlist.is-selected {
  color: #9b1e46;
}

#headerWishlist.is-selected svg {
  fill: #9b1e46;
}

.search-overlay {
  top: 70px !important;
}

#mobileNav {
  top: 64px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}

#mobileNav .mobile-sale-link {
  color: #9b1e46;
  font-weight: 700;
}

@media (min-width: 992px) {
  .desktop-navigation.d-none {
    display: flex !important;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  body > .site-header {
    padding: 0 20px;
  }

  .desktop-navigation {
    gap: 15px !important;
  }

  .desktop-navigation > a,
  .nav-trigger {
    font-size: 11px;
    font-weight: 600;
  }

  .site-header .header-actions {
    gap: 10px;
  }

  .site-header .header-logo {
    width: 108px !important;
    flex-basis: 108px !important;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 64px;
  }

  body > .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .site-header .header-logo {
    width: 112px !important;
    height: 48px !important;
    flex-basis: 112px !important;
  }

  .site-header .header-actions {
    gap: 14px;
  }

  .search-overlay {
    top: 64px !important;
  }
}

@media (max-width: 420px) {
  body > .site-header {
    padding: 0 12px;
  }

  .site-header .header-actions {
    gap: 11px;
  }

  .site-header .header-logo {
    width: 102px !important;
    flex-basis: 102px !important;
  }

  .header-actions svg {
    width: 19px;
    height: 19px;
  }
}

/* Promotional ticker scrolls with the page; the header sticks after it. */
body {
  padding-top: 0;
}

.announcement-bar {
  position: relative;
  z-index: 1051;
  width: 100%;
  overflow: hidden;
  background: #9b1e46;
  color: #ffffff;
}

.announcement-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: announcementMarquee 28s linear infinite;
  will-change: transform;
}

.announcement-track p {
  flex: none;
  margin: 0;
  padding: 8px 48px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.announcement-track strong {
  font-weight: 700;
}

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

body > .site-header {
  position: sticky;
  top: 0;
}

.mega-menu {
  position: absolute;
  top: 100%;
}

@keyframes announcementMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 700px) {
  .announcement-track {
    animation-duration: 20s;
  }

  .announcement-track p {
    padding: 7px 30px;
    font-size: 9px;
    letter-spacing: 0.045em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-track {
    animation: none;
  }

  .announcement-bar {
    overflow-x: auto;
  }
}

/* Mobile swipe row for the Why Choose Siakari benefits. */
@media (max-width: 700px) {
  .artisan-story > div > div:last-child h2 {
    margin-bottom: 3px !important;
  }

  .artisan-story > div > div:last-child > .siakari-grid {
    display: flex !important;
    gap: 9px;
    padding: 0 2px 9px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .artisan-story > div > div:last-child > .siakari-grid::-webkit-scrollbar {
    display: none;
  }

  .artisan-story > div > div:last-child .reason {
    /* Two benefit cards are visible at a time; swipe for the remaining cards. */
    flex: 0 0 calc((100% - 9px) / 2);
    min-width: 0;
    min-height: 92px;
    padding: 13px 8px 11px;
    border: 1px solid #efe8e1;
    border-radius: 10px;
    background: #ffffff;
    scroll-snap-align: start;
  }

  .artisan-story > div > div:last-child .reason svg {
    width: 23px;
    height: 23px;
    margin-bottom: 8px;
  }

  .artisan-story > div > div:last-child .reason span {
    font-size: 8px;
    line-height: 1.45;
  }
}

.mobile-best-view {
  display: none;
}

@media (max-width: 700px) {
  .best-sellers .product-slider-arrow {
    display: none !important;
  }

  #best-sellers .product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    overflow: visible !important;
  }

  #best-sellers .product-card {
    display: block;
    min-width: 0 !important;
  }

  #best-sellers .desktop-best-view {
    display: none;
  }

  #best-sellers .mobile-best-view {
    display: block;
    margin: 18px auto 0;
    padding: 9px 22px;
    border: 1px solid #9b1e46;
    background: #ffffff;
    color: #9b1e46;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
  }
}

/* Light information-rich footer. */
body .reference-footer {
  padding: 42px 48px 14px !important;
  border-top: 1px solid rgba(232, 214, 176, 0.55);
  background: linear-gradient(
    110deg,
    #86173b 0%,
    #9b1e46 52%,
    #86173b 100%
  ) !important;
  color: #ffffff !important;
}
.new-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.9fr) 1.15fr;
  gap: 45px;
}
.new-footer-logo {
  display: block;
  width: 145px !important;
  height: 65px !important;
  margin-bottom: 20px;
  object-fit: contain !important;
  filter: brightness(0) invert(1);
}
.new-footer-contact p,
.new-footer-newsletter p {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.65;
}
.new-footer-contact > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  font-size: 12px;
}
.new-footer-contact > span svg {
  width: 16px;
  color: #e8d6b0;
}
.new-footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.new-footer-socials button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
}
.new-footer-socials button svg {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  overflow: visible;
  fill: none;
  stroke: #ffffff !important;
  stroke-width: 2;
}
.new-footer-socials button svg .social-fill {
  fill: #ffffff !important;
  stroke: none !important;
}
.new-footer-column h3,
.new-footer-newsletter h3 {
  margin: 0 0 17px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.new-footer-column a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.4;
  cursor: default;
}
.new-footer-newsletter input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #fcfbf8;
  color: #1f1f1f;
  font-size: 12px;
}
.new-footer-newsletter input:focus {
  border-color: #e8d6b0;
  outline: none;
}
.new-footer-newsletter button {
  margin-top: 10px;
  padding: 12px 20px;
  border: 1px solid #e8d6b0;
  background: #e8d6b0;
  color: #6d1f2c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.new-footer-payments {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.new-footer-payments > strong {
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.new-footer-payments .payment-badges {
  display: flex;
  gap: 8px;
  margin: 0;
}
.new-footer-payments .payment-badges > span {
  display: grid;
  width: 52px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 10px;
  font-style: italic;
  font-weight: 700;
}
.new-footer-payments .master {
  position: relative;
  display: flex !important;
}
.new-footer-payments .master i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #eb001b;
}
.new-footer-payments .master i + i {
  margin-left: -5px;
  background: #f79e1b;
  opacity: 0.92;
}
.new-footer-payments .secure-payment {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 0 auto;
}
.new-footer-payments .secure-payment > svg {
  width: 29px;
  height: 29px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #e8d6b0;
}
.new-footer-payments .secure-payment p {
  margin: 0;
  color: #ffffff;
  font-size: 9px;
}
.new-footer-payments .secure-payment small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
}
.new-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
}
@media (max-width: 991.98px) {
  .new-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .new-footer-newsletter {
    grid-column: span 2;
  }
}
@media (max-width: 700px) {
  body .reference-footer {
    padding: 26px 16px 12px !important;
  }
  .new-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
  .new-footer-contact,
  .new-footer-newsletter {
    grid-column: span 2;
  }
  .new-footer-logo {
    width: 120px !important;
    height: 50px !important;
    margin-bottom: 12px;
  }
  .new-footer-contact p,
  .new-footer-newsletter p {
    font-size: 10px;
  }
  .new-footer-contact > span {
    font-size: 10px;
  }
  .new-footer-column h3,
  .new-footer-newsletter h3 {
    margin-bottom: 12px;
    font-size: 11px;
  }
  .new-footer-column a {
    margin-bottom: 7px;
    font-size: 9px;
  }
  .new-footer-newsletter input {
    height: 43px;
  }
  .new-footer-payments {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 8px;
    margin-top: 22px;
  }
  .new-footer-payments > strong {
    width: auto;
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .new-footer-payments .payment-badges {
    flex: 1 1 auto;
    width: auto;
    justify-content: flex-start;
    gap: 6px;
  }
  .new-footer-payments .payment-badges > span {
    width: 52px;
    height: 34px;
    min-width: 52px;
    font-size: 9px;
  }
  .new-footer-payments .secure-payment {
    width: auto;
    margin: 0 0 0 auto;
  }
  .new-footer-bottom {
    gap: 12px;
    font-size: 8px;
  }
}

/* One-line discovery options with an explicit expansion control. */
.discovery-panel .color-chip-grid,
.discovery-panel .tag-cloud {
  transition: max-height 0.35s ease;
}
.discovery-panel .color-chip-grid.is-collapsed,
.discovery-panel .tag-cloud.is-collapsed {
  max-height: 36px;
  overflow: hidden;
}
.discovery-panel .color-chip-grid.is-expanded,
.discovery-panel .tag-cloud.is-expanded {
  max-height: none;
  overflow: visible;
}

.tag-discovery {
  min-width: 0;
  height: auto;
  align-self: start;
  overflow: visible;
}

.tag-discovery .tag-cloud {
  width: 100%;
  align-content: flex-start;
}

.tag-discovery .tag-cloud .discovery-chip {
  flex: 0 0 auto;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}

.tag-discovery .discovery-view-more {
  position: static;
  flex: 0 0 auto;
  clear: both;
}
.discovery-view-more {
  display: block;
  margin: 18px auto 0;
  padding: 8px 19px;
  border: 1px solid #9b1e46;
  border-radius: 2px;
  background: transparent;
  color: #9b1e46;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.discovery-view-more:hover,
.discovery-view-more:focus-visible {
  background: #9b1e46;
  color: #ffffff;
}
@media (max-width: 700px) {
  .discovery-panel .color-chip-grid.is-collapsed,
  .discovery-panel .tag-cloud.is-collapsed {
    max-height: 31px;
  }
  .discovery-view-more {
    margin-top: 13px;
    padding: 7px 16px;
    font-size: 7px;
  }
}

.founder-team-btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  padding: 10px 17px;
  border: 1px solid #9b1e46;
  background: #9b1e46;
  color: #fff !important;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.founder-team-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}
.founder-team-btn:hover {
  background: #7f1739;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(155, 30, 70, 0.2);
}
.founder-team-btn:hover svg {
  transform: translateX(4px);
}
@media (max-width: 700px) {
  .founder-team-btn {
    min-height: 34px;
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 7px;
  }
}

@media (max-width: 991.98px) {
  #mobileNav {
    right: auto !important;
    bottom: 0;
    width: min(320px, 86vw);
    max-height: none !important;
    padding: 0 !important;
    overflow-y: auto;
    background: #f7f7f7 !important;
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.18);
  }
  #mobileNav a {
    margin: 0 !important;
    color: #444;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .mobile-nav-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-bottom: 1px solid #ddd;
    background: #eee;
    color: #222;
    font-size: 12px;
  }
  .mobile-nav-head button {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #333;
  }
  .mobile-nav-head svg {
    width: 16px;
  }
  .mobile-nav-toggle,
  .mobile-sub-toggle {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border: 0;
    border-bottom: 1px solid #e2e2e2;
    background: #fff;
    color: #444;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-align: left;
  }
  .mobile-sub-toggle {
    padding-left: 22px;
    background: #f5f5f5;
  }
  .mobile-nav-toggle i,
  .mobile-sub-toggle i {
    position: relative;
    width: 12px;
    height: 12px;
  }
  .mobile-nav-toggle i:before,
  .mobile-sub-toggle i:before,
  .mobile-nav-toggle i:after,
  .mobile-sub-toggle i:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 1px;
    width: 10px;
    height: 1px;
    background: #9b1e46;
  }
  .mobile-nav-toggle i:after,
  .mobile-sub-toggle i:after {
    transform: rotate(90deg);
    transition: transform 0.2s;
  }
  .mobile-nav-group.is-open > .mobile-nav-toggle i:after,
  .mobile-nav-subgroup.is-open > .mobile-sub-toggle i:after {
    transform: rotate(0);
  }
  .mobile-nav-panel,
  .mobile-sub-panel {
    display: none;
  }
  .mobile-nav-group.is-open > .mobile-nav-panel,
  .mobile-nav-subgroup.is-open > .mobile-sub-panel {
    display: block;
  }
  .mobile-sub-panel {
    padding: 4px 0;
    background: #f4f4f4;
  }
  .mobile-sub-panel a {
    display: block !important;
    padding: 10px 33px;
  }
  .mobile-nav-simple > a {
    display: block !important;
    padding: 14px 12px;
    border-bottom: 1px solid #e2e2e2;
    background: #fff;
  }
}

/* Image-only hero slides with a fully clickable visual and dynamic dots. */
.hero-slide-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.hero-slide-link picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slide-link img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 64% center;
  transform: none !important;
  transition: none !important;
}
.hero-slide.is-active .hero-slide-link img {
  transform: none !important;
}
.slide-wedding .hero-slide-link img {
  object-position: 73% center;
  filter: sepia(0.28) saturate(1.12);
}
.slide-artisan .hero-slide-link img {
  object-position: 58% 58%;
  filter: saturate(0.72) contrast(1.06);
}
.hero-slider .slider-controls,
.hero-slider .slider-dots,
.hero-slider .slider-progress {
  z-index: 4;
}
@media (max-width: 700px) {
  .hero-slider {
    width: 100% !important;
    height: 330px !important;
    min-height: 330px !important;
    max-height: 330px !important;
  }

  .hero-slide-link img {
    object-position: center center !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-slider .slider-dots {
    display: flex !important;
  }
}

/* Responsive collection pictures and an overflow-only carousel. */
#collections > .collection-track {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
}
#collections .collection {
  position: relative;
  height: 340px !important;
  min-width: 0;
  overflow: hidden;
  background: none !important;
}
#collections .collection::after {
  display: none !important;
}
.collection-link,
.collection-link picture {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.collection-link img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.45s ease;
}
.collection:hover .collection-link img {
  transform: scale(1.045);
}
.collection-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  padding: 38px 15px 15px;
  background: linear-gradient(transparent, rgba(18, 10, 8, 0.78));
  color: #fff;
}
.collection-copy strong,
.collection-copy small {
  display: block;
  color: #fff;
}
.collection-copy strong {
  font-size: 16px;
}
.collection-copy small {
  margin-top: 3px;
  font-size: 9px;
}
.collection-slider-shell {
  position: relative;
  margin-top: 20px;
}
.collection-slider-shell > .collection-track {
  margin-top: 0 !important;
}
#collections > .collection-slider-shell .collection-track.has-overflow {
  display: flex !important;
  gap: 12px !important;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
#collections
  > .collection-slider-shell
  .collection-track.has-overflow::-webkit-scrollbar {
  display: none;
}
#collections
  > .collection-slider-shell
  .collection-track.has-overflow
  > .collection {
  flex: 0 0 calc((100% - 48px) / 5);
  scroll-snap-align: start;
}
.collection-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  background: #fff;
  color: #9b1e46;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.13);
  transform: translateY(-50%);
}
.collection-prev {
  left: -18px;
}
.collection-next {
  right: -18px;
}
.collection-arrow svg {
  width: 19px;
}
@media (max-width: 700px) {
  #collections > .collection-track {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  /* Keep every collection card at one grid column on mobile. */
  #collections > .collection-track > :last-child {
    grid-column: span 1;
  }

  #collections .collection {
    height: 245px !important;
  }
  #collections
    > .collection-slider-shell
    .collection-track.has-overflow
    > .collection {
    flex-basis: calc((100% - 7px) / 2);
  }
  .collection-copy {
    padding: 28px 9px 10px;
  }
  .collection-copy strong {
    font-size: 11px;
  }
  .collection-copy small {
    font-size: 7px;
  }
  .collection-arrow {
    width: 34px;
    height: 34px;
  }
  .collection-prev {
    left: -5px;
  }
  .collection-next {
    right: -5px;
  }
}

/* Keep collection visuals separated and clipped inside their own cards. */
#collections > .collection-track,
#collections .collection-track.has-overflow {
  column-gap: 16px !important;
  row-gap: 16px !important;
}
#collections .collection {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 1px solid #efe8e1;
  border-radius: 10px !important;
  isolation: isolate;
  transform: none !important;
  box-shadow: 0 7px 18px rgba(31, 31, 31, 0.06) !important;
}
#collections .collection:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 26px rgba(31, 31, 31, 0.12) !important;
}
#collections .collection-link,
#collections .collection-link picture,
#collections .collection-link img {
  box-sizing: border-box;
  max-width: 100% !important;
  overflow: hidden;
  border-radius: inherit;
}
#collections .collection-link img {
  transform: none;
}
#collections .collection:hover .collection-link img {
  transform: scale(1.025);
}
#collections
  > .collection-slider-shell
  .collection-track.has-overflow
  > .collection {
  flex-basis: calc((100% - 64px) / 5);
}
@media (max-width: 700px) {
  #collections > .collection-track,
  #collections .collection-track.has-overflow {
    column-gap: 9px !important;
    row-gap: 9px !important;
  }
  #collections .collection {
    border-radius: 7px !important;
  }
  #collections
    > .collection-slider-shell
    .collection-track.has-overflow
    > .collection {
    flex-basis: calc((100% - 9px) / 2);
  }
}

/* Consistent 3:4 product imagery with a full-image anchor. */
.best-sellers .product-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3/4 !important;
}
.product-image-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.product-image-link img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-link img {
  transform: scale(1.035);
}
.simple-add-cart {
  padding: 9px 13px;
  border: 1px solid #9b1e46;
  background: #fff;
  color: #9b1e46;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (max-width: 700px) {
  .simple-add-cart {
    width: 100%;
    padding: 8px 4px;
    font-size: 7px;
  }
}

/* Picture-based, fully clickable artisan cards. */
#artisans .artisan {
  position: relative;
  overflow: hidden;
  background: none !important;
  filter: none !important;
}
#artisans .artisan::after {
  display: none !important;
}
.artisan-link,
.artisan-link picture {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.artisan-link img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}
.artisan-copy {
  position: absolute;
  right: 8%;
  bottom: 12px;
  left: 8%;
  display: block;
  padding: 10px;
  border-radius: 12px;
  background: #faf7f2;
  color: #1f1f1f;
  text-align: center;
}
.artisan-copy b,
.artisan-copy small {
  display: block;
}
.artisan-copy b {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
}
.artisan-copy small {
  margin-top: 2px;
  font-size: 8px;
}

/* The artisan carousel shows two cards on mobile and retains swipe/arrow navigation. */
@media (max-width: 700px) {
  #artisans .conditional-track[data-conditional-slider="artisans"] {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 9px !important;
    overflow-x: auto !important;
  }

  #artisans .conditional-shell.has-overflow {
    padding: 0 40px !important;
  }

  #artisans .conditional-arrow {
    display: grid !important;
  }

  #artisans .conditional-track[data-conditional-slider="artisans"] > .artisan {
    flex: 0 0 calc((100% - 9px) / 2) !important;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .artisan-copy {
    right: 5%;
    bottom: 6px;
    left: 5%;
    padding: 6px 3px;
    border-radius: 7px;
  }
  .artisan-copy b {
    font-size: 10px;
  }
  .artisan-copy small {
    font-size: 6px;
  }
}

/* Picture-based, fully clickable fabric cards. */
.fabric-section .fabric {
  position: relative;
  overflow: hidden;
  background: none !important;
  filter: none !important;
}
.fabric-link,
.fabric-link picture {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.fabric-link img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}
.fabric-section .fabric .fabric-copy {
  position: absolute;
  inset: 0;
  left: 0;
  top: 0;
  display: flex;
  width: auto;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0 42%,
    rgba(255, 255, 255, 0.7) 55%,
    transparent 78%
  );
  color: #1f1f1f;
}
.fabric-copy b {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
}
.fabric-copy small {
  margin-top: 4px;
  font-family: Inter, sans-serif;
  font-size: 7px;
}
@media (max-width: 700px) {
  .fabric-section .fabric .fabric-copy {
    padding: 12px;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0 46%,
      rgba(255, 255, 255, 0.62) 63%,
      transparent 86%
    );
  }
  .fabric-copy b {
    font-size: 13px;
  }
  .fabric-copy small {
    font-size: 7px;
  }
}

/* Shop by Price uses arrow controls whenever more than four ranges exist. */
.price-slider-shell {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
}
.price-slider-shell > .price-track {
  max-width: none !important;
  margin: 0 !important;
}
.price-slider-shell > .price-track.has-overflow {
  display: flex !important;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.price-slider-shell > .price-track.has-overflow::-webkit-scrollbar {
  display: none;
}
.price-slider-shell > .price-track.has-overflow > .price-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}
.price-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  background: #fff;
  color: #9b1e46;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}
.price-prev {
  left: -20px;
}
.price-next {
  right: -20px;
}
.price-arrow svg {
  width: 18px;
}
.price-arrow[hidden] {
  display: none;
}
@media (max-width: 700px) {
  .price-slider-shell > .price-track.has-overflow {
    gap: 9px;
  }
  .price-slider-shell > .price-track.has-overflow > .price-card {
    flex-basis: calc((100% - 27px) / 4);
    min-width: calc((100% - 27px) / 4);
  }
  .price-arrow {
    width: 32px;
    height: 32px;
  }
  .price-prev {
    left: -5px;
  }
  .price-next {
    right: -5px;
  }
}

/* Picture-based Instagram gallery; slider controls appear only above six posts. */
.instagram .insta-grid {
  display: flex;
  flex-wrap: wrap;
}
.instagram .insta-card {
  position: relative;
  display: block;
  height: 150px;
  overflow: hidden;
  border-radius: 7px;
  background: #f5efe7;
  cursor: pointer;
}
.instagram .insta-card picture {
  display: block;
  width: 100%;
  height: 100%;
}
.instagram .insta-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transition: transform 0.35s ease;
}
.instagram .insta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(155, 30, 70, 0.72);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.instagram .insta-card:hover img {
  transform: scale(1.045);
}
.instagram .insta-card:hover::after {
  opacity: 1;
}
.insta-slider-shell {
  position: relative;
  margin-top: 1.5rem;
}
.insta-slider-shell > .insta-grid {
  margin-top: 0 !important;
}
.instagram .insta-grid.has-overflow {
  display: flex !important;
  grid-template-columns: none;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.instagram .insta-grid.has-overflow::-webkit-scrollbar {
  display: none;
}
.instagram .insta-grid.has-overflow > .insta-card {
  flex: 0 0 calc((100% - 35px) / 6);
  scroll-snap-align: start;
}
.insta-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #e8d6b0;
  border-radius: 50%;
  background: #fff;
  color: #9b1e46;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}
.insta-prev {
  left: -16px;
}
.insta-next {
  right: -16px;
}
.insta-arrow svg {
  width: 17px;
}
@media (max-width: 700px) {
  .instagram .insta-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow: visible;
  }
  .instagram .insta-card {
    height: 105px !important;
  }
  .instagram .insta-grid.has-overflow {
    flex-wrap: nowrap !important;
    overflow-x: auto;
  }
  .instagram .insta-grid.has-overflow > .insta-card {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .insta-slider-shell {
    margin-top: 1rem;
  }
  .insta-arrow {
    width: 32px;
    height: 32px;
  }
  .insta-prev {
    left: -5px;
  }
  .insta-next {
    right: -5px;
  }
}

/* Keep Instagram posts on one swipeable row instead of wrapping. */
.instagram .insta-grid,
.instagram .insta-grid.has-overflow {
  --bs-gutter-x: 8px;
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #c8a96a #f5efe7;
}

.instagram .insta-grid > .insta-card,
.instagram .insta-grid.has-overflow > .insta-card {
  flex: 0 0 16.666667% !important;
  width: 16.666667% !important;
  max-width: 16.666667% !important;
  scroll-snap-align: start;
}

.instagram .insta-grid::-webkit-scrollbar {
  display: block;
  height: 5px;
}

.instagram .insta-grid::-webkit-scrollbar-track {
  background: #f5efe7;
}

.instagram .insta-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c8a96a;
}

@media (max-width: 700px) {
  .instagram .insta-grid > .insta-card,
  .instagram .insta-grid.has-overflow > .insta-card {
    flex-basis: 33.333333% !important;
    width: 33.333333% !important;
    max-width: 33.333333% !important;
  }
}

/* Bootstrap 5 cart composition with Siakari presentation. */
.cart-drawer.row {
  display: flex !important;
  flex-wrap: nowrap;
  margin: 0;
  height: 100%;
  max-height: 100vh;
  background: #faf7f2;
}

.cart-drawer.row > .cart-recommendations,
.cart-drawer.row > .cart-main {
  min-width: 0;
}

.cart-drawer.row > .cart-recommendations {
  padding: 24px 22px;
}

.cart-drawer.row > .cart-main {
  padding: 0;
  background: #faf7f2;
}

.cart-drawer.row > .cart-main .cart-items {
  background: #ffffff;
}

.cart-drawer.row > .cart-main > footer.cart-summary {
  min-height: 0;
  background: #faf7f2;
}

.cart-recommendation.d-flex {
  gap: 12px;
  width: 100%;
  padding: 0 0 15px;
}

.cart-recommendation.d-flex > img {
  flex: 0 0 auto;
}

.cart-recommendation.d-flex > div {
  min-width: 0;
  flex: 1 1 auto;
}

.cart-checkout {
  min-height: 58px;
  padding: 10px 18px;
  border: 0;
  border-radius: 0;
  background: #9b1e46;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(155, 30, 70, 0.18);
}

.cart-checkout .checkout-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.cart-checkout .checkout-copy strong {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.cart-checkout .checkout-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.checkout-actions {
  flex: 0 0 auto;
  gap: 13px;
}

.checkout-payments {
  padding-left: 6px;
}

.checkout-payment {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(31, 31, 31, 0.15);
}

.checkout-paytm {
  color: #1565c0;
}
.checkout-phonepe {
  background: #5f259f;
  color: #ffffff;
}
.checkout-gpay {
  color: #4285f4;
}
.cart-checkout .checkout-arrow {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.cart-security-note {
  gap: 7px;
  margin: 7px 0 0 !important;
  padding: 0 !important;
  line-height: 1.2;
}

.cart-security-note svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #2e7d32;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-security-note span {
  color: #777;
  font-size: 6.5px;
}

@media (min-width: 992px) {
  .cart-drawer.row > .cart-recommendations {
    flex: 0 0 34%;
    width: 34%;
    max-width: 34%;
  }

  .cart-drawer.row > .cart-main {
    flex: 0 0 66%;
    width: 66%;
    max-width: 66%;
  }
}

@media (max-width: 991.98px) {
  .cart-drawer.row {
    height: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-y: auto;
  }

  .cart-drawer.row > .cart-main {
    order: 1;
  }

  .cart-drawer.row > .cart-recommendations {
    order: 2;
    width: 100%;
    max-width: 100%;
    padding: 20px 16px;
  }

  .cart-drawer.row > .cart-main {
    width: 100%;
    max-width: 100%;
  }

  .cart-drawer.row > .cart-main > footer.cart-summary {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .cart-checkout {
    min-height: 54px;
    padding: 9px 12px;
  }

  .checkout-actions {
    gap: 8px;
  }
  .checkout-payment {
    width: 21px;
    height: 21px;
    font-size: 5px;
  }
  .cart-checkout .checkout-arrow {
    width: 17px;
    height: 17px;
  }
}

.product-info h3 a {
  color: inherit;
  text-decoration: none;
}

.product-info h3 a:hover {
  color: #9b1e46;
}

/* Linked cart product images and names. */
.cart-product-image {
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 7px;
}

.cart-recommendation > .cart-product-image {
  width: 62px;
  height: 82px;
}

.cart-item > .cart-item-image {
  width: 92px;
  height: 120px;
}

.cart-item {
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 14px;
}

.cart-item-copy {
  min-width: 0;
  padding-top: 2px;
}

.cart-item-copy h3 {
  margin-top: 0;
}

.cart-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cart-product-image:hover img {
  transform: scale(1.04);
}

.cart-product-name {
  color: inherit;
  text-decoration: none;
}

.cart-product-name:hover {
  color: #9b1e46;
}

/* Show three cart items at a time and scroll when more products are added. */
.cart-drawer.row > .cart-main .cart-items {
  max-height: 336px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #c8a96a transparent;
  scrollbar-width: thin;
}

.cart-drawer.row > .cart-main .cart-items::-webkit-scrollbar {
  width: 5px;
}

.cart-drawer.row > .cart-main .cart-items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c8a96a;
}

@media (max-width: 700px) {
  .cart-drawer.row > .cart-main .cart-items {
    max-height: 390px;
  }
}

/* Keep the cart chrome fixed; only the product list scrolls. */
.cart-count-empty,
.cart-empty {
  display: none;
}

.cart-main:not(:has(.cart-items .cart-item)) .cart-count-filled,
.cart-main:not(:has(.cart-items .cart-item)) .cart-items,
.cart-main:not(:has(.cart-items .cart-item)) > footer.cart-summary {
  display: none;
}

.cart-main:not(:has(.cart-items .cart-item)) .cart-count-empty {
  display: inline;
}

.cart-main:not(:has(.cart-items .cart-item)) .cart-empty {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 701px) {
  .cart-drawer.row > .cart-main {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
  }

  .cart-drawer-header,
  .cart-gift-progress,
  .cart-drawer.row > .cart-main > footer.cart-summary {
    position: static;
    flex: 0 0 auto;
  }

  .cart-drawer.row > .cart-main .cart-items {
    min-height: 0;
    flex: 1 1 auto;
    padding: 12px 20px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #c8a96a transparent;
  }

  .cart-items::-webkit-scrollbar {
    width: 6px;
  }

  .cart-items::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #c8a96a;
  }

  .cart-drawer.row > .cart-recommendations {
    overflow: hidden;
  }

  .cart-item {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    column-gap: 10px;
    padding-bottom: 12px;
  }

  .cart-item > .cart-item-image {
    width: 64px;
    height: 84px;
  }

  .cart-item-copy h3 {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .cart-item-copy > span {
    font-size: 8px;
  }

  .cart-quantity {
    grid-template-columns: 26px 32px 26px;
    margin-top: 8px;
  }

  .cart-quantity button,
  .cart-quantity output {
    height: 25px;
  }

  .cart-item-price {
    font-size: 12px;
  }

  .cart-remove {
    bottom: 12px;
  }
}

@media (max-width: 700px) {
  .cart-recommendation > .cart-product-image {
    width: 64px;
    height: 84px;
  }

  .cart-item > .cart-item-image {
    width: 78px;
    height: 102px;
  }

  .cart-item {
    grid-template-columns: 78px minmax(0, 1fr) auto;
    column-gap: 10px;
  }
}

/* ==========================================================================
   PRODUCT PAGE STYLES (scoped)
   ========================================================================== */
body.product-page {
  --wine: #9b1e46;
  --wine-dark: #7d1738;
  --gold: #c8a96a;
  --soft-gold: #e8d6b0;
  --cream: #faf7f2;
  --beige: #f5efe7;
  --ink: #1f1f1f;
  --body: #555;
  --border: #e9e1d9;
}

.bi {
  display: inline-block;
  line-height: 1;
  vertical-align: -0.125em;
}

.header-actions .bi {
  font-size: 22px;
}

.benefit .bi,
.reason .bi,
.step .bi {
  color: #9b1e46;
  font-size: 25px;
}

.benefit:nth-child(2) .bi {
  color: #c8a96a;
}

.benefit:nth-child(4) .bi {
  color: #1565c0;
}

.step .bi {
  font-size: 26px;
}

.secure-payment > .bi {
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-size: 22px;
}

.search-input-wrap .bi,
.cart-coupon-heading > .bi {
  font-size: 20px;
}

.cart-empty > .bi {
  font-size: 38px;
}

.collection-arrow .bi,
.price-arrow .bi,
.review-arrow .bi,
.conditional-arrow .bi,
.product-slider-arrow .bi,
.publication-arrow .bi,
.insta-arrow .bi,
.mood-slider-arrow .bi,
.coupon-nav .bi {
  font-size: 18px;
}

@scope (body.product-page main) {
  .btn-primary {
    --bs-btn-bg: #9b1e46;
    --bs-btn-border-color: #9b1e46;
    --bs-btn-hover-bg: #7d1738;
    --bs-btn-hover-border-color: #7d1738;
    --bs-btn-active-bg: #7d1738;
    --bs-btn-active-border-color: #7d1738;
  }

  .btn-outline-primary {
    --bs-btn-color: #9b1e46;
    --bs-btn-border-color: #9b1e46;
    --bs-btn-hover-bg: #9b1e46;
    --bs-btn-hover-border-color: #9b1e46;
    --bs-btn-active-bg: #7d1738;
    --bs-btn-active-border-color: #7d1738;
  }

:root {
  --wine: #9b1e46;
  --wine-dark: #7d1738;
  --gold: #c8a96a;
  --soft-gold: #e8d6b0;
  --cream: #faf7f2;
  --beige: #f5efe7;
  --ink: #1f1f1f;
  --body: #555;
  --border: #e9e1d9;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  background: #fff;
}
button,
a {
  cursor: pointer;
}

/* Hide preview posts whenever real Instagram cards are present. */
.instagram .insta-grid:has(.insta-card:not([data-placeholder]))
  .insta-card[data-placeholder] {
  display: none;
}
button {
  font: inherit;
}
.offer-bar {
  color: #fff;
  background: var(--wine);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}
.offer-text {
  animation: ticker 22s linear infinite;
}
@keyframes ticker {
  from {
    transform: translateX(25%);
  }
  to {
    transform: translateX(-25%);
  }
}
.site-header {
  z-index: 1030;
}
.navbar-brand img,
.footer-logo {
  width: 118px;
  height: auto;
}
.navbar .nav-link {
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}
.navbar .nav-link:hover,
.sale-link {
  color: var(--wine) !important;
}
.header-actions button,
.share-row button,
.action-links button {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wine);
}
.header-actions button {
  font-size: 24px;
}
.header-actions span {
  position: absolute;
  top: -4px;
  right: -7px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-size: 8px;
}
.breadcrumb-wrap {
  background: #fcfbf8;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--gold);
}
.product-gallery {
  position: sticky;
  top: 92px;
}
.gallery-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}
.gallery-thumbs button.active {
  border-color: var(--wine);
}
.gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.main-product-picture {
  overflow: hidden;
  border-radius: 8px;
  background: var(--beige);
}
.main-product-picture img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}
.share-row button {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.product-kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.stock-alert {
  padding: 7px 10px;
  border: 1px solid #f1c9c9;
  border-radius: 5px;
  color: #b42318;
  background: #fff5f3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.stock-alert i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e53935;
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.12);
}
.product-details h1 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.18;
}
.meta-row {
  color: #777;
  font-size: 11px;
}
.stars {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  color: #f5b400;
  font-size: 18px;
  letter-spacing: 0;
}
.cod-line {
  color: #2e7d32;
}
.price-row del {
  color: #777;
}
.price-row > strong {
  color: var(--wine);
  font-size: 1.6rem;
}
.price-row span {
  color: #e53935;
  font-weight: 600;
}
.product-points {
  color: var(--body);
  line-height: 1.8;
}
.description-panel {
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: var(--cream);
}
.description-panel h2 {
  font-size: 16px;
  font-weight: 600;
}
.description-panel p {
  color: var(--body);
  font-size: 12px;
  line-height: 1.75;
}
.product-options .accordion-item {
  margin-bottom: 10px;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  overflow: hidden;
}
.product-options .accordion-button {
  padding: 14px 16px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-options .accordion-button:not(.collapsed) {
  color: var(--wine);
}
.product-options .accordion-button::after {
  filter: none;
}
.accordion-body {
  padding: 10px;
}
.option-card {
  margin: 0 0 8px;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
}
.option-card:last-child {
  margin-bottom: 0;
}
.option-card img {
  width: 52px;
  height: 62px;
  border-radius: 5px;
  object-fit: cover;
}
.option-card strong,
.option-card small {
  display: block;
}
.option-card strong {
  font-size: 11px;
}
.option-card small {
  margin-top: 3px;
  color: #777;
  font-size: 9px;
}
.form-check-input:checked {
  border-color: var(--wine);
  background-color: var(--wine);
}
.service-card {
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}
.service-card strong,
.service-card small {
  display: block;
}
.service-card small {
  color: #777;
  font-size: 9px;
}
.service-price {
  color: #2e7d32;
  font-size: 11px;
  font-weight: 700;
}
.service-price del {
  margin-right: 5px;
  color: #777;
  font-weight: 400;
}
.action-links button {
  font-size: 10px;
  font-weight: 500;
}
.quantity {
  height: 46px;
  border: 1px solid var(--border);
}
.quantity button {
  width: 33%;
  height: 100%;
  border: 0;
  background: #fff;
}
.primary-btn,
.secondary-buy,
.delivery-btn {
  min-height: 46px;
  border: 1px solid var(--wine);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.primary-btn,
.secondary-buy {
  color: #fff;
  background: var(--wine);
}
.primary-btn:hover,
.secondary-buy:hover {
  background: var(--wine-dark);
}
.delivery-btn {
  color: var(--wine);
  background: #fff;
}
.form-control {
  min-height: 46px;
  border-color: var(--border);
  border-radius: 3px;
}
.form-control:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 0.2rem rgba(155, 30, 70, 0.08);
}
.service-points > div {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--body);
  font-size: 9px;
}
.benefit-strip {
  background: linear-gradient(110deg, var(--wine-dark), var(--wine));
}
.benefit-strip .col-12 {
  padding-left: 42px;
  position: relative;
}
.benefit-strip .col-12::before {
  content: "✦";
  position: absolute;
  left: 14px;
  font-size: 23px;
  color: var(--soft-gold);
}
.benefit-strip strong,
.benefit-strip span {
  display: block;
}
.benefit-strip strong {
  font-size: 12px;
}
.benefit-strip span {
  margin-top: 3px;
  font-size: 9px;
}
.related h2 {
  color: var(--wine);
  font-size: 1.8rem;
  font-weight: 600;
}
.related-card {
  display: block;
  color: var(--ink);
  text-decoration: none;
}
.related-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 7px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-card:hover img {
  transform: translateY(-4px);
}
.related-card h3 {
  margin: 10px 0 4px;
  font-size: 11px;
  line-height: 1.5;
}
.related-card strong {
  color: var(--wine);
  font-size: 12px;
}
.product-footer {
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.product-footer h3 {
  font-size: 12px;
  font-weight: 600;
}
.product-footer p,
.product-footer a {
  color: var(--body);
  font-size: 10px;
  line-height: 1.8;
}
.product-footer a {
  display: block;
  text-decoration: none;
}
.product-footer hr {
  border-color: var(--soft-gold);
}
.product-information-section {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #fcfbf8 0, #fff 100%);
}
.product-info-heading h2 {
  margin: 7px 0 4px;
  color: var(--wine);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
}
.product-info-heading p {
  margin: 0;
  color: #777;
  font-size: 11px;
}
.product-info-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(66, 47, 18, 0.07);
}
.product-tabs-scroll {
  padding: 10px 10px 0;
  overflow-x: auto;
  background: var(--cream);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}
.product-information .nav-tabs {
  min-width: 820px;
  gap: 7px;
  border: 0;
}
.product-information .nav-item {
  display: flex;
  flex: 1 0 0;
}
.product-information .nav-link {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border: 1px solid transparent;
  border-radius: 9px 9px 0 0;
  color: #4b4540;
  background: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.product-information .nav-link:hover {
  border-color: var(--soft-gold);
  color: var(--wine);
  background: #fff;
}
.product-information .nav-link.active {
  border-color: var(--wine);
  border-bottom-color: var(--wine);
  color: #fff;
  background: var(--wine);
  box-shadow: 0 8px 18px rgba(155, 30, 70, 0.17);
}
.product-tab-content {
  min-height: 290px;
  padding: 32px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.product-tab-content h2 {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 19px;
  font-weight: 600;
}
.product-tab-content h3 {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.product-tab-content p,
.care-list {
  color: var(--body);
  font-size: 11px;
  line-height: 1.9;
}
.care-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 28px;
  padding: 0;
  counter-reset: care;
  list-style: none;
}
.care-list li {
  position: relative;
  padding: 12px 12px 12px 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  counter-increment: care;
}
.care-list li::before {
  content: counter(care);
  position: absolute;
  top: 10px;
  left: 11px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-size: 9px;
  font-weight: 600;
}
.specification-table {
  min-width: 800px;
  border-color: var(--border);
  font-size: 10px;
}
.specification-table th {
  width: 14%;
  padding: 14px;
  color: var(--wine);
  background: var(--cream);
  font-weight: 600;
  vertical-align: middle;
}
.specification-table td {
  width: 36%;
  padding: 14px;
  color: var(--body);
  background: #fff;
  vertical-align: middle;
}
.specification-table tr:nth-child(even) td {
  background: #fcfbf8;
}
.more-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.more-info-list p {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
}
.more-info-list p:last-child {
  grid-column: 1/-1;
}
.more-info-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--wine);
}
.review-form {
  padding: 20px;
  border-radius: 10px;
  background: var(--cream);
}
.review-form .form-label {
  font-size: 10px;
  font-weight: 500;
}
.review-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--soft-gold);
  border-radius: 10px;
  background: linear-gradient(135deg, #faf7f2, #fff);
}
.review-summary > strong {
  color: var(--wine);
  font-size: 38px;
}
.review-summary small {
  color: #777;
  font-size: 9px;
}
.customer-review {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(31, 31, 31, 0.04);
}
.customer-review p {
  margin: 8px 0;
}
.customer-review strong {
  font-size: 10px;
}
@media (max-width: 991.98px) {
  .product-gallery {
    position: static;
  }
  .site-header .navbar-collapse {
    padding: 14px 0;
  }
  .header-actions {
    padding-top: 10px;
  }
  .product-details h1 {
    font-size: 1.7rem;
  }
}
@media (max-width: 767.98px) {
  .care-list,
  .more-info-list {
    grid-template-columns: 1fr;
  }
  .more-info-list p:last-child {
    grid-column: auto;
  }
  .product-tab-content {
    min-height: 260px;
    padding: 22px 16px;
  }
}
@media (max-width: 575.98px) {
  body {
    font-size: 12px;
  }
  .offer-bar {
    font-size: 9px;
  }
  .navbar-brand img {
    width: 100px;
  }
  .product-section {
    padding-top: 18px !important;
  }
  .gallery-thumbs {
    gap: 5px !important;
  }
  .description-panel {
    padding: 14px;
  }
  .option-card img {
    width: 44px;
    height: 52px;
  }
  .purchase-row .primary-btn {
    font-size: 9px;
  }
  .service-points > div {
    font-size: 8px;
  }
  .benefit-strip .col-12 {
    padding-left: 45px;
  }
  .related h2 {
    font-size: 1.45rem;
  }
  .product-information {
    padding-right: 12px;
    padding-left: 12px;
  }
  .product-info-heading p {
    padding: 0 14px;
    font-size: 9px;
  }
  .product-info-card {
    border-radius: 10px;
  }
  .product-tabs-scroll {
    padding: 7px 7px 0;
  }
  .product-information .nav-tabs {
    min-width: max-content;
    gap: 5px;
  }
  .product-information .nav-item {
    flex: 0 0 auto;
  }
  .product-information .nav-link {
    width: auto;
    min-height: 44px;
    padding: 10px 13px;
    font-size: 8px;
  }
  .product-tab-content {
    padding: 19px 13px;
  }
  .review-summary {
    flex-wrap: wrap;
  }
}

/* Reference-led Bootstrap product page composition. */
.product-section {
  max-width: 1320px;
}

.product-section > .row {
  --bs-gutter-x: 2rem;
}

.gallery-stage {
  aspect-ratio: 4 / 5;
  max-height: 680px;
  border: 1px solid #eee7e1;
  border-radius: 8px;
  background: #faf7f2;
}

.gallery-stage .gallery-main-item,
.gallery-stage .gallery-main-item img {
  width: 100%;
  height: 100%;
}

.gallery-stage .gallery-main-item img {
  object-fit: cover;
}

.gallery-thumbs label,
.video-thumb {
  overflow: hidden;
  border: 1px solid #e5ddd6;
  border-radius: 6px;
  background: #fff;
}

.product-details {
  padding: 0.25rem 0;
}

.product-details h1 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.product-kicker,
.stock-alert,
.meta-row,
.cod-line {
  font-size: 0.65rem;
}

.price-row > strong {
  font-size: 1.55rem;
}

.action-links {
  justify-content: space-between;
  font-size: 0.62rem;
}

.purchase-row .btn {
  min-height: 44px;
}

.description-panel {
  margin-block: 1rem !important;
  padding: 0.9rem 1rem;
}

.product-option-group,
.service-card {
  border-color: #eadfd7;
  background: #fff;
}

.product-option-group summary {
  min-height: 46px;
  padding: 0.85rem 1rem;
  color: #332d2a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.option-card {
  margin: 0;
  border-top: 1px solid #f0e8e2;
}

.product-service-strip .card {
  width: 100% !important;
  min-width: 0;
  border-color: #eadfd7 !important;
  border-radius: 6px;
  background: #fffdfa;
  overflow-wrap: normal;
  word-break: normal;
}

.product-service-strip > .row > .col {
  width: auto !important;
  max-width: none !important;
  padding: 0;
}

.product-service-strip > .row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.product-service-strip .bi {
  color: #9b1e46;
  font-size: 1.25rem;
}

.product-service-strip strong,
.product-service-strip small {
  display: block;
}

.product-service-strip strong {
  color: #332d2a;
  font-size: 0.68rem;
  font-weight: 600;
}

.product-service-strip small {
  margin-top: 0.2rem;
  color: #7b736e;
  font-size: 0.58rem;
}

.product-section-title h2 {
  color: #332d2a;
  font-size: 1.35rem;
  font-weight: 600;
}

.product-section-title p {
  color: #7b736e;
  font-size: 0.7rem;
}

.product-information-tabs .nav-tabs {
  border-color: #eadfd7;
}

.product-information-tabs .nav-link {
  min-width: 145px;
  padding: 0.75rem 0.85rem;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #675f5b;
  background: #faf7f2;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-information-tabs .nav-link.active {
  border-bottom-color: #9b1e46;
  color: #9b1e46;
  background: #fff;
}

.product-information-tabs .tab-content {
  min-height: 190px;
  border-color: #eadfd7 !important;
}

.product-information-tabs .tab-pane {
  color: #625b57;
  font-size: 0.7rem;
  line-height: 1.75;
}

.product-information-tabs .tab-pane h3 {
  color: #332d2a;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-information-tabs th,
.product-information-tabs td {
  padding: 0.6rem 0.75rem;
  border-color: #eee7e1;
  font-size: 0.66rem;
}

.review-score {
  color: #9b1e46;
  font-size: 1.6rem;
}

.related {
  border-top: 1px solid #eee7e1;
}

.related-heading h2 {
  font-size: 1.35rem;
  font-weight: 600;
}

.related-card {
  height: 100%;
  padding-bottom: 0.75rem;
  border: 1px solid #eee7e1;
  border-radius: 6px;
  background: #fff;
}

.related-card img {
  border-radius: 5px 5px 0 0;
}

.related-card h3,
.related-card strong {
  margin-inline: 0.65rem;
}

@media (max-width: 991.98px) {
  .product-section > .row {
    --bs-gutter-x: 1rem;
  }

  .product-details {
    padding-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .product-service-strip > .row > .col {
    width: auto !important;
    max-width: none !important;
  }

  .product-service-strip > .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .product-service-strip .card {
    padding: 0.75rem !important;
  }

  .product-information-tabs .tab-pane {
    padding: 1rem !important;
  }

  .product-information-tabs .nav-link {
    min-width: 125px;
  }

  body.product-page .site-header .header-actions #searchButton,
  body.product-page .site-header .header-actions > button[aria-label="Account"],
  body.product-page .site-header .header-actions #headerWishlist {
    display: none !important;
  }

  body.product-page .site-header .header-actions {
    gap: 0;
  }
}

/* CSS-only product gallery: thumbnail selection and hover zoom. */
.product-gallery-shell {
  position: relative;
}
.gallery-control {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.gallery-thumbs label {
  display: block;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.gallery-thumbs label:hover {
  border-color: var(--soft-gold);
  transform: translateY(-2px);
}
.gallery-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  cursor: zoom-in;
}
.gallery-main-item {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.gallery-main-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-stage:hover .gallery-main-item {
  overflow: hidden;
}
.gallery-stage:hover .gallery-main-item img {
  transform: scale(1.16);
}
#gallery-1:checked ~ .product-gallery .gallery-main-1,
#gallery-2:checked ~ .product-gallery .gallery-main-2,
#gallery-3:checked ~ .product-gallery .gallery-main-3,
#gallery-4:checked ~ .product-gallery .gallery-main-4 {
  opacity: 1;
  pointer-events: auto;
}
#gallery-1:checked ~ .product-gallery label[for="gallery-1"],
#gallery-2:checked ~ .product-gallery label[for="gallery-2"],
#gallery-3:checked ~ .product-gallery label[for="gallery-3"],
#gallery-4:checked ~ .product-gallery label[for="gallery-4"] {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(155, 30, 70, 0.09);
}
.zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 5;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(31, 31, 31, 0.72);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  pointer-events: none;
}

/* Native HTML details replace JavaScript accordions. */
.product-option-group {
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
}
.product-option-group summary {
  position: relative;
  padding: 14px 45px 14px 16px;
  color: var(--ink);
  background: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.product-option-group summary::-webkit-details-marker {
  display: none;
}
.product-option-group summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--wine);
  font-size: 20px;
  font-weight: 400;
  transform: translateY(-50%);
}
.product-option-group[open] summary {
  color: var(--wine);
  border-bottom: 1px solid var(--border);
}
.product-option-group[open] summary::after {
  content: "−";
}

/* CSS-only product information tabs. */
.info-control {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.product-information .nav-link {
  cursor: pointer;
}
.product-tab-content > .tab-pane {
  display: none;
  opacity: 1;
}
.product-info-card
  #info-description:checked
  ~ .product-tab-content
  #description-pane,
.product-info-card
  #info-specification:checked
  ~ .product-tab-content
  #specification-pane,
.product-info-card #info-care:checked ~ .product-tab-content #care-pane,
.product-info-card #info-shipping:checked ~ .product-tab-content #shipping-pane,
.product-info-card #info-more:checked ~ .product-tab-content #more-pane,
.product-info-card #info-review:checked ~ .product-tab-content #review-pane {
  display: block;
}
.product-info-card
  #info-description:checked
  ~ .product-tabs-scroll
  label[for="info-description"],
.product-info-card
  #info-specification:checked
  ~ .product-tabs-scroll
  label[for="info-specification"],
.product-info-card
  #info-care:checked
  ~ .product-tabs-scroll
  label[for="info-care"],
.product-info-card
  #info-shipping:checked
  ~ .product-tabs-scroll
  label[for="info-shipping"],
.product-info-card
  #info-more:checked
  ~ .product-tabs-scroll
  label[for="info-more"],
.product-info-card
  #info-review:checked
  ~ .product-tabs-scroll
  label[for="info-review"] {
  border-color: var(--wine);
  color: #fff;
  background: var(--wine);
  box-shadow: 0 8px 18px rgba(155, 30, 70, 0.17);
}

/* Professional wishlist control with a scalable inline icon. */
.action-links .wishlist-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--wine);
  font-weight: 600;
}
.wishlist-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    fill 0.2s ease,
    transform 0.2s ease;
}
.wishlist-action:hover svg {
  fill: rgba(155, 30, 70, 0.13);
  transform: scale(1.08);
}

/* CSS-only responsive navigation. */
.nav-control {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  #productNavToggle:checked ~ #productNav {
    display: block !important;
  }
  .navbar-toggler {
    cursor: pointer;
  }
  .site-header .navbar-collapse {
    width: 100%;
    flex-basis: 100%;
  }
}

/* Compact editorial product layout inspired by the supplied reference. */
.product-section {
  max-width: 1280px;
}
.product-section > .row {
  --bs-gutter-x: 2rem;
}
.product-details {
  padding-top: 2px;
}
.product-details h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 500;
}
.product-gallery {
  top: 82px;
}
.gallery-thumbs {
  max-height: 720px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-color: #c8a96a transparent;
  scrollbar-width: thin;
}
.gallery-thumbs::-webkit-scrollbar {
  width: 5px;
}
.gallery-thumbs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c8a96a;
}

/* JavaScript-selected thumbnails support any number of gallery images. */
.gallery-stage.is-dynamic .gallery-main-item {
  opacity: 0 !important;
  pointer-events: none !important;
}
.gallery-stage.is-dynamic .gallery-main-item:first-of-type {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.gallery-thumbs label.is-active,
.gallery-thumbs .gallery-thumb.is-active {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(155, 30, 70, 0.09);
}
.video-thumb {
  display: flex;
  aspect-ratio: 3/4;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--wine);
  background: #fff;
  text-align: center;
}
.video-thumb span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  font-size: 11px;
}
.video-thumb small {
  font-size: 7px;
}
.gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  padding: 7px 10px;
  border-radius: 4px;
  color: #fff;
  background: var(--wine);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.gallery-wishlist {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 5;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--wine);
  background: #fff;
  box-shadow: 0 4px 13px rgba(31, 31, 31, 0.14);
}
.gallery-wishlist svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 12px rgba(31, 31, 31, 0.13);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}
.gallery-prev {
  left: 12px;
}
.gallery-next {
  right: 12px;
}
.gallery-urgency {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: 8px 11px;
  border-radius: 6px;
  color: var(--wine);
  background: rgba(255, 247, 245, 0.94);
  box-shadow: 0 4px 12px rgba(31, 31, 31, 0.1);
}
.gallery-urgency strong {
  font-size: 8px;
}
.gallery-urgency small {
  margin-top: 2px;
  color: #777;
  font-size: 6px;
}
.zoom-hint {
  right: 14px;
  bottom: 14px;
}
.product-feature-grid > div {
  display: flex;
  gap: 9px;
  align-items: center;
}
.product-feature-grid > div > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--wine);
  background: var(--cream);
}
.product-feature-grid p {
  margin: 0;
}
.product-feature-grid strong,
.product-feature-grid small {
  display: block;
}
.product-feature-grid strong {
  font-size: 8px;
}
.product-feature-grid small {
  margin-top: 2px;
  color: #777;
  font-size: 6px;
}
.description-panel {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
  padding: 14px 15px;
}
.description-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}
.description-panel p {
  font-size: 9px;
  line-height: 1.65;
}
.product-option-group summary {
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 9px;
}
.option-card {
  padding: 7px;
}
.option-card img {
  width: 44px;
  height: 50px;
}
.service-card {
  padding: 10px 12px;
}
.action-links {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.shopping-assurance article {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
}
.shopping-assurance i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--wine);
  background: #fff;
  font-style: normal;
}
.shopping-assurance p {
  margin: 0;
}
.shopping-assurance strong,
.shopping-assurance span {
  display: block;
}
.shopping-assurance strong {
  font-size: 9px;
}
.shopping-assurance span {
  margin-top: 2px;
  color: #777;
  font-size: 7px;
}
.related-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
}
.related-heading button {
  padding: 8px 13px;
  border: 1px solid var(--soft-gold);
  border-radius: 4px;
  color: var(--wine);
  background: #fff;
  font-size: 8px;
  font-weight: 600;
}
.related-card {
  padding-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.related-card h3,
.related-card strong {
  display: block;
  margin-right: 10px;
  margin-left: 10px;
}
.related-card img {
  border-radius: 0;
}
.product-information-section {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.product-info-heading {
  margin-bottom: 16px !important;
}
.product-info-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
}
.product-tab-content {
  min-height: 230px;
  padding: 24px;
}

@media (max-width: 767.98px) {
  .product-section > .row {
    --bs-gutter-x: 1rem;
  }
  .gallery-badge {
    top: 8px;
    left: 8px;
  }
  .gallery-wishlist {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
  .gallery-arrow {
    width: 29px;
    height: 29px;
  }
  .gallery-prev {
    left: 7px;
  }
  .gallery-next {
    right: 7px;
  }
  .gallery-urgency {
    bottom: 8px;
    left: 8px;
  }
  .zoom-hint {
    right: 8px;
    bottom: 8px;
  }
  .product-feature-grid strong {
    font-size: 7px;
  }
  .shopping-assurance article {
    min-height: 66px;
    padding: 9px;
  }
  .shopping-assurance strong {
    font-size: 8px;
  }
  .shopping-assurance span {
    font-size: 6px;
  }
}

.product-review-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.review-section-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(66, 47, 18, 0.06);
}
.review-section-card .col-lg-7 > h2,
.review-section-card .col-lg-5 > h2 {
  margin: 0 0 14px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .product-review-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .review-section-card {
    padding: 16px 12px;
    border-radius: 10px;
  }
}

.gallery-services > div {
  display: flex !important;
}
.gallery-services > div > span {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  padding: 12px 10px 12px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #4a403a;
  background: linear-gradient(135deg, #faf7f2, #fff);
  font-size: 8px;
  font-weight: 500;
  line-height: 1.55;
  box-shadow: 0 6px 16px rgba(66, 47, 18, 0.045);
}
.gallery-services > div > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 4px;
  height: 24px;
  border-radius: 999px;
  background: var(--wine);
  transform: translateY(-50%);
}
@media (max-width: 575.98px) {
  .gallery-services > div > span {
    min-height: 48px;
    padding: 10px 10px 10px 19px;
    font-size: 8px;
  }
  .gallery-services > div > span::before {
    height: 20px;
  }
}

/* Mobile product details use native HTML disclosure rows. */
.mobile-product-details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(66, 47, 18, 0.06);
  overflow: hidden;
}
.mobile-product-details details {
  border-bottom: 1px solid var(--border);
}
.mobile-product-details details:last-child {
  border-bottom: 0;
}
.mobile-product-details summary {
  position: relative;
  padding: 14px 42px 14px 15px;
  color: #3f3732;
  background: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.mobile-product-details summary::-webkit-details-marker {
  display: none;
}
.mobile-product-details summary::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--wine);
  font-size: 20px;
  font-weight: 300;
  transform: translateY(-50%) rotate(0);
  transition: transform 0.2s ease;
}
.mobile-product-details details[open] summary {
  color: var(--wine);
  background: var(--cream);
}
.mobile-product-details details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}
.mobile-detail-content {
  padding: 14px 15px;
  border-top: 1px solid var(--border);
  color: var(--body);
  background: #fff;
  font-size: 8px;
  line-height: 1.75;
}
.mobile-detail-content p:last-child,
.mobile-detail-content ul:last-child {
  margin-bottom: 0;
}
.mobile-detail-content ul {
  padding-left: 17px;
}
.mobile-detail-content dl {
  margin: 0;
}
.mobile-detail-content dl > div {
  display: grid;
  grid-template-columns: 42% 58%;
  padding: 7px 0;
  border-bottom: 1px dashed var(--border);
}
.mobile-detail-content dl > div:last-child {
  border-bottom: 0;
}
.mobile-detail-content dt {
  color: #777;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mobile-detail-content dd {
  margin: 0;
  color: var(--ink);
  font-size: 8px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .product-information .product-info-card {
    display: none;
  }
  .product-info-heading {
    margin-bottom: 14px !important;
  }
  .product-information-section {
    padding-top: 26px !important;
    padding-bottom: 30px !important;
  }
}

/* Fixed mobile purchase bar: quantity, add to cart and buy now. */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 72px;
  }
  .purchase-row {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: flex;
    flex-wrap: nowrap;
    margin: 0 !important;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--soft-gold);
    background: rgba(252, 251, 248, 0.98);
    box-shadow: 0 -8px 25px rgba(31, 31, 31, 0.12);
    backdrop-filter: blur(10px);
  }
  .purchase-row > [class*="col-"] {
    padding: 0 3px;
  }
  .purchase-row > .col-4 {
    flex: 0 0 25%;
    width: 25%;
  }
  .purchase-row > .col-8 {
    flex: 0 0 37.5%;
    width: 37.5%;
  }
  .purchase-row > .col-12 {
    flex: 0 0 37.5%;
    width: 37.5%;
  }
  .purchase-row .quantity,
  .purchase-row .primary-btn,
  .purchase-row .secondary-buy {
    height: 46px;
    min-height: 46px;
    border-radius: 4px;
  }
  .purchase-row .quantity {
    background: #fff;
  }
  .purchase-row .quantity button {
    font-size: 16px;
  }
  .purchase-row .quantity span {
    font-size: 12px;
    font-weight: 600;
  }
  .purchase-row .primary-btn,
  .purchase-row .secondary-buy {
    padding: 7px 4px;
    font-size: 8px;
    letter-spacing: 0.045em;
    white-space: nowrap;
  }
}
}

/* ==========================================================================
   COLLECTIONS PAGE STYLES (scoped)
   Bootstrap handles layout, spacing, grid, navigation, forms and pagination.
   ========================================================================== */
body.collections-page {
  --bs-primary: #9b1e46;
  --bs-primary-rgb: 155, 30, 70;
  --bs-link-color: #9b1e46;
  --bs-link-hover-color: #7d1738;
  color: #1f1f1f;
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
}

/* CSS-only cart drawer for the JavaScript-free collection page. */
body.collections-page:has(.cart-overlay:target) {
  overflow: hidden;
}

body.collections-page .cart-overlay:target {
  visibility: visible;
  pointer-events: auto;
}

body.collections-page .cart-overlay:target .cart-backdrop {
  opacity: 1;
}

body.collections-page .cart-overlay:target .cart-drawer {
  transform: none;
}

body.collections-page:has(.search-overlay:target) {
  overflow: hidden;
}

body.collections-page .search-overlay:target {
  visibility: visible;
  pointer-events: auto;
}

body.collections-page .search-overlay:target .search-backdrop {
  opacity: 1;
}

body.collections-page .search-overlay:target .search-panel {
  transform: none;
}

body.collections-page #mobileNav:target {
  display: block !important;
}

body.collections-page .header-actions > a {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #1f1f1f;
  text-decoration: none;
}

body.collections-page .header-actions > a:hover,
body.collections-page .header-actions > a:focus-visible {
  color: #9b1e46;
}

@scope (body.collections-page main) {
  .btn-outline-primary {
    --bs-btn-color: #9b1e46;
    --bs-btn-border-color: #9b1e46;
    --bs-btn-hover-bg: #9b1e46;
    --bs-btn-hover-border-color: #9b1e46;
    --bs-btn-active-bg: #7d1738;
    --bs-btn-active-border-color: #7d1738;
  }

  .breadcrumb { font-size: 10px; }
  .collection-title { color: #292524; letter-spacing: .2em; }
  .collection-hero h1 { color: #3f3935; font-size: 15px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; }
  .product-list > .col { min-width: 0; }
  .product-card { display: block !important; width: 100% !important; min-width: 0; background: #f5efe7; }
  .product-image { width: 100%; height: auto !important; aspect-ratio: 3 / 4; }
  .product-image img { display: block; width: 100% !important; height: 100% !important; object-fit: cover; transition: transform .35s ease; }
  .product-card:hover .product-image img { transform: scale(1.025); }
  .product-image > span { position: absolute; top: .5rem; left: .5rem; padding: .3rem .45rem; border-radius: var(--bs-border-radius-sm); color: #fff; background: var(--bs-primary); font-size: 7px; font-weight: 700; }
  .product-card > div:last-child { position: absolute; right: .5rem; bottom: 8%; left: .5rem; text-align: center; }
  .product-card h2 { margin: 0; font-size: inherit; }
  .product-card h2 a { display: inline-block; padding: .45rem .75rem; border: 1px solid rgba(255,255,255,.9); color: #fff; background: rgba(50,36,31,.35); font-size: 8px; font-weight: 500; letter-spacing: .12em; line-height: 1.3; text-decoration: none; text-transform: uppercase; transition: color .2s ease, background-color .2s ease; }
  .product-card:hover h2 a { color: #3b322d; background: #fff; }
  .pagination {
    --bs-pagination-color: #5d5550;
    --bs-pagination-hover-color: #9b1e46;
    --bs-pagination-hover-bg: #fcf7f3;
    --bs-pagination-hover-border-color: #c8a96a;
    --bs-pagination-active-bg: #9b1e46;
    --bs-pagination-active-border-color: #9b1e46;
    --bs-pagination-focus-color: #9b1e46;
    --bs-pagination-focus-box-shadow: 0 0 0 .15rem rgba(155, 30, 70, .15);
  }
  @media (max-width: 575.98px) {
    .collection-hero h1 { font-size: 12px; }
    .product-card h2 a { padding: .35rem .45rem; font-size: 7px; letter-spacing: .08em; }
  }
}

/* One typography family across every page; icon fonts remain untouched. */
body,
body :where(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a,
    span,
    strong,
    small,
    label,
    button,
    input,
    select,
    textarea,
    option,
    summary,
    output,
    li,
    td,
    th
  ) {
  font-family: "Poppins", Arial, sans-serif !important;
}

/* Shared product and collection breadcrumb. */
.shared-breadcrumb {
  background: #fff;
  border-color: #e9e1d9 !important;
}

.shared-breadcrumb .breadcrumb {
  --bs-breadcrumb-divider-color: #999;
  --bs-breadcrumb-item-active-color: #777;
  align-items: center;
  font-size: 11px;
}

.shared-breadcrumb .breadcrumb-item a {
  color: #9b1e46;
  text-decoration: none;
}

.shared-breadcrumb .breadcrumb-item a:hover {
  color: #7d1738;
}

/* Keep product content in Poppins without overriding the shared header,
   search/cart overlays, or footer typography. */
body.product-page main,
body.product-page main *:not(.bi) {
  font-family: "Poppins", Arial, sans-serif !important;
}

body.product-page main input::placeholder,
body.product-page main textarea::placeholder {
  font-family: "Poppins", Arial, sans-serif !important;
}

/* One typography system across every page and shared storefront component. */
body,
body *:not(.bi):not(.fa):not(.fas):not(.far):not(.fab):not([class^="fa-"]):not([class*=" fa-"]),
input::placeholder,
textarea::placeholder {
  font-family: "Poppins", Arial, sans-serif !important;
}

@media (max-width: 575.98px) {
  body.product-page .site-header .header-actions #searchButton,
  body.product-page .site-header .header-actions > button[aria-label="Account"],
  body.product-page .site-header .header-actions #headerWishlist {
    display: none !important;
  }

  body.product-page .site-header .header-actions {
    gap: 0;
  }
}

/* Professional product-detail hierarchy inspired by modern saree commerce. */
body.product-page main .product-details {
  color: #292524;
}

body.product-page main .product-details h1 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

body.product-page main .product-subtitle {
  color: #6f6863;
  font-size: 0.8rem;
  line-height: 1.65;
}

body.product-page main .meta-row {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #eee7e1;
  color: #746c67;
  font-size: 0.7rem;
}

body.product-page main .price-row > strong {
  font-size: 1.65rem;
  font-weight: 600;
}

body.product-page main .product-points {
  color: #625b57;
  font-size: 0.72rem;
  line-height: 1.8;
}

body.product-page main .purchase-row .btn,
body.product-page main .delivery-check .btn,
body.product-page main .delivery-check .form-control {
  min-height: 46px;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

body.product-page main .description-panel {
  padding: 1.15rem 1.2rem;
  border: 1px solid #eee7e1;
  border-radius: 4px;
  background: #fcfaf7;
}

body.product-page main .description-panel h2,
body.product-page main .product-information-inline > h2,
body.product-page main .product-offers h2 {
  color: #292524;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

body.product-page main .description-panel p {
  color: #655e59;
  font-size: 0.74rem;
  line-height: 1.8;
}

body.product-page main .purchase-benefits > div > div {
  background: #fcfaf7;
  border-color: #eee7e1 !important;
}

body.product-page main .purchase-benefits strong,
body.product-page main .product-offers strong {
  color: #292524;
  font-size: 0.72rem;
  font-weight: 600;
}

body.product-page main .purchase-benefits small,
body.product-page main .product-offers small {
  color: #77706b;
  font-size: 0.64rem;
  line-height: 1.55;
}

body.product-page main .product-offers {
  border-color: #e6d8ca !important;
  background: #fffdf9;
}

body.product-page main .product-offers .list-group-item {
  border-color: #eee7e1;
  background: transparent;
}

body.product-page main .product-information-inline .accordion {
  overflow: hidden;
  border-color: #e7dfd8 !important;
  border-radius: 4px !important;
}

body.product-page main .product-information-inline .accordion-button {
  min-height: 50px;
  padding: 0.85rem 1rem;
  color: #292524;
  background: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  box-shadow: none;
}

body.product-page main .product-information-inline .accordion-button:not(.collapsed) {
  color: #9b1e46;
  background: #fcf7f3;
}

body.product-page main .product-information-inline .accordion-button:focus {
  border-color: #c8a96a;
  box-shadow: none;
}

body.product-page main .product-information-inline .accordion-body {
  color: #625b57;
  font-size: 0.7rem;
  line-height: 1.75;
}

body.product-page main .product-information-inline .table {
  --bs-table-bg: transparent;
  font-size: 0.68rem;
}

body.product-page main .product-information-inline th,
body.product-page main .product-information-inline td {
  padding: 0.65rem 1rem;
  border-color: #eee7e1;
}

body.product-page main .product-information-inline th {
  width: 42%;
  color: #4c4541;
  font-weight: 600;
}

/* Product information accordion in the right-hand details column. */
body.product-page main #productInformationAccordion {
  --bs-accordion-color: #625b57;
  --bs-accordion-bg: #fffdf9;
  --bs-accordion-border-color: #e7dfd8;
  --bs-accordion-border-radius: 4px;
  --bs-accordion-inner-border-radius: 3px;
  --bs-accordion-btn-color: #292524;
  --bs-accordion-btn-bg: #fffdf9;
  --bs-accordion-active-color: #9b1e46;
  --bs-accordion-active-bg: #fcf7f3;
  --bs-accordion-btn-focus-border-color: #c8a96a;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-icon-width: 0.8rem;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23292524' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%239b1e46' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  overflow: hidden;
  border: 1px solid #e7dfd8;
  border-radius: 4px;
}

body.product-page main #productInformationAccordion .accordion-item {
  border-width: 0 0 1px;
  border-color: #e7dfd8;
}

body.product-page main #productInformationAccordion .accordion-item:last-child {
  border-bottom: 0;
}

body.product-page main #productInformationAccordion .accordion-button {
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: none;
}

body.product-page main #productInformationAccordion .accordion-button:not(.collapsed) {
  border-bottom: 1px solid #eee7e1;
}

body.product-page main #productInformationAccordion .accordion-body {
  padding: 0.9rem;
  color: #625b57;
  font-size: 0.7rem;
  line-height: 1.75;
}

body.product-page main #productInformationAccordion .accordion-body p:last-child,
body.product-page main #productInformationAccordion .accordion-body dd:last-child {
  margin-bottom: 0;
}

body.product-page main #productInformationAccordion .accordion-body dt {
  color: #4c4541;
  font-weight: 600;
}

/* Review form and verified customer feedback. */
body.product-page main .product-reviews {
  border-top: 1px solid #e7dfd8;
}

body.product-page main .product-reviews .product-section-title h2 {
  color: #292524;
  font-size: 1.35rem;
  font-weight: 600;
}

body.product-page main .product-reviews .product-section-title p {
  color: #77706b;
  font-size: 0.7rem;
}

body.product-page main .review-form-panel,
body.product-page main .customer-reviews {
  padding: 1.5rem;
  border: 1px solid #e7dfd8;
  border-radius: 4px;
  background: #fffdf9;
}

body.product-page main .review-form-panel h3,
body.product-page main .customer-reviews h3 {
  color: #292524;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
}

body.product-page main .review-form-panel .form-label {
  margin-bottom: 0.35rem;
  color: #4c4541;
  font-size: 0.7rem;
  font-weight: 500;
}

body.product-page main .review-form-panel .form-label span {
  color: #9b1e46;
}

body.product-page main .review-form-panel .form-control,
body.product-page main .review-form-panel .form-select {
  min-height: 44px;
  border-color: #ddd3cb;
  border-radius: 2px;
  background-color: #fff;
  color: #292524;
  font-size: 0.72rem;
}

body.product-page main .review-form-panel textarea.form-control {
  min-height: 130px;
}

body.product-page main .review-form-panel .form-control:focus,
body.product-page main .review-form-panel .form-select:focus {
  border-color: #c8a96a;
  box-shadow: 0 0 0 0.15rem rgba(200, 169, 106, 0.15);
}

body.product-page main .review-form-panel .form-text {
  color: #8a827d;
  font-size: 0.58rem;
}

body.product-page main .review-form-panel .btn-primary {
  --bs-btn-bg: #9b1e46;
  --bs-btn-border-color: #9b1e46;
  --bs-btn-hover-bg: #7d1738;
  --bs-btn-hover-border-color: #7d1738;
  min-height: 42px;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

body.product-page main .review-average {
  color: #9b1e46;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

body.product-page main .customer-reviews .stars,
body.product-page main .customer-review .stars {
  color: #c8a14a;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

body.product-page main .customer-reviews small {
  color: #7b736e;
  font-size: 0.6rem;
}

body.product-page main .customer-review {
  margin-bottom: 1.15rem;
  padding: 1rem 0 1.15rem;
  border-top: 1px solid #eee7e1;
}

body.product-page main .customer-review strong,
body.product-page main .customer-review h4 {
  color: #342e2b;
  font-size: 0.72rem;
  font-weight: 600;
}

body.product-page main .customer-review time {
  color: #8a827d;
  font-size: 0.58rem;
}

body.product-page main .customer-review h4 {
  margin: 0.45rem 0 0.3rem;
}

body.product-page main .customer-review p {
  margin-bottom: 0.55rem;
  color: #655e59;
  font-size: 0.68rem;
  line-height: 1.7;
}

body.product-page main .customer-review small,
body.product-page main .customer-review .bi {
  color: #efa900;
}

body.product-page main .review-media {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.7rem 0;
}

body.product-page main .review-photo {
  width: 72px;
  height: 88px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #e1d7ce;
  border-radius: 3px;
  background: #f8f3ed;
}

body.product-page main .review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

body.product-page main .review-photo:hover img,
body.product-page main .review-photo:focus-visible img {
  transform: scale(1.05);
}

body.product-page main .review-photo:focus-visible {
  outline: 2px solid #9b1e46;
  outline-offset: 2px;
}

body.product-page main .review-video {
  display: block;
  width: min(100%, 310px);
  aspect-ratio: 16 / 9;
  border: 1px solid #e1d7ce;
  border-radius: 3px;
  background: #1f1f1f;
  object-fit: cover;
}

/* Customer review presentation: media first, followed by review copy. */
body.product-page main .customer-reviews {
  padding: 0;
  border: 0;
  background: transparent;
}

body.product-page main .customer-reviews > h3 {
  color: #292524;
  font-size: 1rem;
  font-weight: 600;
}

body.product-page main .customer-review:first-of-type {
  padding-top: 0;
  border-top: 0;
}

body.product-page main .customer-review .stars {
  margin-bottom: 0.25rem;
  color: #f2aa00;
  font-size: 1.05rem;
  line-height: 1;
}

body.product-page main .customer-review h4 {
  margin: 0 0 0.3rem;
  color: #181513;
  font-size: 0.88rem;
  font-weight: 600;
}

body.product-page main .review-customer {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.65rem;
  color: #77706b;
  font-size: 0.64rem;
}

body.product-page main .review-customer .bi {
  color: #77706b;
  font-size: 0.72rem;
}

body.product-page main .review-customer time::before {
  content: "•";
  margin-right: 0.3rem;
}

body.product-page main .customer-review .review-media {
  margin: 0.55rem 0;
}

body.product-page main .customer-review .review-photo {
  width: 88px;
  height: 94px;
  padding: 4px;
  background: #fff;
}

body.product-page main .customer-review .review-photo img {
  border-radius: 2px;
}

body.product-page main .customer-review p {
  margin: 0;
  color: #332d2a;
  font-size: 0.72rem;
  line-height: 1.7;
}

@media (max-width: 575.98px) {
  body.product-page main .review-form-panel,
  body.product-page main .customer-reviews {
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  body.product-page main .product-details h1 {
    font-size: 1.5rem;
  }

  body.product-page main .purchase-benefits > .col-6 {
    width: 100%;
  }
}

/* Polished customer-review column. */
body.product-page main .customer-reviews {
  padding: 1.25rem;
  border: 1px solid #e7dfd8;
  border-radius: 6px;
  background: #fcfaf7;
}

body.product-page main .customer-reviews > .d-flex {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #e9e1da;
}

body.product-page main .customer-reviews > .d-flex h3 {
  color: #292524;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
}

body.product-page main .review-count {
  color: #847b75;
  font-size: 0.6rem;
}

body.product-page main .review-summary strong {
  display: block;
  color: #9b1e46;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

body.product-page main .review-summary .stars {
  color: #efa900;
  font-size: 0.64rem;
  letter-spacing: 0.04em;
}

body.product-page main .review-list {
  max-height: 680px;
  min-height: 220px;
  overflow-y: auto;
  padding: 0.85rem 0.35rem 0 0;
  scrollbar-color: #c8a96a #f1ebe5;
  scrollbar-width: thin;
}

body.product-page main .review-list:not(:has(.customer-review)) {
  display: grid;
  min-height: 320px;
  overflow: hidden;
  place-items: center;
  padding: 1.5rem;
  border: 1px dashed #ddcfc3;
  border-radius: 5px;
  background: #fff;
  text-align: center;
}

body.product-page main .review-list:not(:has(.customer-review))::before {
  max-width: 260px;
  color: #756c66;
  content: attr(data-empty-message);
  font-size: 0.7rem;
  line-height: 1.7;
}

body.product-page main .review-list::-webkit-scrollbar {
  width: 5px;
}

body.product-page main .review-list::-webkit-scrollbar-track {
  background: #f1ebe5;
}

body.product-page main .review-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #c8a96a;
}

body.product-page main .review-list .customer-review,
body.product-page main .review-list .customer-review:first-of-type {
  margin: 0 0 0.85rem;
  padding: 1rem;
  border: 1px solid #e8ded6;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(58, 43, 35, 0.04);
}

body.product-page main .review-list .customer-review:last-child {
  margin-bottom: 0 !important;
}

body.product-page main .review-list .customer-review .stars {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

body.product-page main .review-list .customer-review h4 {
  margin-top: 0.35rem;
  font-size: 0.78rem;
}

body.product-page main .review-list .review-customer {
  margin-bottom: 0.7rem;
  color: #817873;
  font-size: 0.6rem;
}

body.product-page main .review-list .review-photo {
  width: 76px;
  height: 86px;
}

body.product-page main .review-list .review-video {
  width: min(100%, 280px);
}

body.product-page main .review-list .customer-review p {
  color: #554e49;
  font-size: 0.66rem;
  line-height: 1.65;
}

body.product-page main .review-pagination .pagination {
  --bs-pagination-color: #5d5550;
  --bs-pagination-bg: #fff;
  --bs-pagination-border-color: #e2d8d0;
  --bs-pagination-hover-color: #9b1e46;
  --bs-pagination-hover-bg: #fcf7f3;
  --bs-pagination-hover-border-color: #c8a96a;
  --bs-pagination-focus-color: #9b1e46;
  --bs-pagination-focus-bg: #fcf7f3;
  --bs-pagination-focus-box-shadow: 0 0 0 0.15rem rgba(200, 169, 106, 0.18);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #9b1e46;
  --bs-pagination-active-border-color: #9b1e46;
  --bs-pagination-disabled-color: #aaa19b;
  --bs-pagination-disabled-bg: #f7f2ed;
  --bs-pagination-disabled-border-color: #e7dfd8;
  gap: 0.25rem;
}

body.product-page main .review-pagination .page-link {
  min-width: 30px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 500;
  text-align: center;
}

body.product-page main .customer-reviews:not([data-has-more="true"]) .review-pagination,
body.product-page main .customer-reviews:not(:has(.customer-review)) .review-pagination {
  display: none;
}

/* Product color variants below the wishlist row. */
body.product-page main .color-variants legend {
  float: none;
  width: auto;
  color: #5d5550;
  font-size: 0.68rem;
  font-weight: 500;
}

body.product-page main .color-variants legend strong {
  color: #292524;
  font-weight: 600;
}

body.product-page main .color-swatch {
  position: relative;
  display: flex;
  width: 64px;
  margin: 0;
  padding: 3px;
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid #ddd3cb;
  border-radius: 4px;
  background: #fff;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

body.product-page main .color-swatch:hover {
  transform: translateY(-1px);
  border-color: #c8a96a;
  box-shadow: 0 4px 10px rgba(58, 43, 35, 0.1);
}

body.product-page main .color-swatch img {
  width: 100%;
  height: 70px;
  border-radius: 2px;
  object-fit: cover;
}

body.product-page main .color-swatch > span {
  overflow: hidden;
  color: #625b57;
  font-size: 0.52rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Complete related-product cards. */
body.product-page main .related .related-card {
  padding: 0;
  border-color: #e7dfd8;
  border-radius: 7px;
  box-shadow: 0 5px 16px rgba(58, 43, 35, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.product-page main .related .related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(58, 43, 35, 0.1);
}

body.product-page main .related .related-card .card-img-top {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

body.product-page main .related .related-card:hover .card-img-top {
  transform: scale(1.02);
}

body.product-page main .related-badge {
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.4rem 0.55rem;
  color: #fff;
  background: #9b1e46;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

body.product-page main .related-wishlist {
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid #d7b86f;
  border-radius: 50%;
  color: #9b1e46;
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
}

body.product-page main .related .card-body {
  padding: 0.9rem;
}

body.product-page main .related .card-title {
  margin: 0 0 0.3rem;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
}

body.product-page main .related .card-title a {
  color: #292524;
  text-decoration: none;
}

body.product-page main .related .card-text {
  margin-bottom: 1rem;
  color: #817873;
  font-size: 0.6rem;
}

body.product-page main .related .related-card strong {
  margin: 0;
  color: #9b1e46;
  font-size: 0.86rem;
  white-space: nowrap;
}

body.product-page main .related .btn-outline-primary {
  --bs-btn-color: #9b1e46;
  --bs-btn-border-color: #9b1e46;
  --bs-btn-hover-bg: #9b1e46;
  --bs-btn-hover-border-color: #9b1e46;
  padding: 0.45rem 0.55rem;
  border-radius: 0;
  font-size: 0.52rem;
  font-weight: 600;
  white-space: nowrap;
}

body.product-page main .related-products-grid > .col {
  min-width: 0;
}

body.product-page main .related-products-grid .related-card {
  width: 100%;
  min-width: 0;
}

body.product-page main .related-products-grid .position-relative:first-child {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #f3ede7;
}

body.product-page main .related-products-grid img:not([src]),
body.product-page main .related-products-grid img[src=""] {
  visibility: hidden;
}

body.product-page main .related-products-grid .card-title {
  display: -webkit-box;
  min-height: 2.9em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.product-page main .related-products-grid .card-text {
  display: -webkit-box;
  min-height: 1.5em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

body.product-page main .related-products-grid:not(:has(> .col)) {
  display: block;
  margin: 0;
  padding: 2.5rem 1rem;
  border: 1px dashed #ddcfc3;
  border-radius: 6px;
  background: #fcfaf7;
  text-align: center;
}

body.product-page main .related-products-grid:not(:has(> .col))::before {
  color: #756c66;
  content: attr(data-empty-message);
  font-size: 0.72rem;
}

body.product-page main .product-gallery-shell,
body.product-page main .product-details,
body.product-page main .product-options,
body.product-page main #productInformationAccordion {
  min-width: 0;
}

body.product-page main .product-details h1,
body.product-page main .product-subtitle,
body.product-page main .accordion-body,
body.product-page main .customer-review p {
  overflow-wrap: anywhere;
}

@media (max-width: 575.98px) {
  body.product-page main .related .card-body {
    padding: 0.7rem;
  }

  body.product-page main .related .card-body > div:last-child {
    align-items: stretch !important;
    flex-direction: column;
  }

  body.product-page main .related .btn-outline-primary {
    width: 100%;
  }
}

body.product-page main .color-swatch:focus-visible {
  outline: 2px solid #c8a96a;
  outline-offset: 3px;
}

body.product-page main .color-swatch.is-active,
body.product-page main .color-swatch[aria-current="page"] {
  border-color: #9b1e46;
  box-shadow: 0 0 0 1px #9b1e46;
}

body.product-page main .color-swatch.is-active::after,
body.product-page main .color-swatch[aria-current="page"]::after {
  display: none;
  content: none;
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.75));
  transform: rotate(45deg);
}

@media (max-width: 991.98px) {
  body.product-page main .review-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 575.98px) {
  body.product-page main .product-section .product-service-strip {
    display: none !important;
  }

  body.product-page main .customer-reviews {
    padding: 0.9rem;
  }

  body.product-page main .review-list .customer-review,
  body.product-page main .review-list .customer-review:first-of-type {
    padding: 0.85rem;
  }
}
