/* ============================================
   ULTRA PREMIUM LUXURY STYLES – SHAJAR STUDIO
   ============================================ */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F7F6;
  --bg-light: #FFFFFF;
  --text-primary: #111111;
  --text-body: #1d1d1d;
  --text-muted: rgba(17, 17, 17, 0.8);
  --text-soft: rgba(17, 17, 17, 0.68);
  --white: #111111;
  --gold: #1f746d;
  --gold-light: #2a8f86;
  --silver: #2F3837;
  --border: #DDE7E5;
  --success: #28A745;
  --sale: #DC3545;
  --ink-rgb: 17, 17, 17;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-height: 72px;
  --header-top: 38px;
  --body-text-size: 16px;
  --body-text-weight: 500;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); overflow-x: hidden; font-size: var(--body-text-size); font-weight: var(--body-text-weight); line-height: 1.7; }
body, p, li, span, a, button, input { color: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.02em; }
p, li, span, a, button, input, select, textarea { font-weight: 500; }

.announcement-item,
.mega-col a,
.mega-column ul li a,
.dropdown-header strong,
.dropdown-header span,
.dropdown-item,
.product-brand,
.product-name,
.rating-count,
.price-current,
.price-old,
.featured-col-title,
.featured-col-story,
.why-card p,
.review-text,
.blog-excerpt,
.footer-brand p,
.footer-col ul li a,
.footer-bottom p,
.footer-bottom-links a,
.social-link,
.trust-badge,
.payment-chip,
.newsletter-desc,
.newsletter-guarantee,
.newsletter-title,
.newsletter-input,
.newsletter-input::placeholder {
  color: var(--text-primary) !important;
}

.product-card .rating-count,
.product-card .price-old,
.product-card .product-name,
.product-card .product-brand,
.product-card .action-btn,
.product-card .stars {
  color: var(--text-primary) !important;
}

.product-card .price-current {
  color: var(--gold) !important;
}

.product-card .price-old {
  opacity: 1;
  text-decoration: line-through;
}

.footer-brand p,
.footer-col ul li a,
.footer-bottom p,
.footer-bottom-links a,
.trust-badge,
.payment-chip,
.newsletter-desc,
.newsletter-guarantee,
.search-input::placeholder,
.search-overlay-content .search-result-item,
.dropdown-header span {
  color: var(--text-body) !important;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
  background: var(--bg-secondary);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(31, 116, 109,0.2);
}
.announcement-track {
  display: flex;
  gap: 80px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.announcement-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-body);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}
.announcement-item .gold-dot { color: var(--gold); font-size: 14px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: var(--transition);
  padding: 0 48px;
  background: #1f746d;
}
.site-header.transparent { background: #1f746d; }
.site-header.solid {
  background: #1f746d;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 28px rgba(15, 40, 38, 0.18);
  top: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
}
.logo img { height: 70px; width: auto; }
.logo span { color: var(--gold); }

/* ========== LOGO CIRCLE BADGE ========== */
/* Sized bigger than the header height on purpose, so it breaks out
   of the header bar's top/bottom edge like the reference logo mark. */
.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #E8EAE9;
  border: 1px solid #C0C0C0;
  flex-shrink: 0;
  margin: -14px 0;
  padding: 8px;
  box-shadow:
    0 0 0 6px #FFFFFF,
    0 0 0 10px #1f746d,
    0 6px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}
.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-badge-sm { width: 64px; height: 64px; margin: 0; box-shadow: 0 0 0 4px #FFFFFF, 0 0 0 7px #1f746d, 0 6px 20px rgba(0,0,0,0.25); }
.main-nav { display: flex; gap: 36px; align-items: center; }
.nav-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ffffff;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.9);
  transition: width 0.3s ease;
}
.nav-item:hover { color: #ffffff; }
.nav-item:hover::after { width: 100%; }
.header-icons { display: flex; gap: 20px; align-items: center; }
.header-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  font-size: 15px;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  position: relative;
}
.header-icon:hover { border-color: rgba(255,255,255,0.7); color: #ffffff; background: rgba(255,255,255,0.12); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ========== MEGA MENU ========== */
/* JS (assets/js/main.js → initMegaMenu) adds/removes .mega-open on
   .has-mega with a short close-delay on mouseleave, so a momentary
   gap-crossing or fast mouse movement doesn't flicker the menu shut
   and reopen. The :hover rule is kept as a no-JS fallback. */
.has-mega.mega-open .mega-menu,
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(920px, 92vw);
  max-height: min(78vh, 640px);
  overflow-y: auto;
  /* Solid background, no backdrop-filter. backdrop-filter forces a
     continuous re-blur of everything behind the menu on every repaint
     of the opacity/transform transition, which is unstable on some
     browsers/GPU drivers and shows up as exactly the ghosted,
     see-through flashing you're seeing. A solid background needs no
     such recompute. */
  background: #ffffff;
  border: 1px solid rgba(31, 116, 109,0.15);
  border-radius: 18px;
  padding: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 24px 64px rgba(15, 40, 38, 0.16);
}
/* Invisible bridge closing the gap between the trigger link and the
   top of the menu (top: calc(100% + 24px) leaves a 24px dead zone),
   so moving the mouse straight down never leaves the hoverable area. */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
}
.mega-menu-container {
  display: grid;
  grid-template-columns: 1fr 240px;
  align-items: start;
}
.mega-menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px 20px;
  padding: 32px 28px;
  align-content: start;
}
.mega-col h4 {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-col h4 i { font-size: 12px; }
.mega-col a {
  display: block;
  font-size: 12px;
  color: #24322f;
  padding: 5px 0;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}
.mega-col a:hover { color: var(--gold); }

/* Leaf category with no subcategories -> a compact tile, not a lonely heading */
.mega-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 12px;
  background: rgba(31, 116, 109, 0.04);
  border: 1px solid rgba(31, 116, 109, 0.08);
  transition: var(--transition);
  align-self: start;
}
.mega-tile:hover {
  background: rgba(31, 116, 109, 0.09);
  border-color: rgba(31, 116, 109, 0.25);
  transform: translateY(-2px);
}
.mega-tile-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.mega-tile-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #24322f;
}

