:root{
  --font-serif: 'Playfair Display', serif;
  --font-brand: var(--font-serif);
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --bg: linear-gradient(135deg, #fefefe 0%, #faf9f7 100%);
  --text:#0f172a;
  --muted:#64748b;
  --line:#f1f5f9;
  --soft:#ffffff;
  --soft2:#fefefe;
  --brand:#8b5a3c;     /* Warm luxury brown */
  --brand-2:#a16207;
  --brand-deep:#5d4037;
  --accent:#92400e;
  --success:#059669;
  --danger:#dc2626;
  --black:#000000;
  --gold:#d4af37;
  --gold-light:#f4e6a1;
  --shadow: 0 20px 50px rgba(139, 90, 60, 0.08), 0 8px 16px rgba(139, 90, 60, 0.04);
  --shadow-soft: 0 12px 28px rgba(139, 90, 60, 0.06);
  --shadow-lg: 0 32px 80px rgba(139, 90, 60, 0.12);
  --radius: 20px;
  --radius-sm: 14px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --fs-base: 16px;
  --fs-sm: 14px;
  --fs-lg: 18px;

  --surface: rgba(255,255,255,.96);
  --surface-2: rgba(255,255,255,.88);
  --ring: 0 0 0 4px rgba(139, 90, 60, .15);
  --luxury-gradient: linear-gradient(135deg, #8b5a3c 0%, #a16207 50%, #d4af37 100%);
  --premium-shadow: 0 25px 60px rgba(139, 90, 60, 0.15), 0 10px 20px rgba(139, 90, 60, 0.08);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; scrollbar-width: thin; scrollbar-color: var(--brand) transparent; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background-color: var(--brand); border-radius: 20px; border: 3px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background-color: var(--brand-deep); }

/* Prevent background scroll when drawers are open */
html.drawer-open,
body.drawer-open{
  overflow: hidden;
  overscroll-behavior: none;
}

body{
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height:1.6;
  color:var(--text);
  background: var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  min-height: 100vh;
}

h1,h2,h3,h4,h5,h6, .brand__name {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}

/* Premium Parallax Effect */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Glassmorphism utility */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
}

/* Premium luxury background pattern */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 800px 600px at 20% 10%, rgba(139, 90, 60, 0.04), transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(164, 98, 7, 0.03), transparent 60%),
    radial-gradient(ellipse 1000px 800px at 50% 80%, rgba(212, 175, 55, 0.02), transparent 80%),
    linear-gradient(45deg, transparent 49%, rgba(139, 90, 60, 0.01) 50%, transparent 51%);
  background-size: 100% 100%, 80% 80%, 120% 120%, 20px 20px;
}

::selection{ background: rgba(139, 90, 60, .15); color: var(--brand-deep); }

/* Premium Loading Screen - Optimized for Mobile */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.4s ease, visibility 0.4s ease; /* Faster transition on mobile */
  padding: 20px;
  box-sizing: border-box;
  /* Optimize for mobile rendering */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: opacity, visibility;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--luxury-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--premium-shadow);
  /* Reduced animation complexity for mobile */
  animation: pulse 2s ease-in-out infinite;
  position: relative;
}

.loading-logo img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.loading-logo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: var(--luxury-gradient);
  opacity: 0.3;
  animation: glow 2s ease-in-out infinite alternate;
}

.loading-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: 0.5px;
  animation: fadeIn 0.8s ease-in-out; /* Faster animation */
  text-align: center;
  max-width: 280px;
  line-height: 1.4;
  position: relative;
  /* Optimize text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.loading-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--luxury-gradient);
  border-radius: 1px;
  animation: slideInWidth 1.2s ease-out 0.3s both; /* Faster animation */
}

.loading-bar {
  width: 200px;
  height: 3px;
  background: rgba(139, 90, 60, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loading-progress {
  height: 100%;
  background: var(--luxury-gradient);
  border-radius: 2px;
  animation: loadingProgress 2s ease-in-out; /* Shorter animation */
  position: relative;
}

.loading-progress::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 1.2s ease-in-out infinite; /* Faster shimmer */
}

/* Mobile-specific enhancements - Optimized for Performance */
@media (max-width: 768px) {
  .loading-screen {
    gap: 28px; /* Slightly reduced gap */
    padding: 32px 20px; /* Optimized padding */
    /* Force hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .loading-logo {
    width: 90px; /* Slightly smaller for mobile */
    height: 90px;
    border-radius: 22px;
    /* Reduce animation complexity on mobile */
    animation: pulse 2.5s ease-in-out infinite;
  }

  .loading-logo img {
    width: 55px;
    height: 55px;
    border-radius: 13px;
  }

  .loading-logo::after {
    border-radius: 26px;
    /* Reduce glow effect on mobile for better performance */
    opacity: 0.2;
  }

  .loading-text {
    font-size: 16px; /* Slightly smaller font for mobile */
    font-weight: 600;
    max-width: 260px;
    /* Disable complex animations on slower mobile devices */
    animation: none;
    opacity: 1;
    transform: none;
  }

  .loading-text::after {
    /* Simplify underline animation on mobile */
    animation: slideInWidth 0.8s ease-out 0.2s both;
  }

  .loading-bar {
    width: 180px; /* Slightly narrower */
    height: 3px;
  }

  .loading-progress {
    /* Shorter animation duration on mobile */
    animation: loadingProgress 1.5s ease-in-out;
  }

  .loading-progress::after {
    /* Disable shimmer effect on mobile for better performance */
    display: none;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .loading-screen {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .loading-logo,
  .loading-logo::after,
  .loading-text::after,
  .loading-progress,
  .loading-progress::after {
    animation: none !important;
  }
}

@media (max-width: 480px) {
  .loading-screen {
    gap: 28px;
    padding: 30px 15px;
  }

  .loading-logo {
    width: 90px;
    height: 90px;
    border-radius: 22px;
  }

  .loading-logo img {
    width: 55px;
    height: 55px;
    border-radius: 13px;
  }

  .loading-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.6px;
    max-width: 280px;
  }

  .loading-bar {
    width: 220px;
    height: 4px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .loading-logo {
    animation: pulseMobile 2s ease-in-out infinite;
  }

  .loading-text {
    font-size: 19px;
    font-weight: 700;
  }

  .loading-screen {
    -webkit-tap-highlight-color: transparent;
  }
}

@keyframes pulseMobile {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--premium-shadow);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 30px 70px rgba(139, 90, 60, 0.2), 0 12px 24px rgba(139, 90, 60, 0.1);
  }
}

/* Additional mobile luxury touches */
@media (max-width: 768px) {
  .loading-screen {
    background: linear-gradient(135deg,
      rgba(254, 254, 254, 0.98) 0%,
      rgba(250, 249, 247, 0.98) 100%);
    backdrop-filter: blur(10px);
  }

  .loading-text {
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes loadingProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes glow {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes slideInWidth {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin:0 auto; }
.container--wide{ width:min(1320px, 92%); margin:0 auto; }

/* Accessibility: skip link */
.skipLink{
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  box-shadow: 0 18px 40px rgba(2,6,23,.16);
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform .15s ease;
}
.skipLink:focus{ transform: translateY(0); }

html {
  scroll-behavior: smooth;
}

/* Premium animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-left {
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-right {
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium focus states */
*:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.small{ font-size:12px; }
.muted{ color:var(--muted); }
.pill{
  display:inline-flex; gap:8px; align-items:center;
  background: var(--soft2);
  color: var(--brand);
  border:1px solid var(--brand);
  padding:6px 12px; border-radius:999px;
  font-weight:600; font-size:12px;
}

/* Layout guards (prevents random horizontal overflow) */
html, body{ max-width:100%; overflow-x:hidden; }
@supports (overflow: clip){
  html, body{ overflow-x:clip; }
}

/* -----------------------
   Flash Deals (Primor-like)
------------------------*/
.flashSection{
  background:#fff;
  border-top: 1px solid rgba(229,231,235,.85);
  border-bottom: 1px solid rgba(229,231,235,.85);
}
.flashSection__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.flashSection__title{
  margin:0;
  font-weight:1000;
  letter-spacing:-0.02em;
}
.flashSection__sub{ margin:6px 0 0; font-weight:650; }
.flashSection__tools{
  display:flex;
  align-items:center;
  gap:12px;
}
.flashSection__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.95);
  background: rgba(250,250,249,.9);
  font-weight:900;
}
.flashSection__arrows{ display:flex; gap:10px; }
.carouselArrows{ display:flex; gap:10px; align-items:center; }
.flashArrow{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.85);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,250,249,.92));
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 12px 26px rgba(2,6,23,.10), inset 0 1px 0 rgba(255,255,255,.7);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
  color: var(--text);
}
.flashArrow:hover{
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(192,154,89,.5);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,250,245,.95));
  box-shadow: 0 20px 44px rgba(2,6,23,.16), 0 0 0 3px rgba(192,154,89,.12);
}
.flashArrow:active{
  transform: translateY(0) scale(0.98);
  box-shadow: 0 10px 20px rgba(2,6,23,.12);
}
.flashArrow:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(192,154,89,.22), 0 12px 26px rgba(2,6,23,.10);
}
.flashArrow:disabled{ opacity:.5; cursor:not-allowed; transform:none; box-shadow:none; }

.flashCarousel{ position:relative; }
.flashCarousel__viewport{
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  display:block;
  padding:6px 12px 14px;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
  overscroll-behavior-x:contain;
}
.flashCarousel__viewport::-webkit-scrollbar{ display:none; }
.flashCarousel__track{
  display:flex;
  gap:14px;
  padding:2px;
  flex-wrap:nowrap;
}

.flashCard{
  flex: 0 0 240px;
  scroll-snap-align:start;
  background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
  border:1px solid rgba(139, 90, 60, .08);
  border-radius:20px;
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
  display:flex;
  flex-direction:column;
  height:480px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.flashCard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--premium-shadow);
  border-color: rgba(139, 90, 60, .15);
}

.flashCard__inner{
  padding:16px 16px 18px;
  display:flex;
  flex-direction:column;
  flex: 1 1 auto;
}
.flashCard__top{
  position:absolute;
  top:10px;
  left:10px;
  right:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  pointer-events:none;
  z-index:2;
}
.flashCard__badge,
.flashCard__off{
  pointer-events:none;
  display:inline-flex;
  align-items:center;
  height:26px;
  padding:0 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:1000;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.flashCard__badge{
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 90, 60, 0.1) 100%);
  border:1px solid rgba(212, 175, 55, .3);
  color: var(--brand-deep);
  backdrop-filter: blur(10px);
}

.flashCard__off{
  margin-left:auto;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(185, 28, 28, 0.1) 100%);
  border:1px solid rgba(220, 38, 38, .3);
  color:#b91c1c;
  backdrop-filter: blur(10px);
}

.flashCard__wish{
  position:absolute;
  top:12px;
  right:12px;
  z-index:3;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(139, 90, 60, .15);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.1);
}

.flashCard__wish:hover{
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 8px 24px rgba(139, 90, 60, 0.2);
  border-color: rgba(139, 90, 60, .3);
  background: rgba(255,255,255,1);
}

.flashCard__wish.active{
  color:#dc2626;
  border-color: rgba(220, 38, 38, .3);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.flashCard__media{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px 16px 14px;
  position: relative;
}

.flashCard__img{
  width:180px;
  height:180px;
  object-fit:contain;
  display:block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 24px rgba(139, 90, 60, 0.1));
}

.flashCard:hover .flashCard__img {
  transform: scale(1.05) rotate(1deg);
}
.flashCard__brand{
  font-weight:1000;
  font-size:12px;
  color: var(--muted);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.flashCard__title{
  margin:6px 0 10px;
  font-weight:800;
  font-size:14px;
  line-height:1.3;
  display:-webkit-box;
  line-clamp:2;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:36px;
}
.flashCard__meta{ display:flex; align-items:center; gap:8px; margin:-2px 0 10px; }
.flashCard__metaRow{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:0 0 10px;
}
.metaPill{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.95);
  background: rgba(250,250,249,.8);
  font-size:11px;
  font-weight:900;
  color: #374151;
}
.flashCard__notes{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:4px 0 10px;
}
.notePill{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(192,154,89,.12);
  border:1px solid rgba(192,154,89,.28);
  font-size:11px;
  font-weight:800;
  color: var(--brand-deep);
}
.flashCard__prices{ display:flex; align-items:baseline; gap:10px; }
.flashCard__old{ color: var(--muted); text-decoration: line-through; font-weight:800; font-size:13px; }
.flashCard__new{ color:#b91c1c; font-weight:1000; font-size:18px; }
.flashCard__sizes{ margin-top:12px; display:flex; gap:8px; flex-wrap:wrap; }
.flashCard__actions{
  margin-top:auto;
  display:grid;
  gap:8px;
}

.flashLink{
  display:inline-flex;
  justify-content:center;
  width:100%;
  height:38px;
  align-items:center;
  border-radius:12px;
  border:1px solid rgba(139, 90, 60, .25);
  background: linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(248,247,245,.98) 100%);
  font-weight:900;
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#5d4037;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.flashLink:hover{
  transform: translateY(-1px);
  border-color: rgba(139, 90, 60, .45);
  box-shadow: 0 10px 22px rgba(2,6,23,.10);
}

