/* ============================================
   BENÔ CASA — E-commerce Design System
   Playful · Colorful · Claymorphism
   Outfit + DM Sans
   ============================================ */

:root {
  /* Brand Colors — from DESIGN_SYSTEM.md */
  --brand-purple: #C77DBA;
  --brand-pink: #E88B9C;
  --brand-yellow: #E5C940;
  --brand-orange: #E8913A;

  /* Aliases for backwards-compat with existing classes */
  --primary: #E88B9C;
  --primary-light: #f0a5b3;
  --primary-dark: #d47688;
  --primary-bg: rgba(232, 139, 156, 0.08);
  --secondary: #C77DBA;
  --secondary-light: #d49bcb;
  --accent-rose: #E88B9C;
  --accent-rose-light: #FDE8ED;
  --accent-green: #5A7A4A;
  --accent-green-light: #E8F5E9;

  /* Backgrounds — cream tones, NEVER pure white */
  --background: #FFFDF7;
  --background-accent: #FFF5EB;
  --background-warm: #FFF5EB;
  --background-dark: #2D2A26;
  --surface: #FFFDF7;
  --bg-blush: #FDE8ED;
  --bg-lavender: #F0E0F5;
  --bg-mint: #E8F5E9;

  /* Text — neutral warm tones */
  --text: #2D2A26;
  --text-secondary: #5A5650;
  --text-light: #A09A94;
  --text-inverse: #FFFDF7;

  /* Feedback */
  --star: #E5C940;
  --badge-bestseller: #E8913A;
  --badge-limited: #E88B9C;
  --badge-new: #5A7A4A;
  --badge-gift: #C77DBA;
  --danger: #C41E3A;
  --success: #5A7A4A;
  --whatsapp: #25D366;

  /* Fragrance Colors */
  --fragrance-pear: #8B8B38;
  --fragrance-bergie: #5A7A4A;
  --fragrance-pistachio: #8B8B38;
  --fragrance-lime: #5A7A4A;
  --fragrance-melon: #A0A040;
  --fragrance-cherry: #C41E3A;
  --fragrance-gummy: #E84090;
  --fragrance-popchill: #8B0000;
  --fragrance-matcha: #5A7A4A;
  --fragrance-mocha: #6B4226;
  --fragrance-chai: #B8960C;

  /* Borders */
  --border: #E8E4DE;
  --border-light: #F5F2EE;

  /* Shadows — Claymorphism: ALWAYS brand-tinted, NEVER flat gray */
  --shadow-card: 0 2px 8px rgba(199, 125, 186, 0.08), 0 8px 24px rgba(199, 125, 186, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(199, 125, 186, 0.12), 0 16px 40px rgba(199, 125, 186, 0.10);
  --shadow-featured: 0 8px 32px rgba(232, 139, 156, 0.15), 0 2px 8px rgba(232, 139, 156, 0.08);
  --shadow-button: 0 2px 8px rgba(232, 139, 156, 0.20);
  --shadow-button-hover: 0 4px 16px rgba(232, 139, 156, 0.30);
  --shadow-floating: 0 8px 40px rgba(45, 42, 38, 0.12), 0 2px 8px rgba(45, 42, 38, 0.06);

  /* Aliases for existing shadow references */
  --shadow-sm: 0 1px 4px rgba(199, 125, 186, 0.06);
  --shadow-md: var(--shadow-card);
  --shadow-lg: var(--shadow-card-hover);
  --shadow-xl: var(--shadow-featured);

  /* Border Radius — generous and playful */
  --radius-xs: 8px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 9999px;

  /* Typography — Outfit + DM Sans */
  --font-display: 'Outfit', 'Helvetica Neue', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Layout */
  --header-height: 64px;
  --topbar-height: 36px;
  --container-max: 1280px;
  --container-padding: 16px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

/* Focus ring — brand purple, never blue browser default */
:focus-visible {
  outline: 2px solid var(--brand-purple);
  outline-offset: 2px
}

:focus:not(:focus-visible) {
  outline: none
}

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

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  background: none
}

ul,
ol {
  list-style: none
}

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

input,
textarea,
select {
  font-family: var(--font-body);
  font-size: 15px
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding)
}

/* --- Section Titles --- */
.section-header {
  text-align: center;
  margin-bottom: 40px
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--brand-pink);
  margin: 12px auto 0;
  border-radius: var(--radius-full)
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: -0.005em;
  line-height: 1.6
}

/* --- Buttons — rounded-full, brand colors, NEVER gray rectangles --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-full);
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-button)
}

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

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: var(--shadow-button-hover)
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.95)
}

.btn-outline {
  background: transparent;
  color: var(--brand-purple);
  border: 1.5px solid var(--brand-purple);
  box-shadow: none
}

.btn-outline:hover {
  background: rgba(199, 125, 186, 0.08);
  box-shadow: none
}

.btn-secondary {
  background: var(--brand-orange);
  color: #fff
}

.btn-secondary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: var(--shadow-button-hover)
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25)
}

.btn-whatsapp:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35)
}

.btn-wa-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: filter 200ms ease, transform 200ms ease
}

.btn-wa-checkout:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4)
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700
}

.btn-full {
  width: 100%
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full)
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--brand-purple);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease
}

.topbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  overflow: hidden
}

.topbar-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap
}

.topbar-item {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.03em
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ============================================
   HEADER — Benô Casa Branded
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  overflow: visible
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(232, 228, 222, 0.3);
  transition: opacity 0.3s ease
}

.header.scrolled {
  background: rgba(255, 253, 247, 0.95);
  box-shadow: var(--shadow-card)
}

.header.scrolled::after {
  opacity: 0
}


.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  position: relative
}

.header-logo img {
  height: 44px;
  width: auto
}

/* Nav Desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 24px
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: #5A5650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: color 200ms
}

.nav-link:hover {
  color: var(--brand-purple)
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-purple);
  border-radius: var(--radius-full);
  transition: width 0.3s ease
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.nav-link--highlight {
  color: var(--brand-pink);
  font-weight: 600
}

.nav-link.active {
  color: var(--brand-purple)
}

/* Mega Menu */
.nav-item {
  position: relative
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  box-shadow: var(--shadow-floating);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  min-width: 200px;
  z-index: 110
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.mega-menu-grid {
  display: flex;
  flex-direction: column
}

.mega-menu-item {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: color 150ms, background 150ms;
  border-radius: var(--radius-sm);
  margin: 0 4px
}

.mega-menu-item:hover {
  background: var(--bg-lavender);
  color: var(--brand-purple)
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px
}

.header-action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text);
  transition: background 200ms ease, color 200ms ease
}

