:root {
  --ivory: #faf6ef;
  --warm-ivory: #f3e9dc;
  --mocha: #3b2116;
  --espresso: #1c100b;
  --copper: #a87958;
  --maroon: #7c1f2c;
  --rose: #c98982;
  --sage: #7a8665;
  --mist: #ece6dc;
  --ink: #251914;
  --white: #fffdf9;
  --shadow: 0 18px 45px rgba(54, 32, 20, 0.13);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-zoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

body.is-locked {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.announcement {
  overflow: hidden;
  background: var(--ivory);
  color: var(--mocha);
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(59, 33, 22, 0.14);
}

.announcement-marquee {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.announcement:hover .announcement-marquee {
  animation-play-state: paused;
}

.announcement-marquee span {
  padding: 0 2.5rem;
  color: var(--mocha);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.header-helpline {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 84px;
  padding: 0.65rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(59, 33, 22, 0.1);
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(18px);
  animation: fade-up 520ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: var(--mocha);
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2vw, 1.8rem);
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(37, 25, 20, 0.82);
}

.main-nav a,
.site-footer a,
.section-heading a {
  position: relative;
}

.main-nav a::after,
.site-footer a::after,
.section-heading a::after {
  position: absolute;
  right: 0;
  bottom: -0.22rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover::after,
.site-footer a:hover::after,
.section-heading a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-button,
.cart-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(59, 33, 22, 0.16);
  background: var(--white);
  color: var(--mocha);
  cursor: pointer;
}

.icon-button svg,
.cart-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-button {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 0.25rem;
  border: 2px solid var(--ivory);
  background: var(--rose);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 74vh, 760px);
  overflow: hidden;
  background: var(--ivory);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  width: min(100%, 720px);
  padding: clamp(2.2rem, 7vw, 5rem) 1rem;
  color: var(--ivory);
  text-align: center;
  animation: fade-up 700ms 120ms ease both;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.feature-band h2,
.site-footer h2 {
  margin: 0;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 7vw, 6.4rem);
  text-shadow: 0 2px 18px rgba(28, 16, 11, 0.35);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 1.1rem 0 0;
  color: rgba(37, 25, 20, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button,
.add-to-cart,
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--mocha);
  padding: 0.72rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.add-to-cart:hover,
.newsletter button:hover {
  transform: translateY(-1px);
}

.button:active,
.add-to-cart:active,
.newsletter button:active {
  transform: translateY(0) scale(0.98);
}

.primary,
.add-to-cart,
.newsletter button {
  border-color: var(--maroon);
  background: var(--maroon);
  color: var(--ivory);
}

.secondary {
  background: transparent;
  color: var(--mocha);
}

.secondary:hover {
  background: var(--mocha);
  color: var(--ivory);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  border: 0;
  background: var(--ivory);
  box-shadow: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(250, 246, 239, 0.12), rgba(250, 246, 239, 0.6)),
    linear-gradient(to top, rgba(250, 246, 239, 0.6), rgba(250, 246, 239, 0));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 74vh, 760px);
  object-fit: cover;
  animation: soft-zoom 1200ms ease both;
}

.hero-media img:first-child {
  object-position: 50% 42%;
}

.hero-media img:last-child {
  object-position: 50% 50%;
}

.hero .eyebrow {
  margin: 0;
  color: var(--copper);
  text-shadow: none;
}

.hero .button {
  border-color: var(--maroon);
  background: var(--maroon);
  color: var(--ivory);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  border-block: 1px solid rgba(59, 33, 22, 0.12);
  background: var(--white);
}

.category-strip button {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 1rem;
  border-right: 1px solid rgba(59, 33, 22, 0.1);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.category-strip button:last-child {
  border-right: 0;
}

.category-strip button:hover,
.category-strip button.is-active {
  background: var(--warm-ivory);
}

.section {
  padding: clamp(2.4rem, 5vw, 3.7rem) clamp(1rem, 4vw, 3.2rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.section h2,
.feature-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.section-heading a {
  color: var(--mocha);
  font-weight: 700;
}

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

.product-card {
  min-width: 0;
  cursor: pointer;
  transition: transform 220ms ease;
}

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

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 0;
  background: var(--mist);
}

.product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.34rem 0.52rem;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  animation: fade-up 420ms ease both;
}

.badge.muted {
  background: var(--copper);
}

.badge.sale {
  background: var(--rose);
}

.product-info {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.55rem;
}

.product-info h3 {
  min-height: 2.65rem;
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}

.product-info p {
  margin: 0;
  color: rgba(37, 25, 20, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
}

.add-to-cart {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  width: auto;
  min-height: 40px;
  border-color: rgba(250, 246, 239, 0.92);
  background: rgba(250, 246, 239, 0.94);
  color: var(--mocha);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-card:hover .add-to-cart,
.product-card:focus-within .add-to-cart {
  opacity: 1;
  transform: translateY(0);
}

.feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 clamp(1rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-block: 1px solid rgba(59, 33, 22, 0.14);
  background: var(--white);
  color: var(--mocha);
}

.feature-band h2,
.feature-band .eyebrow {
  color: inherit;
}

.feature-band h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.feature-band .button {
  flex: 0 0 auto;
  border-color: var(--mocha);
  background: var(--mocha);
  color: var(--ivory);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) 0.8fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(59, 33, 22, 0.12);
  background: var(--white);
}

.site-footer h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.site-footer h3 {
  margin: 0 0 0.8rem;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.site-footer p {
  margin: 0.6rem 0 0;
  color: rgba(37, 25, 20, 0.72);
}

.newsletter label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.newsletter input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(59, 33, 22, 0.22);
  background: var(--ivory);
  padding: 0.7rem 0.85rem;
  color: var(--ink);
}

.site-footer nav {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.55rem;
  color: rgba(37, 25, 20, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(59, 33, 22, 0.1);
  color: rgba(37, 25, 20, 0.66);
  font-size: 0.85rem;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(28, 16, 11, 0.45);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto minmax(200px, 1fr) auto auto auto;
  width: min(100%, 430px);
  max-width: 430px;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--white);
  box-shadow: -18px 0 42px rgba(28, 16, 11, 0.22);
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(59, 33, 22, 0.12);
  max-width: 100%;
  box-sizing: border-box;
}

.drawer-header h2,
.modal-panel h2 {
  margin: 0;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.plain-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(59, 33, 22, 0.14);
  background: var(--ivory);
  color: var(--mocha);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.cart-items {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1rem;
  box-sizing: border-box;
}

.cart-empty {
  padding: 1rem;
  color: rgba(37, 25, 20, 0.7);
}

.cart-line {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0.8rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(59, 33, 22, 0.1);
}

.cart-line img {
  width: 82px;
  height: 104px;
  object-fit: cover;
}

.cart-line h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
}

.cart-line p {
  margin: 0.35rem 0;
  color: rgba(37, 25, 20, 0.72);
  font-weight: 700;
}

.qty-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.qty-control button {
  min-height: 30px;
  border: 1px solid rgba(59, 33, 22, 0.16);
  background: var(--ivory);
  color: var(--mocha);
  cursor: pointer;
}

.cart-upsell {
  max-width: 100%;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(59, 33, 22, 0.1);
  overflow: hidden;
  box-sizing: border-box;
}

.cart-upsell:empty {
  display: none;
}

.cart-upsell-title {
  margin: 1rem 0 0.7rem;
  color: var(--mocha);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-upsell-scroll {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 0.7rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cart-upsell-scroll::-webkit-scrollbar {
  display: none;
}

.upsell-card {
  display: grid;
  flex: 0 0 118px;
  gap: 0.3rem;
  width: 118px;
  max-width: 118px;
  scroll-snap-align: start;
}

.upsell-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--mist);
}

.upsell-card strong {
  min-height: 2.2rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25;
}

.upsell-card span {
  color: rgba(37, 25, 20, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.upsell-card button {
  min-height: 30px;
  border: 1px solid var(--maroon);
  background: var(--white);
  color: var(--maroon);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.upsell-card button:hover {
  background: var(--maroon);
  color: var(--white);
}

.cart-summary {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-top: 1px solid rgba(59, 33, 22, 0.12);
  max-width: 100%;
  box-sizing: border-box;
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(28, 16, 11, 0.52);
}

.modal-panel {
  position: relative;
  width: min(100%, 860px);
  max-height: min(760px, 92dvh);
  overflow: auto;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: modal-in 240ms ease both;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
}

.product-modal-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1fr;
}

.product-modal-panel > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.product-modal-panel > div,
.search-panel,
.checkout-panel {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.3rem, 4vw, 2.5rem);
}

.search-panel {
  align-content: start;
}

.search-panel h2 {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.search-panel input[type="search"] {
  position: sticky;
  top: 2.6rem;
  background: var(--white);
  z-index: 1;
}

.search-hint {
  margin: 0.5rem 0;
  color: rgba(37, 25, 20, 0.6);
  font-size: 0.9rem;
}

.modal-price {
  margin: 0;
  color: var(--mocha);
  font-weight: 800;
}

.select-label {
  display: grid;
  gap: 0.45rem;
  color: var(--mocha);
  font-weight: 700;
}

.select-label select,
.search-panel input,
.checkout-form input,
.checkout-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(59, 33, 22, 0.18);
  background: var(--ivory);
  padding: 0.75rem 0.85rem;
  color: var(--ink);
}

.checkout-form textarea,
.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.search-results {
  display: grid;
  gap: 0.6rem;
}

.search-result {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(59, 33, 22, 0.12);
  border-radius: 10px;
  background: var(--white);
  padding: 0.6rem 0.75rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.search-result:hover {
  border-color: var(--maroon);
  background: var(--warm-ivory);
}

.search-result img {
  width: 64px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
}

.search-result span {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--ink);
}

.search-result strong {
  color: var(--maroon);
  font-weight: 800;
  font-size: 0.88rem;
  white-space: nowrap;
}

.checkout-form {
  display: grid;
  gap: 0.75rem;
}

.upi-pay-box {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(59, 33, 22, 0.16);
  background: var(--warm-ivory);
}

.upi-pay-title {
  margin: 0;
  color: var(--mocha);
  font-weight: 800;
}

.upi-pay-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(59, 33, 22, 0.16);
  background: var(--white);
  font-weight: 700;
  color: var(--ink);
}

.upi-pay-id button {
  border: 1px solid var(--maroon);
  background: transparent;
  padding: 0.3rem 0.65rem;
  color: var(--maroon);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

.upi-pay-id button:hover {
  background: var(--maroon);
  color: var(--white);
}

.upi-qr {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border: 1px solid rgba(59, 33, 22, 0.16);
  background: var(--white);
  padding: 0.4rem;
}

.upi-pay-note {
  margin: 0;
  color: rgba(37, 25, 20, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

.upi-pay-note strong {
  color: var(--maroon);
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 1rem;
  width: min(100%, 720px);
  padding: clamp(1.3rem, 4vw, 2.5rem);
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.checkout-message {
  margin: 0;
  color: var(--sage);
  font-weight: 700;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.2rem, 4vw, 3.2rem) clamp(1rem, 5vw, 4.5rem);
  background: var(--ivory);
}

.product-gallery {
  position: sticky;
  top: 108px;
  align-self: start;
  background: var(--mist);
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-detail-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding-top: clamp(0.5rem, 2vw, 2rem);
}

.breadcrumb {
  display: flex;
  gap: 0.45rem;
  color: rgba(37, 25, 20, 0.65);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-detail h1,
.empty-page h1,
.product-content-section h2 {
  margin: 0;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
  line-height: 1;
}

.product-detail h1 {
  max-width: 680px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.product-detail-price {
  margin: 0;
  color: var(--mocha);
  font-size: 1.25rem;
  font-weight: 800;
}

.product-lead {
  color: rgba(37, 25, 20, 0.78);
  font-size: 1.05rem;
  font-weight: 700;
}

.product-options {
  display: grid;
  grid-template-columns: minmax(140px, 210px) minmax(180px, 260px);
  gap: 0.75rem;
  align-items: end;
  margin: 0.4rem 0;
}

.product-service {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.product-service div {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  border: 1px solid rgba(59, 33, 22, 0.12);
  background: var(--white);
}

.product-service strong {
  color: var(--mocha);
}

.product-service span {
  color: rgba(37, 25, 20, 0.68);
  font-size: 0.86rem;
}

.product-content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 4.5rem);
  border-block: 1px solid rgba(59, 33, 22, 0.12);
  background: var(--white);
}

.product-content-section h2,
.empty-page h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.detail-list {
  display: grid;
  margin: 1rem 0 0;
  border-top: 1px solid rgba(59, 33, 22, 0.12);
}

.detail-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(59, 33, 22, 0.12);
}

.detail-list dt {
  color: var(--mocha);
  font-weight: 800;
}

.detail-list dd {
  margin: 0;
  color: rgba(37, 25, 20, 0.75);
}

.empty-page {
  min-height: 52vh;
}

.empty-page p {
  max-width: 540px;
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.category-circles-section {
  background: var(--white);
}

.category-circles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.category-circle {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.category-circle-image {
  overflow: hidden;
  width: clamp(120px, 16vw, 180px);
  height: clamp(120px, 16vw, 180px);
  border: 1px solid rgba(59, 33, 22, 0.14);
  border-radius: 50%;
  background: var(--mist);
}

.category-circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.category-circle:hover .category-circle-image img {
  transform: scale(1.06);
}

.category-circle-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mocha);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.category-circle-cta {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wishlist-button {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.92);
  color: var(--mocha);
  cursor: pointer;
}

.wishlist-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.wishlist-button.is-active svg {
  fill: var(--rose);
  stroke: var(--rose);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600 !important;
  color: rgba(37, 25, 20, 0.6) !important;
}

.stars {
  --rating: 0;
  position: relative;
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(59, 33, 22, 0.22);
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
  letter-spacing: 0.1em;
}

.stars::after {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: calc(var(--rating) / 5 * 100%);
  color: var(--copper);
  content: "\2605\2605\2605\2605\2605";
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.feature-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 clamp(1rem, 5vw, 4.5rem) clamp(2rem, 5vw, 3rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  border-block: 1px solid rgba(59, 33, 22, 0.12);
  background: var(--white);
}

.feature-icons > div {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(59, 33, 22, 0.16);
  border-radius: 50%;
  color: var(--copper);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.feature-icons strong {
  display: block;
  color: var(--mocha);
  font-size: 0.92rem;
}

.feature-icons span:not(.feature-icon) {
  color: rgba(37, 25, 20, 0.65);
  font-size: 0.82rem;
}

.promo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  margin: 0 clamp(1rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid rgba(59, 33, 22, 0.14);
  background: var(--warm-ivory);
}

.promo-offer .eyebrow {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--mocha);
  text-transform: none;
}

.promo-offer .eyebrow span {
  color: var(--copper);
}

.promo-offer h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.promo-newsletter {
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(59, 33, 22, 0.16);
}

.promo-newsletter p {
  margin: 0.35rem 0 0.9rem;
  color: rgba(37, 25, 20, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
}

.instagram-section {
  background: var(--white);
}

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

.instagram-tile {
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.instagram-tile:hover img {
  transform: scale(1.06);
}

.festival-section {
  margin: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
  padding: clamp(1.8rem, 4vw, 3rem) 0 0;
  border: 1px solid rgba(59, 33, 22, 0.14);
  background: var(--warm-ivory);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.festival-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.festival-banner {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem) clamp(1.4rem, 3vw, 2rem);
  color: var(--mocha);
  text-align: center;
}

.festival-banner .eyebrow {
  color: var(--copper);
}

.festival-banner h2 {
  margin: 0;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.festival-banner p {
  max-width: 520px;
  margin: 0;
  color: rgba(37, 25, 20, 0.75);
  font-size: 0.95rem;
}

.festival-banner .button {
  margin-top: 0.4rem;
  border-color: var(--maroon);
  background: var(--maroon);
  color: var(--ivory);
}

.festival-countdown {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.festival-countdown div {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  min-width: 56px;
  padding: 0.5rem 0.4rem;
  border: 1px solid rgba(59, 33, 22, 0.16);
  border-radius: 8px;
  background: var(--white);
}

.festival-countdown strong {
  color: var(--maroon);
  font-size: 1.3rem;
  font-weight: 800;
}

.festival-countdown span {
  color: rgba(37, 25, 20, 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.festival-page-banner {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 5vw, 3rem);
  background: var(--warm-ivory);
  border-bottom: 1px solid rgba(59, 33, 22, 0.14);
  color: var(--mocha);
  text-align: center;
}

.festival-page-banner .eyebrow {
  color: var(--copper);
}

.festival-page-banner h1 {
  margin: 0;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.festival-page-banner p {
  max-width: 560px;
  margin: 0;
  color: rgba(37, 25, 20, 0.75);
}

.festival-page-banner .festival-countdown {
  margin-top: 0.6rem;
}

.category-page-banner {
  display: grid;
  gap: 0.5rem;
  padding: clamp(1.6rem, 4vw, 2.5rem) clamp(1rem, 5vw, 3.2rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--white);
  border-bottom: 1px solid rgba(59, 33, 22, 0.12);
}

.category-page-banner h1 {
  margin: 0;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.category-page-banner p {
  margin: 0;
  color: rgba(37, 25, 20, 0.65);
  font-size: 0.9rem;
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h2 {
  margin: 0 0 0.4rem;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.policy-content p {
  margin: 0 0 1.1rem;
  color: rgba(37, 25, 20, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.policy-content .policy-emphasis {
  color: var(--maroon);
  font-weight: 700;
}

.policy-content ul {
  margin: 0 0 1.1rem;
  padding-left: 1.3rem;
  color: rgba(37, 25, 20, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.auth-section {
  display: grid;
  place-items: center;
  min-height: calc(100dvh - 84px);
  padding: 2rem 1rem;
  background: var(--ivory);
}

.auth-panel {
  width: min(100%, 420px);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border: 1px solid rgba(59, 33, 22, 0.14);
  background: var(--white);
  box-shadow: var(--shadow);
}

.auth-panel h1 {
  margin: 0 0 1.2rem;
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
}

.auth-form {
  display: grid;
  gap: 0.9rem;
}

.auth-error {
  margin: -0.6rem 0 1rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(196, 60, 60, 0.35);
  background: rgba(196, 60, 60, 0.08);
  color: #a33;
  font-size: 0.85rem;
  font-weight: 600;
}

.auth-switch {
  margin: 1.2rem 0 0;
  color: rgba(37, 25, 20, 0.7);
  font-size: 0.9rem;
}

.auth-switch a {
  color: var(--maroon);
  font-weight: 700;
}

.account-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-self: end;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(37, 25, 20, 0.82);
}

.account-order-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.9rem;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(59, 33, 22, 0.14);
  background: var(--white);
}

.account-order-card strong {
  color: var(--mocha);
}

.badge-pill-inline {
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(59, 33, 22, 0.2);
  color: rgba(37, 25, 20, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: capitalize;
}

.festival-section .reel-track {
  padding-top: 0.6rem;
}

.best-sellers-section {
  background: var(--white);
}

.reel-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  padding: 1.5rem 40vw 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

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

.reel-card {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  width: clamp(140px, 26vw, 190px);
  aspect-ratio: 3 / 4.6;
  border-radius: 20px;
  background: var(--mist);
  box-shadow: 0 10px 22px rgba(28, 16, 11, 0.16);
  opacity: 0.62;
  scroll-snap-align: center;
  transform: scale(0.86) translateZ(0);
  will-change: transform;
  transition: transform 320ms ease, opacity 320ms ease;
}

.reel-card img,
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.reel-card.is-active {
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 22px 44px rgba(28, 16, 11, 0.32);
  z-index: 2;
}

.reel-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.1rem;
  padding: 0.85rem 0.7rem;
  background: linear-gradient(to top, rgba(28, 16, 11, 0.78), rgba(28, 16, 11, 0));
  color: var(--white);
  opacity: 0;
  transition: opacity 260ms ease;
}

.reel-card.is-active div {
  opacity: 1;
}

.reel-card strong {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
}

.reel-card em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f1cdb4;
}

.reel-logo {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(250, 246, 239, 0.92);
  overflow: hidden;
  opacity: 0;
  transition: opacity 260ms ease;
}

.reel-card.is-active .reel-logo {
  opacity: 1;
}

.reel-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-section {
  background: var(--warm-ivory);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  display: grid;
  gap: 0.6rem;
  padding: clamp(1.4rem, 3vw, 1.8rem);
  border: 1px solid rgba(59, 33, 22, 0.14);
  background: var(--white);
}

.testimonial-card p {
  margin: 0;
  color: rgba(37, 25, 20, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.testimonial-card strong {
  color: var(--mocha);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
}

.testimonial-card > span:last-child {
  color: rgba(37, 25, 20, 0.6);
  font-size: 0.82rem;
}

.mobile-bottom-nav {
  display: none;
}

.mobile-bottom-nav button,
.mobile-bottom-nav a {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.15rem;
  border: 0;
  background: transparent;
  color: var(--mocha);
  cursor: pointer;
  text-decoration: none;
}

.mobile-bottom-nav svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mobile-bottom-nav span {
  font-size: 0.68rem;
  font-weight: 600;
}

.mobile-nav-count {
  position: absolute;
  top: -4px;
  right: 18%;
  display: grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 0.2rem;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 16, 11, 0.28);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 0.22rem;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(59, 33, 22, 0.12);
    background: var(--white);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 1rem clamp(1rem, 5vw, 4.5rem);
    border-top: 1px solid rgba(59, 33, 22, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

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

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

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

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

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

@media (max-width: 820px) {
  .announcement {
    display: none;
  }

  .site-header {
    min-height: 72px;
    gap: 0.65rem;
  }

  .auth-section {
    min-height: calc(100dvh - 72px);
  }

  .header-helpline {
    display: none;
  }

  .brand {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .hero {
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 4.2rem);
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media img {
    height: 100%;
    min-height: 560px;
  }

  .category-strip {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .category-strip::-webkit-scrollbar {
    display: none;
  }

  .category-strip button {
    flex: 0 0 auto;
    min-width: 130px;
    min-height: 56px;
    scroll-snap-align: start;
  }

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

  .product-detail,
  .product-content-section {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .product-service {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-items: start;
  }

  .header-actions {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    justify-self: center;
  }

  .menu-toggle {
    display: none !important;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.3rem;
    width: min(92vw, 380px);
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    background: rgba(250, 246, 239, 0.96);
    box-shadow: 0 14px 32px rgba(28, 16, 11, 0.24);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
  }

  body {
    padding-bottom: 96px;
  }

  .whatsapp-float {
    bottom: calc(96px + 0.8rem);
  }

  .promo-band {
    grid-template-columns: 1fr;
  }

  .promo-newsletter {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(59, 33, 22, 0.16);
    padding-top: 1.5rem;
  }

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

@media (max-width: 540px) {
  .announcement {
    font-size: 0.74rem;
  }

  .header-actions .icon-button {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .hero-media {
    gap: 0;
    padding: 0;
  }

  .hero-media img {
    height: 100%;
    min-height: 520px;
  }

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

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

  .new-arrivals-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.9rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .new-arrivals-grid::-webkit-scrollbar {
    display: none;
  }

  .new-arrivals-grid .product-card {
    flex: 0 0 auto;
    width: 62vw;
    scroll-snap-align: start;
  }

  .category-circles {
    display: flex;
    grid-template-columns: none;
    gap: 1.1rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .category-circles::-webkit-scrollbar {
    display: none;
  }

  .category-circle {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .category-circle-image {
    width: 92px;
    height: 92px;
  }

  .category-circle-label {
    font-size: 0.95rem;
  }

  .feature-icons {
    grid-template-columns: 1fr;
  }

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

  .reel-track {
    gap: 0.8rem;
    padding: 1.2rem 18vw 1.8rem;
  }

  .reel-card {
    width: 62vw;
    aspect-ratio: 3 / 4.8;
  }

  .reel-card strong {
    font-size: 1rem;
  }

  .reel-card em {
    font-size: 0.9rem;
  }

  .add-to-cart {
    position: static;
    width: 100%;
    margin-top: 0.45rem;
    opacity: 1;
    transform: none;
  }

  .product-image {
    overflow: visible;
    margin-bottom: 2.9rem;
  }

  .product-info h3 {
    min-height: auto;
  }

  .product-options {
    grid-template-columns: 1fr;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .newsletter div {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .product-modal-panel {
    grid-template-columns: 1fr;
  }

  .product-modal-panel > img {
    min-height: 340px;
    max-height: 430px;
  }

  .search-result {
    grid-template-columns: 56px 1fr;
    gap: 0.75rem;
    padding: 0.6rem;
  }

  .search-result img {
    width: 56px;
    height: 70px;
  }

  .search-result strong {
    grid-column: 2;
    margin-top: 0.2rem;
  }

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