/* Sidebar: Gender + Color */
.mega-menu-sidebar {
  background: var(--bg-secondary);
  border-left: 1px solid rgba(31, 116, 109, 0.1);
  padding: 32px 24px;
  align-self: stretch;
  border-radius: 0 18px 18px 0;
}
.mega-sidebar-block + .mega-sidebar-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 116, 109, 0.1);
}
.mega-sidebar-block h4 {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.mega-gender-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gender-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #24322f;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(31, 116, 109, 0.1);
  transition: var(--transition);
}
.gender-pill i { color: var(--gold); width: 14px; text-align: center; }
.gender-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateX(3px);
}
.gender-pill:hover i { color: #fff; }

/* Hover dropdown showing parent categories for a gender (e.g. hovering
   "Men" shows only top-level categories that have men's products —
   never subcategories). */
.gender-pill-wrap {
  position: relative;
}
.gender-cat-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 10px;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(31, 116, 109, 0.15);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}
.gender-pill-wrap:hover .gender-cat-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.gender-cat-dropdown a {
  font-size: 12px;
  font-weight: 500;
  color: #24322f;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.gender-cat-dropdown a:hover {
  background: rgba(31, 116, 109, 0.08);
  color: var(--gold);
}

.mega-color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.mega-color-swatch {
  display: block;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(31,116,109,0.18);
  transition: var(--transition);
}
.mega-color-swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--gold);
}
.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(var(--ink-rgb),0.55);
  transition: color 0.2s;
}
.mega-view-all i { font-size: 9px; }
.mega-view-all:hover { color: var(--gold); }

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

