/* D&M Original Korean Cosmetics — Custom Styles */

:root {
  --cream: #FFFFFF;
  --pastel: #FFFFFF;
  --rose-pink: #FFFFFF;
  --rose-pink-light: #FFFFFF;
  --rose-pink-soft: #FFF0F5;
  --rose-blush: #F8BBD0;
  --rose-accent: #C2185B;
  --rose-accent-dark: #AD1457;
  --rose-accent-soft: #E91E63;
  --rosegold: #C2185B;
  --rosegold-dark: #AD1457;
  --rosegold-light: #E91E63;
  --charcoal: #2A1520;
  --charcoal-deep: #1A0C12;
  --rosegold-rgb: 194, 24, 91;
  --rose-accent-rgb: 194, 24, 91;
  --charcoal-rgb: 42, 21, 32;
  --pastel-rgb: 255, 255, 255;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  background: #FFFFFF;
  background-attachment: scroll;
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
}

@media (min-width: 1024px) {
  body {
    background-attachment: fixed;
  }
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Floating bubbles removed */
.bubble-bg,
.bubble {
  display: none !important;
}

.promo-bar,
main,
footer {
  position: relative;
  z-index: 1;
}

/* Navigation */
.site-logo {
  text-decoration: none;
  transition: opacity 0.3s ease;
  max-width: calc(100% - 5.5rem);
}

.site-logo:hover {
  opacity: 0.88;
}

.site-logo-img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  flex-shrink: 0;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.8125rem;
  line-height: 1.15;
  min-width: 0;
}

.site-logo-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 400px) {
  .site-logo-text {
    font-size: 0.9375rem;
  }

  .site-logo-line {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

@media (min-width: 640px) {
  .site-logo {
    max-width: none;
    flex: 0 1 auto;
  }

  .site-logo-img {
    width: 4rem;
    height: 4rem;
  }

  .site-logo-text {
    font-size: 1.35rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .site-logo-line {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .site-logo-img {
    width: 4.5rem;
    height: 4.5rem;
  }

  .site-logo-text {
    font-size: 1.65rem;
    flex-direction: column;
    gap: 0;
  }

  .site-logo-line {
    display: block;
  }
}

.footer-logo-img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
  background: transparent;
  border-bottom: none;
  padding: 0 1rem;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header .site-shell {
  background: #FFFFFF;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(194, 24, 91, 0.18);
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
}

.site-header.scrolled .site-shell {
  box-shadow: 0 8px 30px rgba(var(--charcoal-rgb), 0.08);
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(var(--rose-accent-rgb), 0.15);
}

.site-header.scrolled {
  box-shadow: none;
  background-color: transparent;
  border-color: transparent;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(var(--charcoal-rgb), 0.7);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--rosegold);
  border-radius: 9999px;
  transition: width 0.35s ease, left 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

.nav-link:hover {
  color: var(--rosegold);
}

.nav-link.active {
  color: var(--rosegold);
}

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease;
  padding: 0 1rem;
}

.mobile-menu-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--pastel);
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu.open {
  max-height: 420px;
  opacity: 1;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(var(--charcoal-rgb), 0.8);
  border-radius: 0.5rem;
  transition: background-color 0.2s, color 0.2s;
}

.mobile-nav-link:hover {
  background-color: var(--pastel);
  color: var(--rosegold);
}

/* Icon Buttons */
.icon-btn {
  padding: 0.5rem;
  border-radius: 9999px;
  color: rgba(var(--charcoal-rgb), 0.7);
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.icon-btn:hover {
  color: var(--rosegold);
  background-color: var(--pastel);
  transform: translateY(-2px);
}

.icon-btn:active {
  transform: scale(0.95);
}

.cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--rosegold);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cartPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cartPop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--rosegold-light) 0%, var(--rosegold) 50%, var(--rosegold-dark) 100%);
  color: white;
  font-weight: 500;
  border-radius: 9999px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 14px rgba(var(--rosegold-rgb), 0.28);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rosegold) 0%, var(--rosegold-dark) 100%);
  box-shadow: 0 8px 24px rgba(var(--rosegold-rgb), 0.38);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: transparent;
  color: var(--charcoal);
  font-weight: 500;
  border-radius: 9999px;
  border: 2px solid var(--rosegold-dark);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--rosegold-dark);
  border-color: var(--rosegold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--rosegold-rgb), 0.25);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Shared content width — matches max-w-7xl sections */
.site-shell {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .site-shell {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-shell {
    padding-inline: 2rem;
  }
}

/* Promo Bar */
.promo-bar {
  background: transparent;
  color: var(--charcoal);
  text-align: center;
  padding: 0.5rem 1rem 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-bar .site-shell {
  background: #C2185B;
  border-radius: 0.75rem 0.75rem 0 0;
  padding-block: 0.5rem;
  color: #FFFFFF;
}

.promo-bar p {
  margin: 0;
}

/* Hero — warm ivory home */
.hero-section {
  position: relative;
  background: linear-gradient(145deg, var(--rose-pink-soft) 0%, var(--pastel) 45%, var(--cream) 100%);
  overflow: hidden;
  min-height: 420px;
}

/* Hero — full banner with name on photo */
.hero-section--banner {
  min-height: auto;
  padding: 0;
  background: var(--cream);
}

.hero-section--banner::before {
  display: none;
}

.hero-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: var(--cream);
}

.hero-banner--stacked {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
}

.hero-banner-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  margin: 0;
  overflow: hidden;
}

