/* ============================================================
   DYNAMIC — Shopify Theme Replica CSS
   ============================================================ */

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

:root {
  --brown:      #2D1B12;
  --brown-dark: #1C100A;
  --brown-mid:  #3E2619;
  --beige:      #F5EEE4;
  --beige-light: #FAF6F0;
  --cream:      #F9F4ED;
  --white:      #FFFFFF;
  --text:       #1A1311;
  --muted:      #7A6459;
  --border:     rgba(45,27,18,0.14);
  --gold:       #C6975A;
  --nav-h:      72px;
  --ann-h:      38px;
  --transition: 0.30s ease;
  --radius:     4px;
  --shadow:     0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); overflow-x: hidden; font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--brown);
  height: var(--ann-h);
  display: flex; align-items: center;
  overflow: hidden;
  position: relative; z-index: 200;
}
.ann-track {
  display: flex; white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ann-track span { font-size: 12px; letter-spacing: 0.08em; color: var(--white); text-transform: uppercase; padding-right: 80px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 150;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.09); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 48px;
  max-width: 1400px; margin: 0 auto; position: relative;
}

.site-logo {
  font-family: var(--font-serif); font-size: 28px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--brown);
  position: absolute; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}
.footer-logo {
  font-family: var(--font-serif); font-size: 26px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--white); display: block; margin-bottom: 16px;
}

.nav-main { display: flex; align-items: center; gap: 32px; }
.nav-main > li > a {
  font-size: 14px; font-weight: 400; color: var(--text);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.nav-main > li > a:hover { color: var(--gold); }
.chevron-icon { width: 10px; height: 6px; }

.has-drop { position: relative; }
.drop-menu {
  position: absolute; top: calc(100% + 16px); left: -16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; min-width: 180px; padding: 8px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition);
}
.has-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu li a { display: block; padding: 10px 20px; font-size: 14px; transition: background var(--transition); }
.drop-menu li a:hover { background: var(--cream); color: var(--gold); }

.nav-icons { display: flex; align-items: center; gap: 6px; }
.ic-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown); transition: background var(--transition);
  position: relative;
}
.ic-btn svg { width: 20px; height: 20px; }
.ic-btn:hover { background: var(--cream); }

.cart-badge {
  position: absolute; top: 0; right: 0;
  background: var(--brown); color: var(--white);
  font-size: 9px; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}

.ham-btn { display: none; }

/* Search Dropdown */
.search-drop {
  background: var(--beige-light); border-top: 1px solid var(--border);
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
}
.search-drop.open { max-height: 80px; padding: 12px 48px; }
.search-inner {
  max-width: 600px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border); border-radius: 50px;
  padding: 8px 20px; display: flex; align-items: center; gap: 10px;
}
.search-inner input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-sans); font-size: 14px; color: var(--text); background: transparent;
}
.search-inner input::placeholder { color: var(--muted); }

/* ── OVERLAY ── */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.50);
  z-index: 140; opacity: 0; pointer-events: none;
  backdrop-filter: blur(2px);
  transition: opacity var(--transition);
}
.overlay.show { opacity: 1; pointer-events: all; }

/* ── HERO SECTION (ENTRY PAGE) ── */
.hero-section {
  position: relative;
  height: calc(100vh - var(--nav-h) - var(--ann-h));
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #fdfaf7;
}
.hero-media {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 10s ease;
}
.hero-section:hover .hero-media img { transform: scale(1.05); }

/* Subtle dark overlay for readability */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent 60%);
  z-index: 2;
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center; color: #fff;
  max-width: 800px; padding: 0 40px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.hero-subline {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.3em; margin-bottom: 20px; opacity: 0.9;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(48px, 8vw, 84px);
  font-weight: 500; font-style: italic; line-height: 1.1; margin-bottom: 24px;
}
.hero-desc {
  font-size: 16px; font-weight: 400; line-height: 1.6; max-width: 500px;
  margin: 0 auto 40px; opacity: 0.95;
}
.btn-hero-light {
  display: inline-block; padding: 18px 48px; border-radius: 2px;
  background: var(--white); color: var(--brown);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  text-decoration: none; transition: all 0.4s;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.btn-hero-light:hover { background: var(--brown); color: var(--white); transform: translateY(-5px); }

@media (max-width: 768px) {
  .hero-section { height: 70vh; }
  .hero-title { font-size: 40px; }
  .btn-hero-light { padding: 14px 32px; font-size: 11px; }
}

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  position: fixed; top: 0; left: 0; height: 100%; width: 300px;
  background: var(--white); z-index: 160;
  transform: translateX(-100%); transition: transform var(--transition);
  padding: 20px;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav li a { display: block; font-family: var(--font-serif); font-size: 22px; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--brown); }
.mobile-nav li a:hover { color: var(--gold); }

/* ── CART DRAWER ── */
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 380px;
  background: var(--white); z-index: 160;
  transform: translateX(100%); transition: transform var(--transition);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.cart-head h3 { font-family: var(--font-serif); font-size: 20px; letter-spacing: 0.05em; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--muted); font-size: 14px; }

/* ── BUTTONS ── */
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brown); color: var(--white);
  border: 1.5px solid var(--brown);
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 30px; border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition);
}
.btn-dark:hover { background: var(--brown-mid); border-color: var(--brown-mid); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,27,18,0.25); }

/* ── ROUND COLLECTION LIST ── */
.round-list-section {
  padding: 10px 0 28px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.round-list-track {
  display: flex; 
  gap: 20px;
  padding: 10px 40px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center; /* Center items if they fit */
}
/* Ensure it doesn't break horizontal scroll on mobile */
@media (max-width: 900px) {
  .round-list-track {
    justify-content: flex-start;
    gap: 20px;
  }
}
.round-list-track::-webkit-scrollbar { display: none; }
.round-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex-shrink: 0; cursor: pointer; transition: transform var(--transition);
}
.round-item:hover { transform: translateY(-4px); }
.round-img {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--beige); border: 2px solid transparent;
  overflow: hidden; flex-shrink: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.round-item:hover .round-img { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,151,90,0.18); }
.round-item > span { font-size: 12px; color: var(--text); text-align: center; white-space: nowrap; font-weight: 400; }