@media (max-width: 1200px) {
  .mega-menu { width: min(760px, 92vw); }
  .mega-menu-container { grid-template-columns: 1fr 210px; }
  .mega-menu-categories { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

/* ========== SEARCH OVERLAY ========== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-form { width: 600px; max-width: 90vw; }
.search-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(var(--ink-rgb),0.25);
  color: var(--white);
  font-size: 42px;
  font-family: var(--font-head);
  padding: 12px 0;
  outline: none;
}
.search-input::placeholder { color: rgba(var(--ink-rgb),0.35); }
.search-close {
  position: absolute;
  top: 30px; right: 40px;
  font-size: 28px;
  cursor: pointer;
  color: rgba(11,15,14,0.7);
  transition: color 0.2s;
  background: none;
  border: none;
}
.search-close:hover { color: var(--gold); }

/* ========== CART DRAWER ========== */
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2001;
  transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(31, 116, 109,0.1);
}
.cart-drawer.open { right: 0; }
.cart-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.cart-drawer-overlay.active { opacity: 1; visibility: visible; }
.cart-header {
  padding: 28px;
  border-bottom: 1px solid rgba(var(--ink-rgb),0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--white);
}
.cart-close { background: none; border: none; color: #0B0F0E; font-size: 20px; cursor: pointer; transition: color 0.2s; }
.cart-close:hover { color: var(--gold); }
.cart-body { flex: 1; overflow-y: auto; padding: 28px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(var(--ink-rgb),0.06);
}
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: 4px;
  background: var(--bg-primary);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-brand { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.cart-item-name { font-size: 13px; color: var(--white); margin: 4px 0; }
.cart-item-price { font-size: 14px; color: var(--gold); font-weight: 600; }
.cart-footer { padding: 28px; border-top: 1px solid rgba(var(--ink-rgb),0.06); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 18px; }
.cart-total span { font-size: 13px; color: rgba(var(--ink-rgb),0.6); }
.cart-total strong { font-size: 18px; font-family: var(--font-head); color: var(--gold); }
.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-checkout:hover { background: var(--gold-light); }

/* ========== HERO SECTION ========== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(31, 116, 109,0.08) 0%, transparent 60%),
              linear-gradient(135deg, #f6f8f7 0%, #ffffff 50%, #eef4f3 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  opacity: 0.15;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(31, 116, 109,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(31, 116, 109,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { padding-top: 60px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--ink-rgb),0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(31, 116, 109,0.3); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(var(--ink-rgb),0.25);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-body);
  letter-spacing: 0.5px;
  font-weight: 500;
}
.trust-item .check { color: var(--gold); font-size: 13px; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  opacity: 0;
  animation: fadeIn 1.2s 0.6s forwards;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.hero-image-stage {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(31, 116, 109, 0.25);
  border: 1px solid rgba(31, 116, 109, 0.15);
}
.hero-image-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-color: var(--bg-secondary);
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 6s ease;
}
.hero-image-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 116, 109, 0) 55%, rgba(10, 20, 18, 0.45) 100%);
  pointer-events: none;
}
.hero-image-badge {
  position: absolute;
  left: -28px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-primary);
  border: 1px solid rgba(31, 116, 109, 0.15);
  border-radius: 16px;
  padding: 14px 20px 14px 14px;
  box-shadow: 0 20px 45px rgba(15, 40, 38, 0.18);
  animation: badgeFloat 5s ease-in-out infinite;
}
.hero-image-badge-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.hero-image-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.hero-image-badge-text strong {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--white);
}
.hero-image-badge-text small {
  font-size: 11px;
  color: var(--text-body);
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-image-dots {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-image-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.hero-image-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--gold);
  border-color: var(--gold);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
.scroll-text { font-size: 12px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; font-weight: 800; line-height: 1; }
.scroll-arrow { font-size: 20px; line-height: 1; font-weight: 800; display: inline-block; transform: translateY(1px); }

/* ========== KEYFRAMES ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ========== SECTION COMMONS ========== */
.section { padding: 120px 48px; }
.section-inner { max-width: 1440px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.8vw, 56px);
  color: var(--white);
  line-height: 1.15;
}
.section-subtitle {
  font-size: 15px;
  color: rgba(var(--ink-rgb),0.7);
  margin-top: 12px;
  max-width: 500px;
  line-height: 1.8;
  font-weight: 500;
}
.section-header { margin-bottom: 60px; }
.section-header.flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
/* OBSERVE ANIMATION */
.obs { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.obs.visible { opacity: 1; transform: translateY(0); }

/* ========== FEATURED CATEGORIES ========== */
.categories-section { background: var(--bg-secondary); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
}
.cat-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.category-card:hover .cat-bg { transform: scale(1.06); }
.cat-bg-1 {
  background: linear-gradient(160deg, #1a1208, #0d0d0d),
              radial-gradient(circle at 60% 40%, rgba(31, 116, 109,0.12), transparent 60%);
}
.cat-bg-2 {
  background: linear-gradient(160deg, #0d0f1a, #0d0d0d),
              radial-gradient(circle at 40% 60%, rgba(100,120,200,0.08), transparent 60%);
}
.cat-bg-3 {
  background: linear-gradient(160deg, #0f1a0d, #0d0d0d),
              radial-gradient(circle at 50% 50%, rgba(100,180,100,0.05), transparent 60%);
}
.cat-bg-4 {
  background: linear-gradient(160deg, #1a0d14, #0d0d0d),
              radial-gradient(circle at 40% 40%, rgba(180,100,120,0.07), transparent 60%);
}
.cat-icon-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cat-icon { width: 160px; height: 160px; opacity: 0.6; transition: var(--transition); max-width: 60%; }
.category-card:hover .cat-icon { opacity: 0.9; transform: scale(1.05); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 40%, rgba(0,0,0,0.2) 100%);
}
.cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
}
.cat-count {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.cat-name {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
}
.cat-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(31, 116, 109,0.3);
  padding-bottom: 4px;
  transition: gap 0.3s ease;
}
.category-card:hover .cat-explore { gap: 14px; }

/* ========== PRODUCT CARDS ========== */
.product-card {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  opacity: 1;
}
.product-img-svg {
  width: 180px;
  height: 180px;
  transition: transform 0.6s ease;
  opacity: 0.8;
  object-fit: cover;
}
.product-card:hover .product-img-svg { transform: scale(1.06); opacity: 1; }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 10;
  display: block;
  line-height: 1;
  isolation: isolate;
}

.badge-sale,
.badge-offer {
  background: #CC0000;
  color: #FFFFFF;
}

.badge-new {
  background: #1f746d;
  color: #0F0F0F;
}

.badge-best {
  background: #1f746d;
  color: #0F0F0F;
}
.product-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}
@media (hover: hover) and (pointer: fine) {
  .product-actions {
    transform: translateX(50px);
    transition: transform 0.3s ease;
  }
  .product-card:hover .product-actions { transform: translateX(0); }
}
.action-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(31, 116, 109, 0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  color: var(--gold);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}
.action-btn:hover { background: var(--gold); border-color: var(--gold); color: #ffffff; }
.product-info { padding: 20px; }
.product-brand { font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; font-weight: 700; }
.product-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--text-primary); margin: 6px 0; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.stars { color: var(--gold); font-size: 13px; display: inline-flex; align-items: center; gap: 2px; }
.stars i { color: var(--gold) !important; }
.rating-count { font-size: 11px; color: var(--text-primary); font-weight: 700; }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.price-current { font-size: 20px; color: var(--gold); font-weight: 800; font-family: var(--font-head); }
.price-old { font-size: 14px; color: var(--text-primary); text-decoration: line-through; opacity: 0.8; font-weight: 600; }
.btn-add-cart {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(31, 116, 109,0.3);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-add-cart:hover { background: var(--gold); color: var(--bg-primary); }

/* ========== PRODUCT GRID ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.load-more-wrap { text-align: center; margin-top: 48px; }

/* ========== FEATURED COLLECTION ========== */
.featured-col-section { background: var(--bg-secondary); }
.featured-col-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.featured-col-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7faf9 0%, #edf4f3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}
.featured-col-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.15));
}
.featured-big-svg { width: 300px; height: 300px; opacity: 1; max-width: 70%; filter: drop-shadow(0 16px 24px rgba(31,116,109,0.12)); }
.featured-col-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-col-tag {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.featured-col-tag::before { content: ''; width: 50px; height: 1px; background: var(--gold); }
.featured-col-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 56px);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.featured-col-story {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 400px;
}
.featured-col-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(var(--ink-rgb),0.06);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 32px; color: var(--gold); display: block; font-weight: 700; }
.stat-label { font-size: 10px; letter-spacing: 2px; color: rgba(var(--ink-rgb),0.4); text-transform: uppercase; margin-top: 4px; }