.hero-banner-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.hero-video-stack.is-playing .hero-banner-poster {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hero-video-stack {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-stack::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 240, 245, 0.3) 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.hero-video-stack.is-transitioning::after {
  animation: heroVideoFlash 1.15s ease forwards;
}

.hero-video-stack .hero-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
}

.hero-video-stack .hero-banner-video.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-video-stack .hero-banner-video.is-leaving {
  opacity: 0;
  z-index: 2;
}

@keyframes heroVideoFlash {
  0% { opacity: 0.55; }
  35% { opacity: 0.12; }
  100% { opacity: 0; }
}

@keyframes heroVideoKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}

.hero-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #000;
}

.hero-banner-video.is-hidden {
  display: none;
}

.hero-banner-img--fallback[hidden] {
  display: none;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: none;
  min-height: 0;
  display: block;
  object-fit: contain;
  object-position: left top;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.35) 12%, transparent 24%),
    linear-gradient(to right, rgba(255, 255, 255, 0.75) 0%, transparent 38%);
  pointer-events: none;
}

.hero-banner-content {
  position: absolute;
  top: clamp(0.65rem, 2.5vh, 1.25rem);
  left: clamp(0.75rem, 3vw, 2rem);
  right: auto;
  transform: none;
  z-index: 2;
  width: min(52%, 420px);
  padding: 0;
  box-sizing: border-box;
  text-align: left;
}

.hero-banner-footer {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  margin: 0;
  margin-top: auto;
  padding: 1rem 1rem 1.35rem;
  box-sizing: border-box;
  background: #FFFFFF;
  border-top: 1px solid rgba(var(--rose-accent-rgb), 0.12);
  backdrop-filter: blur(6px);
}

.hero-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem 0.5rem;
  box-sizing: border-box;
  background: linear-gradient(145deg, var(--rose-pink-soft) 0%, var(--pastel) 55%, var(--cream) 100%);
  border-bottom: 1px solid rgba(var(--rose-accent-rgb), 0.12);
}

.hero-quick-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(var(--charcoal-rgb), 0.68);
  text-decoration: none;
  transition: color 0.25s ease;
}

.hero-quick-link:hover,
.hero-quick-link.active {
  color: var(--rosegold);
}

.hero-banner-title {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1em;
  text-align: left;
  font-family: 'Playfair Display', serif;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.hero-title-line {
  display: block;
  width: auto;
  max-width: 100%;
  text-align: left;
  opacity: 0;
  transform: translateY(14px);
  animation: heroTitleReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.95);
}

.hero-title-dm {
  font-size: clamp(1.75rem, 5.5vw, 3.25rem);
  font-weight: 700;
  color: var(--charcoal);
  animation-delay: 0.1s;
  white-space: nowrap;
}

.hero-title-pink {
  font-size: clamp(1.15rem, 3.8vw, 2rem);
  font-weight: 600;
  margin-top: 0;
  color: var(--rosegold-dark);
  -webkit-text-fill-color: var(--rosegold-dark);
  animation-delay: 0.28s;
  white-space: nowrap;
}

.hero-banner-tagline {
  font-size: clamp(0.875rem, 2.5vw, 1.05rem);
  color: rgba(var(--charcoal-rgb), 0.82);
  margin: 0 0 1rem;
  max-width: 36rem;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
  text-shadow: none;
  text-align: left;
}

.hero-banner-tagline em {
  font-style: italic;
  color: var(--rosegold-dark);
  font-weight: 500;
}

.hero-section--banner .hero-cta-group {
  justify-content: flex-start;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.015); }
}

@keyframes heroTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (max-width: 639px) {
  .hero-section--banner {
    min-height: auto;
    background: var(--pastel);
  }

  .hero-banner--stacked {
    min-height: auto;
  }

  .hero-banner-frame {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--pastel);
  }

  .hero-banner-video {
    object-fit: contain;
    object-position: center center;
    background: var(--pastel);
  }

  .hero-banner-img {
    width: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .hero-banner-overlay {
    background:
      linear-gradient(to bottom, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.2) 18%, transparent 32%);
  }

  .hero-banner-content {
    top: 2.85rem;
    left: 0.55rem;
    right: auto;
    width: auto;
    max-width: 78%;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 4;
  }

  .hero-title-line {
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 1px 4px rgba(255, 255, 255, 0.85);
  }

  .hero-title-dm {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }

  .hero-title-pink {
    font-size: clamp(0.95rem, 4.8vw, 1.25rem);
  }

  .hero-banner-footer {
    padding: 0.85rem 0.85rem 1.1rem;
  }

  .hero-quick-nav {
    gap: 0.3rem 0.65rem;
    padding: 0.65rem 0.85rem 0.45rem;
  }

  .hero-quick-link {
    font-size: 0.75rem;
  }

  .hero-banner-tagline {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .hero-section--banner .hero-cta-group {
    gap: 0.5rem;
  }

  .hero-section--banner .btn-hero-cta,
  .hero-section--banner .btn-hero-cart {
    padding: 0.65rem 1.1rem;
    font-size: 0.65rem;
  }
}