.flashAdd{
  width:100%;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(192,154,89,.45);
  background: linear-gradient(135deg, #c09a59 0%, #b7791f 55%, #8b5a3c 100%);
  color:#111827;
  font-weight:1000;
  letter-spacing:.06em;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow: 0 14px 30px rgba(2,6,23,.14);
  position: relative;
  overflow: hidden;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.flashAdd::after{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.flashAdd:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(2,6,23,.18);
  filter:saturate(1.08);
}
.flashAdd:hover::after{ left: 120%; }
.flashAdd:active{ transform: translateY(0); }

.flashSize{
  height:32px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.95);
  background: rgba(250,250,249,.7);
  font-weight:900;
  font-size:12px;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, background-color .12s ease;
}
.flashSize:hover{ transform: translateY(-1px); border-color: rgba(192,154,89,.35); }
.flashSize.active{
  border-color: rgba(192,154,89,.55);
  background: rgba(192,154,89,.12);
  color: var(--brand-deep);
}

@media (max-width: 860px){
  .flashSection__head{ align-items:flex-start; flex-direction:column; }
  .flashSection__tools{ width:100%; justify-content:space-between; }
  .flashCard{ flex-basis: min(78vw, 320px); }
}

@media (max-width: 540px){
  .flashSection__pill{ width:100%; justify-content:center; }
  .flashSection__arrows{ display:none; }
  .carouselArrows{ display:none; }
}

/* -----------------------
   Best Sellers carousel
------------------------*/
.productCarousel{ position:relative; }
.productCarousel__viewport{
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-snap-stop:always;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  scroll-behavior:smooth;
  overscroll-behavior-x:contain;
  padding:2px 12px 14px;
  scroll-padding-left:2px;
}
.productCarousel__viewport::-webkit-scrollbar{ display:none; }

/* Override default grid for the carousel track only */
#productGrid{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  gap:14px;
  padding:2px;
}
#productGrid > .card,
#productGrid > article{
  flex: 0 0 220px;
  scroll-snap-align:start;
}

/* Recently viewed uses the same carousel track layout */
#recentGrid{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  gap:14px;
  padding:2px;
}
#recentGrid > .flashCard,
#recentGrid > .card,
#recentGrid > article{
  flex: 0 0 220px;
  scroll-snap-align:start;
}
@media (max-width: 860px){
  #productGrid > .card,
  #productGrid > article{ flex-basis: min(78vw, 320px); }

  #recentGrid > .flashCard,
  #recentGrid > .card,
  #recentGrid > article{ flex-basis: min(78vw, 320px); }

  /* Mobile: make swiping feel less sticky */
  .flashCarousel__viewport{ scroll-snap-type: x proximity; }
  .productCarousel__viewport{ scroll-snap-type: x proximity; scroll-snap-stop: normal; }
}

/* Premium Topbar */
.topbar{
  background: var(--luxury-gradient);
  color:#ffffff;
  font-size:13px;
  font-weight:600;
  box-shadow: 0 2px 10px rgba(139, 90, 60, 0.1);
  position: relative;
  overflow: hidden;
}

.topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  position: relative;
  z-index: 1;
}

.topbar__text{
  flex: 1;
  text-align: center;
  letter-spacing: 0.3px;
}