/* ── HERO SLIDER ── */
.hero-section {
  position: relative; overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 95vh;
  background: #0a0a0a;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }

.hero-bg { position: absolute; inset: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: brightness(0.75); }

/* Ken Burns — image slowly zooms & pans when slide is active */
.hero-slide.active .hero-bg img, .hero-slide.active .hero-bg video {
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.10) translate(1.5%, -1%); }
  to   { transform: scale(1.00) translate(0%, 0%); }
}

/* Staggered text entrance when slide becomes active */
.hero-slide.active .hero-pills {
  animation: slideInLeft 0.65s cubic-bezier(0.22,1,0.36,1) 0.10s both;
}
.hero-slide.active .hero-title {
  animation: slideInLeft 0.65s cubic-bezier(0.22,1,0.36,1) 0.28s both;
}
.hero-slide.active .hero-desc {
  animation: slideInLeft 0.65s cubic-bezier(0.22,1,0.36,1) 0.46s both;
}
.hero-slide.active .btn-hero {
  animation: slideInLeft 0.65s cubic-bezier(0.22,1,0.36,1) 0.60s both;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-content {
  position: absolute; left: 60px; bottom: 100px;
  max-width: 520px; z-index: 2;
}
.hero-pills { display: flex; gap: 8px; margin-bottom: 18px; }
.pill {
  border: 1.5px solid rgba(255,255,255,0.70); border-radius: 4px;
  color: var(--white); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; padding: 5px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1.1; color: var(--white); font-weight: 500;
  margin-bottom: 14px; letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-desc {
  font-size: 15px; color: rgba(255,255,255,0.80);
  line-height: 1.7; margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.btn-hero { border-radius: var(--radius); padding: 14px 36px; }

.hero-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--brown); z-index: 5; transition: all var(--transition);
}
.hero-arr svg { width: 22px; height: 22px; }
.hero-arr.prev { left: 24px; }
.hero-arr.next { right: 24px; }
.hero-arr:hover { background: var(--brown); color: var(--white); transform: translateY(-50%) scale(1.06); }

.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.hdot {
  width: 10px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.5); transition: all var(--transition);
  border: none;
}
.hdot.active { width: 28px; background: var(--white); }

/* ── EXCLUSIVE COLLECTION ── */
.exclusive-section {
  padding: 40px 48px 80px 48px;
  background: var(--beige-light);
}
.excl-heading {
  text-align: center; margin-bottom: 40px; position: relative;
}
.excl-script {
  font-family: var(--font-serif); font-size: clamp(36px, 5vw, 72px);
  font-style: italic; font-weight: 400; color: rgba(45,27,18,0.10);
  display: block; line-height: 1; letter-spacing: 0.01em;
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; pointer-events: none; z-index: 0;
}
.excl-title {
  font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500; color: var(--brown); letter-spacing: 0.03em;
  position: relative; z-index: 1; padding-top: 24px;
}
.excl-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; min-height: 520px;
}
.excl-right {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
/* ── EXCLUSIVE COLLECTION — DYNAMIC LAYOUT ── */

.excl-dynamic-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr 1fr;
  grid-template-rows: 340px 220px;
  gap: 12px;
  padding: 0 6px;
}

/* TALL LEFT — spans 2 rows */
.edc-tall-left {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* WIDE TOP CENTER — spans 2 center columns, top row */
.edc-wide-top {
  grid-column: 2 / 4;
  grid-row: 1;
}

/* SMALL BOTTOM CENTER LEFT */
.edc-small:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

/* SMALL BOTTOM CENTER RIGHT */
.edc-small:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

/* TALL RIGHT — spans 2 rows, partially clipped */
.edc-tall-right {
  grid-column: 4;
  grid-row: 1 / 3;
}

/* Shared card styles */
.edc-card {
  display: block; position: relative;
  border-radius: 10px; overflow: hidden;
  background: var(--beige);
  transition: transform var(--transition), box-shadow var(--transition);
}
.edc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.edc-img { width: 100%; height: 100%; overflow: hidden; position: relative; }
.edc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.edc-card:hover .edc-img img { transform: scale(1.06); }

/* --- INTERNAL CARD SLIDESHOW (FOR SKIN CARE) --- */
.edc-slideshow img {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  animation: edcFadeSlide 24s infinite ease-in-out;
}
.edc-slideshow img:nth-child(1) { animation-delay: 0s; }
.edc-slideshow img:nth-child(2) { animation-delay: 8s; }
.edc-slideshow img:nth-child(3) { animation-delay: 16s; }

@keyframes edcFadeSlide {
  0%, 33.33% { opacity: 1; z-index: 2; }
  33.34%, 100% { opacity: 0; z-index: 1; }
}

/* Text overlay at bottom-left of each card */
.edc-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(20,14,10,0.60) 0%, transparent 100%);
}
.edc-info h3 {
  font-family: var(--font-serif); font-size: 18px; font-weight: 500;
  color: var(--white); margin-bottom: 2px; letter-spacing: 0.02em;
}
.edc-count {
  font-size: 11px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .excl-dynamic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    margin-right: 0;
    padding: 0 24px;
  }
  .edc-tall-left, .edc-wide-top, .edc-small:nth-child(3),
  .edc-small:nth-child(4), .edc-tall-right {
    grid-column: auto; grid-row: auto;
  }
  .edc-tall-left, .edc-tall-right { aspect-ratio: 3/4; }
  .edc-wide-top { aspect-ratio: 16/9; }
  .edc-small { aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
  .excl-dynamic-grid { grid-template-columns: 1fr; }
}

/* ── BEFORE & AFTER SKIN SLIDER ── */
.ba-slider-section {
  padding: 0;
  margin: 0;
  background: #fff;
  width: 100%;
}
.ba-container {
  position: relative;
  width: 100%;
  height: auto; /* Let the image define the height! */
  overflow: hidden;
  background: #fdfaf7;
}

.ba-after-wrap {
  position: relative; /* This gives height to the container */
  width: 100%; height: auto;
  line-height: 0; /* remove bottom spacing */
}