@media (min-width: 640px) {
  .hero-section--banner {
    min-height: auto;
    background: var(--pastel);
  }

  .hero-banner--stacked {
    min-height: auto;
  }

  .hero-banner-frame {
    position: relative;
    inset: auto;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    background: var(--pastel);
  }

  .hero-banner-video {
    object-fit: contain;
    object-position: center center;
    background: var(--pastel);
  }

  .hero-banner-img {
    object-fit: contain;
    object-position: left center;
  }

  .hero-banner-content {
    top: clamp(1rem, 3vh, 2rem);
    left: clamp(1.25rem, 4vw, 3rem);
    right: auto;
    width: min(42%, 380px);
    text-align: left;
  }

  .hero-title-dm {
    font-size: clamp(2.35rem, 5.2vw, 4rem);
  }

  .hero-title-pink {
    font-size: clamp(1.4rem, 3.1vw, 2.25rem);
  }

  .hero-banner-footer {
    padding: 1.15rem 1.5rem 1.5rem;
  }

  .hero-quick-nav {
    gap: 0.5rem 1.25rem;
    padding: 0.85rem 1.5rem 0.6rem;
  }

  .hero-quick-link {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .hero-banner-frame {
    max-width: 100%;
  }

  .hero-banner-video {
    object-fit: contain;
    object-position: center center;
  }

  .hero-title-dm {
    font-size: 4rem;
  }

  .hero-title-pink {
    font-size: 2.3rem;
  }

  .hero-banner-footer {
    padding: 1.25rem 2rem 1.75rem;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(194, 24, 91, 0.12), transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(252, 228, 236, 0.35), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 8rem;
}

@media (min-width: 1024px) {
  .hero-content-wrap {
    padding: 5rem 2rem 6rem;
  }
}

.hero-content {
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
    margin: 0;
    padding-left: 1rem;
  }
}

.hero-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rosegold);
  margin-bottom: 0.75rem;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--rosegold-dark);
}

.hero-subheadline {
  font-size: 1.05rem;
  color: rgba(var(--charcoal-rgb), 0.65);
  margin-bottom: 2rem;
  font-weight: 400;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  background: linear-gradient(135deg, var(--rosegold-light), var(--rosegold));
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(var(--rosegold-rgb), 0.35);
}

.btn-hero-cta:hover {
  background: linear-gradient(135deg, var(--rosegold), var(--rosegold-dark));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--rosegold-rgb), 0.45);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.btn-hero-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--rosegold);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(var(--rosegold-rgb), 0.35);
}

.btn-hero-cart:hover {
  background: var(--rosegold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--rosegold-rgb), 0.45);
}

.mobile-nav-cart {
  color: var(--rosegold) !important;
  font-weight: 600;
  width: 100%;
  text-align: left;
}

.mobile-nav-cart:hover {
  background: rgba(var(--rosegold-rgb), 0.08) !important;
}

.header-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: #25D366;
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: background-color 0.3s, transform 0.2s;
}

.header-whatsapp-btn:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

.hero-photo-wrap {
  position: absolute;
  right: 1.5rem;
  bottom: 0;
  width: min(48vw, 460px);
  height: min(48vw, 460px);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: fadeUpScale 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.hero-photo-wrap--founder {
  width: min(34vw, 240px);
  height: min(42vw, 310px);
  right: 2.5rem;
  bottom: 1.5rem;
}

.hero-photo-frame {
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(var(--pastel-rgb), 0.9));
  box-shadow:
    0 16px 36px rgba(var(--rosegold-rgb), 0.18),
    0 0 0 1px rgba(var(--rosegold-rgb), 0.15);
}