/* ========== WHY CHOOSE US ========== */
.why-section { background: var(--bg-primary); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(var(--ink-rgb),0.04);
  border: 1px solid rgba(var(--ink-rgb),0.04);
}
.why-card {
  background: var(--bg-primary);
  padding: 48px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(31, 116, 109,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover { background: var(--bg-secondary); }
.why-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(31, 116, 109,0.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.why-card:hover .why-icon { border-color: var(--gold); background: rgba(31, 116, 109,0.05); }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p { font-size: 13px; color: var(--text-body); line-height: 1.7; }

/* ========== SPECIAL OFFER BANNER ========== */
.offer-banner {
  padding: 80px 48px;
  background: linear-gradient(135deg, rgba(31, 116, 109,0.08) 0%, transparent 50%), var(--bg-secondary);
  border-top: 1px solid rgba(31, 116, 109,0.1);
  border-bottom: 1px solid rgba(31, 116, 109,0.1);
  text-align: center;
}
.offer-eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.offer-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 72px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.offer-sub {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 28px);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 32px;
}
.offer-countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.countdown-unit { text-align: center; }
.countdown-num {
  display: block;
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--white);
  font-weight: 700;
  background: rgba(var(--ink-rgb),0.04);
  border: 1px solid rgba(31, 116, 109,0.15);
  width: 80px;
  line-height: 80px;
  margin-bottom: 6px;
}
.countdown-label { font-size: 9px; letter-spacing: 3px; color: rgba(var(--ink-rgb),0.4); text-transform: uppercase; }

/* ========== TRENDING DARK SECTION ========== */
.trending-section { background: var(--bg-primary); padding-bottom: 80px; }
.trending-section .product-card { background: #111; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--bg-secondary); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-primary);
  border: 1px solid rgba(var(--ink-rgb),0.05);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}
.review-card:hover { border-color: rgba(31, 116, 109,0.2); transform: translateY(-4px); }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-head);
  font-size: 80px;
  color: rgba(31, 116, 109,0.08);
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.review-text { font-size: 14px; color: rgba(var(--ink-rgb),0.6); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8a6a00);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--bg-primary);
  font-family: var(--font-head);
}
.reviewer-name { font-weight: 600; font-size: 14px; color: var(--white); }
.reviewer-badge { font-size: 10px; color: var(--gold); display: flex; align-items: center; gap: 4px; }

/* ========== BRAND LOGOS ========== */
.brands-section { padding: 60px 48px; background: var(--bg-primary); border-top: 1px solid rgba(var(--ink-rgb),0.04); }
.brands-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 40px; }
.brands-track-wrap { overflow: hidden; }
.brands-track {
  display: flex;
  gap: 0;
  animation: brandsScroll 20s linear infinite;
}
.brand-logo {
  min-width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-right: 1px solid rgba(var(--ink-rgb),0.04);
  cursor: pointer;
}
.brand-logo span {
  font-family: var(--font-head);
  font-size: 16px;
  color: rgba(var(--ink-rgb),0.2);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
  font-weight: 700;
}
.brand-logo:hover span { color: var(--gold); }
@keyframes brandsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== INSTAGRAM GALLERY ========== */
.gallery-section { padding: 0; }
.gallery-header { padding: 80px 48px 40px; background: var(--bg-secondary); text-align: center; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--bg-primary);
}
.ig-item {
  aspect-ratio: 1;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-content { font-size: 60px; transition: transform 0.5s ease; }
.ig-item:hover .ig-content { transform: scale(1.1); }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 116, 109,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  opacity: 0;
  transition: var(--transition);
}
.ig-item:hover .ig-overlay { opacity: 1; }

/* ========== BLOG ========== */
.blog-section { background: var(--bg-secondary); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-primary);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.blog-img {
  height: 220px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img { transform: scale(1.03); }
.blog-body { padding: 28px; }
.blog-cat { font-size: 9px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.blog-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.35; }
.blog-excerpt { font-size: 13px; color: rgba(var(--ink-rgb),0.68); line-height: 1.7; margin-bottom: 20px; }
.blog-read-more {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(31, 116, 109,0.3);
  padding-bottom: 2px;
  transition: gap 0.3s;
  cursor: pointer;
}
.blog-card:hover .blog-read-more { gap: 14px; }

/* ========== NEWSLETTER ========== */
.newsletter-section {
  padding: 120px 48px;
  background: var(--bg-primary);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 116, 109,0.05), transparent 70%);
}
.newsletter-inner { position: relative; z-index: 1; max-width: 1440px; margin: 0 auto; }
.newsletter-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 58px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.newsletter-title em { color: var(--gold); }
.newsletter-desc {
  font-size: 14px;
  color: #E9E9E9;
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 18px 24px;
  background: rgba(var(--ink-rgb),0.04);
  border: 1px solid rgba(var(--ink-rgb),0.1);
  border-right: none;
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
  min-width: 0;
}
.newsletter-input:focus { border-color: rgba(31, 116, 109,0.4); }
.newsletter-input::placeholder { color: rgba(var(--ink-rgb),0.25); }
.newsletter-btn {
  padding: 18px 32px;
  background: var(--gold);
  border: none;
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold-light); }