.ba-before-wrap {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

.ba-container img {
  width: 100%;
  height: auto; 
  display: block;
  pointer-events: none;
}

/* Before layer is always on top but clipped */
.ba-before-wrap {
  z-index: 2;
  clip-path: inset(0 0 50% 0); /* Horizontal split — controlled via JS */
}

/* Labels — Reverted to fixed positions */
.ba-label {
  position: absolute; left: 30px;
  padding: 8px 18px; border-radius: 30px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  z-index: 5;
}
.lab-before { top: 30px; background: rgba(45,27,18,0.8); color: #fff; }
.lab-after { bottom: 30px; background: rgba(255,255,255,0.8); color: #2d1b12; border: 1px solid rgba(0,0,0,0.1); }

/* The Slider Line */
.ba-line {
  position: absolute; top: 50%; left: 0; width: 100%; height: 2px;
  background: #fff; z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.ba-handle {
  position: absolute; left: 50%; top: 50%;
  width: 50px; height: 50px; background: #fff;
  border-radius: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 4;
}
.ba-handle::before, .ba-handle::after {
  content: ""; width: 8px; height: 8px; border-top: 2px solid #2d1b12; border-right: 2px solid #2d1b12;
}
.ba-handle::before { transform: rotate(-45deg); margin-bottom: 2px; }
.ba-handle::after { transform: rotate(135deg); margin-top: 2px; }

/* The Range Controller (Invisible but active) */
.ba-range {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ns-resize;
  z-index: 10; margin: 0;
}

@media (max-width: 600px) {
  .ba-container { aspect-ratio: 4 / 3; }
  .ba-label { left: 15px; padding: 6px 12px; font-size: 10px; }
  .lab-before { top: 15px; }
  .lab-after { bottom: 15px; }
}

.excl-card {
  position: relative; border-radius: 8px; overflow: hidden;
  display: block; background: var(--beige);
  opacity: 0; transform: translateY(20px);
  transition: transform var(--transition), box-shadow var(--transition);
}
.excl-card.fade-in, .excl-card:nth-child(1) {
  animation: reveal 0.6s ease forwards;
}
.excl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.excl-card.fade-in { opacity: 1; transform: none; }

.excl-img { width: 100%; height: 100%; min-height: 240px; overflow: hidden; }
.excl-img img { transition: transform 0.6s ease; }
.excl-card:hover .excl-img img { transform: scale(1.06); }
.excl-large .excl-img { min-height: 520px; }

.excl-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(26,19,17,0.55) 0%, transparent 100%);
}
.excl-info h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.excl-count { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── FEATURED TABS (DARK) ── */
.feat-tabs-section {
  background: var(--brown); padding: 0;
}
.feat-tabs-inner {
  display: grid; grid-template-columns: 260px 1fr 480px;
  min-height: 520px;
}

.feat-tabs-nav {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 40px;
  gap: 16px;
}
.ftab {
  font-family: var(--font-serif); font-size: 24px;
  color: rgba(255,255,255,0.30); font-weight: 400;
  text-align: left; padding: 8px 0; letter-spacing: 0.02em;
  transition: all var(--transition);
  border: none; background: none; cursor: pointer;
}
.ftab.active { color: var(--white); font-size: 32px; }
.ftab:hover:not(.active) { color: rgba(255,255,255,0.60); }

.feat-portrait {
  overflow: hidden; position: relative;
  flex: 1; min-height: 400px;
}
.feat-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.feat-products { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.ftab-products { display: none; grid-template-columns: 1fr 1fr; gap: 16px; animation: fadeUp 0.35s ease; }
.ftab-products.active { display: grid; }

.fp-card {
  background: var(--beige-light); border-radius: 8px;
  padding: 16px; display: flex; flex-direction: column;
  gap: 8px; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(16px);
  transition: box-shadow var(--transition);
}
.fp-card.fade-in { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition); }
.fp-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.fp-img { width: 100%; aspect-ratio: 1; background: var(--white); border-radius: 6px; overflow: hidden; margin-bottom: 4px; }
.fp-cat { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.fp-card h4 { font-size: 13px; font-weight: 500; line-height: 1.3; color: var(--brown); }
.fp-price { font-size: 14px; font-weight: 600; color: var(--brown); }
.fp-bag {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 6px; border: 1px solid var(--border);
  background: var(--white); display: flex; align-items: center; justify-content: center;
}
.fp-bag svg { width: 16px; height: 16px; }
.fp-bag:hover { background: var(--brown); color: var(--white); border-color: var(--brown); }

/* ── LATEST ARRIVALS ── */
.latest-section { padding: 30px 24px 60px 24px; background: #fff; } /* Clean white background for the section */
.latest-header { text-align: center; margin-bottom: 30px; }
.latest-header h2 { font-family: var(--font-serif); font-size: 32px; color: var(--brown); margin-bottom: 8px; }

.latest-grid-wrap { max-width: 1400px; margin: 0 auto; }
.latest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.la-card {
  display: flex; flex-direction: column;
  gap: 15px; /* THE WHITE GAP (Border effect) */
  background: transparent;
  transition: transform var(--transition);
}
.la-card:hover { transform: translateY(-5px); }

/* Top Box: Image and Thumbnails */
.la-top-box {
  background: #fcf7f5;
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}

.la-img-main { aspect-ratio: 1; background: transparent; position: relative; overflow: hidden; }
.la-img-main img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.6s ease; }
.la-card:hover .la-img-main img { transform: scale(1.08); }

/* Floating Overlay — Name, Price, Buy Now */
.la-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(45,27,18,0.05); /* Very subtle tint */
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.4s ease; gap: 12px;
}
.la-card:hover .la-overlay { opacity: 1; backdrop-filter: blur(4px); }

.la-o-price {
  background: var(--brown); color: #fff;
  padding: 6px 14px; border-radius: 40px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(20px); transition: all 0.4s ease;
}
.la-o-buy {
  background: var(--brown); color: #fff;
  padding: 10px 24px; border-radius: 4px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(20px); transition: all 0.4s ease 0.1s;
}
.la-card:hover .la-o-price, .la-card:hover .la-o-buy { transform: translateY(0); }
.la-o-buy:hover { background: var(--gold); }

.la-thumbs { display: flex; gap: 8px; justify-content: center; padding: 12px 0; background: transparent; }
.la-thumb { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; border: 1px solid rgba(0,0,0,0.05); background: #fff; cursor: pointer; }
.la-thumb.active { border-color: var(--brown); box-shadow: 0 2px 6px rgba(0,0,0,0.08); }

/* Bottom Box: Information Area */
.la-info {
  background: #F9F4ED; /* Same Cream background */
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  display: flex; flex-direction: column; align-items: center;
}

.la-tags { display: flex; gap: 8px; justify-content: center; margin-bottom: 16px; }
.la-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--brown); padding: 4px 10px;
  border: 1px solid rgba(45,27,18,0.2); border-radius: 4px;
}

.la-info h4 {
  font-family: var(--font-serif); font-size: 18px; font-weight: 500;
  color: var(--brown); margin-bottom: 8px; letter-spacing: 0.02em;
}
.la-price { font-size: 16px; font-weight: 600; color: var(--gold); margin-bottom: 16px; }

.la-disc-banner {
  background: #E8DFD3; /* Slightly darker cream for banner */
  color: var(--brown);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 6px 0; width: 100%;
  border-radius: 4px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ── EDITORIAL BANNER ── */
.editorial-banner {
  background: var(--brown); padding: 48px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px;
}
.ed-text {
  font-family: var(--font-serif); font-size: clamp(36px, 5vw, 72px);
  color: var(--white); font-weight: 400; letter-spacing: 0.05em;
}
.ed-img {
  width: 120px; height: 120px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
}
.ed-img img { object-fit: cover; }

/* ── STEPS SECTION ── */
.steps-section { padding: 40px 48px 80px 48px; background: var(--white); }
.steps-heading { text-align: center; margin-bottom: 48px; position: relative; }
.steps-script {
  font-family: var(--font-serif); font-size: clamp(32px, 4vw, 60px);
  font-style: italic; color: rgba(45,27,18,0.10);
  display: block; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; pointer-events: none;
}
.steps-heading h2 {
  font-family: var(--font-serif); font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 500; color: var(--brown); position: relative; z-index: 1;
  padding-top: 20px;
}

.steps-body {
  display: grid; grid-template-columns: 220px 1fr 300px; gap: 32px;
  align-items: start;
}

.steps-product { text-align: center; }
.steps-prod-img {
  aspect-ratio: 1; background: var(--cream); border-radius: 8px;
  overflow: hidden; margin-bottom: 12px; position: relative;
}
.steps-bag-btn {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.steps-bag-btn:hover { background: var(--brown); color: var(--white); }
.steps-prod-name { font-size: 13px; font-weight: 500; color: var(--brown); margin-bottom: 4px; }
.steps-prod-price { font-size: 13px; color: var(--muted); }

.steps-center { display: flex; flex-direction: column; gap: 20px; }
.steps-model-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 10px; }
.steps-desc p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.steps-nav-panel { display: block; }
.steps-tabs-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.stab {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 12px;
  border-radius: 4px; border: 1.5px solid var(--border);
  color: var(--muted); transition: all var(--transition);
}
.stab.active { background: var(--brown); color: var(--white); border-color: var(--brown); }
.stab:hover:not(.active) { border-color: var(--brown); color: var(--brown); }

.steps-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.step-thumb-item {
  text-align: center; border-radius: 8px; overflow: hidden;
  background: var(--cream); border: 2px solid transparent;
  cursor: pointer; transition: border-color var(--transition);
}
.step-thumb-item.active { border-color: var(--brown); }
.step-thumb-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.step-thumb-item span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 4px; color: var(--muted); }

/* ── MODEL BANNER ── */
.model-banner-section {
  position: relative; overflow: hidden;
  min-height: 500px; background: var(--beige);
}
.model-banner-img { width: 100%; height: 500px; }
.model-banner-img img { object-position: center top; filter: brightness(0.9); }
.model-product-card {
  position: absolute; right: 80px; bottom: 40px;
  background: var(--brown); border-radius: 8px;
  padding: 20px; width: 200px; color: var(--white);
  box-shadow: var(--shadow-lg);
}
.mpc-tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.mpc-tab {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 8px; border-radius: 3px;
  color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.mpc-tab.active { background: rgba(255,255,255,0.2); color: var(--white); }
.mpc-tab:hover { color: var(--white); }
.mpc-img { aspect-ratio: 1; background: rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; margin-bottom: 12px; }
.model-product-card h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.mpc-price { font-size: 14px; font-weight: 700; color: var(--gold); }

/* ── BRAND MARQUEE ── */
.brand-marquee {
  background: var(--beige); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden;
}
.bm-track { display: flex; white-space: nowrap; animation: ticker 20s linear infinite; }
.bm-track span { font-family: var(--font-serif); font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); padding-right: 80px; }

/* ── NEWSLETTER ── */
.nl-section { padding: 80px 48px; background: var(--cream); }
.nl-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.nl-inner h2 { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 44px); color: var(--brown); margin-bottom: 12px; font-weight: 500; }
.nl-inner h2 span { color: var(--gold); }
.nl-inner > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.nl-form { display: flex; overflow: hidden; border: 1.5px solid var(--brown); border-radius: var(--radius); }
.nl-form input { flex: 1; padding: 14px 20px; border: none; outline: none; font-family: var(--font-sans); font-size: 14px; color: var(--text); background: var(--white); }
.nl-form .btn-dark { border-radius: 0; flex-shrink: 0; border: none; }
.nl-note { font-size: 12px; color: var(--muted); margin-top: 14px; }
.nl-note a { text-decoration: underline; }
.nl-success { font-family: var(--font-serif); font-size: 20px; color: var(--brown); padding: 16px; }