.hero-photo-wrap--founder .hero-photo-frame {
  padding: 0.4rem;
  border-radius: 1.125rem;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  border-radius: 0.875rem;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

@media (max-width: 1023px) {
  .hero-section {
    min-height: auto;
    padding-bottom: 1.5rem;
  }

  .hero-layout {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-photo-wrap {
    position: relative;
    order: 2;
    width: calc(100% - 2rem);
    max-width: 380px;
    height: min(72vw, 340px);
    margin: 0.75rem auto 1.5rem;
    bottom: auto;
    right: auto;
  }

  .hero-photo-wrap--founder {
    max-width: 220px;
    height: min(68vw, 290px);
    margin: 0.5rem auto 1.25rem;
  }

  .hero-photo-frame {
    padding: 0.625rem;
    border-radius: 1.25rem;
  }

  .hero-photo {
    border-radius: 0.875rem;
    object-position: center;
  }

  .hero-content-wrap {
    order: 1;
    padding: 1.5rem 1.25rem 0.75rem;
  }

  .hero-content {
    max-width: none;
    text-align: center;
  }

  .hero-brand-name {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .hero-headline {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.06;
    margin-bottom: 0.875rem;
  }

  .hero-subheadline {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .btn-hero-cta,
  .btn-hero-cart {
    padding: 0.9rem 1.75rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 639px) {
  .hero-photo-wrap {
    width: calc(100% - 1.5rem);
    height: min(78vw, 320px);
    margin: 0.35rem auto 1rem;
  }

  .hero-photo-wrap--founder {
    max-width: 200px;
    height: min(72vw, 265px);
    margin: 0.35rem auto 1rem;
  }

  .hero-photo-frame {
    border-radius: 1rem;
    padding: 0.5rem;
  }

  .hero-photo {
    border-radius: 0.75rem;
  }

  .hero-content-wrap {
    padding: 1rem 1rem 0.5rem;
  }

  .hero-brand-name {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-headline {
    font-size: clamp(2rem, 11.5vw, 2.65rem);
  }

  .hero-subheadline {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .hero-photo-wrap {
    right: 2rem;
    bottom: 0;
    width: min(42vw, 440px);
    height: min(42vw, 440px);
    max-width: none;
    min-height: auto;
  }

  .hero-photo-wrap--founder {
    right: 3rem;
    bottom: 2rem;
    width: 240px;
    height: 310px;
  }
}

.hero-trust {
  letter-spacing: 0.02em;
}

.hero-text {
  /* container for staggered children */
}

.hero-animate {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate-1 { animation-delay: 0.05s; }
.hero-animate-2 { animation-delay: 0.15s; }
.hero-animate-3 { animation-delay: 0.3s; }
.hero-animate-4 { animation-delay: 0.42s; }

/* Hero Feature Cards */
.hero-cards-section {
  position: relative;
  z-index: 4;
  background: #FFFFFF;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5rem 0 3rem;
  margin-top: -1rem;
  overflow-x: clip;
  max-width: 100%;
}

.hero-cards-header {
  margin-bottom: 2.5rem;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-card {
  text-align: center;
  padding: 1.15rem 0.7rem 1rem;
  border: 1px solid #F4C4D4;
  border-radius: 0.25rem;
  background: white;
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(var(--charcoal-rgb), 0.06);
}

.hero-card-icon {
  color: var(--rosegold);
  margin-bottom: 0.55rem;
  display: flex;
  justify-content: center;
}

.hero-card-icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.hero-card-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #C2185B;
  margin-bottom: 0.45rem;
}

.hero-card-desc {
  font-size: 0.72rem;
  color: rgba(var(--charcoal-rgb), 0.55);
  line-height: 1.4;
  margin-bottom: 0.85rem;
  min-height: 0;
  flex: 1;
}

.btn-hero-card {
  display: inline-flex;
  justify-content: center;
  padding: 0.45rem 0.55rem;
  background: var(--rosegold-dark);
  color: white;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: background-color 0.3s, transform 0.2s;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 899px) {
  .hero-cards-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.7rem;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    max-width: 100%;
    min-width: 0;
  }

  .hero-card {
    flex: 0 0 10.75rem;
    scroll-snap-align: start;
  }
}

.btn-hero-card:hover {
  background: var(--rosegold);
  transform: translateY(-1px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpScale {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Value Strip — horizontal row below hero */
.value-strip {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F8 100%);
}

.value-strip-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  border: 1px solid var(--pastel);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px rgba(var(--rosegold-rgb), 0.06);
}

@media (min-width: 768px) {
  .value-strip-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 1.5rem 2rem;
  }
}

.value-strip-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex: 1;
  transition: transform 0.3s ease;
}

.value-strip-item:hover {
  transform: translateX(4px);
}

.value-strip-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: linear-gradient(145deg, var(--pastel) 0%, var(--rose-pink-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosegold-dark);
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.value-strip-item:hover .value-strip-icon {
  background: linear-gradient(145deg, rgba(var(--rosegold-rgb), 0.18) 0%, rgba(var(--rose-accent-rgb), 0.12) 100%);
  color: var(--rose-accent-dark);
  transform: scale(1.05);
}

.value-strip-text {
  text-align: left;
}

.value-strip-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.125rem;
  line-height: 1.3;
}

.value-strip-desc {
  font-size: 0.75rem;
  color: rgba(var(--charcoal-rgb), 0.55);
  line-height: 1.4;
}

.value-strip-divider {
  display: none;
}

@media (min-width: 768px) {
  .value-strip-divider {
    display: block;
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(180deg, transparent, rgba(var(--rosegold-rgb), 0.3), transparent);
    flex-shrink: 0;
    margin: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .value-strip-title {
    font-size: 1rem;
  }

  .value-strip-desc {
    font-size: 0.8rem;
  }
}

/* Legacy value-badge (unused) */
.value-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.75rem;
  border: 1px solid var(--pastel);
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.value-badge:hover {
  box-shadow: 0 12px 28px rgba(var(--rosegold-rgb), 0.12);
  transform: translateY(-6px);
  border-color: rgba(var(--rosegold-rgb), 0.3);
}

.value-badge-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosegold);
  margin-bottom: 1rem;
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.value-badge:hover .value-badge-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: rgba(var(--rosegold-rgb), 0.12);
}

/* Products Catalog */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-search-section {
  position: relative;
  z-index: 2;
  padding: 1.25rem 0 0.5rem;
}

.product-search-wrap {
  position: relative;
}

.product-search-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(var(--rose-accent-rgb), 0.22);
  border-radius: 9999px;
  padding: 0.4rem 0.4rem 0.4rem 1.1rem;
  box-shadow: 0 10px 28px rgba(var(--charcoal-rgb), 0.08);
}

.product-search-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--rosegold);
  flex-shrink: 0;
}

.product-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
}

.product-search-btn {
  flex-shrink: 0;
  border: 0;
  border-radius: 9999px;
  background: var(--rosegold);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1.15rem;
  cursor: pointer;
}

.product-search-results {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 40;
  margin-top: 0.65rem;
  background: white;
  border: 1px solid var(--pastel);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(var(--charcoal-rgb), 0.1);
  max-height: 22rem;
  overflow-y: auto;
}

.product-search-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.9rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-bottom: 1px solid rgba(var(--pastel-rgb), 0.8);
}

.product-search-item:last-child {
  border-bottom: 0;
}

.product-search-item:hover,
.product-search-item:focus {
  background: var(--cream);
}

.product-search-item img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  border-radius: 0.5rem;
  background: var(--pastel);
  flex-shrink: 0;
}

.product-search-item-title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.product-search-item-meta {
  display: block;
  font-size: 0.75rem;
  color: rgba(var(--charcoal-rgb), 0.55);
}

.product-search-empty {
  padding: 1rem;
  text-align: center;
  color: rgba(var(--charcoal-rgb), 0.6);
  font-size: 0.9rem;
}

.product-search-status {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: rgba(var(--charcoal-rgb), 0.7);
}

.product-search-status button {
  margin-left: 0.5rem;
  border: 0;
  background: none;
  color: var(--rosegold);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

#products {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F8 100%);
}