.header-action-btn:hover {
  background: var(--bg-lavender);
  color: var(--brand-purple)
}

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


.cart-btn {
  position: relative
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  background: var(--brand-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 300ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0 3px;
  line-height: 1
}

.cart-count.active {
  opacity: 1;
  transform: scale(1)
}

.cart-count.bounce {
  animation: cartBounce 400ms cubic-bezier(0.34, 1.56, 0.64, 1)
}

@keyframes cartBounce {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.4)
  }

  100% {
    transform: scale(1)
  }
}

/* Branded Hamburger — 2 lines + dot */
.menu-btn {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 300ms ease;
  transform-origin: center
}

.menu-dot {
  display: block;
  width: 4px;
  height: 4px;
  background: var(--brand-pink);
  border-radius: 50%;
  transition: opacity 300ms ease, transform 300ms ease
}

/* Hamburger → X animation */
.menu-btn.open .menu-line:first-child {
  transform: translateY(7px) rotate(45deg)
}

.menu-btn.open .menu-line:nth-child(2) {
  transform: translateY(-0px) rotate(-45deg)
}

.menu-btn.open .menu-dot {
  opacity: 0;
  transform: scale(0)
}

/* ============================================
   MOBILE DRAWER
   ============================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(180deg, var(--background) 0%, var(--background-accent) 100%);
  z-index: 151;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  display: flex;
  flex-direction: column;
  overflow-y: auto
}

.drawer.open {
  transform: translateX(0)
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px
}

.drawer-logo img {
  height: 32px;
  width: auto
}

.drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background 200ms ease
}

.drawer-close:hover {
  background: var(--background-accent)
}

.drawer-close svg {
  width: 20px;
  height: 20px
}

.drawer-divider {
  width: 40px;
  height: 2px;
  background: var(--brand-pink);
  margin: 0 auto 8px;
  border-radius: var(--radius-full)
}

.drawer-nav {
  flex: 1;
  padding: 8px 20px
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
  padding: 12px 0;
  transition: color 0.2s ease, transform 0.2s ease;
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(232, 228, 222, 0.4);
  background: none;
  cursor: pointer;
  text-transform: uppercase
}

.drawer-link-secondary {
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: none
}

.drawer-divider-line {
  height: 1px;
  background: var(--border);
  margin: 8px 0
}

.drawer-link:hover,
.drawer-link:active {
  color: var(--brand-purple);
  transform: translateX(4px)
}

.drawer-link--highlight {
  color: var(--brand-pink);
  font-weight: 600
}

.drawer-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0
}

.drawer-accordion.open .drawer-chevron {
  transform: rotate(180deg)
}

.drawer-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 16px
}

.drawer-accordion.open .drawer-accordion-content {
  max-height: 300px
}

.drawer-sublink {
  display: block;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 10px 0;
  transition: color 0.2s, transform 0.2s
}

.drawer-sublink:hover {
  color: var(--brand-purple);
  transform: translateX(4px)
}

.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-around;
  gap: 12px;
  margin-top: auto
}

.drawer-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--brand-purple);
  transition: opacity 0.2s
}

.drawer-social-item:hover {
  opacity: 0.7
}

.drawer-social-item svg {
  width: 22px;
  height: 22px
}

.drawer-social-item span {
  font-size: 11px;
  color: var(--text-secondary)
}

/* ============================================
   INLINE SEARCH
   ============================================ */
.search-inline {
  display: flex;
  align-items: center;
  position: relative
}

.search-inline-field {
  overflow: hidden;
  width: 0;
  opacity: 0;
  margin-left: 0;
  transition: width 250ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), margin-left 250ms cubic-bezier(0.4, 0, 0.2, 1)
}

.search-inline.open .search-inline-field {
  width: 192px;
  opacity: 1;
  margin-left: 8px
}

.search-inline-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(199, 125, 186, 0.4);
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  padding: 4px 0;
  transition: border-color 200ms ease
}

.search-inline-input::placeholder {
  color: var(--text-light);
  font-weight: 400
}

.search-inline-input:focus {
  border-color: var(--brand-purple)
}

.search-inline-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  max-height: 320px;
  overflow-y: auto;
  background: var(--background);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-floating);
  z-index: 120;
  display: none;
  scrollbar-width: thin
}

.search-inline-results:not(:empty) {
  display: block
}

/* Keep old class names for JS compatibility */
.search-results {
  /* alias — used by JS */
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background 150ms ease;
  cursor: pointer;
  margin: 4px
}

.search-result-item:hover {
  background: var(--background-accent)
}

.search-result-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0
}

.search-result-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text)
}

.search-result-price {
  font-size: 13px;
  color: var(--brand-pink);
  font-weight: 600
}

.search-no-results {
  padding: 16px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px
}

/* ============================================
   BANNER CAROUSEL
   ============================================ */
.banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-blush);
}

.banner-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

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

.banner-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
  position: relative;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
  scroll-snap-align: start;
}

.banner-slide picture {
  display: block;
  width: 100%;
  line-height: 0
}

.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.2s ease;
  color: var(--text);
  box-shadow: var(--shadow-card)
}

.banner-arrow svg {
  width: 20px;
  height: 20px
}