/* ========== TRUST & PAYMENT ========== */
.trust-section { padding: 60px 48px; background: var(--bg-secondary); border-top: 1px solid rgba(var(--ink-rgb),0.04); }
.trust-inner { max-width: 1440px; margin: 0 auto; }
.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-badges { display: flex; gap: 36px; flex-wrap: wrap; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(var(--ink-rgb),0.5);
}
.trust-badge-icon { font-size: 20px; color: var(--gold); }
.payment-methods { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.payment-chip {
  padding: 6px 16px;
  background: rgba(var(--ink-rgb),0.05);
  border: 1px solid rgba(var(--ink-rgb),0.08);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(var(--ink-rgb),0.5);
  letter-spacing: 0.5px;
}

/* ========== FOOTER ========== */
.site-footer { background: #f5f7f6; border-top: 1px solid rgba(31, 116, 109,0.1); }
.site-footer .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 48px 60px;
}
.footer-brand .logo { font-size: 22px; margin-bottom: 20px; display: inline-block; }
.footer-brand p { font-size: 13px; color: rgba(17, 17, 17, 0.82); line-height: 1.8; margin-bottom: 24px; max-width: 280px; font-weight: 600; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(17,17,17,0.9);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 800;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(17,17,17,0.82);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid rgba(31,116,109,0.14);
  color: #0B0F0E;
  font-size: 12px;
  font-family: var(--font-body);
  outline: none;
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(17,17,17,0.45); }
.footer-newsletter button {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  border: none;
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(31,116,109,0.08);
  padding: 24px 48px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(17,17,17,0.82); font-weight: 600; }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-bottom-links a { font-size: 12px; color: rgba(17,17,17,0.82); transition: color 0.2s; font-weight: 600; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.mobile-menu-btn span {
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  position: fixed;
  top: 0; left: -100%;
  width: 85vw;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 3000;
  padding: 60px 36px;
  transition: left 0.4s ease;
  overflow-y: auto;
  border-right: 1px solid rgba(31, 116, 109,0.1);
}
.mobile-menu.open { left: 0; }
.mobile-nav { display: flex; flex-direction: column; gap: 0; }
.mobile-nav a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb),0.7);
  padding: 16px 0;
  border-bottom: 1px solid rgba(var(--ink-rgb),0.06);
  display: block;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: rgba(var(--ink-rgb),0.5);
  font-size: 24px;
  cursor: pointer;
}

/* ========== MOBILE SHOP PANEL (accordion) ========== */
.mobile-shop-block { border-bottom: 1px solid rgba(var(--ink-rgb),0.06); }
.mobile-shop-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb),0.7);
  padding: 16px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-shop-toggle:hover { color: var(--gold); }
.mobile-shop-toggle i { font-size: 11px; transition: transform 0.3s ease; color: var(--gold); }
.mobile-shop-toggle.open i { transform: rotate(180deg); }

.mobile-shop-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-shop-panel.open { max-height: 900px; }

.mobile-shop-panel a.mobile-shop-viewall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--gold);
  padding: 10px 14px;
  margin-bottom: 14px;
  background: rgba(31, 116, 109, 0.06);
  border-radius: 10px;
  border: none;
}
.mobile-shop-viewall i { font-size: 10px; }

.mobile-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.mobile-shop-panel a.mobile-cat-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(31, 116, 109, 0.1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: none;
  color: #24322f;
}
.mobile-cat-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.mobile-shop-section { margin-bottom: 20px; }
.mobile-shop-label {
  display: block;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.mobile-gender-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.mobile-shop-panel a.mobile-gender-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  color: #24322f;
  padding: 9px 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(31, 116, 109, 0.15);
}
.mobile-gender-pill i { color: var(--gold); font-size: 11px; }

.mobile-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30px, 1fr));
  gap: 10px;
  max-width: 260px;
}
.mobile-shop-panel a.mobile-color-swatch {
  display: block;
  width: 30px; height: 30px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(31,116,109,0.2);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .product-grid,
  .new-arrivals-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
  .site-footer .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { padding-top: 0; }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-visual { height: 420px; }
  .hero-image-frame { max-width: 460px; }
  .hero-image-badge { left: 50%; transform: translateX(-50%); bottom: -18px; }
  @keyframes badgeFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
  }
  .hero-trust { justify-content: center; }
  .hero-btns { justify-content: center; }
  
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid .category-card { height: 320px; }
  
  .product-grid,
  .new-arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  
  .featured-col-inner { grid-template-columns: 1fr; }
  .featured-col-image { min-height: 300px; }
  .featured-col-content { padding: 40px 30px; }
  
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  
  .site-header { padding: 0 20px; }
  .section { padding: 80px 24px; }
  
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  
  .site-footer .footer-top { 
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 60px 24px 40px;
  }
  .footer-bottom-inner {
    padding: 16px 24px;
    flex-direction: column;
    text-align: center;
  }
  
  .offer-banner { padding: 60px 24px; }
  .newsletter-section { padding: 80px 24px; }
}