/* ── FOOTER ── */
.site-footer { background: var(--brown); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding: 64px 48px 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-col p { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); transition: all var(--transition);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.50); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }

.footer-mid {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-nl h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.footer-nl-form { display: flex; overflow: hidden; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); }
.footer-nl-form input { padding: 10px 16px; background: rgba(255,255,255,0.06); color: var(--white); border: none; outline: none; font-size: 13px; font-family: var(--font-sans); width: 260px; }
.footer-nl-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-lang { display: flex; gap: 10px; }
.footer-lang select {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65); border-radius: var(--radius); padding: 8px 12px;
  font-size: 13px; font-family: var(--font-sans); cursor: pointer;
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.30); }
.footer-payment { display: flex; gap: 6px; }
.pay-icon {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 3px; padding: 4px 8px; text-transform: uppercase;
}
.back-top {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.70);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.back-top svg { width: 18px; height: 18px; }
.back-top:hover { background: var(--gold); color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes reveal { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .feat-tabs-inner { grid-template-columns: 200px 1fr 360px; }
  .steps-body { grid-template-columns: 180px 1fr 260px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 60px; }
  .nav-wrap { padding: 0 24px; }
  .nav-main { display: none; }
  .site-logo { position: static; transform: none; }
  .ham-btn { display: flex; }
  .search-drop.open { padding: 10px 24px; }

  .hero-content { left: 32px; bottom: 80px; }
  .hero-title { font-size: 32px; }

  .exclusive-section { padding: 60px 24px; }
  .excl-grid { grid-template-columns: 1fr; }
  .excl-large .excl-img { min-height: 300px; }
  .excl-right { grid-template-columns: 1fr 1fr; }

  .feat-tabs-inner { grid-template-columns: 1fr; min-height: auto; }
  .feat-tabs-nav { padding: 32px 24px 0; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .ftab { font-size: 18px; }
  .ftab.active { font-size: 22px; }
  .feat-portrait { min-height: 280px; }
  .feat-products { padding: 16px; }

  .latest-track-wrap { padding: 0 24px; }
  .latest-header { padding: 0 24px; }
  .la-card { min-width: calc(50% - 12px); }

  .editorial-banner { padding: 32px 24px; gap: 20px; }
  .ed-text { font-size: 36px; }
  .ed-img { width: 80px; height: 80px; }

  .steps-section { padding: 60px 24px; }
  .steps-body { grid-template-columns: 1fr; }
  .steps-product { display: none; }

  .model-banner-section { min-height: 400px; }
  .model-product-card { right: 20px; bottom: 20px; width: 160px; }

  .round-list-track { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 24px; }
  .footer-mid { flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px 24px; }
  .footer-bottom { padding: 16px 24px; }
  .nl-section { padding: 60px 24px; }
}

@media (max-width: 768px) {
  .hero-content { left: 50%; bottom: 60px; transform: translateX(-50%); text-align: center; max-width: 90%; padding: 0; }
  .hero-title { font-size: 32px; margin-bottom: 20px; }
  .hero-desc { font-size: 14px; margin-bottom: 30px; }
  .hero-pills { justify-content: center; }
  .hero-section { height: 80vh; }
  .btn-hero { padding: 12px 30px; font-size: 11px; }
  .cart-drawer { width: 100%; }
  
  .round-img { width: 78px; height: 78px; }
  .round-item > span { font-size: 11px; }
  .excl-right { grid-template-columns: 1fr; }
  .ftab-products { grid-template-columns: 1fr; }
  .la-card { min-width: calc(80% - 12px); }
  .footer-top { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .nl-form input, .nl-form .btn-dark { width: 100%; border-radius: var(--radius); }
  .steps-tabs-row { display: none; }
}

/* ── PRODUCT SHOWCASE ── */
.showcase-section {
  padding: 10px 12px 30px 12px;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}
.showcase-header { margin-bottom: 15px; }
.showcase-title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 42px); color: var(--brown); margin-bottom: 6px; }
.showcase-subtitle { font-size: 15px; color: var(--muted); max-width: 600px; margin: 0 auto; }

.showcase-main { position: relative; max-width: 1200px; margin: 0 auto; min-height: 480px; }
.showcase-container { display: flex; align-items: center; justify-content: center; min-height: 480px; position: relative; }

.showcase-image { position: relative; z-index: 2; width: 550px; display: flex; align-items: center; justify-content: center; margin-top: -30px; }
.showcase-image img {
  width: 100%; /* Retain original width */
  max-width: 100%; height: auto; object-fit: contain; /* Retain object-fit */
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.12)); /* Retain original filter */
  position: relative; z-index: 5;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}