.banner-carousel:hover .banner-arrow {
  opacity: 1
}

.banner-arrow:hover {
  background: var(--background);
  box-shadow: var(--shadow-card-hover)
}

.banner-arrow-prev {
  left: 16px
}

.banner-arrow-next {
  right: 16px
}

.banner-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.25s ease
}

.banner-dot.active {
  background: var(--brand-pink);
  width: 24px
}

.banner-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8)
}

/* ---- Candle Flame (CSS pure) ---- */
.candle-flame {
  position: relative;
  width: 24px;
  height: 48px;
  flex-shrink: 0
}

.flame-glow {
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 32px;
  height: 40px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(229, 201, 64, 0.5) 0%, rgba(232, 145, 58, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: glow-pulse 3s ease-in-out infinite
}

.flame-main {
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 14px;
  height: 28px;
  transform: translateX(-50%);
  background: linear-gradient(to top, #E8913A 0%, #E5C940 35%, #f0e268 70%, #FFFDF7 100%);
  border-radius: 70% 70% 50% 50% / 80% 80% 40% 40%;
  filter: blur(1.5px);
  animation: flicker 2.8s ease-in-out infinite
}

.flame-core {
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 6px;
  height: 14px;
  transform: translateX(-50%);
  background: linear-gradient(to top, #f0e268 0%, #FFFDF7 60%, rgba(255, 253, 247, 0.9) 100%);
  border-radius: 50% 50% 40% 40% / 70% 70% 30% 30%;
  filter: blur(1px);
  animation: flicker 2.2s ease-in-out infinite
}

.flame-wick {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 14px;
  transform: translateX(-50%);
  background: linear-gradient(to top, #5D4037, #795548);
  border-radius: 1px
}

@keyframes flicker {

  0%,
  100% {
    transform: translateX(-50%) scaleY(1) scaleX(1);
    opacity: 1
  }

  25% {
    transform: translateX(calc(-50% - 0.5px)) scaleY(1.04) scaleX(0.96);
    opacity: 0.95
  }

  50% {
    transform: translateX(calc(-50% + 0.5px)) scaleY(0.96) scaleX(1.02);
    opacity: 1
  }

  75% {
    transform: translateX(calc(-50% - 0.3px)) scaleY(1.02) scaleX(0.98);
    opacity: 0.97
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) scale(1)
  }

  50% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1.05)
  }
}

@media (prefers-reduced-motion: reduce) {

  .candle-flame,
  .candle-flame * {
    animation: none !important
  }
}

/* ---- PDP Size Selector ---- */
.pdp-sizes {
  margin: 16px 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.pdp-sizes-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text)
}

.pdp-sizes-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.pdp-size-btn {
  padding: 8px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--background);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease
}

.pdp-size-btn:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple)
}

.pdp-size-btn.active {
  border-color: var(--brand-purple);
  background: var(--brand-purple);
  color: #fff
}

/* ============================================
   TRUST BAR
   ============================================ */
/* Mobile marquee trust bar */
.trust-bar-mobile {
  display: block;
  background: #F5F2EE;
  height: 40px;
  overflow: hidden;
  position: relative
}

.trust-marquee-track {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 0;
  animation: trustMarquee 20s linear infinite;
  white-space: nowrap
}

.trust-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0 12px;
  flex-shrink: 0
}

.trust-marquee-icon {
  width: 16px;
  height: 16px;
  color: var(--brand-purple);
  flex-shrink: 0
}

.trust-marquee-sep {
  color: var(--brand-yellow);
  margin-left: 4px;
  font-size: 10px
}

@keyframes trustMarquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* Desktop static trust bar — hidden on mobile */
.trust-bar {
  display: none;
  background: #F5F2EE;
  padding: 40px 0
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-card)
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand-purple)
}

.trust-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--text)
}

.trust-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 1px
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  padding: 64px 0
}

.categories-header {
  text-align: center;
  margin-bottom: 40px
}

.categories-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.02em
}

.categories-title-line {
  width: 48px;
  height: 2px;
  background: var(--brand-pink);
  margin: 12px auto 0;
  border-radius: var(--radius-full)
}

.categories-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: #737373;
  margin-top: 8px
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

/* Shared card base */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  aspect-ratio: 3/2;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  transition: transform 200ms ease
}

.category-card:hover {
  transform: translateY(-2px)
}

.category-card-name {
  position: relative;
  z-index: 2;
  padding: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  transition: transform 200ms ease
}

.category-card:hover .category-card-name {
  transform: translateY(-2px)
}

/* State: with image */
.category-card--has-image .category-card-name {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3)
}

.category-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease
}

.category-card:hover .category-card-bg {
  transform: scale(1.1)
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.10) 50%, transparent 100%);
  transition: opacity 300ms ease;
  z-index: 1
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%)
}

/* State: fallback (no image) */
.category-card--fallback {
  background: #FFF5EB;
  border: 1px solid rgba(229, 229, 229, 0.4);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease
}

.category-card--fallback:hover {
  border-color: rgba(232, 139, 156, 0.4);
  background: #FFF0E5
}

.category-card--fallback .category-card-name {
  color: #1a1a1a
}

.category-card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  color: rgba(232, 139, 156, 0.2)
}

/* Staggered entrance */
.category-card.reveal { opacity: 0; transform: translateY(10px); transition: opacity 300ms ease-out, transform 300ms ease-out }
.category-card.reveal.visible { opacity: 1; transform: translateY(0) }
.category-card.reveal:nth-child(1) { transition-delay: 0ms }
.category-card.reveal:nth-child(2) { transition-delay: 50ms }
.category-card.reveal:nth-child(3) { transition-delay: 100ms }
.category-card.reveal:nth-child(4) { transition-delay: 150ms }
.category-card.reveal:nth-child(5) { transition-delay: 200ms }
.category-card.reveal:nth-child(6) { transition-delay: 250ms }

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-section {
  padding: 64px 0
}