@media (max-width: 768px) {
  .hero { height: auto; min-height: 100vh; }
  .hero-inner { padding: 100px 20px 60px; }
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
  
  .section { padding: 60px 16px; }
  .section-header.flex { flex-direction: column; align-items: flex-start; }
  
  .category-slider-item .category-card { height: 280px; }
  
  .product-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  
  .featured-col-inner { min-height: auto; }
  .featured-col-image { min-height: 200px; }
  .featured-col-content { padding: 30px 20px; }
  .featured-col-story { max-width: 100%; }
  .featured-col-stats { gap: 20px; }
  
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 30px 20px; }
  
  .review-card { padding: 24px; }
  
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  
  .countdown-num { width: 60px; line-height: 60px; font-size: 28px; }
  
  .offer-title { font-size: clamp(28px, 6vw, 40px); }
  
  .site-footer .footer-top { grid-template-columns: 1fr; gap: 24px; padding: 40px 16px 30px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; text-align: center; }
  
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-input { border-right: 1px solid rgba(var(--ink-rgb),0.1); }
  .newsletter-btn { width: 100%; justify-content: center; }
  
  .gallery-header { padding: 40px 16px 20px; }
  
  .trust-row { flex-direction: column; align-items: center; }
  .trust-badges { justify-content: center; gap: 16px; }
  .payment-methods { justify-content: center; }
  
  .cart-drawer { width: 100%; right: -100%; }
}

@media (max-width: 576px) {
  .product-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .categories-grid .category-card { height: 280px; }
  
  .hero-title { font-size: 28px; }
  .hero-eyebrow { font-size: 8px; letter-spacing: 3px; }
  .hero-visual { height: 360px; }
  .hero-image-frame { max-width: 340px; }
  .hero-image-badge { padding: 10px 16px 10px 10px; gap: 10px; }
  .hero-image-badge-icon { width: 28px; height: 28px; font-size: 12px; }
  .hero-image-badge-text strong { font-size: 11px; }
  .hero-image-badge-text small { font-size: 10px; }
  
  .section-title { font-size: 24px; }
  .section-eyebrow { font-size: 8px; letter-spacing: 3px; }
  
  .featured-col-title { font-size: 24px; }
  .featured-col-tag { font-size: 8px; letter-spacing: 3px; }
  .stat-num { font-size: 24px; }
  
  .offer-countdown { gap: 10px; }
  .countdown-num { width: 50px; line-height: 50px; font-size: 22px; }
  .countdown-label { font-size: 7px; letter-spacing: 2px; }
  
  .brand-logo { min-width: 120px; padding: 0 15px; }
  .brand-logo span { font-size: 12px; letter-spacing: 2px; }
  
  .footer-bottom-links { justify-content: center; }
  
  .logo-badge {
    width: 64px;
    height: 64px;
    margin: -8px 0;
    box-shadow: 0 0 0 4px #FFFFFF, 0 0 0 7px #1f746d, 0 6px 20px rgba(0,0,0,0.25);
  }
  .header-inner { height: 60px; }
  .header-icons { gap: 12px; }
  .header-icon { width: 32px; height: 32px; font-size: 13px; }
  
  .site-header { padding: 0 12px; }
  .site-header { top: 38px; }
  .site-header.solid { top: 0; }
  
  .mobile-menu { padding: 40px 20px; }
}

/* ============================================
   PROMOTIONAL POPUP STYLES
   ============================================ */