.showcase-image:hover img {
  animation: pulseScale 3s infinite ease-in-out;
}
@keyframes pulseScale {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.si-blur-bg { position: absolute; width: 500px; height: 500px; background: var(--gold); filter: blur(140px); opacity: 0.12; z-index: -1; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; }

.showcase-pills { display: flex; flex-direction: column; gap: 40px; z-index: 3; }
.pills-left { align-items: flex-end; padding-right: 20px; }
.pills-right { align-items: flex-start; padding-left: 20px; }

.scp-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--beige-light); padding: 10px 20px;
  border-radius: 50px; border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  animation: float 4s ease-in-out infinite;
  transition: transform var(--transition);
  white-space: nowrap;
  font-weight: 500;
  color: var(--brown);
  font-size: 14px;
}
.scp-pill:hover { transform: scale(1.05); border-color: var(--gold); }

.pill-offset { animation-delay: 1.5s; }
.pills-left .pill-offset { margin-right: 40px; }
.pills-right .pill-offset { margin-left: 40px; }

.scp-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--gold); border: 1px solid var(--border); flex-shrink: 0; }
.scp-icon svg { width: 18px; height: 18px; }

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

.showcase-footer { margin-top: 40px; }
.showcase-btn { display: inline-flex; padding: 16px 48px; border-radius: 100px; background: var(--brown); color: var(--white); text-transform: uppercase; font-weight: 600; font-size: 13px; letter-spacing: 0.1em; transition: all 0.3s; }
.showcase-btn:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(198,151,90,0.3); }

@media (max-width: 900px) {
  .showcase-container { flex-direction: column; gap: 40px; }
  .showcase-pills { flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 0; }
  .pills-left, .pills-right { align-items: center; }
  .showcase-image { width: 280px; order: -1; }
  .showcase-main { min-height: auto; }
}


/* ── ALL PRODUCTS GALLERY ── */
.gallery-section { padding: 80px 48px; background: #fff; }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-tag { 
    display: inline-block; padding: 6px 14px; background: #f0f0f0; border-radius: 40px; 
    font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--brown);
    margin-bottom: 15px; border: 1px solid rgba(0,0,0,0.05);
}
.gallery-title { font-family: var(--font-serif); font-size: 48px; color: var(--brown); margin-bottom: 30px; }

/* Filter Controls */
.gallery-filters { 
    display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 50px;
}
.cat-tabs { display: flex; gap: 12px; }
.cat-tab { 
    padding: 14px 28px; border-radius: 40px; background: var(--beige-light); 
    color: var(--brown); font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.05);
}
.cat-tab.active { background: var(--gold); color: white; box-shadow: 0 10px 20px rgba(198,151,90,0.35); transform: translateY(-3px); }

.sub-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.sub-filter { 
    padding: 8px 18px; border-radius: 30px; border: 1.5px solid var(--border);
    font-size: 12px; color: var(--muted); cursor: pointer; transition: all 0.3s;
}
.sub-filter.active { background: var(--brown); color: white; border-color: var(--brown); }