.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px
}

.filter-tabs::-webkit-scrollbar {
  display: none
}

.filter-tab {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--background);
  white-space: nowrap;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
  border: 1.5px solid var(--border);
  text-transform: uppercase
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--brand-purple);
  color: #fff;
  border-color: var(--brand-purple)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(229, 229, 229, 0.5);
  transition: transform 250ms ease, box-shadow 250ms ease;
  position: relative;
  padding: 12px
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(199, 125, 186, 0.10)
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #F5F2EE;
  border-radius: var(--radius-xl)
}

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

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brand-pink);
  color: #fff
}

.product-card-info {
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0
}

.product-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 2px;
  line-height: 1.3;
  text-transform: uppercase
}

.product-card-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: #a3a3a3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px
}

.stars {
  color: var(--brand-yellow);
  font-size: 12px;
  letter-spacing: 1px
}

.rating-count {
  font-size: 12px;
  color: #a3a3a3
}

.product-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px
}

.product-card-pricing {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.product-card-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a
}

.product-card-installments {
  font-family: var(--font-body);
  font-size: 12px;
  color: #a3a3a3
}

.product-card-actions {
  display: none;
  align-items: center;
  gap: 8px
}

@media(min-width:768px) {
  .product-card-actions {
    display: flex
  }
}

.product-action-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease
}

.product-action-btn svg {
  width: 16px;
  height: 16px
}

.product-action-bag {
  background: var(--brand-pink);
  color: #fff;
  border: none
}

.product-action-bag:hover {
  transform: scale(1.1)
}

.product-action-eye {
  background: transparent;
  border: 1px solid #e5e5e5;
  color: #737373;
  text-decoration: none
}

.product-action-eye:hover {
  background: #f5f5f5
}

/* ============================================
   FEATURE PRODUCT BLOCK
   ============================================ */
.feature-block {
  background: #FDE8ED;
  padding: 64px 20px
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto
}

.feature-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  background: #F5F2EE
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.feature-content {
  padding: 0
}

.feature-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-pink)
}

.feature-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 8px;
  line-height: 1.2
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #525252;
  line-height: 1.7;
  margin-top: 16px
}

.feature-price {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 16px
}

.feature-installments {
  font-family: var(--font-body);
  font-size: 14px;
  color: #a3a3a3;
  margin-top: 2px
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--brand-pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  margin-top: 24px;
  transition: filter 200ms ease, transform 200ms ease
}

.feature-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px)
}

/* ============================================
   WHY BENO CASA
   ============================================ */
.why-section {
  padding: 80px 0
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.why-card {
  background: var(--background-accent);
  border: none;
  border-radius: var(--radius-2xl);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease
}

.why-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: scale(1.02)
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--bg-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px
}

.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand-purple)
}

.why-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px
}

.why-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5
}

/* ============================================
   EDITORIAL — Brand Story Section
   ============================================ */
.editorial {
  background: #FAF5FF;
  padding: 80px 20px
}

.editorial-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto
}

.editorial-image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  aspect-ratio: 4/3;
  background: #F5F2EE
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.editorial-content {
  display: flex;
  flex-direction: column
}

.editorial-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-purple)
}

.editorial-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-top: 8px
}

.editorial-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: #525252;
  line-height: 1.7;
  margin-top: 16px
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-purple);
  text-decoration: none;
  margin-top: 24px;
  transition: text-decoration 200ms ease
}

.editorial-link:hover {
  text-decoration: underline
}

.editorial-link svg {
  transition: transform 200ms ease
}

.editorial-link:hover svg {
  transform: translateX(3px)
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 80px 0;
  background: var(--bg-blush);
  position: relative
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-pink), transparent);
  opacity: 0.4
}

.testimonials-overall {
  text-align: center;
  margin-bottom: 32px
}

.testimonials-score {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 800;
  color: var(--text)
}

.testimonials-stars {
  color: var(--star);
  font-size: 20px;
  letter-spacing: 2px;
  margin: 4px 0
}

.testimonials-count {
  font-size: 14px;
  color: var(--text-secondary)
}

.testimonials-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px;
  scrollbar-width: none
}

.testimonials-track::-webkit-scrollbar {
  display: none
}

.testimonial-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--background);
  border-radius: var(--radius-2xl);
  padding: 24px;
  box-shadow: var(--shadow-card)
}

.testimonial-stars {
  color: var(--brand-yellow);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px
}

.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--brand-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px
}

.testimonial-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--text)
}

.testimonial-product {
  font-size: 12px;
  color: var(--text-secondary)
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
  padding: 56px 0
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px
}

.instagram-item {
  aspect-ratio: 1;
  background: var(--background-accent);
  border-radius: var(--radius-xs);
  overflow: hidden;
  position: relative;
  cursor: pointer
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms
}

.instagram-item:hover img {
  transform: scale(1.08)
}

.instagram-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(199, 125, 186, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms
}

.instagram-item:hover .instagram-item-overlay {
  opacity: 1
}

.instagram-item-overlay svg {
  width: 28px;
  height: 28px;
  color: var(--text)
}

.instagram-cta {
  text-align: center;
  margin-top: 24px
}

.instagram-handle {
  font-weight: 600;
  color: var(--brand-purple);
  font-size: 15px
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: 80px 0
}

.newsletter-inner {
  background: var(--background-dark);
  border-radius: var(--radius-3xl);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--brand-purple);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-pink);
  margin-bottom: 8px;
  position: relative
}

.newsletter-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  position: relative
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto
}

.newsletter-input {
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 15px;
  outline: none;
  transition: border-color 200ms;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  position: relative
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4)
}

.newsletter-input:focus {
  border-color: var(--brand-pink)
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 56px 0
}

.faq-list {
  max-width: 700px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid var(--border-light)
}

.faq-question {
  width: 100%;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 200ms
}