.products-catalog {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  position: sticky;
  top: 4.25rem;
  z-index: 30;
  padding: 0.75rem 0;
  background: linear-gradient(180deg, var(--pastel) 75%, rgba(255, 248, 251, 0));
}

.category-nav-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(var(--rose-accent-rgb), 0.2);
  background: white;
  color: var(--charcoal);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.category-nav-chip:hover {
  border-color: var(--rosegold);
  color: var(--rosegold-dark);
  transform: translateY(-1px);
}

.category-nav-chip.active {
  background: linear-gradient(135deg, var(--rosegold) 0%, var(--rosegold-dark) 100%);
  border-color: var(--rosegold-dark);
  color: white;
  box-shadow: 0 4px 14px rgba(var(--rosegold-rgb), 0.3);
}

.category-panel {
  scroll-margin-top: 7rem;
  animation: categoryFadeIn 0.35s ease;
}

.category-panel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(var(--rose-accent-rgb), 0.2);
}

.category-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--charcoal);
}

.category-panel-count {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rosegold);
  white-space: nowrap;
}

.category-panel-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.category-brand-nav {
  margin-bottom: 1.25rem;
}

@keyframes categoryFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.brand-nav-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(var(--rosegold-rgb), 0.35);
  background: white;
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.brand-nav-chip:hover {
  background: var(--rosegold);
  border-color: var(--rosegold);
  color: white;
  transform: translateY(-1px);
}

.brand-section {
  scroll-margin-top: 5.5rem;
}

.brand-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(var(--rosegold-rgb), 0.25);
}

.brand-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}

.brand-section-count {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rosegold);
  white-space: nowrap;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Product Cards */
.product-card {
  background-color: white;
  border-radius: 0.75rem;
  border: 1px solid var(--pastel);
  overflow: hidden;
  width: 100%;
  min-width: unset;
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.product-card:hover {
  box-shadow: 0 16px 32px rgba(var(--rosegold-rgb), 0.15);
  transform: translateY(-8px);
  border-color: rgba(var(--rosegold-rgb), 0.25);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel);
  padding: 0.65rem;
}

.product-tap-target {
  cursor: pointer;
}

.product-tap-hint {
  display: none;
}

.arrival-image-wrap {
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel);
  padding: 0.75rem;
}

.arrival-btn-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.product-brand {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--charcoal);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  z-index: 2;
}