.topbar__link{
  color:#ffffff;
  opacity:1;
  text-decoration: none;
  margin-inline-start: auto;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.topbar__link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Premium Header */
.header{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(145deg, rgba(255,255,255,.95) 0%, rgba(254,254,254,.9) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 90, 60, .08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(139, 90, 60, 0.06);
}

.header__inner{
  display:grid;
  grid-template-columns: auto minmax(220px, 520px) auto;
  gap:20px;
  align-items:center;
  padding:20px 0;
}

/* Desktop/Web menu (header) */
.webNav{ display:none; }

/* Legacy desktop nav (older pages) — keep hidden; replaced by .webNav */
.desktop-nav{ display:none; }

@media (min-width: 1025px){
  .webNav{
    display:block;
    border-top: 1px solid rgba(229,231,235,.65);
    background: transparent;
  }
  .topbar__text{
    font-size: 15px;
    line-height: 1.4;
  }
  .webNav__inner{
    display:flex;
    align-items:center;
    gap: 6px;
    padding: 8px 0 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .webNav__inner::-webkit-scrollbar{ display:none; }

  .webNav__link{
    display:inline-flex;
    align-items:center;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    font-size: 13px;
    color: var(--text);
    white-space: nowrap;
    transition: background .12s ease, border-color .12s ease, transform .12s ease;
  }
  .webNav__link:hover{
    background: rgba(192,154,89,.10);
    border-color: rgba(192,154,89,.20);
    transform: translateY(-1px);
  }
  .webNav__link:focus-visible{ box-shadow: var(--ring); }

  html[dir="rtl"] .webNav__inner{ justify-content:flex-end; }
}

/* Premium header state on scroll (JS toggles .header--compact) */
.header--compact{
  box-shadow: 0 8px 32px rgba(139, 90, 60, 0.12);
  background: linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(254,254,254,.95) 100%);
  border-bottom-color: rgba(139, 90, 60, .12);
  backdrop-filter: blur(30px);
}

@media (min-width: 861px){
  .header--compact .header__inner{ padding: 14px 0; }
  .header--compact .brand__mark{ width: 36px; height: 36px; border-radius: 12px; }
  .header--compact .brand__tag{ display: none; }
  .header--compact .search{ padding-top: 7px; padding-bottom: 7px; }
  .header--compact .icon-btn{ width: 42px; height: 42px; }
}

@media (max-width: 860px){
  .header__inner{
    grid-template-columns: 1fr 44px;
    grid-template-areas:
      "brand cart"
      "search search";
  }
  .brand{ grid-area: brand; justify-self:start; min-width: 0; }
  .search{ grid-area: search; }
  .header__actions{ grid-area: cart; justify-self:end; }
}

/* Mobile usability fixes */
@media (max-width: 540px){
  .topbar__inner{
    flex-wrap: wrap;
    gap: 10px;
  }
  .topbar__link{ margin-left: auto; }
}

.brand{
  display:flex; gap:12px; align-items:center;
  min-width: 210px;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand__mark{
  width:44px; height:44px;
  border-radius:16px;
  object-fit: cover;
  background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
  border: 2px solid rgba(139, 90, 60, .1);
  box-shadow: 0 8px 24px rgba(139, 90, 60, 0.15), 0 4px 8px rgba(139, 90, 60, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand__mark:hover {
  transform: rotate(2deg) scale(1.05);
  box-shadow: 0 12px 32px rgba(139, 90, 60, 0.2), 0 6px 12px rgba(139, 90, 60, 0.15);
}

.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{
  font-weight:900;
  letter-spacing:.5px;
  font-size:15px;
  background: var(--luxury-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand__tag{
  font-size:12px;
  color:var(--brand-deep);
  margin-top:4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (min-width: 861px){
  .brand__name{ font-size: 15px; }
}

/* Premium Typography */
h1{
  font-size:32px;
  line-height:1.1;
  margin:0 0 16px;
  letter-spacing:-0.8px;
  font-weight:900;
  background: var(--luxury-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2{
  font-size:24px;
  line-height:1.15;
  margin:0 0 12px;
  font-weight:800;
  letter-spacing:-0.3px;
  color: var(--brand-deep);
}

h3{
  font-size:20px;
  line-height:1.2;
  margin:0 0 10px;
  font-weight:700;
  color: var(--text);
}

small, .small{
  font-size:var(--fs-sm);
  color: var(--muted);
  font-weight: 500;
}
p{ margin:0 0 12px; }

.section__filter{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(229,231,235,.9);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 6px 16px rgba(2,6,23,.08);
}
.section__filter:empty{ display:none; }

.search{
  position:relative;
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  padding:10px 14px 10px 42px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
}
.search input{
  width:100%;
  border:0; outline:0;
  font-size:14px;
  background:transparent;
}
.search__clear{
  border:0;
  background: transparent;
  cursor:pointer;
  font-size:20px;
  line-height:1;
  color:var(--muted);
  padding:0 6px;
  display:none;
}
.search.hasValue .search__clear{ display:block; }

.search__results{
  position:absolute;
  top: calc(100% + 8px);
  left:0;
  right:0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  box-shadow: var(--shadow-soft);
  display:none;
  max-height: 320px;
  overflow: auto;
  z-index: 60;
}
.search__results.is-open{ display:block; }
.search__item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:10px;
  text-decoration:none;
  color:inherit;
}
.search__item:hover,
.search__item.is-active{
  background: rgba(192,154,89,.12);
}
.search__thumb{
  width:36px;
  height:36px;
  border-radius:8px;
  object-fit:cover;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
}
.search__info{ min-width:0; }
.search__name{
  font-weight:700;
  font-size:14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.search__meta{
  font-size:12px;
  color: var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.search__empty{
  padding:10px 12px;
  font-size:13px;
  color: var(--muted);
}

html[dir="rtl"] .search__item{
  flex-direction: row-reverse;
  text-align: right;
}

.header__actions{
  display:flex; justify-content:flex-end; gap:10px; align-items:center;
}

@media (min-width: 861px){
  .header__actions{
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(226,232,240,.95);
    background: rgba(255,255,255,.70);
    box-shadow: 0 10px 22px rgba(2,6,23,.06);
  }
}

.langToggle{
  border-radius: 999px;
  font-weight: 900;
}

/* Desktop Navigation removed from header (kept empty intentionally) */

/* Navigation Dropdown */
.nav-dropdown{
  position:relative;
}
.nav-dropdown__trigger{
  display:flex; align-items:center; gap:6px;
  background:none; border:none;
  color: var(--text);
  font-weight:600; font-size:14px;
  cursor:pointer;
  transition: color .12s ease;
  padding:8px 0;
}
.nav-dropdown__trigger:hover{
  color: var(--brand);
}
.nav-dropdown__arrow{
  font-size:10px;
  transition: transform .2s ease;
}
.nav-dropdown.open .nav-dropdown__arrow{
  transform: rotate(180deg);
}
.nav-dropdown__menu{
  position:absolute; top:100%; left:0;
  background:white;
  border:1px solid rgba(229,231,235,.9);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(2,6,23,.15), 0 0 0 1px rgba(225,29,72,.05);
  min-width:200px;
  opacity:0; visibility:hidden;
  transform: translateY(-8px) scale(0.95);
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index:100;
}
.nav-dropdown.open .nav-dropdown__menu{
  opacity:1; visibility:visible;
  transform: translateY(0);
}
.nav-dropdown__item{
  display:block;
  padding:12px 16px;
  color: var(--text);
  text-decoration:none;
  font-weight:600;
  transition: background .12s ease;
  border-radius: 8px;
  margin:4px 8px;
}
.nav-dropdown__item:hover, .nav-dropdown__trigger:hover, .desktop-nav a:hover{
  background: rgba(225,29,72,.06);
  color: var(--brand);
}
.nav-dropdown__item:first-child{
  font-weight:700;
  color: var(--brand);
}

/* Premium Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 20px;
  border-radius:var(--radius);
  border:1px solid rgba(139, 90, 60, .12);
  background: linear-gradient(145deg, rgba(255,255,255,.95) 0%, rgba(254,254,254,.9) 100%);
  backdrop-filter: blur(20px);
  font-weight:600;
  cursor:pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.08);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 90, 60, 0.05) 0%, rgba(164, 98, 7, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 90, 60, 0.15);
  border-color: rgba(139, 90, 60, .2);
}

.btn:hover::before {
  opacity: 1;
}

.btn:focus {
  outline: none;
  box-shadow: var(--ring), 0 8px 24px rgba(139, 90, 60, 0.15);
}

.btn--primary{
  background: var(--luxury-gradient);
  color:white;
  border-color: transparent;
  box-shadow: var(--premium-shadow);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn--primary:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 50px rgba(139, 90, 60, 0.25);
  filter: brightness(1.05);
}

.btn--primary::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.btn--ghost{
  background: rgba(255,255,255,.8);
  border-color: rgba(139, 90, 60, .2);
  color:var(--text);
  backdrop-filter: blur(10px);
}

.btn--small{ padding:8px 16px; font-size:13px; }
.btn--full{ width:100%; }
.btn--wa{
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color:white;
  border-color:transparent;
  padding:12px 16px;
  font-weight:700;
  display:inline-flex;
  gap:8px;
  align-items:center;
  border-radius:var(--radius);
  text-decoration:none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn--wa:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
  filter: brightness(1.05);
}

/* Clear favourites button (drawer) */
#btnClearFav{
  height:44px;
  border-radius:12px;
  border:1px solid rgba(229,231,235,.95);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,250,249,.95));
  color:#111827;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow: 0 10px 24px rgba(2,6,23,.08);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, filter .12s ease;
}
#btnClearFav:hover{
  transform: translateY(-1px);
  border-color: rgba(192,154,89,.35);
  box-shadow: 0 16px 34px rgba(2,6,23,.12);
  filter: saturate(1.02);
}
#btnClearFav:active{ transform: translateY(0); }

.select{
  padding:12px 14px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:white;
  font-weight:600;
}

.variantSelect{
  padding:8px 10px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:white;
  font-weight:600;
  font-size:13px;
  margin-right:8px;
}

/* Icons (CSS only) */
.icon-btn{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:50%;
  border:1px solid var(--line);
  background:white;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.icon-btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(2,6,23,.10); }
.fav-btn{
  position:relative;
  border-color: rgba(225,29,72,.18);
  background: linear-gradient(180deg, #fff, #fff4f7);
  box-shadow: 0 12px 26px rgba(225,29,72,.12);
}
.fav-btn svg{ transition: transform .12s ease, color .12s ease, filter .12s ease; }
.fav-btn:hover svg{ transform: scale(1.06); color:#e11d48; filter: drop-shadow(0 2px 6px rgba(225,29,72,.25)); }
.fav-btn.has-items{
  border-color: rgba(225,29,72,.35);
  background: linear-gradient(135deg, rgba(225,29,72,.16), rgba(255,255,255,.98));
}
.fav-btn.has-items svg{ color:#e11d48; }
.fav-btn.has-items::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:50%;
  box-shadow: 0 0 0 6px rgba(225,29,72,.10);
  opacity:.6;
  pointer-events:none;
}
.icon{ width:18px; height:18px; display:block; position:relative; }
.icon--menu::before, .icon--menu::after, .icon--menu span{
  content:""; position:absolute; left:0; right:0;
  height:2px; background: var(--muted); border-radius:2px;
}
.icon--menu::before{ top:3px; }
.icon--menu span{ top:8px; }
.icon--menu::after{ top:13px; }
.icon--search::before{
  content:""; position:absolute; width:10px; height:10px;
  border:2px solid var(--muted); border-radius:50%;
  left:0; top:0;
}
.icon--search::after{
  content:""; position:absolute; width:7px; height:2px;
  background:var(--muted);
  transform: rotate(45deg);
  left:9px; top:10px; border-radius:2px;
}
.search .icon--search{ position:absolute; left:16px; }
.icon--user::before{
  content:""; position:absolute;
  width:8px; height:8px; border:2px solid var(--text);
  border-radius:50%; left:4px; top:1px;
}
.icon--user::after{
  content:""; position:absolute;
  width:14px; height:8px; border:2px solid var(--text);
  border-top:0;
  border-radius: 0 0 10px 10px;
  left:1px; top:10px;
}
.icon--close::before, .icon--close::after{
  content:""; position:absolute; left:2px; right:2px; top:8px;
  height:2px; background: var(--text); border-radius:2px;
}
.icon--close::before{ transform: rotate(45deg); }
.icon--close::after{ transform: rotate(-45deg); }

.cart-btn{ position:relative; }
.cart-badge{
  position:absolute;
  top:-6px; right:-6px;
  background: var(--black);
  color:white;
  font-size:12px;
  font-weight:900;
  min-width:22px; height:22px;
  padding:0 6px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  border:2px solid white;
  letter-spacing:.15px;
  font-variant-numeric: tabular-nums;
  line-height:1;
  text-shadow: 0 1px 2px rgba(0,0,0,.28);
  box-shadow: 0 8px 18px rgba(2,6,23,.18), inset 0 1px 0 rgba(255,255,255,.35);
  transform-origin: center;
}

/* Cart empty state CTA */
.cart__empty{
  padding:20px 0;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.cart__empty-icon{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  font-size:36px;
  border-radius:22px;
  background: radial-gradient(120% 120% at 30% 20%, #fff7ea 0%, #fff 55%, #f7f4ef 100%);
  border:1px solid rgba(192,154,89,.18);
  box-shadow: 0 16px 36px rgba(2,6,23,.12), inset 0 1px 0 rgba(255,255,255,.7);
}
.cart__empty-text{
  font-weight:900;
  color:#374151;
  letter-spacing:.3px;
  font-size:14px;
}
.cart__empty .btn--primary{
  height:46px;
  padding:0 26px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.35px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #d9b36f, #b8893f);
  box-shadow: 0 16px 36px rgba(184,137,63,.35), inset 0 1px 0 rgba(255,255,255,.35);
}
.cart__empty .btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(184,137,63,.42);
}

/* Hero */
.hero{
  background: radial-gradient(1200px 600px at 20% 10%, #fff3f3, transparent 60%),
              radial-gradient(900px 500px at 80% 10%, #fff7f7, transparent 55%);
  border-bottom:1px solid rgba(229,231,235,.7);
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  padding:34px 0 34px;
  align-items:center;
}
@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
}
.hero h1{
  font-size: 44px;
  line-height:1.05;
  margin:14px 0 10px;
  letter-spacing:-.8px;
  font-weight:900;
  background: var(--luxury-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 520px){
  .hero h1{ font-size: 34px; }
}
.hero p{
  color: var(--muted);
  margin: 0 0 16px;
  font-size:15px;
  line-height:1.6;
}
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 8px; }

/* Trust Badges */
.trust-badges{
  display:flex; gap:16px; flex-wrap:wrap; margin:20px 0 16px;
}
.trust-badge{
  display:flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.9);
  border:1px solid var(--line);
  border-radius: 20px;
  padding:8px 12px;
  font-size:13px; font-weight:600;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(2,6,23,.08);
}
.trust-icon{
  color: var(--text);
  font-weight:900;
}
.trust-icon--wa svg {
  display: block;
  color: #25D366;
}

/* Button Enhancements */
.btn--urgent{
  position:relative;
  /* animation: pulse 2s infinite; */ /* A bit distracting */
}
.btn--premium{
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color:white;
  border-color: transparent;
}
.btn-arrow{
  display:inline-block;
  margin-left:6px;
  transition: transform .2s ease;
}
.btn:hover .btn-arrow{
  transform: translateX(3px);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(192, 154, 89, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(192, 154, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(192, 154, 89, 0); }
}
.hero__stats{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
@media (max-width: 520px){
  .hero__stats{ grid-template-columns: 1fr; }
}
.stat{
  padding:12px 12px;
  border:1px solid rgba(229,231,235,.9);
  border-radius: 16px;
  background: rgba(255,255,255,.65);
}
.stat__num{ font-weight:900; }
.stat__label{ font-size:12px; color:var(--muted); margin-top:4px; }

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease-in-out;
  will-change: opacity;
}

/* New Promo Banner */
.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255,250,243,.92), rgba(255,255,255,.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(2,6,23,.10);
  position: relative;
}
.promo-banner::before{
  content:"";
  position:absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  top: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,.20), transparent 60%);
  pointer-events:none;
}
.promo-banner__text h3 {
  font-size: 24px;
  font-weight: 800;
}
.promo-banner__text p {
  margin-bottom: 16px;
}
.promo-banner__visual {
  text-align: center;
}
.promo-banner__visual img {
  width: min(460px, 75vw);
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 24px 36px rgba(26, 32, 44, 0.22));
  animation: scaleIn 1.5s ease-out 0.5s both;
}
@media (max-width: 768px) {
  .promo-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .promo-banner__visual {
    order: -1;
    margin-bottom: 16px;
  }
  .promo-banner__visual img {
    width: min(400px, 86vw);
    max-width: 400px;
  }
}

/* Ads rotator under Limited Time Offer */
.adsRotator{
  position: relative;
  margin-top: 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(229,231,235,.9);
  background: #fff;
  box-shadow: 0 18px 40px rgba(2,6,23,.12);
  aspect-ratio: 1400 / 520;
}

@media (max-width: 860px){
  .adsRotator{ border-radius: 16px; aspect-ratio: 4 / 3; }
}

.adsRotator__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .6s ease;
  will-change: opacity;
}

/* Desktop/web: show the complete banner image (no cropping) */
@media (min-width: 1025px){
  .adsRotator{
    /* Make it a bit bigger on web/desktop */
    height: clamp(240px, 24vw, 380px);
    aspect-ratio: auto;
  }
  .adsRotator__img{ object-fit: contain; }
}

.adsRotator__img--1{ opacity: 1; }

@media (prefers-reduced-motion: no-preference){
  .adsRotator__img--1{ animation: adsFade1 10s infinite; }
  .adsRotator__img--2{ animation: adsFade2 10s infinite; }

  @keyframes adsFade1{
    0%, 45%{ opacity: 1; }
    50%, 95%{ opacity: 0; }
    100%{ opacity: 1; }
  }
  @keyframes adsFade2{
    0%, 45%{ opacity: 0; }
    50%, 95%{ opacity: 1; }
    100%{ opacity: 0; }
  }
}

@media (prefers-reduced-motion: reduce){
  .adsRotator__img{ animation: none !important; transition: none !important; }
  .adsRotator__img--2{ display:none; }
}

/* Sections */
.section{ padding: 34px 0; }
.section--soft{
  background: linear-gradient(180deg, rgba(250,250,249,.85), rgba(255,255,255,.65));
  border-top:1px solid rgba(231,229,228,.9);
  border-bottom:1px solid rgba(231,229,228,.9);
}
.section__head{ margin-bottom: 16px; max-width: 860px; }
.section__head h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.6px;
  font-weight:900;
  line-height:1.1;
  text-wrap: balance;
}
.section__head p{ margin:8px 0 0; color: var(--muted); max-width: 680px; }
.section__headRow{
  display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
  flex-wrap:wrap;
}
@media (min-width: 1100px){
  .section{ padding: 46px 0; }
}

/* Trust strip */
.trustStrip{
  background: #fff;
  border-bottom: 1px solid rgba(229,231,235,.7);
  padding: 16px 0;
}
.trustStrip__inner{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.trustStrip__item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(229,231,235,.9);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,250,243,.92));
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
}
.trustStrip__icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background: rgba(192,154,89,.14);
  color: var(--brand-deep);
  font-weight:900;
  flex: 0 0 34px;
}
.trustStrip__icon svg{
  display:block;
}
.trustStrip__icon--wa{
  background: rgba(37,211,102,.14);
  color: #25D366;
}
@media (max-width: 980px){
  .trustStrip__inner{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .trustStrip__inner{ grid-template-columns: 1fr; }
}


/* Categories */
.cats{
  display:grid;
  grid-template-columns: repeat(7, minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}
@media (min-width: 1025px){
  .cats{ display: none; }
}
@media (max-width: 1000px){
  .cats{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .cats{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.cat{
  text-align:center;
  border:1px solid rgba(229,231,235,.9);
  background:white;
  border-radius: 18px;
  padding:14px 10px;
  font-weight: 700;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.cat:hover{ transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.cat.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}
.cat__label{ font-weight:800; font-size:13px; }

/* Scent families */
.families{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}
.familyCard{
  border:1px solid rgba(229,231,235,.9);
  background: #fff;
  border-radius:18px;
  padding:16px;
  text-align:left;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.familyCard:hover{ transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: rgba(192,154,89,.45); }
.familyCard__title{ font-weight:900; display:block; }
.familyCard__sub{ font-size:12px; color: var(--muted); margin-top:6px; display:block; }
@media (max-width: 980px){
  .families{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .families{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* Quick filters */
.quickFilters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin: 6px 0 16px;
}
.quickFilters__label{ font-weight:800; color: var(--text); font-size:13px; }
.quickFilter{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.quickFilter:hover{ transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: rgba(192,154,89,.4); }

/* Product grid */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media (min-width: 540px){
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 820px){
  .grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 1040px){
  .grid{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}

/* Mobile polish */
@media (max-width: 540px){
  .card__img{ height: auto; }
  .section{ padding: 26px 0; }
  .section__head h2{ font-size: 22px; }
  .promo-banner{ padding: 18px; }
  .promo-banner__visual img{ width: min(340px, 92vw); max-width: 340px; }
  .cats{ grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px; }
  .header__inner{ padding:10px 0; }
}

.card{
  border: 1px solid rgba(229, 231, 235, .92);
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(2, 6, 23, .06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:hover{ transform: translateY(-4px); box-shadow: 0 22px 60px rgba(2, 6, 23, .16); border-color: rgba(192,154,89,.40); }
.card:focus-within{ box-shadow: var(--ring), 0 22px 60px rgba(2, 6, 23, .14); border-color: rgba(192,154,89,.45); }
.card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card__img{
  height: auto;
  position: relative;
  overflow: hidden;
  background: var(--soft);
  aspect-ratio: 1 / 1;
}
.card__img::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.06) 100%);
  z-index:0;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.card:hover .card__img img {
  transform: scale(1.05);
}
.card__tag{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.05);
}
.card__body{
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card__brand{ font-weight: 900; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.card__name{ margin: 4px 0 8px; font-weight: 700; font-size: 14px; line-height: 1.3; flex-grow: 1; }
.card__meta{
  display: flex; align-items: center; gap: 6px; margin-top: auto;
}
.stars{ font-size: 12px; color: var(--brand-2); }
.card__actions{ display: flex; justify-content: space-between; align-items: center; padding: 0 12px 12px; gap: 10px; }
.card__price{ font-weight: 900; font-size: 16px; }

/* Product badges + wishlist */
.card__badge{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  padding:6px 10px;
  border-radius: 999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(6px);
}
.card__badge--new{ color: #0f766e; border-color: rgba(13,148,136,.18); }
.card__badge--bestseller{ color: #7c3aed; border-color: rgba(124,58,237,.18); }
.card__badge--sale{ color: #b91c1c; border-color: rgba(185,28,28,.18); }

.card__wishlist{
  position:absolute;
  top:10px;
  right:10px;
  z-index:2;
  width:40px;
  height:40px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.card__wishlist:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(2,6,23,.12); border-color: rgba(192,154,89,.35); }
.card__wishlist.active{ color: #e11d48; border-color: rgba(225,29,72,.22); }

.card__stock{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius: 14px;
  font-weight:800;
  font-size:12px;
  border:1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.8);
}
.card__stock--low{ color: #b91c1c; border-color: rgba(185,28,28,.18); }

/* Skeleton loading cards */
.skeleton{ position: relative; overflow:hidden; }
.skeleton::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-60%);
  animation: shimmer 1.2s infinite;
}
@keyframes shimmer{
  0%{ transform: translateX(-60%); }
  100%{ transform: translateX(60%); }
}
.skeletonBox{ background: rgba(15,23,42,.06); border-radius: 14px; }


/* Split promo */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
}
.split__box{
  background:white;
  border:1px solid rgba(229,231,235,.92);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
} 
.split__box--img{
  background: linear-gradient(135deg, #fff, #ffe4ea);
  overflow:hidden;
  position:relative;
}
.kicker{ color: var(--brand); font-weight:900; font-size:12px; text-transform:uppercase; letter-spacing:.12em; }
.split h3{ margin:8px 0 10px; font-size:26px; letter-spacing:-.4px; }
.promoBottles{
  position:absolute; inset:0;
  display:grid; place-items:center;
}
.promoBottle{
  width: 90px; height: 200px;
  border-radius: 22px;
  border:1px solid rgba(229,231,235,.9);
  position:absolute;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.9), transparent 60%),
    linear-gradient(135deg, #bfdbfe, #fff);
  box-shadow: 0 12px 22px rgba(2,6,23,.10);
}
.promoBottle.p1{ transform: translateX(-90px) rotate(-8deg); background: linear-gradient(135deg, #fef3c7, #fff); }
.promoBottle.p2{ transform: translateX(0px) rotate(4deg); background: linear-gradient(135deg, #ffd6e4, #fff); }
.promoBottle.p3{ transform: translateX(90px) rotate(-3deg); background: linear-gradient(135deg, #dcfce7, #fff); }

/* Brands */
.brands{
  display:flex;
  gap:10px;
  overflow:auto;
  padding: 6px 2px 2px;
}
.brandChip{
  flex: 0 0 auto;
  border:1px solid rgba(229,231,235,.92);
  background:var(--bg);
  border-radius:999px;
  padding:12px 14px;
  font-weight:900;
  font-size:12px;
  letter-spacing:.06em;
  box-shadow: 0 8px 18px rgba(2,6,23,.06);
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
}
@media (max-width: 900px){
  .contact{ grid-template-columns: 1fr; }
}
.contact__form{
  background: var(--surface);
  border:1px solid rgba(139, 90, 60, 0.1);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--premium-shadow);
  position: relative;
  overflow: hidden;
}
.contact__form::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  border-radius: 0 0 0 100%;
}

/* Newsletter form (premium, compact) */
.newsletter__head{ margin-bottom: 12px; }
.newsletter__title{
  margin: 0;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.newsletter__sub{ margin: 6px 0 0; font-size: 14px; opacity: 0.8; }
.newsletter__label{ display:block; font-weight: 700; font-size: 13px; color: var(--muted); }
.newsletter__row{
  margin-top: 10px;
  display:flex;
  gap:12px;
  align-items:center;
}
.newsletter__row input{
  flex:1 1 auto;
  height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(139, 90, 60, 0.2);
  border-radius: 999px;
  font-size: 15px;
  background: #fff;
  transition: all 0.3s ease;
}
.newsletter__row input:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}
.newsletter__note{ margin: 12px 0 0; font-size: 12px; letter-spacing: 0.02em; }
.newsletter__social{
  margin-top: 16px;
  display:flex;
  gap:12px;
  align-items:center;
}
.socialIcon{
  width:42px;
  height:42px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(139, 90, 60, 0.15);
  background: #fff;
  color: var(--brand);
  box-shadow: 0 4px 10px rgba(139, 90, 60, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.socialIcon:hover{
  transform: translateY(-3px) scale(1.1);
  background: var(--brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(139, 90, 60, 0.25);
}

@media (max-width: 520px){
  .newsletter__row{ flex-direction: column; align-items: stretch; }
  .newsletter__row .btn{ 
    width: 100%; 
    background: linear-gradient(135deg, #d4af37 0%, #a16207 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
  }
  .cart__empty-actions{ flex-direction: column; align-items: stretch; }
  .cart__empty-actions .btn{ width: 100%; }
}
label{ display:flex; flex-direction:column; gap:8px; font-weight:700; font-size:13px; color:#111827; letter-spacing:.02em; }
input, textarea{
  border:1px solid rgba(229,231,235,.95);
  border-radius: 14px;
  padding:12px 14px;
  font: inherit;
  outline: none;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus{
  border-color: rgba(192,154,89,.45);
  box-shadow: 0 0 0 4px rgba(192,154,89,.18);
}
textarea{ resize: vertical; }
.formNote{ margin-top:10px; }

/* Contact form send button (professional look) */
#contactForm .btn--primary{
  height:48px;
  border-radius:999px;
  padding: 0 32px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #d4af37 0%, #a16207 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#contactForm .btn--primary:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(212,175,55,0.5);
  filter: brightness(1.1);
}

.checkout-form__fields {
  display: grid;
  gap: 12px;
}

.contact__methods {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}
.glass-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 10px 30px rgba(139, 90, 60, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-contact-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 90, 60, 0.15);
  background: rgba(255,255,255,0.9);
  border-color: var(--gold-light);
}
.glass-contact-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  border: 1px solid rgba(139, 90, 60, 0.1);
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.05);
}
.glass-contact-card:hover .glass-contact-card__icon {
  background: var(--luxury-gradient);
  border-color: transparent;
}
.glass-contact-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
  transition: color 0.3s ease;
}
.glass-contact-card:hover .glass-contact-card__icon svg {
  color: #fff;
}
.glass-contact-card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.glass-contact-card__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.glass-contact-card__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-deep);
  letter-spacing: -.01em;
  font-family: var(--font-sans);
}

/* Premium Footer Redesign */
.footer {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3f0 100%);
  border-top: 1px solid rgba(139, 90, 60, 0.1);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--luxury-gradient);
  opacity: 0.8;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

/* Brand Column */
.footer__brand-col,
.footer__brand {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.footer-logo__img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.1);
  border: 1px solid rgba(139, 90, 60, 0.1);
}

.footer-logo__text {
  display: flex;
  flex-direction: column;
}

.footer-logo__name {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1;
  letter-spacing: -0.01em;
  background: none;
  -webkit-text-fill-color: initial;
}

.footer-logo__sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand);
  font-weight: 700;
  margin-top: 4px;
}

.footer__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 280px;
}

/* Socials */
.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  border: 1px solid rgba(139, 90, 60, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.social-icon:hover {
  transform: translateY(-4px);
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(139, 90, 60, 0.25);
}

/* Links Group */
.footer__links-group {
  grid-column: span 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer__cols {
  grid-column: span 9;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 16px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col > a:not(.footer__link) {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  transition: color .2s ease, transform .2s ease;
}

.footer__col > a:not(.footer__link):hover {
  color: var(--brand);
  transform: translateX(3px);
}

.footer__title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 24px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

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

/* Newsletter Column */
.footer__newsletter-col {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
}

.footer__input-group {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.footer__input {
  width: 100%;
  height: 52px;
  padding: 0 52px 0 20px;
  border: 1px solid rgba(139, 90, 60, 0.2);
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
}

.footer__input::placeholder {
  color: #94a3b8;
}

.footer__input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(139, 90, 60, 0.08);
}

.footer__btn {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.footer__btn:hover { 
  background: var(--brand-deep); 
  transform: scale(1.05);
}

.paymentIcons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.paymentIcon {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(139, 90, 60, 0.15);
  background: #fff;
  font-weight: 600;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Bottom Bar */
.footer__bottom {
  border-top: 1px solid rgba(139, 90, 60, 0.1);
  padding: 24px 0;
  background: #fff;
}

.footer__copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer__inner {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 36px;
  }
  .footer__brand-col,
  .footer__brand {
    grid-column: span 2;
  }
  .footer__links-group,
  .footer__cols {
    grid-column: span 4;
  }
  .footer__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer__newsletter-col {
    grid-column: span 6;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(139, 90, 60, 0.1);
  }
  .paymentIcons { margin-top: 0; align-items: flex-start; }
}

@media (max-width: 768px) {
  .footer { padding-top: 48px; }
  .footer__inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 40px;
  }
  .footer__newsletter-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__cols,
  .footer__links-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

@media (max-width: 480px) {
  .footer__cols,
  .footer__links-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__copyright {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Drawers */
.drawer{
  position:fixed; inset:0;
  display:block;
  opacity:0;
  pointer-events:none;
  z-index:90;
}
.drawer.open{
  opacity:1;
  pointer-events:auto;
}
.drawer__overlay{
  position:absolute; inset:0;
  background: rgba(2,6,23,.45);
  opacity:0;
  transition: opacity .18s ease;
}
.drawer.open .drawer__overlay{ opacity:1; }
.drawer__panel{
  position:absolute; top:0; left:0;
  width: min(420px, 96vw);
  height:100%;
  background:var(--bg);
  border-right:1px solid rgba(229,231,235,.9);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  border-top-left-radius:12px;
  border-bottom-left-radius:12px;
  overflow:hidden;
  transform: translateX(-16px);
  transition: transform .22s ease;
}
.drawer__panel--cart{
  left:auto; right:0;
  border-right:0;
  border-left:1px solid rgba(229,231,235,.9);
  /* Slide in from the right (matches cart placement) */
  transform: translateX(16px);
}
.drawer__header{
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(229,231,235,.9);
}
.drawer__title{ font-weight:900; font-size:18px; }
.drawer__content{
  padding:18px;
  overflow:auto;
  flex: 1;
  padding-bottom:100px; /* leave space for sticky summary */
}
.drawer__content.cart{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.drawer__link{
  display:block;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid rgba(229,231,235,.9);
  margin-bottom:10px;
  font-weight:700;
}
.drawer__link:hover{ border-color: rgba(225,29,72,.25); }
.drawer__section{
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.drawer__section-title{
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 0 12px 8px;
}
.drawer__section .drawer__link {
  border-color: transparent;
  font-weight: 600;
  padding: 10px 12px;
  margin-bottom: 4px;
}
.drawer__box{
  margin-top:14px;
  padding:14px;
  border-radius: 12px;
  border:1px dashed var(--brand);
  background: var(--soft2);
}
.drawer__boxTitle{ font-weight:900; margin-bottom:8px; }
.drawer__boxBtn{
  display:block;
  text-align:center;
  padding:12px;
  border-radius: 999px;
  background: var(--brand);
  color:white;
  font-weight:900;
  margin-bottom:10px;
}
.drawer__muted{ font-size:13px; color: var(--muted); }

/* Cart */
.cart__items{ display:grid; gap:12px; }
.cartItem{
  border-radius: 12px;
  padding:12px;
  display:grid;
  grid-template-columns: 72px 1fr auto;
  gap:12px;
  align-items:center;
  box-shadow: var(--shadow-soft);
  border:1px solid rgba(229,231,235,.85);
  background: var(--bg);
  transition: transform .12s ease, box-shadow .12s ease;
}
.cartItem:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.cartItem__thumb{
  width:72px; height:72px;
  border-radius: 12px;
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  background: var(--soft);
}
.cartItem__thumb img{ width:100%; height:100%;
  object-fit:contain; display:block; }
.cartItem__details{ display:flex; flex-direction:column; gap:8px; }
.cartItem__name{ font-weight:800; font-size:14px; line-height:1.2; }
.cartItem__meta{ font-size:13px; color: var(--muted); }
.cartItem__controls{ display:flex; align-items:center; gap:12px; justify-content:space-between; }
.cartItem__qty{ display:flex; align-items:center; gap:8px; }
.cartItem__qty .qtyBtn{ width:34px; height:34px; border-radius:999px; border:1px solid var(--line); background:#fff; font-weight:900; cursor:pointer; }
.cartItem__qty .qtyNum{ min-width:22px; text-align:center; font-weight:800; }
.cartItem__remove{ background:transparent; border:1px solid transparent; width:40px; height:40px; }
.cartItem__price{ text-align:right; }
.cartItem__unit{ font-size:13px; color:var(--muted); }
.cartItem__total{ font-weight:900; margin-top:6px; }

.cart__empty{
  text-align:center;
  padding: 22px 18px;
  border-radius: 18px;
  border:1px dashed rgba(192,154,89,.35);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(250,250,249,.9));
  box-shadow: var(--shadow-soft);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.cart__empty-icon{
  width:56px; height:56px;
  margin:0 auto 10px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(192,154,89,.16);
  font-size:26px;
}
.cart__empty-text{ font-weight:900; }
.cart__empty-sub{ font-size:13px; color: var(--muted); max-width: 260px; }
.cart__empty-actions{
  width:100%;
  display:flex;
  gap:10px;
  justify-content:center;
}
.cart__empty-actions .btn{ width:min(220px, 100%); justify-content:center; }

.cart__summary{
  position:sticky; bottom:0;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,250,249,.98));
  padding:16px;
  margin-top:4px;
  border-top:1px solid rgba(229,231,235,.92);
  border-radius: 18px;
  box-shadow: 0 -10px 30px rgba(2,6,23,.06);
  backdrop-filter: blur(6px);
}
.cart__summary .row{ padding: 4px 0; }
.cart__summary .btn{ margin-top:8px; }
.cart__summary .btn--ghost{ background: rgba(255,255,255,.85); border-color: rgba(229,231,235,.95); }
.cart__summary p.muted.small{ margin-top:10px; line-height:1.5; }
.row{ display:flex; justify-content:space-between; align-items:center; }

/* Mobile cart drawer improvements */
@media (max-width: 860px){
  .drawer__panel{
    width: 100vw;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .drawer__header{
    padding: 14px;
    padding-top: calc(14px + env(safe-area-inset-top));
  }

  /* Keep summary always visible; scroll items only */
  .drawer__content.cart{
    padding: 14px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .cart__items{
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .cart__summary{
    position: relative;
    bottom: auto;
    margin-top: 0;
    padding: 14px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    border-radius: 16px;
  }
  .cart__summary p.muted.small{ display:none; }

  /* More comfortable cart item layout on narrow screens */
  .cartItem{
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "thumb details"
      "thumb price";
    gap: 10px;
    align-items: start;
  }
  .cartItem__thumb{ grid-area: thumb; width:64px; height:64px; }
  .cartItem__details{ grid-area: details; }
  .cartItem__price{
    grid-area: price;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
  }

  .cartItem__qty{ gap: 10px; }
  .cartItem__qty .qtyBtn{
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .cartItem__remove{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
  }
}

/* Touch devices: disable hover lift effect */
@media (hover: none){
  .cartItem:hover{ transform:none; box-shadow: var(--shadow-soft); }
}

/* Moroccan Cultural Patterns */
.moroccan-pattern{
  position:absolute;
  top:20px; right:20px;
  width:120px; height:120px;
  pointer-events:none;
}
.pattern-element{
  position:absolute;
  border-radius:50%;
  opacity:0.1;
}
.pattern-element.pattern-1{
  width:40px; height:40px;
  background: linear-gradient(45deg, #d4af37, #ffd700);
  top:0; right:0;
  animation: float 6s ease-in-out infinite;
}
.pattern-element.pattern-2{
  width:25px; height:25px;
  background: linear-gradient(45deg, #8b4513, #daa520);
  top:50px; right:30px;
  animation: float 8s ease-in-out infinite reverse;
}
.pattern-element.pattern-3{
  width:30px; height:30px;
  background: linear-gradient(45deg, #b8860b, #f4a460);
  top:20px; right:60px;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

/* WhatsApp floating */
.wa-float{
  position:fixed;
  right: 14px;
  bottom: 14px;
  z-index:70;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,.92);
  color:white;
  box-shadow: 0 18px 40px rgba(2,6,23,.25);
}
.wa-float__icon {
  color: #25D366;
}
.wa-float__text{ font-weight:900; }

/* Back to top button (premium) */
.toTop{
  position: fixed;
  left: 14px;
  right: auto;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 65;

  width: 48px;
  height: 48px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(192,154,89,.28);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  color: var(--brand-deep);

  box-shadow:
    0 18px 40px rgba(2,6,23,.18),
    0 0 0 1px rgba(255,255,255,.55) inset;

  opacity: 0;
  transform: translateY(10px) scale(.96);
  pointer-events: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    opacity .16s ease,
    transform .16s ease,
    box-shadow .16s ease,
    background-color .16s ease,
    border-color .16s ease;
}
.toTop__icon{ display:block; }

.toTop:hover{
  background: rgba(255,255,255,.98);
  border-color: rgba(192,154,89,.46);
  transform: translateY(-2px) scale(1);
  box-shadow:
    0 24px 60px rgba(2,6,23,.22),
    0 0 0 1px rgba(192,154,89,.12) inset;
}
.toTop:active{ transform: translateY(0) scale(.98); }

.toTop.toTop--show{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* RTL: keep on the opposite side */
html[dir="rtl"] .toTop{ left: auto; right: 14px; }

@media (max-width: 860px){
  /* Keep it above the mobile bottom nav + safe-area */
  .toTop{ bottom: calc(110px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce){
  .toTop{ transition: none; }
}

/* Avoid overlap when modal/drawer/chat is open */
html.drawer-open .toTop,
body.drawer-open .toTop,
html.chatbot-open .toTop,
body.chatbot-open .toTop{
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(10px) scale(.96) !important;
}



/* -----------------------
   Fragrance Finder
------------------------*/
.finder{
  background:var(--bg);
  border:1px solid rgba(229,231,235,.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(2,6,23,.10);
  padding:16px;
}
.finder__q{ margin-bottom:14px; }
.finder__label{ font-weight:800; margin-bottom:8px; }
.finder__choices{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  border:1px solid rgba(229,231,235,.95);
  background: rgba(255,255,255,.9);
  border-radius:999px;
  padding:10px 12px;
  font-weight:700;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.chip:hover{ transform: translateY(-1px); box-shadow: 0 10px 18px rgba(2,6,23,.10); border-color: var(--brand); }
.chip.active{
  border-color: var(--brand);
  background: var(--soft2);
  color: var(--brand);
}
.chip--small{ padding:8px 10px; font-size:12px; font-weight:800; }
.finder__result{
  margin-top:10px;
  border:1px dashed var(--brand);
  background: var(--soft2);
  border-radius: 16px;
  padding:12px;
}
.finder__hint{ color: var(--muted); font-weight:600; }
.finder__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:12px; }

/* -----------------------
   Reviews
------------------------*/
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
  padding-bottom: 10px;
}

@media (max-width: 900px) {
  .reviews {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .reviews::-webkit-scrollbar {
    display: none;
  }
  
  .review {
    scroll-snap-align: start;
    min-width: 85%;
    /* Subtle hint of next card */
  }
}

.review {
  background: var(--bg);
  border: 1px solid rgba(139, 90, 60, 0.15);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 90, 60, 0.1);
  border-color: rgba(139, 90, 60, 0.3);
}

/* Decorative Quote Mark */
.review::before {
  content: '”';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  line-height: 1;
  font-family: serif;
  color: var(--brand);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.review__stars { 
  font-weight: 900; 
  letter-spacing: 2px;
  color: var(--gold); /* Use gold variable */
  font-size: 14px;
  margin-bottom: 12px;
}

.review__text { 
  margin: 0 0 16px; 
  color: var(--text); 
  font-weight: 500;
  line-height: 1.6;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.review__meta { 
  color: var(--muted); 
  font-size: 13px; 
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review__name {
  color: var(--brand-deep);
  font-weight: 800;
}

.review__badge {
  position: absolute; 
  bottom: 24px; 
  right: 24px;
  top: auto; /* changed from top to bottom */
  font-size: 10px; 
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(139, 90, 60, 0.08); /* Brand tint */
  color: var(--brand);
  border: none;
  padding: 6px 12px;
  border-radius: 12px;
}

/* -----------------------
   Policy Modal
------------------------*/
.modal{
  position:fixed; inset:0;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  z-index:120;
  transition: opacity .18s ease, visibility .18s ease;
}
.modal.open{ opacity:1; visibility:visible; pointer-events:auto; }
.modal__overlay{
  position:absolute; inset:0;
  background: rgba(2,6,23,.55);
  backdrop-filter: blur(3px);
  opacity:0;
  transition: opacity .18s ease;
}
.modal.open .modal__overlay{ opacity:1; }
.modal__panel{
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%,-48%) scale(.98);
  width:min(720px, 92%);
  max-height: min(78vh, 720px);
  overflow:auto;
  background:white;
  border-radius: 18px;
  border:1px solid rgba(229,231,235,.9);
  box-shadow: 0 30px 70px rgba(2,6,23,.28);
  display:flex;
  flex-direction:column;
  opacity:0;
  transition: transform .18s ease, opacity .18s ease;
}
.modal.open .modal__panel{ opacity:1; transform: translate(-50%,-50%) scale(1); }
.modal__head{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 14px;
  border-bottom:1px solid rgba(229,231,235,.9);
}
.modal__title{ font-weight:900; letter-spacing:-.2px; }
.modal__body{
  padding:14px;
  overflow:auto;
  color: var(--text);
}
.modal__body h3{ margin:12px 0 8px; }
.modal__body p, .modal__body li{ color: var(--muted); line-height:1.7; }
.modal__body ul{ margin:8px 0 0 18px; }
.footer__link{ display:block; margin:8px 0; color: var(--muted); font-weight:650; }
.footer__link:hover{ color: var(--brand); }

/* -----------------------
   Size Selection Modal
------------------------*/
.size-product__img{
  width:56px;
  height:56px;
  border-radius: 14px;
  object-fit: cover;
  border:1px solid rgba(229,231,235,.9);
}
.size-product__brand{ font-weight:900; font-size:12px; color: var(--muted); letter-spacing:.2px; }
.size-product__name{ font-weight:900; letter-spacing:-.2px; }

.size-option{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(229,231,235,.9);
  background: white;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}
.size-option:hover{
  transform: translateY(-1px);
  border-color: rgba(192,154,89,.55);
  box-shadow: var(--shadow-soft);
}
.size-option.active{
  border-color: var(--brand);
  background: rgba(192,154,89,.08);
}
.size-option__content{ display:flex; flex-direction:column; gap:2px; align-items:flex-start; }
.size-option__size{ font-weight:900; }
.size-option__price{ font-weight:800; color: var(--muted); font-size:13px; }
.size-option__check{
  width:26px;
  height:26px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(229,231,235,.9);
  color: var(--brand);
  opacity:0;
  transform: scale(.9);
  transition: opacity .12s ease, transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
}
.size-option.active .size-option__check{
  opacity:1;
  transform: scale(1);
  background: var(--brand);
  color: white;
  border-color: transparent;
}

#sizeError.shake{ animation: ipordise-shake .5s linear; }
@keyframes ipordise-shake{
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* -----------------------
   Mobile Bottom Nav
------------------------*/
.bottomNav{
  position:fixed;
  left:50%;
  transform: translateX(-50%);
  bottom: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  width:min(420px, 94%);
  background: rgba(255,255,255,.92);
  border:1px solid rgba(229,231,235,.9);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(2,6,23,.18);
  padding:10px 10px;
  display:none;
  gap:8px;
  z-index:80;
}
.bottomNav__btn{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  border:0;
  background: transparent;
  border-radius: 16px;
  padding:10px 8px;
  cursor:pointer;
  color: var(--text);
  font-weight:800;
}
.bottomNav__btn:hover{
  background: var(--soft);
  color: var(--text);
}
.bottomNav__btn--wa{
  background: rgba(37, 211, 102, 0.12);
  border:1px solid rgba(37,211,102,.25);
}
.bottomNav__btn--wa .bottomNav__ico {
  color: #25D366;
}
.bottomNav__ico{ font-size:16px; line-height:1; }
.bottomNav__ico svg {
  width: 18px;
  height: 18px;
}
.bottomNav__txt{ font-size:11px; color: var(--muted); }
.bottomNav__btn:hover .bottomNav__txt{ color: var(--brand); }

/* Show bottom nav on small screens (more reliable than UA sniffing) */
@media (max-width: 860px){
  .bottomNav{ display:grid; grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 860px){
  /* Ensure page content never sits behind the bottom nav (incl. iOS safe-area) */
  body{ padding-bottom: 96px; padding-bottom: calc(96px + env(safe-area-inset-bottom)); }

  /* Keep chatbot above the bottom nav */
  .chatbot{ bottom: 102px; bottom: calc(102px + env(safe-area-inset-bottom)); }

  /* Toasts should appear above the bottom nav */
  .toastStack{ bottom: 110px; bottom: calc(110px + env(safe-area-inset-bottom)); }
}

/* -----------------------
   Chatbot
------------------------*/
.chatbot{ position:fixed; right:16px; bottom: 92px; z-index:90; }

/* When chat is open, prevent background scroll (especially on mobile) */
html.chatbot-open,
body.chatbot-open{
  overflow: hidden;
  overscroll-behavior: none;
}

.chatbot__overlay{ display:none; }

/* -----------------------
   Toast notifications
------------------------*/
.toastStack{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  width: min(520px, 92%);
  display: grid;
  gap: 10px;
  z-index: 140;
  pointer-events: none;
}
.toast{
  pointer-events: auto;
  background: rgba(15,23,42,.92);
  color: white;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(2,6,23,.35);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
.toast.is-in{ opacity: 1; transform: translateY(0); }
.toast__title{ font-weight: 900; margin: 0; font-size: 14px; }
.toast__meta{ margin: 2px 0 0; font-size: 13px; color: rgba(255,255,255,.78); }
.toast__actions{ display:flex; gap:8px; align-items:center; }
.toast__btn{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: white;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  cursor: pointer;
}
.toast__btn:hover{ background: rgba(255,255,255,.16); }
.toast__close{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: white;
  cursor: pointer;
}
.toast__close:hover{ background: rgba(255,255,255,.10); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  .btn, .card, .card__img img, .drawer__panel, .modal, .modal__overlay, .modal__panel, .toast{ transition:none !important; }
  .skeleton::after{ animation:none !important; }
}

@media (min-width: 861px){
  .chatbot{ bottom: 22px; }
}
.chatbot__fab{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 0;
  background: var(--luxury-gradient);
  background-size: 200% 200%;
  animation: bg-shift 3s ease infinite;
  box-shadow: 0 8px 25px rgba(139, 90, 60, 0.25);
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.3, 0, 0.2, 1);
  color: white;
}
.chatbot__fab:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(139, 90, 60, 0.35);
}
@keyframes bg-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.chatbot__fab svg,
.chatbot__fab img {
  position: absolute;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), opacity .2s;
  color: white;
}
.chatbot__fab img.icon-open {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.chatbot__fab .icon-close {
  transform: translateY(20px) scale(0.8);
  opacity: 0;
}
.chatbot.open .chatbot__fab .icon-open {
  transform: translateY(-20px) scale(0.8);
  opacity: 0;
}
.chatbot.open .chatbot__fab .icon-close {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.chatbot__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #dc2626;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  display: grid;
  place-items: center;
  border: 2px solid white;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: pulse-badge 2.5s infinite 1s;
  z-index: 1;
  pointer-events: none;
}
.chatbot__badge.visible {
  transform: scale(1);
}
@keyframes pulse-badge {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}
.chatbot__attention {
  position: absolute;
  left: 50%;
  bottom: 75px;
  background: white;
  color: var(--text);
  padding: 14px 20px;
  padding-right: 32px;
  border-radius: 12px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  width: max-content;
  max-width: 260px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, 10px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.3, 1.2, 0.2, 1);
  pointer-events: none;
  font-family: var(--font-sans);
}
.chatbot__attention.visible {
  opacity: 1;
  transform: translate(-50%, -8px) scale(1);
  pointer-events: auto;
}
.chatbot__attention-close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: none;
  border: none;
  color: var(--muted);
  opacity: 0.7;
  font-size: 20px;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
}
.chatbot__panel{
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 90, 60, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255,255,255,0.5) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, 20px) scale(0.95);
  transform-origin: bottom center;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.chatbot.open .chatbot__panel{
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}
@media (min-width: 861px) {
  .chatbot__attention {
    bottom: 8px;
    right: 70px;
  }
}
@media (max-width: 860px) {
  .chatbot__attention {
    bottom: 66px;
    right: 0;
  }
}

@media (max-width: 860px){
  /* A real overlay makes the chat feel native on phones */
  .chatbot__overlay{
    display:block;
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,.45);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: 1;
  }
  .chatbot.open .chatbot__overlay{
    opacity: 1;
    pointer-events: auto;
  }

  /* Make the panel a near-fullscreen drawer for mobile */
  .chatbot__panel{
    position: fixed;
    left: 50%;
    right: auto;
    top: calc(12px + env(safe-area-inset-top) + var(--vvOffsetTop, 0px));
    bottom: auto;
    width: min(560px, calc(100vw - 24px));
    height: calc(var(--vvh, 100vh) - 24px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    transform: translateX(-50%);
    transition: transform .22s cubic-bezier(.2,.9,.2,1);
    will-change: transform;
    border-radius: 22px;
  }

  /* Don’t let the floating button cover content while chat is open */
  .chatbot.open .chatbot__fab{
    opacity: 0;
    pointer-events: none;
    transform: scale(.95);
  }

  .chatbot__head{ padding-top: calc(12px + env(safe-area-inset-top)); }

  /* Swipe handle (visual) + enable drag without scrolling the page */
  .chatbot__head{
    position: relative;
    touch-action: none;
  }
  .chatbot__head::before{
    content: "";
    position: absolute;
    top: calc(8px + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: rgba(2,6,23,.18);
  }

  .chatbot__msgs{
    height: auto;
    flex: 1 1 auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
  }

  /* Enhanced mobile touch targets */
  .chatbot__fab{
    width: 60px;
    height: 60px;
    touch-action: manipulation;
  }

  .chatbot__input{
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 16px;
    min-height: 50px;
    touch-action: manipulation;
  }

  .chatbot__send{
    width: 50px;
    height: 50px;
    touch-action: manipulation;
  }

  /* Better chip buttons for touch */
  .msg__chips .chip{
    padding: 10px 14px;
    min-height: 40px;
    touch-action: manipulation;
  }

  .chatbot__quick .chip{
    padding: 12px 16px;
    min-height: 44px;
    touch-action: manipulation;
  }
}
.chatbot__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(139, 90, 60, 0.08);
  background: linear-gradient(to right, #fff, #fdfbf7);
}
.chatbot__brand{ display:flex; gap:12px; align-items:center; min-width: 0; }
.chatbot__logo{ 
  width: 40px; 
  height: 40px; 
  border-radius: 999px; 
  display: block; 
  object-fit: cover; 
  background: #fff; 
  border: 1px solid rgba(139, 90, 60, 0.2); 
  box-shadow: 0 4px 10px rgba(139, 90, 60, 0.1);
}
.chatbot__headActions{ display:flex; align-items:center; gap:8px; }
.chatbot__title{ 
  font-family: var(--font-serif); 
  font-weight: 700; 
  font-size: 17px; 
  color: var(--brand-deep);
}
.chatbot__sub{ 
  font-size: 12px; 
  color: var(--muted); 
  margin-top: 2px; 
  font-weight: 500;
}
.chatbot__headActions .icon-btn {
  width: 32px;
  height: 32px;
  color: var(--muted);
  border-radius: 8px;
  transition: all 0.2s;
}
.chatbot__headActions .icon-btn:hover {
  background: rgba(139, 90, 60, 0.1);
  color: var(--brand);
}

.chatbot__msgs{
  height: 320px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fdfdfd;
  overscroll-behavior: contain;
}
/* Premium scrollbar for chat */
.chatbot__msgs::-webkit-scrollbar { width: 4px; }
.chatbot__msgs::-webkit-scrollbar-track { background: transparent; }
.chatbot__msgs::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 4px; }

/* typing indicator */
.msg--typing{ z-index: 2; opacity: .95; }
.msg--typing .typing{ display:inline-flex; gap:6px; align-items:center; padding:8px 12px; background:var(--soft); border-radius:999px; }
.msg--typing .typing span{ width:7px; height:7px; border-radius:50%; background:var(--muted); opacity:.4; animation: chat-bob 1s infinite linear; }
.msg--typing .typing span:nth-child(2){ animation-delay:.12s }
.msg--typing .typing span:nth-child(3){ animation-delay:.24s }
@keyframes chat-bob{ 0%{ transform: translateY(0); opacity:.2 } 50%{ transform: translateY(-3px); opacity:1 } 100%{ transform: translateY(0); opacity:.2 } }

.msg{
  max-width: 86%;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(139, 90, 60, 0.08);
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  line-height: 1.5;
  font-weight: 500;
  white-space: pre-line;
  font-size: 14px;
}
.msg--me{
  margin-left: auto; 
  background: var(--luxury-gradient);
  color: white;
  border: none;
  border-bottom-right-radius: 4px;
}
  color: white;
  border-color: transparent;
}
html[dir="rtl"] .msg{ text-align:right; direction:rtl; }
html[dir="rtl"] .msg--me{ margin-left:0; margin-right:auto; }
/* chips inside bot messages */
.msg__chips{ display:flex; gap:8px; margin-top:8px; flex-wrap:wrap; }
.msg__chips .chip{ padding:6px 10px; border-radius:999px; border:1px solid var(--line); background:white; cursor:pointer; font-weight:700; }
.msg__chips .chip:hover{ box-shadow: 0 8px 22px rgba(2,6,23,.06); }

.chatbot__quick{
  padding:10px 12px;
  border-top:1px solid var(--line);
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.chatbot__form{
  display:flex;
  gap:8px;
  padding:10px 12px 12px;
  border-top:1px solid var(--line);
  background:white;
}
.chatbot__input{
  flex:1;
  border:1px solid var(--line);
  border-radius: 999px;
  padding:10px 12px;
  outline:0;
  font-weight:650;
}
.chatbot__send{
  width:42px; height:42px;
  border-radius: 999px;
  border:0;
  cursor:pointer;
  background: var(--brand);
  color:white;
  font-weight:900;
}
.chatbot__note{
  padding:0 12px 12px;
  color: var(--muted);
  font-size:12px;
}

/* Arabic RTL tweaks */
html[dir="rtl"] .chatbot{ right:auto; left:16px; }
html[dir="rtl"] .chatbot__panel{ right:auto; left:0; }
html[dir="rtl"] .review__badge{ right:auto; left:12px; }
html[dir="rtl"] .chatbot__attention {
  text-align: right;
  padding: 12px 16px 12px 32px;
}
html[dir="rtl"] .chatbot__attention-close {
  right: auto;
  left: 6px;
}
html[dir="rtl"] .chatbot__panel{ direction: rtl; }
html[dir="rtl"] .chatbot__head{ flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .chatbot__brand{ flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .chatbot__headActions{ flex-direction: row-reverse; }
html[dir="rtl"] .chatbot__msgs{ direction: rtl; }
html[dir="rtl"] .msg{ text-align: right; align-self: flex-end; }
html[dir="rtl"] .msg--me{ align-self: flex-start; }
html[dir="rtl"] .chatbot__quick{ justify-content: flex-end; }
html[dir="rtl"] .msg__chips{ justify-content: flex-end; }
html[dir="rtl"] .chatbot__form{ flex-direction: row-reverse; }
html[dir="rtl"] .chatbot__input{ text-align: right; }
html[dir="rtl"] .chatbot__note{ text-align: right; }
@media (min-width: 861px) { html[dir="rtl"] .chatbot__attention { right: auto; left: 70px; } }
@media (max-width: 860px) { html[dir="rtl"] .chatbot__attention { right: auto; left: 0; } }


/* -----------------------
   Animations on Scroll
------------------------*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for grid-like items */
.grid > .animate-on-scroll.is-visible:nth-child(2),
.cats > .animate-on-scroll.is-visible:nth-child(2),
.reviews > .animate-on-scroll.is-visible:nth-child(2) { transition-delay: 0.1s; }

.grid > .animate-on-scroll.is-visible:nth-child(3),
.cats > .animate-on-scroll.is-visible:nth-child(3),
.reviews > .animate-on-scroll.is-visible:nth-child(3) { transition-delay: 0.2s; }

.grid > .animate-on-scroll.is-visible:nth-child(4),
.cats > .animate-on-scroll.is-visible:nth-child(4) { transition-delay: 0.3s; }

/* Language menu */
.lang{ position:relative; }
.langMenu{
  position:absolute;
  right:0;
  top:54px;
  background:white;
  border:1px solid rgba(229,231,235,.9);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(2,6,23,.18);
  padding:8px;
  display:none;
  min-width: 160px;
  z-index:110;
}
.lang.open .langMenu{ display:block; }
.langOption{
  width:100%;
  text-align:left;
  border:0;
  background:transparent;
  padding:10px 10px;
  border-radius: 10px;
  cursor:pointer;
  font-weight:750;
}
.langOption:hover{ background: var(--soft); }
.langOption.active{ background: var(--soft2); color: var(--brand); }
html[dir="rtl"] .langMenu{ right:auto; left:0; }
html[dir="rtl"] .langOption{ text-align:right; }

/* Product detail */
.product-detail{ padding:28px 0; }
.productDetail__wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "breadcrumb breadcrumb"
    "left right";
  gap:28px;
  align-items:start;
}
.productDetail__wrap[dir="rtl"]{ direction: rtl; }
.productDetail__wrap[dir="rtl"] .product__name,
.productDetail__wrap[dir="rtl"] .product__meta,
.productDetail__wrap[dir="rtl"] .product__desc{ text-align: right; }
.productDetail__wrap .breadcrumb{ grid-area: breadcrumb; margin: 6px 0 6px; }
.productDetail__left{
  grid-area: left;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--soft);
  border-radius:16px;
  padding:18px;
  min-height: 320px;
}
.productDetail__right{
  grid-area: right;
}
.productDetail__img{
  max-width:360px;
  width:100%;
  max-height: 460px;
  border-radius:12px;
  object-fit:contain;
}
.product__brand{ color:var(--muted); font-weight:700; margin-bottom:6px; }
.product__name{ margin:6px 0 12px; font-size:26px; line-height:1.02; }
.product__meta{ margin-bottom:12px; color:var(--muted); }
.product__desc p{ margin:10px 0; line-height:1.6; color:var(--muted); }
.notesPyramid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin:16px 0;
}
.notesPyramid__col{
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  border-radius:14px;
  padding:12px;
}
.notesPyramid__title{
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color: var(--muted);
  margin-bottom:8px;
}
.notesPyramid__items{ display:flex; flex-wrap:wrap; gap:6px; }

.reassurance{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:12px 0 4px;
}
.reassurance__item{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.9);
  font-weight:800;
  font-size:12px;
}
.product__vars{ margin-top:14px; }
.product__lang{ margin-bottom:12px; }
.product__lang .langBtn{ padding:6px 10px; border-radius:999px; border:1px solid var(--line); background:white; cursor:pointer; font-weight:800; margin-right:8px; }
.product__lang .langBtn.active{ background: var(--brand); color:white; border-color:transparent; }

/* WhatsApp button */
.btn--wa{ background:#25D366; color:white; border-color:transparent; padding:8px 12px; font-weight:700; display:inline-flex; gap:8px; align-items:center; border-radius:8px; text-decoration:none; }
.btn--wa:hover{ filter:brightness(.98); }

@media (max-width: 920px){
  .productDetail__wrap{
    grid-template-columns: 1fr;
    grid-template-areas:
      "breadcrumb"
      "left"
      "right";
  }
  .productDetail__left{ min-height: 260px; }
  .product__actions{ flex-direction:column; align-items:stretch; gap:10px; }
  .notesPyramid{ grid-template-columns: 1fr; }
}

/* -----------------------
   Hero image (language-aware)
------------------------*/
.hero{ padding: 0; }
.hero .container{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero__media{
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 7;
  width: 100%;
}
.hero__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity:0;
  transition: opacity .8s ease;
  will-change: opacity;
  z-index: 0;
  filter: brightness(1.1) contrast(1.05) saturate(1.02);
}
.hero__bg.is-active{ opacity:1; }

.hero__cta{
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

@media (max-width: 860px) {
  .hero__cta{
    right: 50%;
    top: auto;
    bottom: 24px;
    transform: translateX(50%);
  }
}

.promo-banner .hero__cta {
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.hero__media::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(600px 320px at 12% 12%, rgba(255,232,232,.18), transparent 55%),
    linear-gradient(180deg, rgba(16,12,12,.08), rgba(0,0,0,0) 40%, rgba(12,8,8,.10) 100%);
}

.hero__shop{
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.92);
  color: #111827;
  border: 1px solid rgba(229,231,235,.95);
  box-shadow: 0 16px 36px rgba(2,6,23,.18);
  border-radius: 999px;
  height: 52px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
  backdrop-filter: blur(8px);
  max-width: calc(100% - 36px);
  text-align: center;
  z-index: 2;
}

[dir="rtl"] .hero__shop{
  left: auto;
  right: 24px;
}

.hero__shop-icon{
  display: inline-flex;
  align-items: center;
}

.hero__shop:hover{
  transform: scale(1.02);
  border-color: rgba(192,154,89,.45);
  box-shadow: 0 22px 48px rgba(2,6,23,.22);
}

.hero__shop:active{
  transform: scale(.98);
  box-shadow: 0 12px 28px rgba(2,6,23,.2);
}

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

@media (max-width: 560px){
  .hero__shop{
    left: 14px;
    bottom: 14px;
    height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }

  [dir="rtl"] .hero__shop{
    left: auto;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero__bg{ transition:none; }
}

@media (min-width: 1025px){
  .hero__media{
    aspect-ratio: auto;
    height: clamp(420px, 62vh, 640px);
  }
}

@media (max-width: 860px){
  .hero__media{ aspect-ratio: 4 / 3; }
}

@media (max-width: 560px){
  .hero__media{
    aspect-ratio: 4 / 3;
  }
  .hero__bg{
    background-position: center top;
  }
}


#heroImage{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.reco-gallery{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reco-gallery__item{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229,231,235,.9);
  background: #fff;
  min-height: 280px;
  isolation: isolate;
}

.reco-gallery__img{
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 7;
  min-height: 280px;
  transition: transform .35s ease, filter .35s ease;
}

.reco-gallery__item:hover .reco-gallery__img{
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03);
}

.reco-gallery__cta{
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: none;
  line-height: 1.1;
  color: #111827;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(229,231,235,.95);
  box-shadow: 0 16px 36px rgba(2,6,23,.18);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  backdrop-filter: blur(8px);
  max-width: calc(100% - 36px);
  text-align: center;
  z-index: 2;
}

.reco-gallery__cta:hover{
  transform: translateY(-1px);
  border-color: rgba(192,154,89,.45);
  box-shadow: 0 22px 48px rgba(2,6,23,.22);
}

/* Masterpiece (The Best Option) */
.masterpiece{
  position: relative;
  border-radius: 0;
  margin: 40px 0;
  padding: 100px 20px;
  background: #0f0b09; /* Deep Coffee/Black */
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
  isolation: isolate;
}
.masterpiece::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at center, rgba(139, 90, 60, 0.25), rgba(0,0,0,0.6));
  z-index: 1;
}
.masterpiece__bg{
  position:absolute; top:0; left:0; width:100%; height:100%;
  object-fit: cover;
  opacity: 0.85; 
  transform: scale(1.1);
  transition: transform 10s ease-out;
  z-index: 0;
}
.masterpiece:hover .masterpiece__bg{ transform: scale(1.0); }
.masterpiece__content{
  position:relative; z-index:2;
  max-width: 800px; margin: 0 auto;
  /* Glass effect on content container */
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.masterpiece__badge{
  display:inline-block;
  padding: 10px 20px;
  border: 1px solid rgba(212,175,55,0.6);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
  backdrop-filter: blur(8px);
  border-radius: 999px;
  margin-bottom: 24px;
}
.masterpiece__title{
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(145deg, #ffffff 20%, #f4e6a1 50%, #fff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.masterpiece__desc{
  font-size: clamp(16px, 2.5vw, 19px);
  opacity: 0.95;
  color: #e2e8f0;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
  text-wrap: balance;
}
.mp-btn{
  background: linear-gradient(135deg, #d4af37 0%, #a16207 100%);
  color: #fff;
  padding: 18px 42px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.2);
}
.mp-btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(212,175,55,0.6);
  filter: brightness(1.1);
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}
@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0px rgba(212,175,55,0.5); }
  100% { box-shadow: 0 0 0 20px rgba(212,175,55,0); }
}

@media (max-width: 860px){
  .reco-gallery{
    grid-template-columns: 1fr;
  }
  .reco-gallery__item{
    min-height: 320px;
  }
  .reco-gallery__img{
    aspect-ratio: 16 / 9;
    min-height: 320px;
  }
  .reco-gallery__cta{
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    font-size: 13px;
  }
}


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

@media (max-width: 860px){
  body{ padding-bottom: 96px; padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}


/* -----------------------
   Product detail: decant sizes (chips)
------------------------*/
.size-chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.size-chip{
  border:1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding:10px 14px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.size-chip:hover{ transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: rgba(192,154,89,.55); }
.size-chip.active{ background: rgba(192,154,89,.12); border-color: var(--brand); color: var(--text); }

.breadcrumb{
  display:flex; align-items:center; gap:10px;
  margin: 10px 0 18px;
  flex-wrap:wrap;
}
.breadcrumb a{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:800;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius: 999px;
  background: white;
}
.breadcrumb a:hover{ box-shadow: var(--shadow-soft); transform: translateY(-1px); }

.flash-strip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid rgba(239,68,68,.25);
  background: rgba(239,68,68,.06);
  font-weight:800;
  font-size:13px;
}
.flash-dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(239,68,68,.18);
}

/* Floating promo toast (mobile friendly) */
.promo-toast{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 92px;
  z-index: 60;
  background: white;
  border: 1px solid rgba(229,231,235,.95);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(2,6,23,.20);
  padding: 14px;
  display:none;
}
.promo-toast.show{ display:block; }
.promo-toast__row{ display:flex; align-items:flex-start; gap:12px; }
.promo-toast__img{ width:54px; height:54px; border-radius: 14px; object-fit:cover; border:1px solid var(--line); }
.promo-toast__title{ font-weight:900; margin:0 0 4px; }
.promo-toast__meta{ font-size:12px; color: var(--muted); margin:0 0 10px; }
.promo-toast__actions{ display:flex; gap:10px; align-items:center; }
.promo-toast__close{ margin-left:auto; border:0; background:transparent; font-size:22px; line-height:1; cursor:pointer; color: var(--muted); }
@media (min-width: 861px){
  .promo-toast{ left:auto; right:18px; width: 360px; }
}

/* Flags + favourites */
.flag{
  width:18px;
  height:18px;
  display:inline-block;
  margin-right:6px;
  border-radius:4px;
  box-shadow: 0 2px 6px rgba(2,6,23,.12);
}
html[dir="rtl"] .flag{ margin-right:0; margin-left:6px; }
.fav-badge{
  background: linear-gradient(135deg, rgba(225,29,72,1), rgba(255,99,132,.95));
  border: 2px solid #fff;
}
.fav-btn.has-items .fav-badge{ animation: favPulse 1.6s ease infinite; }

@keyframes favPulse{
  0%{ transform: scale(1); box-shadow: 0 0 0 0 rgba(225,29,72,.35); }
  70%{ transform: scale(1.08); box-shadow: 0 0 0 10px rgba(225,29,72,0); }
  100%{ transform: scale(1); box-shadow: 0 0 0 0 rgba(225,29,72,0); }
}

/* Favourites drawer items reuse cart styles */
.favItem .cartItem__actions{ align-self:flex-start; }
.favItem .cartItem__img{ display:block; width:64px; height:64px; border-radius: 14px; overflow:hidden; border:1px solid var(--line); background:white; }
.favItem .cartItem__img img{ width:100%; height:100%; object-fit:contain; display:block; }

/* Favourites drawer polish */
#favDrawer .drawer__header{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,250,249,.95));
  border-bottom: 1px solid rgba(229,231,235,.92);
}
#favDrawer .drawer__title{
  font-weight: 900;
  letter-spacing: .2px;
}
#favDrawer .drawer__content{
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(250,250,249,.6));
}
.fav-desc{
  margin: 0 0 10px;
  font-weight: 600;
}
.fav-empty{
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(229,231,235,.92);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.fav-empty__icon{
  width: 48px;
  height: 48px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #e11d48;
  background: rgba(225,29,72,.08);
  border: 1px solid rgba(225,29,72,.18);
  font-size: 20px;
}
.fav-empty__text{
  font-weight: 700;
  color: var(--muted);
}
.fav-empty__cta{
  height: 44px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* Cleaner remove (close) button in favourites */
.favItem .icon-btn{
  width:34px;
  height:34px;
  border-color: rgba(225,29,72,.25);
  background: rgba(225,29,72,.08);
  box-shadow: 0 6px 16px rgba(225,29,72,.12);
}
.favItem .icon-btn:hover{
  background: rgba(225,29,72,.14);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(225,29,72,.18);
}
.favItem .icon--close::before,
.favItem .icon--close::after{
  background: #e11d48;
  height:2px;
}

.icon-btn.active{ color: rgba(225,29,72,.95); border-color: rgba(225,29,72,.25); }

/* ==========================
   HERO FULL-WIDTH OVERRIDES
   (Primor-like edge-to-edge)
   ========================== */
html, body{ overflow-x: hidden; }

.hero{
  /* remove earlier background gradients/borders for a clean full-bleed banner */
  background: transparent !important;
  border-bottom: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* force the hero media to bleed edge-to-edge even if a parent uses max-width */
.hero__media{
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* keep subject + promo text visible by biasing the crop a little to the right on desktop */
.hero__bg{
  background-position: center !important;
}

/* Mobile: taller, and shift crop a bit so face/text stays visible */
@media (max-width: 860px){
  .hero__bg{ background-position: center !important; }
}
/* Concierge Redesign */
.concierge-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .concierge-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.concierge-main {
  background: linear-gradient(135deg, #fffaf5 0%, #fff 100%);
  border: 1px solid rgba(139, 90, 60, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.concierge-main__content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}
@media (max-width: 600px) {
  .concierge-main__content { max-width: 100%; }
}

.concierge-main__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.concierge-main__desc {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.concierge-main__visual {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 280px;
  height: auto;
  transform: rotate(-10deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 10px 30px rgba(139, 90, 60, 0.15));
}
.concierge-main:hover .concierge-main__visual {
  transform: rotate(0deg) scale(1.05) translateY(-10px);
}

.concierge-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 600px) {
  .concierge-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.side-card {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(139, 90, 60, 0.1);
  min-height: 160px;
}

.side-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}
.side-card:hover .side-card__bg {
  transform: scale(1.1);
}

.side-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}
.side-card:hover .side-card__overlay {
  background: rgba(0,0,0,0.2);
}

.side-card__label {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-deep);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-card:hover .side-card__label {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* Aesthetic Collections Grid */
.aesthetic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}

@media (max-width: 900px) {
  .aesthetic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
}

.aesthetic-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: #f5f5f5;
  text-decoration: none;
  group: hover;
}

.aesthetic-card--large {
  grid-column: span 7;
  grid-row: span 2;
}
@media (max-width: 900px) { .aesthetic-card--large { grid-column: span 1; grid-row: span 1; min-height: 400px; } }

.aesthetic-card--medium {
  grid-column: span 5;
  grid-row: span 1;
}
@media (max-width: 900px) { .aesthetic-card--medium { grid-column: span 1; min-height: 250px; } }

.aesthetic-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.aesthetic-card:hover .aesthetic-card__img {
  transform: scale(1.08);
}

.aesthetic-card__content {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
  color: white;
  z-index: 2;
  transition: background 0.3s ease;
}
.aesthetic-card:hover .aesthetic-card__content {
  background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0) 100%);
}

.aesthetic-card__subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.aesthetic-card__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  font-family: var(--font-brand, 'Playfair Display', serif);
}
.aesthetic-card--medium .aesthetic-card__title { font-size: 24px; }

.aesthetic-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.aesthetic-card:hover .aesthetic-card__btn {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) { .aesthetic-card__btn { opacity: 1; transform: translateY(0); } }

.aesthetic-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.aesthetic-card:hover .aesthetic-arrow { background: white; color: black; }


/* --- Refined Favorites Drawer & Button --- */

/* Favorite Button Animation */
@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.fav-btn.active svg {
  fill: #e11d48;
  color: #e11d48;
  animation: heartPulse 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fav-btn .cart-badge {
  background: #e11d48;
  color: white;
  border: 2px solid white;
}

/* Polished Favorites Drawer */
#favDrawer .drawer__panel {
  background: #fff;
  border-left: 1px solid rgba(0,0,0,0.05);
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
}

#favDrawer .drawer__header {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 20px 24px;
}

#favDrawer .drawer__title {
  font-family: var(--font-brand, 'Playfair Display', serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

#favDrawer .drawer__content {
  background-image: radial-gradient(circle at 100% 0%, rgba(255,241,242,0.4) 0%, rgba(255,255,255,0) 50%);
  padding: 24px;
}

/* Favorite Item Card */
.favItem {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 16px;
  background: white;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  align-items: center;
  margin-bottom: 12px;
}

.favItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: rgba(225, 29, 72, 0.1);
}

.favItem .cartItem__img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #f8f8f8;
  border: none;
}

.favItem .cartItem__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
  line-height: 1.3;
}

.favItem .cartItem__meta .muted {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
}

.favItem .cartItem__price {
  margin-top: 6px;
  color: var(--brand-deep);
  font-weight: 700;
}

/* Actions in Favoriet Item */
.favItem .cartItem__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.fav-remove-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.fav-remove-btn:hover {
  background: #fee2e2;
  color: #e11d48;
}

.fav-add-btn {
  padding: 8px 16px;
  background: var(--text);
  color: white;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fav-add-btn:hover {
  background: var(--brand);
  transform: scale(1.05);
}

/* Empty State */
.fav-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  height: 100%;
}

.fav-empty__icon {
  font-size: 48px;
  color: #fee2e2;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.fav-empty__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.fav-empty__text {
  color: var(--muted);
  max-width: 240px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.fav-empty__cta {
  background: var(--text);
  color: white;
  min-width: 200px;
  border-color: var(--text);
}
.fav-empty__cta:hover {
  background: var(--brand);
  border-color: var(--brand);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* --- Favorites Summary Redesign --- */
.fav-summary {
  margin-top: auto;
  padding: 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.fav-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, #fbf7f4, #fff);
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 90, 60, 0.1);
}

.fav-info__icon {
  font-size: 1.2rem;
}

.fav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fav-actions .btn {
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn--pulse {
  position: relative;
  overflow: hidden;
}

.btn--pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}


/* --- Refined Chatbot Interface --- */
.chatbot__fab {
  transform: scale(1);
  transition: transform 0.2s cubic-bezier(0.3, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(139, 90, 60, 0.25);
  background: linear-gradient(135deg, #fff, #fefefe);
}
.chatbot__fab:hover {
  transform: scale(1.08);
}
.chatbot__fab:active {
  transform: scale(0.95);
}
.chatbot__badge {
  background: var(--brand);
  color: white;
  border: 2px solid white;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 90, 60, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(139, 90, 60, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 90, 60, 0); }
}

.chatbot__panel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
}
.chatbot__head {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(250,250,249,0.95));
  backdrop-filter: blur(10px);
  padding: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.chatbot__title {
  font-weight: 700;
  font-size: 15px;
}
.chatbot__sub {
  font-size: 12px;
  color: var(--muted);
}
.chatbot__msgs {
  background: #fdfcfb;
  padding: 16px;
}
.msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 15px;
  line-height: 1.5;
  color: #1e293b;
  margin-bottom: 12px;
  animation: fadeSlideUp 0.3s ease-out;
}
.msg--me {
  background: var(--brand);
  color: white;
  border-radius: 18px;
  border-bottom-right-radius: 4px;
  margin-left: auto;
  box-shadow: 0 4px 12px rgba(139, 90, 60, 0.2);
}
.msg__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.chip {
  background: white;
  border: 1px solid rgba(139, 90, 60, 0.2);
  color: var(--brand);
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  transition: all 0.2s ease;
  font-size: 13px;
}
.chip:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(139, 90, 60, 0.15);
}
.chatbot__form {
  padding: 12px;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.chatbot__input {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding-left: 16px;
  transition: border-color 0.2s;
}
.chatbot__input:focus {
  border-color: var(--brand);
  background: white;
}
.chatbot__send {
  color: var(--brand);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}


/* =========================================
   NEW SECTIONS: SOCIAL GRID & VALUES
   ========================================= */

/* Features / Values Section */
.values-sec {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fff, #faf9f7);
  position: relative;
  overflow: hidden;
}
/* Abstract background decoration */
.values-sec::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,90,60,0.2), transparent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
@media(max-width: 900px) { .values-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }

.value-card {
  padding: 40px 30px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(139, 90, 60, 0.08);
  box-shadow: 0 10px 40px rgba(139, 90, 60, 0.03);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 1;
}
.value-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 20px 60px rgba(139, 90, 60, 0.12);
  border-color: rgba(139, 90, 60, 0.3);
}
.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-size: 28px;
  border: 1px solid rgba(139, 90, 60, 0.15);
  box-shadow: 0 8px 24px rgba(139, 90, 60, 0.06);
  transition: transform 0.4s ease;
}
.value-card:hover .value-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--luxury-gradient);
  color: white;
  border-color: transparent;
}

.value-title { font-weight: 800; font-size: 20px; margin-bottom: 12px; color: var(--brand-deep); font-family: var(--font-brand, serif); letter-spacing: -0.5px; }
.value-desc { color: var(--muted); font-size: 15px; line-height: 1.6; }


/* Instagram / Social Scrolling Grid */
.social-sec {
  padding: 80px 0;
  overflow: hidden;
  background: #fff;
}
.social-head {
  text-align: center;
  margin-bottom: 40px;
}
.social-title {
  font-family: var(--font-brand, serif);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -1px;
}
.social-handle {
  color: var(--brand);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 20px;
  background: rgba(139, 90, 60, 0.05);
  border-radius: 100px;
  transition: background 0.3s ease;
}
.social-handle:hover {
  background: rgba(139, 90, 60, 0.12);
}

.social-scroller {
  display: flex;
  width: 100%;
  overflow: hidden;
   /* Mask edges */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.social-track {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  width: max-content;
  /* Use JS to duplicate items for seamless loop, or just CSS with enough items */
  animation: scrollInf 60s linear infinite;
}
.social-scroller:hover .social-track {
  animation-play-state: paused;
}

@keyframes scrollInf {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

.social-card {
  width: 280px;
  height: 480px; /* Taller for Reels format */
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
  cursor: pointer;
  isolation: isolate;
}
.social-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(139, 90, 60, 0.15);
  z-index: 2;
}
.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.social-card:hover img {
  transform: scale(1.15);
}
.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
/* Always show overlay for videos (mobile friendly) */
.social-overlay--video {
    opacity: 1 !important;
    background: rgba(0,0,0,0.1); /* Lighter background for always-on */
}
.social-overlay--video:hover {
    background: rgba(0,0,0,0.4); /* Darker on hover */
}
.social-card:hover .social-overlay {
  opacity: 1;
}
.social-icon-lg {
  color: white;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}


/* =========================================
   SOCIAL SHOWCASE SECTION V2 - UPGRADED
   ========================================= */
.social-showcase {
  background: #000;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
.social-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(139, 90, 60, 0.3), rgba(0,0,0,0.9) 70%);
  z-index: 1;
  opacity: 0.8;
}

.social-showcase__bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(80%) contrast(120%);
  transform: scale(1.1);
  transition: transform 15s ease-in-out;
}
.social-showcase:hover .social-showcase__bg { transform: scale(1); }

.social-showcase__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.social-showcase__title {
  font-family: var(--font-brand, serif);
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom: 16px;
  line-height: 1.1;
  background: linear-gradient(145deg, #ffffff 40%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 30px rgba(212, 175, 55, 0.2);
  letter-spacing: -1px;
}
.social-showcase__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.social-grid-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
  perspective: 1500px; /* For 3D hover effect */
}
@media (max-width: 900px) {
  .social-grid-visual { grid-template-columns: repeat(2, 1fr); }
}

.social-visual-card {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}
.social-visual-card:hover { 
  transform: translateY(-10px) rotateX(8deg) rotateY(-5deg) scale(1.05); 
  z-index: 10; 
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  border-color: rgba(212, 175, 55, 0.8);
}
.social-visual-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.social-visual-card:hover img { transform: scale(1.1); }

.social-visual-card::before { /* Glow effect */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.social-visual-card:hover::before { opacity: 1; }

.social-visual-icon {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.social-visual-card:hover .social-visual-icon {
  transform: scale(1.1);
  background: var(--gold);
  color: #000;
}

.social-actions-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 30px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.social-btn:hover {
  background: white;
  color: black;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
  border-color: transparent;
}
.social-btn svg { transition: transform 0.3s ease; }
.social-btn:hover svg { transform: scale(1.1); }

.social-btn--insta:hover { color: #E1306C; }
.social-btn--fb:hover { color: #1877F2; }
.social-btn--yt:hover { color: #FF0000; }


/* Instagram Feed Automation Styles */
.social-card.skeleton-card {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Video Playing State - Removes hover effects when video is active */
.social-card.is-playing,
.social-card.is-playing:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    cursor: default;
}

#insta-feed-container {
    min-height: 400px; /* Prevent collapse while loading */
}


/* Instagram Profile Header Styling */
.instagram-profile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.insta-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.insta-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.insta-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.insta-handle-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.insta-username {
    font-weight: 600;
    font-size: 1.2rem;
    color: #262626;
}

.verified-badge {
    color: #0095f6;
    width: 18px;
    height: 18px;
}

.insta-actions {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.btn-insta-follow, .btn-insta-latest {
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-insta-follow {
    background: #0095f6;
    color: #fff;
}

.btn-insta-latest {
    background: #efefef;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-insta-follow:hover, .btn-insta-latest:hover {
    transform: translateY(-2px);
}
/* =========================================
   PRODUCT DETAIL PAGE STYLES (New)
   ========================================= */

.productDetail__container {
  padding: 20px 0 80px;
}

/* Breadcrumbs */
.breadcrumb-nav {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.back-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.back-link:hover {
  color: var(--brand);
  transform: translateX(-2px);
}
.back-link svg {
  transition: transform 0.3s ease;
}
.back-link:hover svg {
  transform: scale(1.1);
}
[dir="rtl"] .back-link:hover {
  transform: translateX(2px);
}

/* Main Layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
  }
  .product-info {
    position: sticky;
    top: 120px; /* Adjusted for compact header */
  }
}

/* Left Column: Media */
.product-media {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product-image-wrapper {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.product-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(139, 90, 60, 0.1);
}
.trust-icon {
  font-size: 20px;
}

/* Right Column: Info */
.product-header {
  margin-bottom: 20px;
}
.product-brand {
  font-size: var(--fs-sm);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
}

@media (min-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: flex-start;
    }
}

.product-detail__image-container {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail__image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.product-detail__info {
    display: flex;
    flex-direction: column;
}

.product-detail__brand {
    font-size: var(--fs-sm);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.product-detail__name {
    font-size: 2.5rem;
    margin: 0 0 16px;
    line-height: 1.2;
}

.product-detail__price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-deep);
    margin-bottom: 16px;
}

.product-detail__size {
    font-size: var(--fs-base);
    color: var(--muted);
    font-weight: 400;
}

.product-detail__description {
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-detail__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}

.product-detail__quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: var(--soft);
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--line);
    border-left: none;
    border-right: none;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn {
    flex-grow: 1;
}

.product-detail__meta {
    font-size: var(--fs-sm);
    color: var(--muted);
}

.product-detail__meta p {
    margin: 4px 0;
}

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

.text-center {
    text-align: center;
}

/* Product Detail Improvements */
.pd-accord__bar {
  background: rgba(0,0,0,0.05);
}

/* Accords Styles */
.pd-accords {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
}

.pd-accord {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: var(--fs-sm);
}

.pd-accord__label {
  min-width: 100px;
  max-width: 140px;
  flex-shrink: 0;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--muted);
}

.pd-accord__bar {
  flex-grow: 1;
  height: 8px;
  background-color: var(--line);
  background-color: rgba(0,0,0,0.05); /* Softer background */
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.pd-accord__fill {
  height: 100%;
  background: var(--luxury-gradient);
  border-radius: 99px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 480px) {
  .pd-accords {
    padding: 16px; 
    gap: 10px;
  }
  
  .pd-accord__label {
    min-width: 85px;
    font-size: 13px;
  }
}


/* =========================================
   Product Detail Redesign (Added)
   ========================================= */

.pd {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
}

@media (min-width: 900px) {
  .pd {
    grid-template-columns: 1fr 1fr; /* 50/50 Split */
    align-items: start;
    gap: 48px;
  }
  
  .pd-info {
    position: sticky;
    top: 24px;
  }
}

/* Media Section */
.pd-media {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(139, 90, 60, 0.08);
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.pd-media::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(139,90,60,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.pd-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-img:hover {
  transform: scale(1.03) translateY(-5px);
}

/* Info Section */
.pd-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-head {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(139, 90, 60, 0.08);
}

.pd-brand {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand); /* Brand color instead of muted */
  font-weight: 800;
  margin-bottom: 12px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(139, 90, 60, 0.08);
  border-radius: 6px;
}

.pd-title {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Price Row */
.pd-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.pd-price {
  display: flex;
  flex-direction: column;
}

.pd-price__label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.pd-price__value {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-deep);
  font-family: var(--font-serif);
  line-height: 1;
}

.pd-price__unit {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

.pd-actions {
  display: flex;
  gap: 10px;
}

.pd-actions .btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 99px;
  font-weight: 600;
  transition: all 0.2s;
}

#btnWA {
  background: #25D366; /* WhatsApp Green */
  border-color: #25D366;
  color: #ffffff;
}
#btnWA:hover {
  background: #128C7E;
  border-color: #128C7E;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Blocks */
.pd-block {
  margin-bottom: 24px;
}

.pd-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

/* Size Chips */
.size-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.size-chip {
  padding: 12px 24px;
  border: 1px solid var(--line);
  background: var(--soft2);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.size-chip:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.size-chip.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(139,90,60,0.25);
  transform: translateY(-2px);
}

/* Quantity & Add to Cart */
.pd-qty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--soft2);
  border-radius: 99px;
  padding: 4px;
  height: 56px;
  width: 150px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.qty button {
  width: 44px;
  height: 44px;
  border: none;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.qty button:hover {
  background: var(--brand);
  color: #fff;
  transform: scale(1.1);
}

.qty input {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 18px;
  background: transparent;
  font-weight: 700;
  color: var(--text);
  outline: none;
  -moz-appearance: textfield;
}

#btnAddToCart {
  flex: 1;
  min-width: 200px;
  height: 56px;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text); /* Black/Dark Button */
  color: #fff;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#btnAddToCart:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  background: var(--brand-deep);
}

#btnAddToCart:active {
  transform: translateY(-1px);
}

.pd-desc {
  line-height: 1.8;
  color: var(--muted);
  margin-top: 32px;
  font-size: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: justify;
  white-space: pre-wrap;
}

/* Fragrance Notes Redesign */
.pd-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.pd-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid rgba(139, 90, 60, 0.15);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  cursor: default;
  text-align: center;
}

.pd-note:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 90, 60, 0.15);
}

.pd-note__v {
  font-weight: inherit;
  color: inherit;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
  .pd-head {
    padding: 24px;
  }
  
  .pd-title {
    font-size: 26px;
  }
  
  .pd-price__value {
    font-size: 28px;
  }
  
  .pd-qty-row {
    flex-direction: column;
  }
  
  .qty {
    width: 100%;
  }
  
  #btnAddToCart {
    width: 100%;
  }
  
  .pd-actions {
    width: 100%;
  }
  
  .pd-actions .btn {
    flex: 1;
    font-size: 13px;
    padding: 0 12px;
  }
}