.faq-question:hover {
  color: var(--brand-purple)
}

.faq-arrow {
  width: 20px;
  height: 20px;
  transition: transform 300ms;
  flex-shrink: 0;
  color: var(--text-secondary)
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7
}

.faq-answer-inner {
  padding: 0 0 18px
}

.faq-item.open .faq-answer {
  max-height: 300px
}

.faq-more {
  text-align: center;
  margin-top: 24px
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--background-dark);
  padding: 80px 0 32px;
  color: var(--text-inverse);
  position: relative;
  text-transform: uppercase
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-purple), var(--brand-pink), transparent)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px
}

.footer-brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(0) invert(1)
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--brand-pink);
  margin-bottom: 16px;
  font-style: italic;
  opacity: 0.85
}

.footer-social {
  display: flex;
  gap: 10px
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 200ms ease, color 200ms ease
}

.social-link:hover {
  background: var(--brand-pink);
  color: #fff
}

.social-link svg {
  width: 18px;
  height: 18px
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 0;
  transition: color 200ms
}

.footer-col a[href*="instagram"] {
  text-transform: none
}

.footer-col a:hover {
  color: var(--brand-pink)
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  margin-top: 12px
}

.footer-payment-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6)
}

.footer-bottom {
  border-top: 1px solid rgba(199, 125, 186, 0.2);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4)
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 200ms
}

.footer-legal a:hover {
  color: var(--brand-pink)
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: var(--background);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-floating)
}

.cart-drawer.open {
  transform: translateX(0)
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light)
}

.cart-header-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text)
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 18px;
  color: var(--text-secondary);
  transition: background 200ms ease
}

.cart-close:hover {
  background: var(--background-accent)
}

.cart-shipping-bar {
  padding: 10px 24px;
  background: var(--background-accent)
}

.cart-shipping-text {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-align: center
}

.cart-shipping-progress {
  height: 4px;
  background: var(--background-accent);
  border-radius: 2px;
  overflow: hidden
}

.cart-shipping-fill {
  height: 100%;
  background: var(--accent-green);
  border-radius: 2px;
  transition: width 400ms ease
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px
}

.cart-empty {
  text-align: center;
  padding: 48px 24px
}

.cart-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.5
}

.cart-empty-text {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px
}

.cart-empty-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cart-item-details {
  flex: 1
}

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px
}

.cart-item-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--text)
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  background: var(--background-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: background 200ms ease, color 200ms ease
}

.qty-btn:hover {
  background: var(--brand-pink);
  color: #fff
}

.qty-value {
  font-weight: 600;
  font-size: 14px;
  min-width: 20px;
  text-align: center
}

.cart-item-remove {
  align-self: flex-start;
  color: var(--text-light);
  font-size: 16px;
  padding: 4px;
  transition: color 200ms
}

.cart-item-remove:hover {
  color: var(--danger)
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  background: var(--surface)
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px
}

.cart-total-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--text)
}

.cart-total-value {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--text)
}

.cart-total-installments {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: right;
  font-weight: 500;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 200ms ease;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 2s both
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  animation: waPulse 2s infinite
}

.whatsapp-float:hover {
  transform: scale(1.1)
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
  position: relative;
  z-index: 1
}

.whatsapp-tooltip {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateX(-110%) translateY(-50%) scale(0.9);
  background: var(--text);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-110%) translateY(-50%) scale(1)
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4)
  }

  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0)
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

/* ============================================
   TOAST
   ============================================ */
.toast-container {
  position: fixed;
  top: calc(var(--header-height) + var(--topbar-height) + 12px);
  right: 16px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none
}

.toast {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--background-dark);
  color: var(--brand-pink);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-floating);
  animation: toastIn 400ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  pointer-events: auto
}

.toast.fade-out {
  animation: toastOut 400ms ease forwards
}

@keyframes toastIn {
  0% {
    opacity: 0;
    transform: translateX(100%)
  }

  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes toastOut {
  0% {
    opacity: 1;
    transform: translateX(0)
  }

  100% {
    opacity: 0;
    transform: translateX(100%)
  }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 98;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease, background 300ms ease
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.back-to-top:hover {
  background: var(--brand-purple);
  color: #fff
}

.back-to-top svg {
  width: 18px;
  height: 18px
}

/* ============================================
   PAGE: PDP (Product Detail)
   ============================================ */
/* ============================================
   PDP — PRODUCT DETAIL PAGE
   ============================================ */
.pdp {
  padding: 32px 20px 0
}

.pdp-container {
  max-width: 1152px;
  margin: 0 auto
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: #a3a3a3;
  margin-bottom: 24px;
  flex-wrap: wrap
}

.breadcrumb a {
  color: #404040;
  text-decoration: none;
  transition: color 200ms
}

.breadcrumb a:hover {
  color: var(--brand-purple)
}

.breadcrumb-sep {
  color: #d4d4d4
}

.breadcrumb-current {
  color: #a3a3a3
}

/* Main block */
.pdp-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start
}

.pdp-gallery {
  position: relative
}

.pdp-main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #f5f5f5
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pdp-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 12px
}

.pdp-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 200ms;
  background: none;
  padding: 0
}

.pdp-thumb.active {
  border-color: var(--brand-pink)
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* Info column */
.pdp-info {
  min-width: 0
}

.pdp-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  letter-spacing: -0.02em
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px
}

.pdp-rating .stars {
  font-size: 16px
}

.pdp-rating-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: #a3a3a3
}

/* Price box */
.pdp-price-box {
  background: #F5F2EE;
  border-radius: var(--radius-xl);
  padding: 16px;
  margin-top: 16px
}

.pdp-price {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a
}

.pdp-installments {
  font-family: var(--font-body);
  font-size: 14px;
  color: #737373;
  margin-top: 4px
}

.pdp-pix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(34, 197, 94, 0.1);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #16a34a;
  margin-top: 8px
}