.product-category {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: white;
  color: var(--rosegold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(var(--rosegold-rgb), 0.25);
  z-index: 1;
}

.modal-info .product-brand {
  position: static;
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}

.modal-info .product-category {
  position: static;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.product-image {
  width: 78%;
  height: 78%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background-color: transparent;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-body {
  padding: 1.25rem;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.product-desc {
  font-size: 0.8rem;
  color: rgba(var(--charcoal-rgb), 0.6);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}

.product-size {
  font-size: 0.75rem;
  color: rgba(var(--charcoal-rgb), 0.45);
  font-weight: 500;
}

.product-price {
  color: var(--rosegold);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: rgba(var(--charcoal-rgb), 0.6);
  margin-bottom: 0;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.btn-view-details {
  flex: 1;
  padding: 0.625rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid rgba(var(--rose-accent-rgb), 0.22);
  color: var(--charcoal);
  background: rgba(var(--rose-accent-rgb), 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-view-details:hover {
  border-color: var(--rosegold-dark);
  background: var(--rosegold);
  color: white;
  transform: translateY(-1px);
}

.product-actions .btn-add-cart {
  flex: 1;
  width: auto;
}

.star-filled {
  color: var(--rosegold);
}

.btn-add-cart {
  width: 100%;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid var(--rosegold-dark);
  color: var(--rosegold-dark);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-add-cart:hover {
  background-color: var(--rosegold-dark);
  border-color: var(--rosegold-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--rosegold-rgb), 0.3);
}

.btn-add-cart:active {
  transform: scale(0.97);
}

/* Mobile — 2 products per row in brand sections */
@media (max-width: 639px) {
  #products .max-w-7xl {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .products-catalog {
    gap: 0;
  }

  .category-nav {
    top: 4rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    overscroll-behavior-x: contain;
  }

  .category-nav::-webkit-scrollbar {
    display: none;
  }

  .category-nav-chip {
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 0.45rem 0.85rem;
  }

  .category-panel-header {
    margin-bottom: 0.75rem;
  }

  .category-panel-body {
    gap: 1.5rem;
  }

  .brand-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    margin-bottom: 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    overscroll-behavior-x: contain;
  }

  .brand-nav::-webkit-scrollbar {
    display: none;
  }

  .brand-nav-chip {
    flex-shrink: 0;
    font-size: 0.68rem;
    padding: 0.4rem 0.75rem;
  }

  .brand-section-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .brand-section-title {
    font-size: 1.1rem;
  }

  .brand-section-count {
    font-size: 0.62rem;
  }

  .brand-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }

  .product-image-wrap {
    padding: 0.45rem;
  }

  .product-image {
    width: 72%;
    height: 72%;
  }

  .arrival-image-wrap {
    padding: 0.5rem;
  }

  .arrival-image {
    width: 72%;
    height: 72%;
  }

  .product-card {
    border-radius: 0.5rem;
  }

  .product-brand,
  .product-category {
    display: none;
  }

  .product-body {
    padding: 0.625rem;
  }

  .product-title {
    font-size: 0.72rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.62rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
    color: rgba(var(--charcoal-rgb), 0.55);
  }

  .product-meta,
  .product-rating {
    display: none;
  }

  .product-tap-hint {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.25rem;
    background: linear-gradient(transparent, rgba(var(--charcoal-rgb), 0.72));
    color: white;
    font-size: 0.55rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 2;
  }

  .product-price {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .product-actions {
    margin-top: 0;
    flex-direction: row;
    gap: 0.3rem;
  }

  .product-actions .btn-view-details,
  .product-actions .btn-add-cart {
    flex: 1;
    padding: 0.4rem 0.25rem;
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .product-modal {
    align-items: flex-end;
    padding: 0;
  }

  .product-modal-content {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 1rem 1rem 0 0;
  }

  .product-modal-body {
    padding: 1rem 1rem 1.5rem;
  }

  .modal-title {
    font-size: 1.15rem;
  }

  .modal-desc,
  .modal-section {
    font-size: 0.875rem;
  }

  .modal-image-wrap {
    max-height: 42vh;
  }

  .modal-image {
    aspect-ratio: auto;
    max-height: 42vh;
    object-fit: contain;
  }
}

@media (min-width: 640px) {
  .product-body {
    padding: 1.25rem;
  }
}

/* Product Modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-modal.hidden {
  display: none;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--charcoal-rgb), 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.product-modal-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  max-width: 880px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  animation: modalSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--pastel);
  border: none;
  font-size: 1.25rem;
  color: var(--charcoal);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, transform 0.2s;
}

.product-modal-close:hover {
  background: var(--rosegold);
  color: white;
  transform: rotate(90deg);
}

.product-modal-body {
  padding: 1.5rem;
}

.modal-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .modal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .product-modal-body {
    padding: 2rem;
  }
}

.modal-image-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--pastel);
}

.modal-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0.5rem 0 0.75rem;
}

.modal-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rosegold);
  margin-bottom: 1rem;
}

.modal-size {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(var(--charcoal-rgb), 0.5);
}

.modal-desc {
  font-size: 0.9rem;
  color: rgba(var(--charcoal-rgb), 0.75);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.modal-meta {
  font-size: 0.8rem;
  color: rgba(var(--charcoal-rgb), 0.5);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.modal-section {
  border-top: 1px solid var(--pastel);
  padding-top: 1rem;
  margin-top: 1rem;
}

.modal-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.modal-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-benefits li {
  font-size: 0.82rem;
  color: rgba(var(--charcoal-rgb), 0.7);
  line-height: 1.55;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.modal-benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rosegold);
  font-size: 0.65rem;
  top: 0.5rem;
}

.modal-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.modal-steps li {
  font-size: 0.82rem;
  color: rgba(var(--charcoal-rgb), 0.7);
  line-height: 1.55;
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.step-num {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  background: var(--pastel);
  color: var(--rosegold);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.skin-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skin-type-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  background: var(--pastel);
  color: var(--charcoal);
  border-radius: 9999px;
  border: 1px solid rgba(var(--rosegold-rgb), 0.2);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Carousel */
.carousel-wrapper {
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--charcoal-rgb), 0.6);
  background: white;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-btn:hover:not(:disabled) {
  border-color: var(--rosegold);
  color: var(--rosegold);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(var(--rosegold-rgb), 0.2);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Special Offers */
.offers-section {
  background: #FFFFFF;
  border-top: 1px solid rgba(173, 20, 87, 0.16);
  border-bottom: 1px solid rgba(173, 20, 87, 0.16);
}

#shop {
  background: #FFFFFF !important;
}

#skincare {
  background: #FFFFFF;
}

#about,
#community {
  background: #FFFFFF;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.offers-grid:not(:has(.product-card)) {
  grid-template-columns: 1fr;
}

.product-card--offer {
  border-color: rgba(var(--rose-accent-rgb), 0.22);
}

.product-card--offer:hover {
  border-color: rgba(var(--rose-accent-rgb), 0.35);
  box-shadow: 0 16px 32px rgba(var(--rose-accent-rgb), 0.12);
}

.offer-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: linear-gradient(135deg, var(--rose-accent-dark) 0%, var(--rose-accent) 100%);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(var(--rose-accent-rgb), 0.35);
}

.offer-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.offer-price-original {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(var(--charcoal-rgb), 0.45);
  text-decoration: line-through;
}

.offers-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1.25rem;
  background: white;
  border: 1px dashed rgba(var(--rose-accent-rgb), 0.28);
  border-radius: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}

.offers-empty-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(var(--rose-accent-rgb), 0.1);
  color: var(--rose-accent);
  font-size: 1.25rem;
}