/* Product Grid */
.products-grid { 
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 30px; max-width: 1400px; margin: 0 auto;
}
.p-card { 
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    padding: 24px; position: relative; overflow: hidden;
    transition: all 0.4s ease; display: flex; flex-direction: column; gap: 16px;
    opacity: 0; transform: translateY(20px);
}
.p-card.show { opacity: 1; transform: translateY(0); }
.p-card:hover { transform: translateY(-8px); box-shadow: 0 15px 45px rgba(0,0,0,0.08); border-color: var(--gold); }

.p-img-box { 
    width: 100%; aspect-ratio: 1; background: var(--beige-light); border-radius: 10px; 
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    position: relative;
}
.p-img-box img { 
    width: 85%; height: 85%; object-fit: contain; 
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.p-card:hover .p-img-box img { transform: scale(1.1); }

.p-badge { 
    position: absolute; top: 12px; left: 12px; 
    padding: 4px 10px; border-radius: 4px; font-size: 9px; font-weight: 700;
    color: white; letter-spacing: 0.1em;
}
.p-badge.ord { background: var(--brown); }
.p-badge.cv { background: #0072CE; } /* CeraVe blue */

.p-info { display: flex; flex-direction: column; gap: 8px; flex: 1; text-align: center; }
.p-cat { font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.p-title { font-family: var(--font-serif); font-size: 17px; font-weight: 500; color: var(--brown); line-height: 1.3; }
.p-price { font-size: 16px; font-weight: 700; color: var(--brown); margin-top: auto; }

.p-action { 
    background: var(--brown); color: white; border: none; padding: 12px; 
    border-radius: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; transition: all 0.3s; margin-top: 10px;
}
.p-card:hover .p-action { background: var(--gold); box-shadow: 0 5px 15px rgba(198,151,90,0.3); }

@media (max-width: 768px) {
    .gallery-header { padding: 0 20px; }
    .gallery-title { font-size: 32px; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .p-card { padding: 12px; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* Float Animation */
@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.float-anim { animation: floatY 4s ease-in-out infinite; }

/* ── SHOP ALL PRODUCTS GRID (5x2) ── */
.hp-products-section { padding: 40px 48px 100px 48px; background: #fff; }
.hp-grid-header { text-align: center; margin-bottom: 50px; }
.hp-grid-tag { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; display: inline-block; margin-bottom: 10px; }
.hp-grid-title { font-family: var(--font-serif); font-size: 38px; color: var(--brown); margin-bottom: 20px; text-transform: uppercase; }

.hp-grid-container { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    grid-template-rows: repeat(2, auto);
    gap: 30px; 
    max-width: 1400px; 
    margin: 0 auto;
}
.hp-prod-card { 
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    padding: 15px; transition: all 0.3s ease; text-decoration: none; display: block;
    text-align: center; position: relative;
}
.hp-prod-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--gold); }
.hp-prod-img { 
    background: var(--beige-light); border-radius: 6px; aspect-ratio: 1; 
    display: flex; align-items: center; justify-content: center; margin-bottom: 15px;
    overflow: hidden;
}
.hp-prod-img img { width: 85%; height: 85%; object-fit: contain; transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.hp-prod-card:hover .hp-prod-img img { transform: scale(1.1); }

.hp-prod-name { font-size: 13px; color: var(--brown); margin-bottom: 8px; font-weight: 600; min-height: 42px; display: flex; align-items: center; justify-content: center; line-height: 1.4; padding: 0 10px; }
.hp-prod-price { font-size: 15px; font-weight: 700; color: var(--gold); }

@media (max-width: 1200px) {
    .hp-grid-container { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .hp-products-section { padding: 60px 24px; }
    .hp-grid-title { font-size: 32px; }
}
@media (max-width: 991px) {
    .hp-grid-container { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .hp-grid-container { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .hp-prod-name { font-size: 11px; padding: 0; min-height: auto; margin-bottom: 50px; }
    .hp-prod-card { padding: 10px; }
    .hp-grid-title { font-size: 28px; }
}


/* ── FEATURED HIGHLIGHT SECTION ── */
.highlight-section { 
    padding: 100px 48px; background: #fafafa; position: relative; overflow: hidden;
    display: flex; align-items: center; gap: 80px; min-height: 600px;
}
/* Background decorative elements */
.highlight-bg-circle { 
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(198,151,90,0.08) 0%, transparent 70%);
    top: -100px; left: -100px; z-index: 1;
}
.highlight-leaf { 
    position: absolute; right: -50px; bottom: 50px; width: 300px; opacity: 0.1; 
    filter: sepia(100%) hue-rotate(10deg); z-index: 1; pointer-events: none;
}

.highlight-image-box { 
    flex: 1; position: relative; z-index: 2; text-align: center;
}
.hi-img { 
    width: 100%; max-width: 500px; height: auto; 
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.highlight-content { 
    flex: 1; z-index: 2; display: flex; flex-direction: column; gap: 20px;
}
.hi-tag { font-weight: 700; color: var(--gold); letter-spacing: 0.15em; font-size: 11px; }
.hi-title { font-family: var(--font-serif); font-size: 64px; color: var(--brown); line-height: 1.1; }
.hi-sub { font-size: 18px; color: var(--muted); font-weight: 500; }
.hi-desc { color: var(--muted); line-height: 1.8; max-width: 550px; }

.hi-footer { display: flex; align-items: center; gap: 30px; margin-top: 20px; }
.hi-buy-btn { 
    background: #008a4f; color: white; border: none; padding: 16px 40px; 
    border-radius: 50px; font-weight: 700; font-size: 14px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
}
.hi-buy-btn:hover { background: #006b3e; transform: scale(1.05); }

.hi-price-box { display: flex; align-items: baseline; gap: 15px; }
.hi-price-now { font-size: 28px; font-weight: 700; color: var(--brown); }
.hi-price-old { font-size: 20px; color: #ccc; text-decoration: line-through; }

@media (max-width: 1024px) {
    .highlight-section { flex-direction: column; gap: 40px; text-align: center; padding: 60px 24px; }
    .hi-title { font-size: 48px; }
    .hi-desc { margin: 0 auto; }
    .hi-footer { justify-content: center; }
}

/* ── PRODUCT FEATURES SECTION ── */
.features-section { padding: 100px 48px; background: #fff; border-top: 1px solid var(--border); }
.features-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; 
    max-width: 1200px; margin: 0 auto;
}
.feature-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.feature-icon-box { 
    width: 80px; height: 80px; border-radius: 50%; background: var(--beige-light);
    display: flex; align-items: center; justify-content: center; position: relative;
    transition: all 0.4s; color: var(--gold);
}
.feature-icon-box::after { 
    content: ''; position: absolute; inset: -5px; border: 1px dashed var(--gold); 
    border-radius: 50%; opacity: 0; transition: 0.4s; transform: rotate(0);
}
.feature-item:hover .feature-icon-box { background: var(--gold); color: white; transform: translateY(-5px); }
.feature-item:hover .feature-icon-box::after { opacity: 1; transform: rotate(45deg); }

.feature-title { font-size: 15px; font-weight: 700; color: var(--brown); text-transform: uppercase; letter-spacing: 0.05em; }
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.5; max-width: 250px; }

@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ── VIDEO HIGHLIGHTS ── */
.video-highlights-section {
  padding: 50px 48px 100px 48px;
  background: var(--beige-light);
}
.vh-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px; 
}
.vh-row:first-child .vh-info {
  transform: translateY(-50px); /* Lift the text of the top product up */
}
.vh-row:nth-child(2) .vh-media {
  transform: translateY(-100px); /* Pull the bottom image up to overlap the gap */
}
.vh-row:nth-child(2) .vh-info {
  transform: translateY(-35px); /* Lift the text of the second product up slightly */
}
.vh-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.vh-reverse {
  flex-direction: row-reverse;
}
.vh-media {
  flex: 0 0 auto; /* Stop it from growing to 50% */
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.vh-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vh-media-wide {
  width: 440px;
  height: 520px;
}
.vh-media-tall {
  width: 460px;
  height: 560px;
}
.vh-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 420px;
}
.vh-title {
  font-family: 'Playfair Display', serif; /* New elegant font */
  font-size: clamp(40px, 5.5vw, 62px); /* Slightly larger */
  font-style: italic;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: none;
}
.vh-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}
.vh-btn {
  background: var(--brown) !important;
  color: #fff !important;
  border-radius: 40px;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.vh-btn svg {
  width: 16px;
  height: 16px;
  background: #fff;
  color: var(--brown);
  border-radius: 50%;
  padding: 2px;
  transition: transform var(--transition);
}
.vh-btn:hover { background: var(--gold) !important; }
.vh-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .vh-row, .vh-row.vh-reverse {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .vh-info {
    align-items: center;
  }
  .video-highlights-section {
    padding: 60px 24px;
  }
  .vh-media-wide, .vh-media-tall {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}

/* ── SHOP THE LOOK SECTION ── */
.look-section { padding: 100px 48px; background: #fff; border-top: 1px solid var(--border); }
.look-container { 
    display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 60px; 
    max-width: 1400px; margin: 0 auto;
}

/* Left: Image with hotspots */
.look-image-wrap { position: relative; border-radius: 20px; overflow: hidden; height: 650px; }
.look-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hotspot { 
    position: absolute; width: 28px; height: 28px; background: rgba(255,255,255,0.9); 
    border-radius: 50%; cursor: pointer; border: 4px solid var(--brown);
    box-shadow: 0 0 10px rgba(0,0,0,0.3); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; align-items: center; justify-content: center; z-index: 10;
}
.hotspot::after { 
    content: ''; position: absolute; width: 100%; height: 100%; 
    background: inherit; border-radius: 50%; z-index: -1; animation: hotspot-pulse 2s infinite;
}
.hotspot:hover { transform: scale(1.3); background: var(--gold); border-color: white; }
.hotspot.active { background: var(--gold); border-color: white; transform: scale(1.3); }

@keyframes hotspot-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Right Sidebar */
.look-sidebar { display: flex; flex-direction: column; background: #fdfaf7; padding: 40px; border-radius: 20px; border: 1px solid var(--border); }
.look-sidebar h2 { font-family: var(--font-serif); font-size: 32px; color: var(--brown); margin-bottom: 30px; }

.look-product-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.look-product-card { 
    display: flex; gap: 20px; align-items: center; padding: 15px;
    background: white; border-radius: 12px; border: 2px solid transparent; 
    transition: all 0.3s; cursor: pointer;
}
.look-product-card:hover, .look-product-card.active { border-color: var(--gold); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.lpc-img { width: 80px; height: 100px; background: var(--beige-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.lpc-img img { width: 80%; height: 80%; object-fit: contain; }

.lpc-info { flex: 1; }
.lpc-name { font-weight: 700; font-size: 15px; color: var(--brown); margin-bottom: 4px; }
.lpc-meta { color: var(--muted); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.lpc-price { font-weight: 700; color: var(--gold); font-size: 18px; margin-top: 5px; }

.add-all-btn { 
    width: 100%; background: var(--brown); color: white; border: none; padding: 20px;
    border-radius: 12px; font-weight: 700; font-size: 15px; cursor: pointer;
    transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.1em;
}
.add-all-btn:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(198,151,90,0.3); }

/* ── CHOOSE YOUR SHADE / MATCH SECTION ── */
.shade-section {
  padding: 20px 48px 100px; 
  background: #fff;
  text-align: center;
  position: relative;
}
.shade-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px; font-weight: 700; color: #1a1a1a;
  position: relative; display: inline-block;
  margin-bottom: 60px;
  z-index: 1;
}
.shade-title span { position: relative; }

.shade-selector-container {
  max-width: 600px; margin: 0 auto 50px;
}
.shade-options {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 30px; position: relative;
}
.shade-opt {
  cursor: pointer; text-align: center; width: 100px; transition: all 0.3s;
}
.shade-img-wrap {
  width: 100px; height: 50px; /* oval pill shape */
  border-radius: 50px; overflow: hidden;
  margin: 0 auto 10px; border: 2px solid transparent; padding: 2px;
  transition: all 0.3s ease;
}
.shade-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50px;
}
.shade-opt.active .shade-img-wrap { border-color: #2D4C3B; }
.shade-opt p { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; color: #666; transition: color 0.3s; margin:0;}
.shade-opt.active p { color: #1a1a1a; font-weight: 700; }

.shade-timeline {
  position: relative; height: 24px; margin-bottom: 50px;
}
.shade-track {
  position: absolute; top: 10px; left: 0; right: 0; height: 4px;
  background: #E5E0DA; border-radius: 2px;
}
.shade-fill {
  position: absolute; top: 10px; left: 0; height: 4px;
  background: #2D4C3B; border-radius: 2px; width: 0%; transition: width 0.4s ease;
}
.shade-handle {
  position: absolute; top: 2px; left: 0%; width: 20px; height: 20px;
  background: #2D4C3B; border-radius: 50%;
  border: 4px solid #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transform: translateX(-50%); transition: left 0.4s ease; pointer-events: none; z-index: 5;
}
.shade-points {
  position: absolute; top: 10px; left: 0; right: 0; height: 24px;
  display: flex; justify-content: space-between;
}
.shade-pt {
  width: 20px; height: 20px; transform: translateY(-8px); cursor: pointer; z-index: 10;
  border-radius: 50%; background: transparent;
}

/* Shade products grid below */
.shade-products {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; 
  max-width: 1200px; margin: 0 auto;
  opacity: 1; transition: opacity 0.3s;
}
.shade-products.fade { opacity: 0; }

/* ── SALE SECTION & DEALS OVERVIEW ── */
.sale-overview {
  padding: 40px 48px; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  background: #fff; /* White background for the whole section */
  margin-bottom: 40px;
}
.so-card {
  background: var(--beige-light); /* Theme color for the cards */
  border-radius: 20px;
  padding: 25px 20px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  display: flex; flex-direction: column;
}
.so-card h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700; color: var(--brown); 
  margin-top: 20px;
  margin-bottom: 10px;
}
.so-img-box {
  background: transparent; /* Removed background */
  border-radius: 16px; height: 260px;
  display: flex; align-items: center; justify-content: center; position: relative;
  margin-bottom: 15px; border: none; /* Removed border */
}
.so-img-box img { max-width: 70%; max-height: 85%; object-fit: contain; }
.so-timer {
  position: absolute; bottom: 0; left: -20px; transform: none;
  background: #d32f2f; color: white;
  padding: 10px 25px 10px 30px; border-radius: 0 40px 40px 0; font-weight: 700; font-size: 13px;
  box-shadow: 0 8px 25px rgba(211,47,47,0.4); white-space: nowrap; letter-spacing: 0.5px;
}
.so-badge {
  position: absolute; top: -10px; left: 0px;
  background: var(--gold); color: white; font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 40px;
}
.so-rating {
  position: absolute; top: -10px; right: 0px; background: transparent;
  padding: 4px 0px; border-radius: 40px; font-size: 13px; font-weight: 700;
  color: var(--gold); display: flex; align-items: center; gap: 4px;
}
.so-rating svg { display: none; } /* User wants text stars instead */

.so-links { display: flex; flex-direction: column; gap: 0; }
.so-link-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid #f0f0f0; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a; font-weight: 600; font-size: 15px; transition: color 0.3s;
}
.so-link-item:hover { color: #f3a021; }
.so-link-item svg { width: 16px; height: 16px; color: #999; transition: transform 0.3s; }
.so-link-item:hover svg { transform: translateX(5px); color: #f3a021; }
.so-link-item:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .shade-products { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sale-overview { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 500px) {
  .shade-products { grid-template-columns: 1fr; }
  .sale-overview { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
    .look-container { grid-template-columns: 1fr; }
    .look-image-wrap { height: 500px; }
    .look-section { padding: 60px 24px; }
}

/* ── RECOMMENDED BADGE ── */
.sc-prod-card {
    position: relative; 
    overflow: hidden; 
    background: #FAF6F0; 
    border: 1px solid #E5E0DA; 
    border-radius: 16px; 
    padding: 25px 20px; 
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sc-prod-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.sc-prod-card img {
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
    height: 200px;
    object-fit: contain;
}
.rec-badge {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  background: #1C100A; /* Dark Brown background */
  color: #fcf7f5;    /* Theme color for text */
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 5;
  pointer-events: none;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-50%) scale(1); opacity: 0.9; }
  50% { transform: translateX(-50%) scale(1.05); opacity: 1; }
  100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
}

/* ── DASHBOARD SECTION ── */
.dashboard-container {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .dashboard-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

.db-sidebar {
  background: var(--beige-light);
  border-radius: 12px;
  padding: 30px 20px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.db-user-info {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.db-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-family: var(--font-serif);
  margin: 0 auto 15px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.db-user-info h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--brown);
}

.db-user-info p {
  font-size: 13px;
  color: var(--muted);
}

.db-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.db-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
}

.db-nav-link svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.db-nav-link:hover, .db-nav-link.active {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.db-nav-link.active svg {
  opacity: 1;
  color: var(--gold);
}

.db-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.db-welcome {
  margin-bottom: 10px;
}

.db-welcome h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--brown);
  margin-bottom: 5px;
}

.db-welcome p {
  color: var(--muted);
}

.db-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .db-stats { grid-template-columns: 1fr; }
}

.stat-card {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
}

.stat-icon svg { width: 24px; height: 24px; }

.stat-info h5 {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.stat-info .stat-val {
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
}

.db-section {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

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

.db-sec-header h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--brown);
}

.view-all {
  font-size: 13px;
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}

.db-table-wrap {
  overflow-x: auto;
}

.db-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.db-table th {
  padding: 16px 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: var(--beige-light);
  border-bottom: 1px solid var(--border);
}

.db-table td {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.db-table tr:last-child td {
  border-bottom: none;
}

.status-pill {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-delivered { background: #e6f4ea; color: #1e8e3e; }
.status-shipped { background: #e8f0fe; color: #1a73e8; }
.status-pending { background: #fef7e0; color: #f9ab00; }

.order-items-brief {
  font-size: 12px;
  color: var(--muted);
}

/* ── FEEDBACK / TESTIMONIALS SECTION ── */
.feedback-section {
  padding: 80px 48px;
  background: #fff;
}
.fb-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: #faf6f0;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: var(--brown);
}
.fb-title {
  font-family: 'Playfair Display', var(--font-serif);
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.fb-subtitle {
  font-size: 14px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 50px;
  line-height: 1.6;
}
.fb-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.fb-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  color: var(--text);
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.fb-stars {
  color: var(--gold); /* Highlighted stars instead of black */
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 20px;
}
.fb-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  flex: 1;
  margin-bottom: 30px;
  font-style: italic;
}
.fb-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--beige);
  flex-shrink: 0;
}
.fb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fb-user-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2px;
}
.fb-user-info span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .feedback-section {
    padding: 60px 24px;
  }
  .fb-wrapper {
    padding: 40px 20px;
  }
}