/* Description */
.pdp-short-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #525252;
  line-height: 1.7;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

/* Quantity */
.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px
}

.pdp-qty-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #404040
}

.pdp-qty {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-full);
  overflow: hidden
}

.pdp-qty button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 200ms
}

.pdp-qty button:hover {
  background: #f5f5f5
}

.pdp-qty span {
  width: 48px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  line-height: 40px
}

/* CTAs */
.pdp-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px
}

.pdp-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: filter 200ms ease, transform 200ms ease
}

.pdp-btn-whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-1px)
}

.pdp-btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--brand-pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: filter 200ms ease
}

.pdp-btn-cart:hover {
  filter: brightness(1.1)
}

/* Trust seals */
.pdp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px
}

.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #737373
}

.pdp-trust-item svg {
  color: #a3a3a3;
  flex-shrink: 0
}

/* Stock */
.pdp-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #737373;
  margin-top: 12px
}

.pdp-stock-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0
}

.pdp-stock.in-stock .pdp-stock-dot {
  background: #22c55e
}

.pdp-stock.low-stock {
  color: var(--danger)
}

.pdp-stock.low-stock .pdp-stock-dot {
  background: var(--danger)
}

/* ============================================
   PDP TABS
   ============================================ */
.pdp-tabs {
  margin-top: 48px
}

.pdp-tab-nav {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none
}

.pdp-tab-nav::-webkit-scrollbar {
  display: none
}

.pdp-tab-btn {
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #a3a3a3;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
  cursor: pointer
}

.pdp-tab-btn.active {
  color: var(--brand-purple);
  border-bottom-color: var(--brand-purple)
}

.pdp-tab-btn:hover {
  color: #404040
}

.pdp-tab-content {
  padding: 24px 0 0
}

.pdp-tab-panel {
  display: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: #525252;
  line-height: 1.7
}

.pdp-tab-panel.active {
  display: block
}

.pdp-tab-panel h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600
}

.pdp-tab-panel ul {
  padding-left: 20px;
  list-style: disc
}

.pdp-tab-panel ul li {
  margin-bottom: 6px
}

/* ============================================
   PDP REVIEWS
   ============================================ */
.pdp-reviews {
  margin-top: 48px
}

.pdp-reviews-header {
  text-align: center
}

.pdp-reviews-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a
}

.pdp-reviews-line {
  width: 40px;
  height: 2px;
  background: var(--brand-pink);
  margin: 8px auto 0;
  border-radius: var(--radius-full)
}

.pdp-reviews-empty {
  font-family: var(--font-body);
  font-size: 14px;
  color: #a3a3a3;
  text-align: center;
  margin-top: 8px
}

/* Reviews summary */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #FFF5EB;
  border-radius: var(--radius-lg);
  margin: 16px 0 24px;
  flex-wrap: wrap
}

.reviews-score {
  text-align: center
}

.reviews-score-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a
}

.reviews-score-count {
  font-family: var(--font-body);
  font-size: 13px;
  color: #a3a3a3;
  margin-top: 4px
}

.reviews-bars {
  flex: 1;
  min-width: 200px
}

.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px
}

.reviews-bar-label {
  font-size: 12px;
  color: #737373;
  width: 20px;
  text-align: right
}

.reviews-bar {
  flex: 1;
  height: 6px;
  background: #f5f5f5;
  border-radius: 3px;
  overflow: hidden
}

.reviews-bar-fill {
  height: 100%;
  background: var(--star);
  border-radius: 3px
}

/* Individual review */
.review-item {
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5
}

.review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px
}

.review-author {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1a
}

.review-stars {
  font-size: 14px
}

.review-date {
  font-size: 12px;
  color: #a3a3a3;
  margin-left: auto
}

.review-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: #525252;
  line-height: 1.6;
  margin-top: 4px
}

.review-verified {
  font-size: 12px;
  color: var(--accent-green);
  font-weight: 600;
  margin-top: 6px
}

/* Review form */
.pdp-review-form-wrap {
  background: #FFF5EB;
  border-radius: var(--radius-2xl);
  padding: 24px;
  margin-top: 24px;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto
}

.pdp-review-form-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px
}

.pdp-form-group {
  margin-bottom: 12px
}

.pdp-form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #404040;
  margin-bottom: 6px
}

.pdp-form-group input,
.pdp-form-group textarea {
  width: 100%;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms
}

.pdp-form-group input::placeholder,
.pdp-form-group textarea::placeholder {
  color: #a3a3a3
}

.pdp-form-group input:focus,
.pdp-form-group textarea:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(199, 125, 186, 0.1)
}

.pdp-form-group textarea {
  resize: vertical;
  min-height: 100px
}

/* Star select */
.pdp-star-select {
  display: flex;
  gap: 4px
}

.pdp-star-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #e5e5e5;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 150ms
}

.pdp-star-btn.active {
  color: var(--brand-yellow)
}

.pdp-star-btn:hover {
  color: var(--brand-yellow)
}

.pdp-review-submit {
  display: inline-flex;
  padding: 10px 24px;
  background: var(--brand-pink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: filter 200ms ease;
  margin-top: 4px
}

.pdp-review-submit:hover {
  filter: brightness(1.1)
}

/* ============================================
   PDP RELATED / RECENTLY VIEWED
   ============================================ */
.pdp-related {
  margin-top: 48px
}

.pdp-recently-viewed {
  padding-bottom: 0
}

.pdp-related-header {
  text-align: center;
  margin-bottom: 20px
}

.pdp-related-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a
}

.pdp-related-line {
  width: 40px;
  height: 2px;
  background: var(--brand-pink);
  margin: 8px auto 0;
  border-radius: var(--radius-full)
}

.related-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px
}

.related-scroll::-webkit-scrollbar {
  display: none
}

.related-scroll .product-card {
  flex: 0 0 176px
}

/* ============================================
   CATEGORY PAGE
   ============================================ */