.offers-empty-title {
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.offers-empty-text {
  color: rgba(var(--charcoal-rgb), 0.62);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.offers-empty-cta {
  display: inline-flex;
}

/* New Arrivals */
.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.arrival-card {
  background-color: white;
  border-radius: 0.75rem;
  border: 1px solid var(--pastel);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.arrival-card:hover {
  box-shadow: 0 16px 32px rgba(var(--rosegold-rgb), 0.15);
  transform: translateY(-8px);
  border-color: rgba(var(--rosegold-rgb), 0.25);
}

.arrival-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--rosegold);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.arrival-image {
  width: 78%;
  height: 78%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  background-color: transparent;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.arrival-card:hover .arrival-image {
  transform: scale(1.03);
}

.arrival-body {
  padding: 1.5rem;
}

@media (max-width: 639px) {
  #shop .max-w-7xl {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .arrival-card {
    border-radius: 0.5rem;
  }

  .arrival-badge {
    top: 0.35rem;
    left: 0.35rem;
    font-size: 0.55rem;
    padding: 0.15rem 0.4rem;
  }

  .arrival-body {
    padding: 0.5rem;
  }

  .arrival-body .text-xs {
    display: none;
  }

  .arrival-body h3 {
    font-size: 0.65rem;
    line-height: 1.25;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .arrival-body > p.text-sm {
    display: none;
  }

  .arrival-body .flex,
  .arrival-body .arrival-actions {
    flex-direction: column;
    gap: 0.25rem;
    align-items: stretch;
  }

  .arrival-btn-group {
    display: flex;
    gap: 0.25rem;
    width: 100%;
  }

  .arrival-btn-group .btn-view-details,
  .arrival-btn-group .btn-add-cart {
    flex: 1;
    padding: 0.35rem 0.2rem;
    font-size: 0.58rem;
    line-height: 1.2;
    width: auto;
  }

  .arrival-body .text-lg {
    font-size: 0.7rem;
    margin-bottom: 0;
  }

  .arrival-body .btn-add-cart {
    padding: 0.35rem 0.25rem;
    font-size: 0.6rem;
    line-height: 1.2;
    width: 100%;
  }
}

@media (min-width: 640px) {
  .arrival-body {
    padding: 1.25rem;
  }
}

/* Skincare Steps */
.skincare-card {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.skincare-card:hover {
  box-shadow: 0 16px 40px rgba(var(--rosegold-rgb), 0.12);
  transform: translateY(-4px);
}

.skincare-step {
  padding: 1rem 1.5rem;
  background-color: var(--pastel);
  border-radius: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  border: 1px solid rgba(var(--rosegold-rgb), 0.2);
  transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.skincare-step:hover {
  border-color: rgba(var(--rosegold-rgb), 0.5);
  transform: translateY(-3px);
  background-color: white;
  box-shadow: 0 6px 16px rgba(var(--rosegold-rgb), 0.12);
}

/* About — founder */
.about-founder {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(255, 248, 251, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(var(--rosegold-rgb), 0.22);
  box-shadow: 0 8px 24px rgba(var(--rose-accent-rgb), 0.1);
}

.about-founder-photo {
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  object-fit: cover;
  object-position: center 15%;
  border: 3px solid white;
  box-shadow: 0 4px 16px rgba(var(--rosegold-rgb), 0.25);
}

@media (min-width: 768px) {
  .about-founder-photo {
    width: 9.5rem;
    height: 9.5rem;
  }
}

.about-founder-label {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(var(--charcoal-rgb), 0.75);
  letter-spacing: 0.02em;
}

.about-founder-label span {
  font-weight: 600;
  color: var(--charcoal);
}

.about-story {
  text-align: left;
  max-width: 38rem;
  margin: 0 auto 2.25rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.about-highlight {
  background: white;
  border: 1px solid rgba(var(--rose-accent-rgb), 0.14);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 6px 20px rgba(var(--rosegold-rgb), 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(var(--rosegold-rgb), 0.12);
  border-color: rgba(var(--rosegold-rgb), 0.28);
}

.about-highlight-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: linear-gradient(145deg, var(--pastel) 0%, var(--rose-pink-soft) 100%);
  color: var(--rosegold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.about-highlight-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.about-highlight-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(var(--charcoal-rgb), 0.68);
  margin: 0;
}

.about-order-note {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(var(--pastel-rgb), 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(var(--rosegold-rgb), 0.2);
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(var(--charcoal-rgb), 0.72);
}

@media (min-width: 768px) {
  .about-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* Footer */
footer.bg-charcoal {
  background: linear-gradient(165deg, var(--charcoal) 0%, var(--charcoal-deep) 52%, #2A2230 100%) !important;
  border-top: 1px solid rgba(var(--rosegold-rgb), 0.18);
}

.footer-link {
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--rosegold-light);
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(var(--rosegold-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--rosegold) 0%, var(--rosegold-dark) 100%);
  border-color: transparent;
  transform: translateY(-3px) scale(1.08);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  z-index: 50;
  padding: 0.75rem 1.5rem;
  background-color: var(--charcoal);
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(1rem);
  pointer-events: none;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: block;
}

.cart-drawer.hidden {
  display: none !important;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(var(--charcoal-rgb), 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cart-drawer.open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--pastel);
}

.cart-drawer-subtitle {
  font-size: 0.8125rem;
  color: rgba(var(--charcoal-rgb), 0.55);
  margin-top: 0.15rem;
}

.cart-steps {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(var(--pastel-rgb), 0.5);
  border-bottom: 1px solid var(--pastel);
}

.cart-step {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(var(--charcoal-rgb), 0.45);
  padding: 0.35rem 0.25rem;
  border-radius: 9999px;
  transition: background-color 0.2s, color 0.2s;
}

.cart-step.active {
  background: var(--rosegold);
  color: white;
}

.cart-step.done {
  background: rgba(var(--rosegold-rgb), 0.2);
  color: var(--rosegold-dark);
}

.cart-drawer-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(var(--charcoal-rgb), 0.6);
  transition: background-color 0.2s, color 0.2s;
}

.cart-drawer-close:hover {
  background: var(--pastel);
  color: var(--charcoal);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(var(--charcoal-rgb), 0.55);
  gap: 0.75rem;
}

.cart-empty.hidden {
  display: none;
}

.cart-empty-icon {
  width: 3rem;
  height: 3rem;
  color: rgba(var(--charcoal-rgb), 0.25);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--pastel);
}

.cart-item-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 0.5rem;
  background: var(--pastel);
  padding: 0.25rem;
}

.cart-item-info {
  min-width: 0;
}

.cart-item-brand {
  font-size: 0.7rem;
  color: var(--rosegold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-item-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  margin: 0.15rem 0;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: rgba(var(--charcoal-rgb), 0.5);
}

.cart-item-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rosegold);
  margin-top: 0.25rem;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--pastel);
  border-radius: 9999px;
  padding: 0.15rem;
}

.cart-qty-btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  line-height: 1;
  color: var(--charcoal);
  transition: background-color 0.2s;
}

.cart-qty-btn:hover {
  background: var(--pastel);
}

.cart-qty-value {
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.cart-item-remove {
  font-size: 0.75rem;
  color: rgba(var(--charcoal-rgb), 0.45);
  text-decoration: underline;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #c0392b;
}

.cart-drawer-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--pastel);
  background: rgba(var(--pastel-rgb), 0.35);
}

.cart-drawer-footer.hidden {
  display: none;
}

.cart-customer-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cart-customer-fields input,
.cart-customer-fields textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid rgba(var(--charcoal-rgb), 0.12);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s;
}

.cart-customer-fields input:focus,
.cart-customer-fields textarea:focus {
  outline: none;
  border-color: var(--rosegold);
}

.cart-customer-fields input.error,
.cart-customer-fields textarea.error {
  border-color: #e74c3c;
  background: #fff5f5;
}

.cart-fields-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.cart-form-error {
  font-size: 0.8125rem;
  color: #e74c3c;
  margin-bottom: 0.75rem;
}

.cart-form-error.hidden {
  display: none;
}

.cart-whatsapp-hint {
  font-size: 0.75rem;
  color: rgba(var(--charcoal-rgb), 0.5);
  text-align: center;
  margin-top: 0.5rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
  font-size: 1rem;
}

.cart-total-row strong {
  font-size: 1.25rem;
  color: var(--rosegold);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  background: #25D366;
  transition: background-color 0.3s, transform 0.2s, opacity 0.3s;
}

.btn-whatsapp:hover:not(:disabled) {
  background: #1ebe57;
  transform: translateY(-1px);
}

.btn-whatsapp:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cart-clear-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(var(--charcoal-rgb), 0.5);
  transition: color 0.2s;
}

.cart-clear-btn:hover {
  color: #c0392b;
}

/* Order Steps Section */
.order-steps {
  background: white;
  border: 1px solid var(--pastel);
  border-radius: 0.85rem;
  padding: 0.85rem 0.9rem 0.95rem;
}

.order-steps-title {
  color: var(--charcoal);
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.order-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.order-step-card {
  text-align: center;
  padding: 0.55rem 0.4rem 0.6rem;
  border-radius: 0.6rem;
  background: rgba(var(--pastel-rgb), 0.5);
  border: 1px solid var(--pastel);
}

.order-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  background: var(--rosegold);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.order-step-card h4 {
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.order-step-card p {
  font-size: 0.65rem;
  color: rgba(var(--charcoal-rgb), 0.6);
  line-height: 1.3;
}

/* Community social links */
.community-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  max-width: 36rem;
  margin: 0 auto;
}

.community-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.375rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.community-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  opacity: 0.95;
}

.community-link-tiktok {
  background: #010101;
}

.community-link-facebook {
  background: #1877F2;
}

.community-link-whatsapp {
  background: #25D366;
}

@media (max-width: 639px) {
  .community-links {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.5rem;
  }

  .community-link {
    justify-content: center;
  }
}

/* Floating Actions */
.float-actions {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  right: calc(1rem + env(safe-area-inset-right, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: white;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* Floating Cart Bag */
.cart-float {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--rosegold);
  color: white;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(var(--rosegold-rgb), 0.4);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.cart-float:hover {
  background: var(--rosegold-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(var(--rosegold-rgb), 0.45);
}

.cart-float-count {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  background: #2D2D2D;
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Toast with action */
.toast {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toast-action {
  padding: 0.35rem 0.875rem;
  background: var(--rosegold);
  color: white;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.toast-action:hover {
  background: var(--rosegold-dark);
}

.toast-action.hidden {
  display: none;
}

/* Scroll Reveal */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section .carousel-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.reveal-section.revealed .carousel-wrapper {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--rosegold);
  color: white;
}

@media (prefers-reduced-motion: reduce) {
  .bubble-bg {
    display: none;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal-item,
  .reveal-section .carousel-wrapper {
    opacity: 1;
    transform: none;
  }

  .hero-animate,
  .hero-image-container {
    opacity: 1;
    animation: none;
  }
}

/* Pink + white theme — override compiled Tailwind color utilities */
.text-rosegold {
  --tw-text-opacity: 1;
  color: rgb(194 24 91 / var(--tw-text-opacity, 1)) !important;
}

.text-charcoal {
  --tw-text-opacity: 1;
  color: rgb(58 36 48 / var(--tw-text-opacity, 1)) !important;
}

.text-charcoal-20 { color: rgba(58, 36, 48, 0.2) !important; }
.text-charcoal-55 { color: rgba(58, 36, 48, 0.55) !important; }
.text-charcoal-60 { color: rgba(58, 36, 48, 0.6) !important; }
.text-charcoal-70 { color: rgba(58, 36, 48, 0.7) !important; }

.border-pastel {
  --tw-border-opacity: 1;
  border-color: rgb(244 196 212 / var(--tw-border-opacity, 1)) !important;
}

.bg-pastel-30 { background-color: #FFFFFF !important; }
.bg-pastel-50 { background-color: #FFFFFF !important; }

.bg-charcoal {
  --tw-bg-opacity: 1;
  background-color: rgb(42 21 32 / var(--tw-bg-opacity, 1)) !important;
}