.luxury-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.luxury-popup-overlay.active {
    visibility: visible;
    opacity: 1;
}
.luxury-popup {
    background: var(--bg-secondary);
    border-radius: 24px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 30px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    animation: popupFadeIn 0.4s ease;
    border: 1px solid rgba(31, 116, 109,0.2);
}
@keyframes popupFadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(var(--ink-rgb),0.1);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: rgba(var(--ink-rgb),0.6);
    transition: all 0.2s;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-close:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: rotate(90deg);
}
.popup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.popup-image {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.popup-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
}
.popup-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.2;
}
.popup-description {
    color: rgba(var(--ink-rgb),0.65);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.9rem;
}
.popup-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    width: fit-content;
    font-size: 0.85rem;
}
.popup-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ========== BREADCRUMB ========== */
.breadcrumb-container {
    background: var(--bg-secondary);
    padding: 12px 0;
    border-bottom: 1px solid rgba(31, 116, 109,0.1);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(var(--ink-rgb),0.5);
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .separator { color: rgba(var(--ink-rgb),0.3); }

/* ========== CART DRAWER BUTTONS ========== */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.cart-item-quantity button {
    background: rgba(var(--ink-rgb),0.1);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cart-item-quantity button:hover {
    background: #1f746d;
    color: #0F0F0F;
}
.cart-item-remove {
    margin-left: 10px;
    background: rgba(220,53,69,0.2) !important;
    color: #dc3545 !important;
}
.cart-item-remove:hover {
    background: #dc3545 !important;
    color: white !important;
}

/* ========== PRODUCT PURCHASES COUNTER ========== */
.product-purchases {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 8px 0;
    font-size: 0.7rem;
    color: var(--text-primary);
    font-weight: 600;
}
.product-purchases i {
    color: var(--gold);
    font-size: 0.65rem;
}
.product-purchases span {
    color: var(--text-primary) !important;
}

/* ========== WISHLIST COUNT ========== */
.wishlist-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ========== ACCOUNT ICON AND DROPDOWN ========== */
.account-icon {
    position: relative;
    cursor: pointer;
}
.account-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
}
.account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background: var(--bg-secondary);
    border: 1px solid rgba(31, 116, 109,0.15);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.account-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-header {
    padding: 8px 16px;
}
.dropdown-header strong {
    display: block;
    color: white;
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.dropdown-header span {
    display: block;
    color: rgba(var(--ink-rgb),0.5);
    font-size: 0.7rem;
}
.dropdown-divider {
    height: 1px;
    background: rgba(var(--ink-rgb),0.06);
    margin: 8px 0;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: rgba(var(--ink-rgb),0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background: rgba(31, 116, 109,0.1);
    color: var(--gold);
    padding-left: 20px;
}
.dropdown-item i {
    width: 20px;
    font-size: 0.9rem;
}
.dropdown-item.logout {
    color: #dc3545;
}
.dropdown-item.logout:hover {
    background: rgba(220,53,69,0.1);
    color: #dc3545;
}

/* ========== SIMPLE DROPDOWN (About: About Us / Contact Us / Blog) ========== */
/* Same trigger pattern as .has-mega above: JS toggles .menu-open on
   .has-simple-menu, :hover is the no-JS fallback. */
.has-simple-menu.menu-open .simple-menu,
.has-simple-menu:hover .simple-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.simple-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: var(--bg-secondary);
  border: 1px solid rgba(31, 116, 109,0.15);
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
/* Invisible bridge closing the 15px gap between the "About" link and
   the top of the menu, so moving the mouse straight down never leaves
   the hoverable area. */
.simple-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}
.simple-menu .dropdown-item { font-size: 0.85rem; }
@media (max-width: 992px) {
  .simple-menu { display: none; }
}

/* ========== SEARCH RESULTS ========== */
.search-loading {
    text-align: center;
    padding: 60px 20px;
}
.search-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(31, 116, 109,0.2);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.search-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: rgba(var(--ink-rgb),0.55);
    font-size: 14px;
}
.search-no-results {
    text-align: center;
    padding: 60px 20px;
}
.search-no-results i {
    font-size: 48px;
    color: rgba(var(--ink-rgb),0.3);
    margin-bottom: 20px;
}
.search-no-results p {
    color: rgba(var(--ink-rgb),0.75);
    margin-bottom: 10px;
}
.search-no-results strong {
    color: var(--gold);
}
.search-no-results small {
    color: rgba(var(--ink-rgb),0.5);
}
.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(var(--ink-rgb),0.15);
    flex-wrap: wrap;
    gap: 10px;
}
.search-results-header span {
    color: rgba(var(--ink-rgb),0.65);
    font-size: 12px;
}
.view-all-results {
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s;
}
.view-all-results:hover {
    text-decoration: underline;
}
.search-products-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 500px;
    overflow-y: auto;
}
.search-product-item {
    background: rgba(var(--ink-rgb),0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.search-product-item:hover {
    background: rgba(var(--ink-rgb),0.06);
    transform: translateX(5px);
}
.search-product-link {
    display: flex;
    gap: 15px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
}
.search-product-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #0A0A0A;
    flex-shrink: 0;
}
.search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search-product-info {
    flex: 1;
    min-width: 0;
}
.search-product-brand {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.search-product-name {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 600;
}
.search-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.search-product-price .current {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}
.search-product-price .old {
    font-size: 11px;
    color: rgba(var(--ink-rgb),0.5);
    text-decoration: line-through;
}

/* ========== COUPON SECTION ========== */
.coupon-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(var(--ink-rgb),0.06);
}
.coupon-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.coupon-input {
    flex: 1;
    padding: 12px 16px;
    background: #0A0A0A;
    border: 1px solid rgba(31, 116, 109,0.2);
    border-radius: 40px;
    color: white;
    font-family: var(--font-body);
    min-width: 150px;
}
.coupon-input:focus {
    outline: none;
    border-color: var(--gold);
}
.btn-apply-coupon {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(31, 116, 109,0.3);
    color: var(--gold);
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-apply-coupon:hover {
    background: rgba(31, 116, 109,0.1);
}
.coupon-message {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
}
.coupon-message.success {
    background: rgba(40,167,69,0.15);
    color: #28a745;
}
.coupon-message.error {
    background: rgba(220,53,69,0.15);
    color: #dc3545;
}
.applied-coupon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(40,167,69,0.1);
    border: 1px solid rgba(40,167,69,0.3);
    border-radius: 40px;
    padding: 8px 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.applied-coupon span {
    color: #28a745;
    font-size: 13px;
}
.remove-coupon {
    background: none;
    border: none;
    color: rgba(var(--ink-rgb),0.6);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}
.remove-coupon:hover {
    color: #dc3545;
}
.discount-amount {
    color: #28a745;
}

/* ========== BLOG PAGE RESPONSIVE ========== */
@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 576px) {
    .blog-grid { grid-template-columns: 1fr !important; }
}
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-read-more:hover { gap: 12px; }
.back-link:hover { text-decoration: underline; }

/* ========== VIEW ALL LINK ========== */
.view-all-link {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid rgba(31, 116, 109,0.3);
    padding-bottom: 2px;
    text-decoration: none;
    transition: border-color 0.2s, opacity 0.2s;
}
.view-all-link:hover {
    border-color: var(--gold);
    opacity: 0.8;
}

/* ========== NEWSLETTER RESPONSE ========== */
.newsletter-response {
    margin-top: 10px;
    font-size: 0.85rem;
}
.newsletter-response.success {
    color: #28a745;
}
.newsletter-response.error {
    color: #dc3545;
}

/* ========== NEWSLETTER GUARANTEE ========== */
.newsletter-guarantee {
    font-size: 0.75rem;
    color: rgba(var(--ink-rgb),0.78);
    margin-top: 15px;
}
.newsletter-guarantee i {
    margin-right: 5px;
    color: #7fe0d6;
}

/* ========== EMPTY CART ========== */
.empty-cart {
    padding: 40px 20px;
}
.btn-empty-cart {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 24px;
    background: var(--gold);
    color: #0F0F0F;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-empty-cart:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.btn-view-cart {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(31, 116, 109,0.3);
    color: #1f746d;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}
.btn-view-cart:hover {
    background: rgba(31, 116, 109,0.1);
}

/* ============================================
   CART DRAWER – POPUP SLIDER STYLES
   ============================================ */

/* ── Drawer overlay ── */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ── Main drawer ── */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--bg-secondary, #1A1A1A);
    z-index: 2001;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(31, 116, 109, 0.1);
}
.cart-drawer.open {
    right: 0;
}

/* ── Header ── */
.cart-drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.cart-drawer-header h4 {
    font-family: var(--font-head, 'Playfair Display', serif);
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}
.cart-drawer-header .cart-count {
    position: static !important;
    display: inline-block !important;
    background: transparent !important;
    color: var(--gold) !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}
.close-cart {
    background: none;
    border: none;
    color: rgba(var(--ink-rgb), 0.5);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.close-cart:hover {
    color: var(--gold);
    background: rgba(31, 116, 109, 0.1);
    transform: rotate(90deg);
}

/* ── Content ── */
.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    scroll-behavior: smooth;
}
.cart-drawer-content::-webkit-scrollbar {
    width: 4px;
}
.cart-drawer-content::-webkit-scrollbar-track {
    background: rgba(var(--ink-rgb), 0.02);
}
.cart-drawer-content::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* ── Individual cart item ── */
.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.05);
    align-items: flex-start;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: #0A0A0A;
    flex-shrink: 0;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-info {
    flex: 1;
    min-width: 0;
}
.cart-item-brand {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2px;
}
.cart-item-name {
    font-size: 0.9rem;
    color: var(--white);
    margin: 2px 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-price {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
}
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.cart-item-quantity button {
    background: rgba(var(--ink-rgb), 0.08);
    border: none;
    color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-quantity button:hover {
    background: var(--gold);
    color: #0F0F0F;
}
.cart-item-quantity .qty-value {
    color: var(--white);
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}
.cart-item-remove {
    background: rgba(220, 53, 69, 0.15) !important;
    color: #dc3545 !important;
    margin-left: 4px;
}
.cart-item-remove:hover {
    background: #dc3545 !important;
    color: white !important;
}

/* ── Empty cart ── */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
}
.empty-cart i {
    font-size: 4rem;
    color: rgba(var(--ink-rgb), 0.15);
    margin-bottom: 1rem;
    display: block;
}
.empty-cart p {
    color: rgba(var(--ink-rgb), 0.5);
    margin-bottom: 1.5rem;
}
.btn-empty-cart {
    display: inline-block;
    padding: 10px 28px;
    background: var(--gold);
    color: #0F0F0F;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-empty-cart:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ── Footer / Checkout ── */
.cart-drawer-checkout {
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(var(--ink-rgb), 0.06);
    background: var(--bg-secondary, #1A1A1A);
    flex-shrink: 0;
}
.cart-footer {
    padding: 0 0 12px 0;
}
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    padding: 8px 0 4px;
}
.cart-subtotal span {
    color: rgba(var(--ink-rgb), 0.6);
}
.cart-subtotal strong {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
}
.cart-shipping-note {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(var(--ink-rgb), 0.3);
    margin-top: 4px;
}
.btn-cart-checkout {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: #0F0F0F;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}
.btn-cart-checkout:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 116, 109, 0.25);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    .cart-drawer-header {
        padding: 16px 20px;
    }
    .cart-drawer-content {
        padding: 12px 16px;
    }
    .cart-item-img {
        width: 60px;
        height: 60px;
    }
    .cart-item-name {
        font-size: 0.8rem;
    }
    .cart-item-price {
        font-size: 0.85rem;
    }
    .cart-drawer-checkout {
        padding: 12px 16px 16px;
    }
}