/* ============================================
   PRODUCTS / CATEGORY PAGE (refactored)
   ============================================ */
.cat-page {
  padding: 0 0 64px;
  background: var(--background)
}

/* Header */
.cat-header {
  padding: 24px 0 16px
}

.cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #A09A94
}

.cat-breadcrumb a {
  color: #5A5650;
  text-decoration: none;
  transition: color 200ms ease
}

.cat-breadcrumb a:hover {
  color: var(--brand-purple)
}

.cat-bc-sep {
  color: #A09A94
}

.cat-bc-current {
  color: #A09A94
}

.cat-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #2D2A26;
  margin-top: 8px;
  letter-spacing: -0.02em
}

.cat-count {
  font-family: var(--font-body);
  font-size: 14px;
  color: #A09A94;
  margin-top: 4px
}

/* Layout: sidebar + grid */
.cat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start
}

/* Sidebar */
.cat-sidebar {
  position: sticky;
  top: 96px;
  align-self: start
}

.cat-filter-block {
  padding-bottom: 16px
}

.cat-filter-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2D2A26;
  margin-bottom: 12px
}

.cat-filter-list {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.cat-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: #5A5650;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: background 150ms ease, color 150ms ease
}

.cat-filter-item:hover {
  background: #F5F2EE;
  color: #2D2A26
}

.cat-filter-item.active {
  background: rgba(232, 139, 156, 0.1);
  color: var(--brand-pink);
  font-weight: 500
}

.cat-filter-count {
  font-size: 12px;
  color: #A09A94;
  font-weight: 400
}

.cat-filter-item.active .cat-filter-count {
  color: rgba(232, 139, 156, 0.6)
}

.cat-filter-divider {
  border-bottom: 1px solid #F5F2EE;
  margin: 4px 0 16px
}

/* Radio/Checkbox items */
.cat-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #5A5650;
  padding: 7px 0;
  cursor: pointer;
  transition: color 150ms ease
}

.cat-checkbox-item:hover {
  color: #2D2A26
}

.cat-checkbox-item input[type="radio"] {
  display: none
}

.cat-checkbox-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #E8E4DE;
  flex-shrink: 0;
  position: relative;
  transition: border-color 150ms ease
}

.cat-checkbox-item input[type="radio"]:checked + .cat-checkbox-mark {
  border-color: var(--brand-pink)
}

.cat-checkbox-item input[type="radio"]:checked + .cat-checkbox-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-pink)
}

/* Product grid inside cat layout */
.cat-grid-wrap {
  min-height: 300px
}

.cat-products-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  transition: opacity 150ms ease
}

/* Empty state */
.cat-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
  color: #A09A94
}

.cat-empty p {
  font-family: var(--font-body);
  font-size: 15px
}

/* Mobile filter toggle */
.cat-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #5A5650;
  border: 1.5px solid #E8E4DE;
  border-radius: var(--radius-full);
  padding: 8px 20px;
  background: var(--background);
  cursor: pointer;
  margin-bottom: 16px;
  transition: border-color 200ms ease
}

.cat-filter-toggle:hover {
  border-color: var(--brand-purple)
}

/* Filter Drawer (mobile) */
.cat-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease
}

.cat-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.cat-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--background);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 300ms ease-out;
  display: flex;
  flex-direction: column
}

.cat-drawer.open {
  transform: translateX(0)
}

.cat-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #F5F2EE
}

.cat-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #2D2A26
}

.cat-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  color: #5A5650;
  border-radius: var(--radius-sm);
  transition: background 200ms ease
}

.cat-drawer-close:hover {
  background: #F5F2EE
}

.cat-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px
}

.cat-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid #F5F2EE
}

.cat-drawer-apply {
  width: 100%;
  padding: 14px;
  background: var(--brand-pink);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 200ms ease
}

.cat-drawer-apply:hover {
  filter: brightness(1.08)
}

/* Responsive */
@media (max-width: 768px) {
  .cat-layout {
    grid-template-columns: 1fr
  }

  .cat-sidebar {
    display: none
  }

  .cat-filter-toggle {
    display: inline-flex
  }

  .cat-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important
  }

  .cat-title {
    font-size: 24px
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
  padding: 56px 0
}

.about-hero {
  text-align: center;
  margin-bottom: 48px
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em
}

.about-hero-text {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px
}

.about-value-card {
  background: var(--background-accent);
  border-radius: var(--radius-2xl);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease
}

.about-value-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card-hover)
}

.about-value-icon {
  font-size: 28px;
  margin-bottom: 8px
}

.about-value-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px
}

.about-value-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6
}

.about-cta {
  text-align: center;
  margin-top: 48px
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: 56px 0
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--background-accent);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card)
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: var(--brand-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.contact-info-icon svg {
  width: 20px;
  height: 20px
}

.contact-info-label {
  font-size: 12px;
  color: var(--text-secondary)
}

.contact-info-value {
  font-weight: 600;
  font-size: 14px;
  color: var(--text)
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  outline: none;
  transition: border-color 200ms
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-purple)
}

.form-group textarea {
  resize: vertical;
  min-height: 120px
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-page {
  padding: 56px 0
}

.faq-category-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--brand-pink)
}

.faq-category-title:first-child {
  margin-top: 0
}

/* SCROLL REVEAL (Disabled globally based on user preference) */
.reveal {
  opacity: 1;
  transform: none;
}


/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media(min-width:768px) {
  :root {
    --container-padding: 24px;
    --header-height: 72px
  }

  .menu-btn {
    display: none
  }

  .nav-desktop {
    display: flex
  }

  .search-inline.open .search-inline-field {
    width: 256px
  }

  .search-inline-results {
    width: 320px
  }

  .section-title {
    font-size: 40px
  }

  .banner-slide img {
    width: 100%;
    height: auto;
  }

  .trust-bar-mobile {
    display: none
  }

  .trust-bar {
    display: block
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .categories {
    padding: 80px 0
  }

  .categories-title {
    font-size: 36px
  }

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

  .category-card {
    aspect-ratio: 2/1
  }

  .category-card-name {
    font-size: 20px
  }

  .products-section {
    padding: 80px 0
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding-bottom: 0;
    gap: 24px;
  }

  .products-grid .product-card {
    flex: auto;
    min-width: 0;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .editorial {
    padding: 112px 32px
  }

  .editorial-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px
  }

  .editorial-title {
    font-size: 36px
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between
  }

  .pdp {
    padding: 40px 32px 0
  }

  .pdp-main {
    grid-template-columns: 1fr 1fr;
    gap: 48px
  }

  .pdp-name {
    font-size: 30px
  }

  .feature-block {
    padding: 96px 32px
  }

  .feature-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px
  }

  .feature-image {
    order: 2;
  }

  .feature-content {
    order: 1;
  }

  .feature-title {
    font-size: 36px
  }

  .contact-grid {
    flex-direction: column
  }

  .contact-info-cards {
    flex: 1
  }

  .contact-form {
    flex: 1
  }

  .about-values {
    grid-template-columns: repeat(4, 1fr)
  }

  .cart-drawer {
    width: 420px
  }

  .testimonial-card {
    flex: 0 0 340px
  }

  .related-scroll .product-card {
    flex: 0 0 176px
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media(min-width:1024px) {
  :root {
    --container-padding: 32px
  }

  .banner-slide img {
    width: 100%;
    height: auto;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr)
  }

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

  .pdp-name {
    font-size: 40px
  }
}

/* ============================================
   RESPONSIVE — WIDE (1440px+)
   ============================================ */
@media(min-width:1440px) {
  :root {
    --container-max: 1360px
  }
}

/* ============================================
   MOBILE CART (768px-)
   ============================================ */
@media(max-width:767px) {
  .cart-drawer {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 85vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: translateY(100%)
  }

  .cart-drawer.open {
    transform: translateY(0)
  }

  .cart-header::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px
  }

  .cart-header {
    position: relative;
    padding-top: 24px
  }
}

/* ============================================
   VITRINES (Homepage Showcases)
   ============================================ */
.vitrine-section {
  padding: 56px 0
}

.vitrine-carousel-wrap {
  position: relative
}

.vitrine-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 16px;
}

.vitrine-carousel::-webkit-scrollbar {
  display: none
}

.vitrine-carousel .product-card {
  flex: 0 0 85%;
  min-width: 85%;
  scroll-snap-align: center
}

.vitrine-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px
}

@media (min-width: 768px) {
  .vitrine-carousel .product-card {
    flex: 0 0 260px;
    min-width: 260px;
    scroll-snap-align: start
  }
  .vitrine-carousel {
    gap: 20px;
    padding-bottom: 4px;
  }
}

.vitrine-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--background);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  color: var(--text)
}

.vitrine-nav-btn:hover {
  background: var(--brand-purple);
  color: #fff;
  border-color: var(--brand-purple)
}

.vitrine-nav-btn svg {
  width: 18px;
  height: 18px
}

/* Grid layout with side image */
.vitrine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch
}

.vitrine-grid-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px
}

.vitrine-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg)
}

.vitrine-grid-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative
}

.vitrine-grid-products .vitrine-carousel {
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 500px;
  gap: 16px
}

.vitrine-grid-products .vitrine-carousel .product-card {
  flex: 0 0 auto;
  width: 100%
}

@media (max-width: 768px) {
  .vitrine-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .vitrine-grid-image {
    min-height: 240px
  }

  .vitrine-grid-products .vitrine-carousel {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none
  }

  .vitrine-grid-products .vitrine-carousel .product-card {
    flex: 0 0 260px;
    width: auto
  }

  .vitrine-carousel .product-card {
    flex: 0 0 220px
  }
}
/* ============================================
   BANNER OVERLAY TEXT
   ============================================ */
.banner-overlay-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2); /* optional subtle darkening */
}
.banner-overlay-box {
  text-align: center;
  color: #fff;
  padding: 32px;
  max-width: 600px;
}
.banner-badge {
  display: inline-block;
  background: var(--brand-pink);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.banner-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}
.banner-subtitle {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 24px;
}
.banner-desc {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 24px;
}
.banner-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 768px) {
  .banner-title { font-size: 32px; }
  .banner-subtitle { font-size: 16px; }
}

/* ============================================
   SKELETON LOADING STATE
   ============================================ */
@keyframes skeleton-shimmer {
  0% { background-position: -400px 0 }
  100% { background-position: 400px 0 }
}

.skeleton-loading {
  min-height: 100vh;
  padding-bottom: 40px;
}

.skeleton-banner {
  width: 100%;
  height: 50vh;
  max-height: 420px;
  background: linear-gradient(90deg, #F5F2EE 25%, #FFF5EB 37%, #F5F2EE 63%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  border-radius: 0;
}

.skeleton-section {
  max-width: var(--container-max, 1200px);
  margin: 48px auto 0;
  padding: 0 var(--container-padding, 16px);
}

.skeleton-title {
  width: 220px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, #F5F2EE 25%, #FFF5EB 37%, #F5F2EE 63%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  margin: 0 auto 32px;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.skeleton-card {
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  background: var(--background-accent, #FFF5EB);
}

.skeleton-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(90deg, #F5F2EE 25%, #FFF5EB 37%, #F5F2EE 63%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.skeleton-card-text {
  height: 14px;
  margin: 12px 16px 0;
  border-radius: 6px;
  background: linear-gradient(90deg, #F5F2EE 25%, #FFF5EB 37%, #F5F2EE 63%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.skeleton-card-text.short {
  width: 60%;
  margin-bottom: 16px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .skeleton-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .skeleton-banner {
    max-height: 560px;
    height: 60vh;
  }
  .skeleton-title {
    width: 300px;
    height: 36px;
  }
}
