/* ============================================================
   NPNT LUXURY WEARS — Main Stylesheet
   Dark luxury aesthetic: Black, Purple, Cormorant Garamond
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --gold: #9333EA;
  --gold-light: #C084FC;
  --gold-dark: #7E22CE;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --dark4: #2d2d2d;
  --grey: #888888;
  --grey-light: #cccccc;
  --white: #ffffff;
  --cream: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --shadow: 0 10px 40px rgba(0,0,0,.5);
  --purple-glow: 0 0 20px rgba(147,51,234,.25);
}

/* ── Light Mode Theme ─────────────────────────────────────── */
[data-theme="light"] {
  --gold: #7E22CE;
  --gold-light: #9333EA;
  --gold-dark: #6B21A8;
  --black: #f5f2ed;
  --dark: #ede9e1;
  --dark2: #e4dfd5;
  --dark3: #d8d2c6;
  --dark4: #ccc5b6;
  --grey: #6b6560;
  --grey-light: #3d3a35;
  --white: #ffffff;
  --cream: #ffffff;
  --shadow: 0 10px 40px rgba(0,0,0,.12);
  --purple-glow: 0 0 20px rgba(147,51,234,.1);
}
[data-theme="light"] body { background: var(--black); }
[data-theme="light"] .site-header { border-bottom-color: rgba(147,51,234,.15); background: rgba(248,245,240,.97); }
[data-theme="light"] .site-header.scrolled { background: rgba(248,245,240,.99); box-shadow: 0 4px 30px rgba(0,0,0,.1); }
[data-theme="light"] .nav-link { color: #333; }
[data-theme="light"] .nav-link:hover, [data-theme="light"] .nav-link.active { color: var(--gold-dark); }
[data-theme="light"] .nav-dropdown { background: #fff; border-color: rgba(147,51,234,.15); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
[data-theme="light"] .nav-dropdown a { color: #444; }
[data-theme="light"] .header-action-btn { color: #555; }
[data-theme="light"] .header-action-btn:hover { color: var(--gold-dark); background: rgba(147,51,234,.08); }
[data-theme="light"] .hamburger span { background: #333; }
[data-theme="light"] .usr-nav-btn { color: var(--gold-dark); background: rgba(147,51,234,.08); border-color: rgba(147,51,234,.2); }
[data-theme="light"] .hdr-login-btn { background: var(--gold-dark); }
[data-theme="light"] .usr-dropdown { background: #fff; }
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--dark2); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: var(--gold-dark); }
[data-theme="light"] .product-card { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
[data-theme="light"] .product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.14); }
[data-theme="light"] img.gallery-thumb-img { border-color: rgba(147,51,234,.2); }
[data-theme="light"] .testimonial-card { background: #fff; border-color: rgba(147,51,234,.12); }
[data-theme="light"] .newsletter-section { background: var(--dark2); }
[data-theme="light"] .site-footer { background: #1a1714; color: #f5f2ed; }
[data-theme="light"] .site-footer * { color: inherit; }
[data-theme="light"] .mobile-menu { background: var(--dark); }
[data-theme="light"] .cart-drawer { background: var(--dark); }
[data-theme="light"] input, [data-theme="light"] select, [data-theme="light"] textarea { background: #fff; border-color: rgba(0,0,0,.15); color: #1a1714; }

/* ── User Account Nav Button ──────────────────────────────── */
.hdr-login-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: #ffffff;
  border-radius: 7px; padding: 9px 18px;
  font-family: var(--font-body); font-size: 11px;
  font-weight: 600; letter-spacing: .5px; text-decoration: none;
  transition: all .25s; white-space: nowrap;
  border: none; cursor: pointer;
}
.hdr-login-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(147,51,234,.3);
}
.usr-nav-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(147,51,234,.1);
  border: 1px solid rgba(147,51,234,.22);
  border-radius: 8px; padding: 7px 13px;
  color: var(--gold); font-family: var(--font-body);
  font-size: 11.5px; cursor: pointer;
  transition: all .22s; white-space: nowrap;
}
.usr-nav-btn:hover, .usr-nav-wrap.open .usr-nav-btn {
  background: rgba(147,51,234,.18);
  border-color: rgba(147,51,234,.4);
}
.usr-nav-btn svg { transition: transform .2s; }
.usr-nav-wrap.open .usr-nav-btn svg { transform: rotate(180deg); }
.usr-avatar-sm {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #ffffff; font-weight: 700;
}
.usr-nav-name { max-width: 80px; overflow: hidden; text-overflow: ellipsis; }
.usr-dropdown {
  position: absolute; right: 0; top: calc(100% + 10px);
  min-width: 220px; background: var(--dark);
  border: 1px solid rgba(147,51,234,.15);
  border-radius: 10px; box-shadow: 0 16px 40px rgba(0,0,0,.55);
  z-index: 9999; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s cubic-bezier(.4,0,.2,1);
}
.usr-dropdown.open {
  opacity: 1; visibility: visible; transform: translateY(0);
  display: block !important;
}
.usr-nav-wrap { position: relative; }
.usr-dropdown-top {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.usr-dropdown-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #ffffff; font-weight: 700;
  flex-shrink: 0;
}
.usr-dropdown-name { font-size: 13px; color: var(--white); font-weight: 500; }
.usr-dropdown-email { font-size: 10px; color: var(--grey); margin-top: 2px; }
.usr-dropdown-divider { height: 1px; background: rgba(255,255,255,.05); margin: 4px 0; }
.usr-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 12px; color: var(--grey-light);
  text-decoration: none; transition: all .15s;
}
.usr-dropdown-item:hover { background: rgba(147,51,234,.07); color: var(--white); padding-left: 20px; }
.usr-dropdown-logout { color: var(--danger) !important; }
.usr-dropdown-logout:hover { background: rgba(231,76,60,.07) !important; }

/* ── Notification dot on user button ── */
.usr-nav-btn { position: relative; }
.usr-notif-dot {
  position: absolute; top: -5px; right: -5px;
  min-width: 18px; height: 18px; border-radius: 10px;
  background: #e74c3c; color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 0;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px; border: 2px solid var(--dark);
  animation: notifPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes notifPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231,76,60,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(231,76,60,0); }
}


/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
/* Global overflow guard — nothing bleeds past viewport */
html, body { max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
/* Tables scroll horizontally on small screens instead of breaking layout */
table { width: 100%; }
/* Inputs never exceed their container */
input, select, textarea { max-width: 100%; box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; background: var(--black); z-index: 99999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { width: 120px; height: 120px; animation: preloaderPulse 2s ease-in-out infinite; }
.preloader-logo img { width: 100%; height: 100%; object-fit: contain; }
.preloader-bar {
  width: 200px; height: 2px; background: var(--dark3); border-radius: 2px; overflow: hidden;
}
.preloader-bar-fill {
  height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  animation: preloaderFill 2s ease forwards;
}
.preloader-text {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; opacity: .7;
}
@keyframes preloaderPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: .85; }
}
@keyframes preloaderFill { 0% { width: 0; } 100% { width: 100%; } }

/* ── Toast Animation ── */
@keyframes toastIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
@keyframes toastOut { from { opacity:1; } to { opacity:0; transform: translateY(20px); } }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Header / Nav ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(147,51,234,.12);
  transition: var(--transition);
}
.site-header.scrolled { background: rgba(10,10,10,.98); box-shadow: 0 4px 30px rgba(0,0,0,.5); }
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 72px;
}
.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo img { width: 44px; height: 44px; object-fit: contain; }
.header-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--gold); letter-spacing: 2px; }
.header-logo-sub { font-size: 9px; letter-spacing: 4px; color: var(--grey); text-transform: uppercase; margin-top: -4px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-item { position: relative; }
.nav-link {
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--grey-light); transition: var(--transition); padding: 8px 0;
  display: flex; align-items: center; gap: 6px;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link .chevron { font-size: 9px; transition: var(--transition); }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: -20px;
  background: var(--dark2); border: 1px solid rgba(147,51,234,.15);
  min-width: 220px; border-radius: 8px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); box-shadow: var(--shadow);
  display: grid; gap: 0;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 10px 20px; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--grey-light); transition: var(--transition);
}
.nav-dropdown a:hover { color: var(--gold); background: rgba(147,51,234,.05); padding-left: 28px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-action-btn {
  position: relative; width: 40px; height: 40px; display: flex;
  align-items: center; justify-content: center; color: var(--grey-light);
  transition: var(--transition); border-radius: 50%;
}
.header-action-btn:hover { color: var(--gold); background: rgba(147,51,234,.08); }
.header-action-btn svg { width: 20px; height: 20px; }
.badge-count {
  position: absolute; top: 2px; right: 2px; width: 18px; height: 18px;
  background: var(--gold); color: #ffffff; border-radius: 50%;
  font-size: 10px; font-weight: 700; display: none;
  align-items: center; justify-content: center; font-family: var(--font-body);
}

/* Search Bar */
.header-search { position: relative; }
.search-toggle { color: var(--grey-light); transition: var(--transition); }
.search-toggle:hover { color: var(--gold); }
.search-panel {
  position: absolute; top: calc(100% + 16px); right: -16px;
  width: min(320px, calc(100vw - 32px)); background: var(--dark2);
  border: 1px solid rgba(147,51,234,.15);
  border-radius: 8px; padding: 12px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition);
}
.search-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.search-panel input {
  width: 100%; background: var(--dark3); border: 1px solid rgba(147,51,234,.2);
  color: var(--white); padding: 10px 16px; border-radius: 4px; font-size: 13px;
  letter-spacing: 1px; outline: none; transition: var(--transition);
}
.search-panel input:focus { border-color: var(--gold); }
.search-panel input::placeholder { color: var(--grey); }
.search-results-panel { margin-top: 8px; max-height: 280px; overflow-y: auto; }
.search-result-item {
  display: flex; align-items: center; gap: 10px; padding: 8px;
  border-radius: 4px; transition: var(--transition); cursor: pointer;
}
.search-result-item:hover { background: rgba(147,51,234,.06); }
.search-result-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 4px; }
.search-result-name { font-size: 12px; letter-spacing: .5px; color: var(--white); }
.search-result-price { font-size: 11px; color: var(--gold); }

/* Mobile Menu */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; cursor: pointer; }
.hamburger span { display: block; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  position: fixed; inset: 0; background: var(--black); z-index: 999;
  display: flex; flex-direction: column; padding: 100px 32px 40px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-link {
  display: block; font-family: var(--font-display); font-size: 32px;
  font-weight: 300; letter-spacing: 2px; color: var(--white); padding: 12px 0;
  border-bottom: 1px solid rgba(147,51,234,.1); transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 12px; }
.mobile-sub { padding: 8px 0 8px 16px; }
.mobile-sub a { display: block; font-size: 13px; letter-spacing: 2px; color: var(--grey); padding: 6px 0; text-transform: uppercase; transition: var(--transition); }
.mobile-sub a:hover { color: var(--gold); }
.mobile-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* ── Hero Banner ── */
.hero {
  position: relative; height: 70vh; min-height: 480px; max-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* ---- Each slide is absolutely stacked ---- */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* ---- Zoom-out keyframe: dramatic pull-back from 1.40 to 1.0 ---- */
@keyframes heroZoomOut {
  0%   { transform: scale(1.45); }
  100% { transform: scale(1.00); }
}

/* ---- The image: default state is zoomed in (while hidden) ---- */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.45);
  will-change: transform;
}

/* ---- When slide becomes active, fire zoom-out immediately ---- */
.hero-slide.active img {
  animation: heroZoomOut 5.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ---- Overlay ---- */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3; text-align: center;
  max-width: 680px; padding: 0 20px;
  animation: fadeUp .8s ease both;
}
@keyframes fadeUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
.hero-eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--gold); opacity: .5; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(28px, 5vw, 58px);
  font-weight: 300; line-height: 1.08; color: var(--white); margin-bottom: 12px;
  letter-spacing: 2px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle { font-size: 12px; letter-spacing: 1.5px; color: var(--grey-light); margin-bottom: 24px; font-weight: 300; }
.hero-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }


/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 36px; font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; border-radius: 2px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #ffffff;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0; transition: var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(147,51,234,.35); }
.btn-outline {
  border: 1px solid rgba(147,51,234,.5); color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(147,51,234,.1); border-color: var(--gold); transform: translateY(-2px); }
.btn-dark {
  background: var(--dark3); color: var(--white); border: 1px solid var(--dark4);
}
.btn-dark:hover { background: var(--dark4); border-color: rgba(147,51,234,.3); }
.btn-sm { padding: 10px 24px; font-size: 10px; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ── Section Styles ── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px);
  font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { font-size: 14px; color: var(--grey); max-width: 500px; margin: 0 auto; }
.divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 20px auto; }

/* ── Product Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}
.products-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Product Card */
.product-card {
  background: var(--dark2); border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.05); transition: var(--transition);
  position: relative; group: true;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(147,51,234,.2); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.product-card-image {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  background: var(--dark3);
}
.product-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 10px; font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 2px;
}
.badge-sale { background: #c0392b; color: #fff; }
.badge-new { background: var(--gold); color: #ffffff; }
.badge-premium, .badge-luxury, .badge-ultra-luxury { background: linear-gradient(135deg,var(--gold-dark),var(--gold)); color: #ffffff; }
.badge-bestseller { background: var(--dark3); color: var(--gold); border: 1px solid var(--gold-dark); }
.badge-trending { background: #1a3a5c; color: #5ba3d9; }
.badge-gift { background: #3a1a3a; color: #c47fc4; }
.product-card-actions {
  position: absolute; bottom: 12px; left: 12px; right: 12px; z-index: 2;
  display: flex; gap: 8px;
  opacity: 0; transform: translateY(8px); transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateY(0); }
.product-card-actions .btn { flex: 1; padding: 10px 12px; font-size: 9px; letter-spacing: 2px; }
.product-wish-btn {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(10,10,10,.85);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(147,51,234,.3); transition: var(--transition); flex-shrink: 0;
  color: var(--grey); font-size: 16px;
}
.product-wish-btn:hover, .product-wish-btn.active { color: #e74c3c; border-color: #e74c3c; background: rgba(231,76,60,.1); }
.product-card-body { padding: 16px; }
.product-card-country {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; display: flex; align-items: center; gap: 6px;
}
.product-card-country::before { content: ''; width: 20px; height: 1px; background: var(--gold); opacity: .4; }
.product-card-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  color: var(--white); margin-bottom: 8px; line-height: 1.3;
}
.product-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }
.rating-count { font-size: 10px; color: var(--grey); }
.product-card-prices { display: flex; align-items: center; gap: 10px; }
.price-current { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--gold); }
.price-original { font-size: 13px; color: var(--grey); text-decoration: line-through; }
.price-discount { font-size: 10px; background: rgba(192,57,43,.15); color: #e74c3c; padding: 2px 6px; border-radius: 2px; font-weight: 600; }

/* ── Category Banner Cards ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-card {
  position: relative; overflow: hidden; border-radius: 8px;
  aspect-ratio: 4/5; cursor: pointer;
  border: 1px solid rgba(255,255,255,.05); transition: var(--transition);
}
.category-card.large { grid-row: span 2; aspect-ratio: unset; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.category-card-label { font-size: 9px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.category-card-title { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.category-card-count { font-size: 11px; color: var(--grey-light); }
.category-card:hover .category-card-overlay { background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 70%, transparent 100%); }

/* ── Marquee ── */
.marquee-section { overflow: hidden; padding: 20px 0; border-top: 1px solid rgba(147,51,234,.1); border-bottom: 1px solid rgba(147,51,234,.1); background: var(--dark2); }
.marquee-inner { display: flex; gap: 0; white-space: nowrap; animation: marqueeScroll 30s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 24px; padding: 0 32px; }
.marquee-text { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--grey); }
.marquee-diamond { color: var(--gold); font-size: 8px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Filters & Sort ── */
.shop-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px; font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; border-radius: 2px; border: 1px solid rgba(255,255,255,.1);
  color: var(--grey); transition: var(--transition); background: transparent;
}
.filter-tab:hover { border-color: rgba(147,51,234,.4); color: var(--gold); }
.filter-tab.active { background: var(--gold); color: #ffffff; border-color: var(--gold); }
.sort-select {
  background: var(--dark2); border: 1px solid rgba(255,255,255,.1); color: var(--white);
  padding: 8px 16px; border-radius: 2px; font-size: 11px; letter-spacing: 1px;
  outline: none; cursor: pointer; transition: var(--transition);
}
.sort-select:focus { border-color: var(--gold); }
.sort-select option { background: var(--dark2); }
.results-count { font-size: 12px; color: var(--grey); letter-spacing: 1px; }

/* ── Pagination ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 60px; }
.page-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.1); border-radius: 2px; font-size: 13px;
  color: var(--grey); transition: var(--transition); background: transparent;
}
.page-btn:hover, .page-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(147,51,234,.08); }
.page-btn.active { background: var(--gold); color: #ffffff; }

/* ── Banner Promo ── */
.promo-banner {
  position: relative; padding: 80px 0; overflow: hidden;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-top: 1px solid rgba(147,51,234,.1); border-bottom: 1px solid rgba(147,51,234,.1);
}
.promo-banner::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(147,51,234,.06) 0%, transparent 70%);
}
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.promo-content .section-eyebrow { text-align: left; display: block; }
.promo-content .section-title { text-align: left; }
.promo-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.promo-feature { display: flex; gap: 12px; align-items: flex-start; }
.promo-feature-icon { font-size: 24px; flex-shrink: 0; }
.promo-feature-text h4 { font-family: var(--font-display); font-size: 16px; color: var(--white); margin-bottom: 4px; }
.promo-feature-text p { font-size: 12px; color: var(--grey); }
.promo-image { border-radius: 8px; overflow: hidden; aspect-ratio: 4/5; }
.promo-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--dark2); border: 1px solid rgba(147,51,234,.1);
  border-radius: 8px; padding: 32px; transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(147,51,234,.25); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-family: var(--font-display); font-size: 17px; font-style: italic; color: var(--grey-light); line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(147,51,234,.3); }
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--white); }
.testimonial-location { font-size: 11px; color: var(--gold); letter-spacing: 1px; }

/* ── Newsletter ── */
.newsletter-section {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, rgba(147,51,234,.04), transparent, rgba(147,51,234,.04));
}
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 32px auto 0; border: 1px solid rgba(147,51,234,.3); border-radius: 2px; overflow: hidden; }
.newsletter-form input {
  flex: 1; background: var(--dark2); border: none; color: var(--white);
  padding: 14px 20px; font-size: 13px; letter-spacing: 1px; outline: none;
}
.newsletter-form input::placeholder { color: var(--grey); }
.newsletter-form button {
  padding: 14px 28px; background: var(--gold); color: #ffffff;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  transition: var(--transition); white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ── Footer ── */
.site-footer { background: var(--dark2); border-top: 1px solid rgba(147,51,234,.12); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand-logo { width: 60px; height: 60px; object-fit: contain; margin-bottom: 16px; }
.footer-brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--gold); letter-spacing: 2px; }
.footer-brand-tag { font-size: 10px; letter-spacing: 4px; color: var(--grey); text-transform: uppercase; margin-bottom: 16px; }
.footer-brand-desc { font-size: 13px; color: var(--grey); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(147,51,234,.2); display: flex;
  align-items: center; justify-content: center; color: var(--grey);
  font-size: 14px; transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(147,51,234,.08); transform: translateY(-2px); }
.footer-social a svg { fill: currentColor; }
.footer-heading { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 20px; letter-spacing: 1px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--grey); transition: var(--transition); letter-spacing: .5px; }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-text { font-size: 12px; color: var(--grey); letter-spacing: .5px; }
.footer-payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-badge {
  padding: 4px 10px; background: var(--dark3); border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--grey-light);
}

/* ── Cart Drawer ── */
.cart-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  z-index: 9000; opacity: 0; visibility: hidden; transition: var(--transition);
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100vw;
  background: var(--dark2); z-index: 9001; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid rgba(147,51,234,.12);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  padding: 24px; border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-drawer-title { font-family: var(--font-display); font-size: 24px; color: var(--white); }
.cart-drawer-close {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1);
  color: var(--grey); display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: var(--transition);
}
.cart-drawer-close:hover { border-color: var(--gold); color: var(--gold); }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06); align-items: flex-start;
}
.cart-item-img-wrap {
  width: 76px; height: 96px; border-radius: 7px; overflow: hidden;
  flex-shrink: 0; background: var(--dark3);
  border: 1px solid rgba(255,255,255,.06);
}
.cart-item-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-display); font-size: 14px; color: var(--white); margin-bottom: 4px; line-height: 1.3; }
.cart-item-meta { font-size: 10px; color: var(--grey); letter-spacing: .5px; margin-bottom: 10px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { font-size: 14px; min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--grey); transition: var(--transition); display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); }
.cart-item-remove:hover { color: #e74c3c; border-color: rgba(231,76,60,.3); background: rgba(231,76,60,.07); }
.cart-item-price { font-family: var(--font-display); font-size: 17px; color: var(--gold); flex-shrink: 0; }
.cart-drawer-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,.06); }
.cart-totals { margin-bottom: 16px; }
.cart-total-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; color: var(--grey); }
.cart-total-row.grand { border-top: 1px solid rgba(147,51,234,.2); padding-top: 12px; margin-top: 6px; font-family: var(--font-display); font-size: 20px; color: var(--white); font-weight: 600; }
.cart-total-row.grand span:last-child { color: var(--gold); }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: .3; }
.cart-empty-text { font-family: var(--font-display); font-size: 20px; color: var(--grey); }

/* ── Wishlist Drawer ── */
.wishlist-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 420px; max-width: 100vw;
  background: var(--dark2); z-index: 9001; display: flex; flex-direction: column;
  transform: translateX(-100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  border-right: 1px solid rgba(147,51,234,.12);
}
.wishlist-drawer.open { transform: translateX(0); }
.wishlist-drawer .cart-drawer-header, .wishlist-drawer .cart-drawer-items, .wishlist-drawer .cart-drawer-footer { /* shares same styles */ }
.wish-item {
  display: flex; gap: 12px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06); align-items: center;
}
.wish-item-image { width: 70px; height: 90px; object-fit: cover; border-radius: 4px; }
.wish-item-info { flex: 1; }
.wish-item-name { font-family: var(--font-display); font-size: 16px; color: var(--white); margin-bottom: 4px; }
.wish-item-price { font-size: 14px; color: var(--gold); margin-bottom: 8px; }
.wish-item-actions { display: flex; gap: 8px; }

/* ── Product Detail Page ── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-gallery { position: sticky; top: 100px; }
.gallery-main { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: var(--dark2); margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-thumb { position: relative; aspect-ratio: 1; border-radius: 4px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); background: var(--dark3); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); }
.product-detail-info { padding-top: 16px; }
.product-detail-country { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.product-detail-name { font-family: var(--font-display); font-size: 42px; font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.product-detail-prices { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.product-detail-price { font-family: var(--font-display); font-size: 32px; color: var(--gold); }
.product-detail-original { font-size: 18px; color: var(--grey); text-decoration: line-through; }
.option-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; display: block; }
.size-options, .color-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.size-btn {
  padding: 8px 16px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px; font-size: 12px; color: var(--grey-light);
  transition: var(--transition); background: transparent;
}
.size-btn:hover, .size-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(147,51,234,.08); }
.size-btn.out { opacity: .3; cursor: not-allowed; text-decoration: line-through; }
.color-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid transparent;
  transition: var(--transition); cursor: pointer; position: relative;
}
.color-btn.active, .color-btn:hover { border-color: var(--gold); }
.color-btn.active::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,.9); text-shadow: 0 1px 3px rgba(0,0,0,.8); }
.product-detail-actions { display: flex; gap: 12px; margin-bottom: 32px; }
.product-detail-actions .btn { flex: 1; }
.product-detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.feature-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--grey); }
.feature-item span:first-child { color: var(--gold); font-size: 14px; }

/* ── Cart/Checkout Page ── */
.checkout-grid { display: grid; grid-template-columns: 1fr clamp(280px, 30vw, 380px); gap: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.form-input {
  width: 100%; background: var(--dark3); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); padding: 12px 16px; border-radius: 4px; font-size: 13px;
  letter-spacing: .5px; outline: none; transition: var(--transition);
}
.form-input:focus { border-color: var(--gold); background: var(--dark2); }
.form-input::placeholder { color: var(--grey); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-summary { background: var(--dark2); border: 1px solid rgba(147,51,234,.1); border-radius: 8px; padding: 24px; position: sticky; top: 100px; }
.order-summary-title { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 20px; }
.order-summary-item { display: flex; gap: 10px; margin-bottom: 16px; }
.order-summary-item img { width: 60px; height: 75px; object-fit: cover; border-radius: 4px; }
.order-summary-info { flex: 1; }
.order-summary-name { font-size: 13px; color: var(--white); margin-bottom: 2px; }
.order-summary-meta { font-size: 11px; color: var(--grey); }
.order-summary-price { font-family: var(--font-display); font-size: 16px; color: var(--gold); }

/* ── Animations ── */
.fade-in { animation: fadeIn .6s ease both; }
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-delay-1 { animation-delay: .1s; }
.fade-up-delay-2 { animation-delay: .2s; }
.fade-up-delay-3 { animation-delay: .3s; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NPNT RESPONSIVE SYSTEM — Professional Mobile-First
   Breakpoints: 1280 | 1024 | 992 | 768 | 600 | 480 | 375 | 320
   ============================================================ */

/* ── 1280px ── */
@media (max-width: 1280px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .products-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
  .checkout-grid { grid-template-columns: 1fr clamp(280px, 26vw, 340px); gap: 32px; }
  .hero { max-height: 620px; }
}

/* ── 1024px — Tablet landscape ── */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; height: 64px; }
  .main-nav { gap: 24px; }
  .nav-link { font-size: 10px; letter-spacing: 1.5px; }
  .section { padding: 80px 0; }
  .hero { height: 65vh; min-height: 440px; }
  .hero-title { font-size: clamp(26px, 4.5vw, 50px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-image { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card.large { grid-row: span 1; aspect-ratio: 4/5; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
}

/* ── 992px — Hamburger activates ── */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 16px; }
}

/* ── 768px — Tablet portrait ── */
@media (max-width: 768px) {
  /* ── Container ── */
  .container { padding: 0 16px; }

  /* ── Header ── */
  .header-inner { height: 56px; padding: 0 14px; gap: 8px; }
  .header-logo { gap: 8px; }
  .header-logo img { width: 34px; height: 34px; }
  .header-logo-text { font-size: 15px; letter-spacing: 1px; }
  .header-logo-sub { display: none; }
  .header-actions { gap: 6px; }
  .header-action-btn { width: 34px; height: 34px; }
  .header-action-btn svg { width: 17px; height: 17px; }
  .hdr-login-btn { display: none; } /* hidden on mobile — use mobile menu */
  .badge-count { width: 15px; height: 15px; font-size: 8px; }

  /* ── Sections ── */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
  .section-eyebrow { font-size: 9px; letter-spacing: 3px; margin-bottom: 10px; }
  .section-title { font-size: clamp(22px, 6vw, 36px); margin-bottom: 10px; }

  /* ── Hero ── */
  .hero { height: 56vh; min-height: 380px; max-height: 500px; padding: 0; align-items: center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.82) 100%); }
  .hero-content { text-align: center; padding: 0 16px; max-width: 100%; }
  .hero-usp-tagline { font-size: 8px; letter-spacing: 1px; padding: 3px 8px; margin-bottom: 6px; }
  .hero-eyebrow { font-size: 8px; letter-spacing: 2px; gap: 6px; margin-bottom: 8px; justify-content: center; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 12px; }
  .hero-title { font-size: clamp(24px, 7vw, 38px); letter-spacing: 0.5px; margin-bottom: 8px; line-height: 1.1; }
  .hero-subtitle { font-size: 10px; letter-spacing: 0.5px; margin-bottom: 14px; }
  .hero-actions { justify-content: center; gap: 8px; flex-wrap: wrap; }
  .hero-actions .btn { padding: 10px 16px; font-size: 9px; letter-spacing: 1px; }

  /* ── Buttons ── */
  .btn { padding: 11px 20px; font-size: 10px; letter-spacing: 1.5px; }
  .btn-sm { padding: 8px 14px; font-size: 9px; }

  /* ── Product grid ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card-body { padding: 10px; }
  .product-card-name { font-size: 13px; line-height: 1.3; }
  .price-current { font-size: 15px; }
  .price-original { font-size: 11px; }

  /* ── Categories ── */
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .category-card-title { font-size: 18px; }
  .category-card-overlay { padding: 14px; }

  /* ── Shop controls ── */
  .shop-controls { flex-direction: column; align-items: flex-start; gap: 10px; }
  .filter-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; gap: 6px; }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab { white-space: nowrap; flex-shrink: 0; padding: 6px 12px; font-size: 9px; letter-spacing: 1px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonial-card { padding: 20px 16px; }

  /* ── Promo ── */
  .promo-features { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* ── Newsletter ── */
  .newsletter-section { padding: 48px 0; }
  .newsletter-form { flex-direction: column; border: none; }
  .newsletter-form input { border: 1px solid rgba(147,51,234,.3); border-radius: 6px; padding: 12px 16px; }
  .newsletter-form button { border-radius: 6px; width: 100%; padding: 13px; }

  /* ── Footer ── */
  .site-footer { padding-top: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; padding: 16px 0; }
  .footer-brand-desc { max-width: 100%; font-size: 12px; }
  .footer-brand-name { font-size: 18px; }
  .footer-heading { font-size: 15px; margin-bottom: 12px; }
  .footer-links a { font-size: 12px; }

  /* ── Drawers ── */
  .cart-drawer, .wishlist-drawer { width: 100vw; max-width: 100vw; }

  /* ── Forms ── */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-input { padding: 11px 14px; font-size: 13px; }

  /* ── Product detail ── */
  .product-detail-name { font-size: 26px; }
  .product-detail-price { font-size: 24px; }
  .product-detail-actions { flex-direction: column; gap: 10px; }
  .product-detail-features { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }

  /* ── USP bar ── */
  .usp-bar-inner { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .usp-item { font-size: 9px; letter-spacing: 0.5px; }
  .usp-item span:first-child { font-size: 14px; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ── Mobile menu links ── */
  .mobile-nav-link { font-size: 24px; padding: 10px 0; }
  .mobile-menu { padding: 72px 20px 32px; }
  .mobile-actions { gap: 10px; flex-wrap: wrap; }
  .mobile-sub a { font-size: 12px; letter-spacing: 1px; }
}

/* ── 600px — Large phones ── */
@media (max-width: 600px) {
  .container { padding: 0 12px; }

  /* ── Hero ── */
  .hero { height: 52vh; min-height: 340px; max-height: 440px; }
  .hero-usp-tagline { display: none; }
  .hero-title { font-size: clamp(22px, 8vw, 34px); letter-spacing: 0; }
  .hero-subtitle { font-size: 10px; letter-spacing: 0; margin-bottom: 12px; }
  .hero-eyebrow { font-size: 7px; letter-spacing: 1.5px; }
  .hero-actions { gap: 6px; }
  .hero-actions .btn { padding: 9px 14px; font-size: 9px; letter-spacing: 0.5px; }

  /* ── Product cards ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-card-body { padding: 8px; }
  .product-card-name { font-size: 12px; }
  .price-current { font-size: 14px; }
  .product-card-country { display: none; }
  .product-card-rating { display: none; }
  .product-card-actions { display: none; } /* tap the card instead */

  /* ── Categories ── */
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .category-card { aspect-ratio: 3/2; }
  .category-card.large { aspect-ratio: 3/2; }
  .category-card-title { font-size: 16px; }
  .category-card-overlay { padding: 10px 12px; }

  /* ── Sections ── */
  .section { padding: 36px 0; }
  .section-eyebrow { font-size: 8px; letter-spacing: 2px; }
  .section-title { font-size: clamp(20px, 7vw, 30px); }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 24px; }
  .footer-brand-logo { width: 42px; height: 42px; }
  .payment-badge { font-size: 9px; padding: 3px 6px; }
  .footer-payment-icons { flex-wrap: wrap; gap: 6px; }

  /* ── About ── */
  .story-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-accent-line { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 34px; }
  .stat-item { padding: 24px 12px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card { padding: 20px 14px; }

  /* ── FAQ ── */
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav { display: none; }
  .faq-q-text { font-size: 12px; }
  .faq-q { padding: 14px; }
  .faq-a-inner { padding: 0 14px 14px; font-size: 12px; }

  /* ── Policy ── */
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { display: none; }
  .rights-grid { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .socials-row { flex-wrap: wrap; gap: 8px; }
  .social-icon-btn { flex: 1; min-width: 130px; justify-content: center; }

  /* ── Checkout / Success ── */
  .checkout-grid { grid-template-columns: 1fr; }
  .order-success-actions { flex-direction: column; }

  /* ── Pagination ── */
  .pagination { gap: 4px; }
  .page-btn { width: 32px; height: 32px; font-size: 11px; }
}

/* ── 480px — Standard phones ── */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .header-inner { height: 52px; padding: 0 12px; }
  .header-logo img { width: 30px; height: 30px; }
  .header-logo-text { font-size: 13px; letter-spacing: 0.5px; }

  /* ── Hero ── */
  .hero { height: 48vh; min-height: 300px; max-height: 400px; }
  .hero-title { font-size: clamp(20px, 8.5vw, 30px); }
  .hero-subtitle { display: none; }
  .hero-eyebrow { display: none; }
  .hero-actions { flex-direction: column; align-items: center; gap: 8px; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 240px; padding: 11px 16px; font-size: 10px; letter-spacing: 1px; }

  /* ── Products ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .product-card-body { padding: 8px 6px; }
  .product-card-name { font-size: 11px; }
  .price-current { font-size: 13px; }

  /* ── Sections ── */
  .section { padding: 32px 0; }
  .section-title { font-size: clamp(19px, 7.5vw, 28px); letter-spacing: 0; }
  .section-eyebrow { display: none; } /* too much text on tiny screens */

  /* ── Buttons ── */
  .btn { padding: 10px 16px; font-size: 9px; letter-spacing: 1px; }
  .btn-sm { padding: 7px 12px; font-size: 9px; }

  /* ── USP bar ── */
  .usp-bar { display: none; }

  /* ── Footer ── */
  .site-footer { padding-top: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-heading { font-size: 14px; margin-bottom: 10px; }
  .footer-links a { font-size: 11px; }
  .footer-brand-name { font-size: 16px; }
  .footer-social a { width: 32px; height: 32px; }
  .footer-bottom-text { font-size: 11px; }

  /* ── Mobile menu ── */
  .mobile-nav-link { font-size: 20px; padding: 9px 0; }
  .mobile-menu { padding: 66px 16px 28px; }

  /* ── Drawers ── */
  .cart-drawer-header { padding: 14px; }
  .cart-drawer-footer { padding: 12px; }
  .cart-drawer-title { font-size: 20px; }

  /* ── Product detail ── */
  .product-detail-name { font-size: 22px; }
  .product-detail-price { font-size: 22px; }
  .size-options, .color-options { gap: 6px; }
  .size-btn { padding: 7px 12px; font-size: 11px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 5px; }

  /* ── Cart page ── */
  .cart-summary-box { padding: 16px; }

  /* ── Newsletter ── */
  .newsletter-section { padding: 36px 0; }
  .newsletter-form input { padding: 11px 14px; }

  /* ── FAQ / Modals ── */
  .size-modal { padding: 20px 14px; }
  .testimonial-card { padding: 16px 12px; }
  .testimonial-text { font-size: 14px; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 28px; }
  .stat-item { padding: 20px 8px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ── 375px — iPhone SE / smallest phones ── */
@media (max-width: 375px) {
  .container { padding: 0 10px; }
  .header-inner { height: 50px; padding: 0 10px; }
  .header-logo img { width: 28px; height: 28px; }
  .header-logo-text { font-size: 12px; }
  .header-action-btn { width: 30px; height: 30px; }

  /* ── Hero ── */
  .hero { height: 45vh; min-height: 280px; max-height: 360px; }
  .hero-title { font-size: clamp(18px, 9vw, 26px); letter-spacing: 0; line-height: 1.15; }
  .hero-actions .btn { max-width: 200px; font-size: 9px; padding: 10px 12px; }

  /* ── Products ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .product-card-body { padding: 7px 5px; }
  .product-card-name { font-size: 10px; }
  .price-current { font-size: 12px; }

  /* ── Sections ── */
  .section { padding: 28px 0; }
  .section-title { font-size: clamp(17px, 8vw, 24px); }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-heading { font-size: 13px; margin-bottom: 8px; }
  .footer-links a { font-size: 10px; }
  .footer-brand-name { font-size: 14px; }
  .footer-brand-tag { font-size: 8px; letter-spacing: 1.5px; }
  .payment-badge { font-size: 8px; padding: 2px 5px; }

  /* ── Mobile menu ── */
  .mobile-nav-link { font-size: 18px; padding: 8px 0; }
  .mobile-menu { padding: 60px 14px 24px; }

  /* ── Buttons ── */
  .btn { padding: 9px 14px; letter-spacing: 0.5px; }
  .btn-sm { padding: 6px 10px; }
}

/* ── 320px — Very small phones ── */
@media (max-width: 320px) {
  .container { padding: 0 8px; }
  .header-inner { padding: 0 8px; }
  .header-logo-text { display: none; } /* just logo image on 320px */
  .hero { height: 42vh; min-height: 260px; }
  .hero-title { font-size: 16px; }
  .hero-actions .btn { width: 100%; max-width: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .product-card-name { font-size: 9px; }
  .price-current { font-size: 11px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 15px; }
}

/* ── Touch screens — show product actions always ── */
@media (hover: none) {
  .product-card-actions { opacity: 1; transform: translateY(0); background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%); }
  .product-card:hover { transform: none; box-shadow: none; }
  .product-card:active { transform: scale(.98); }
  .nav-item:hover .nav-dropdown { opacity: 0; visibility: hidden; }
  .product-card-actions .btn { font-size: 8px; padding: 8px 6px; letter-spacing: 0.5px; }
  .product-wish-btn { width: 32px; height: 32px; font-size: 14px; }
}

/* ── Landscape phones ── */
@media (max-width: 812px) and (orientation: landscape) {
  .hero { height: 80vh; min-height: 240px; max-height: 360px; padding: 0; align-items: center; }
  .hero-usp-tagline, .hero-eyebrow { display: none; }
  .hero-title { font-size: clamp(18px, 5vw, 28px); margin-bottom: 6px; letter-spacing: 0; }
  .hero-subtitle { display: none; }
  .hero-actions { gap: 6px; }
  .hero-actions .btn { padding: 7px 14px; font-size: 9px; }
  .mobile-menu { padding: 60px 20px 20px; overflow-y: auto; }
  .mobile-nav-link { font-size: 18px; padding: 7px 0; }
  .section { padding: 32px 0; }
}

/* ── Print ── */
@media print {
  .site-header, .site-footer, #waBtn, #scrollTopBtn, .cart-drawer,
  .wishlist-drawer, .mobile-menu, .newsletter-section { display: none !important; }
  body { background: #fff; color: #000; }
  .container { max-width: 100%; padding: 0 20px; }
}


/* ============================================================
   MOBILE BOTTOM NAVIGATION BAR
   Professional e-commerce mobile UX — fixed bottom bar
   ============================================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 58px;
  background: rgba(10,10,10,.97);
  border-top: 1px solid rgba(147,51,234,.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 998;
  align-items: stretch;
  justify-content: space-around;
  padding: 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}
.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 3px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s, background .2s;
  text-decoration: none;
  padding: 6px 0 8px;
  position: relative;
  border: none;
  background: none;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
}
.mob-nav-item:active { background: rgba(147,51,234,.08); }
.mob-nav-item.active { color: var(--gold); }
.mob-nav-item svg { width: 20px; height: 20px; stroke-width: 1.6; flex-shrink: 0; }
.mob-nav-label { font-size: 9px; font-weight: 500; letter-spacing: 0.3px; line-height: 1; }
.mob-nav-badge {
  position: absolute;
  top: 6px;
  right: 50%;
  transform: translateX(8px);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #0a0a0a;
}

/* ── Show bottom nav on mobile, push body content up ── */
@media (max-width: 768px) {
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 58px; }

  /* Scroll-to-top: bottom-right, above mobile nav */
  #scrollTopBtn {
    bottom: 76px;
    right: 16px;
    left: auto;
    width: 44px;
    height: 44px;
  }
  /* #waBtn stacks above scrollTopBtn — position controlled by JS */
}
@media (max-width: 320px) {
  .mobile-bottom-nav { height: 52px; }
  .mob-nav-item svg { width: 18px; height: 18px; }
  .mob-nav-label { font-size: 8px; }
  body { padding-bottom: 52px; }

  #scrollTopBtn {
    bottom: 66px;
    right: 12px;
    left: auto;
    width: 40px;
    height: 40px;
  }
  /* #waBtn stacks above scrollTopBtn at 320px — JS controlled */
}

/* ── Improved product card for mobile — better touch targets ── */
@media (max-width: 600px) {
  .product-card { border-radius: 6px; }
  .product-card-image { aspect-ratio: 3/4; }
  .product-card-body { padding: 8px 7px 10px; }
  .product-card-prices { flex-wrap: wrap; gap: 4px; }
  .price-discount { display: none; }
}

/* ── Mobile-optimized section eyebrow ── */
@media (max-width: 480px) {
  .section-eyebrow { letter-spacing: 2px; }
  .hero-eyebrow::before, .hero-eyebrow::after { display: none; }
}

/* ── Safe area inset for devices with notch/home bar ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 768px) {
    .mobile-bottom-nav {
      padding-bottom: env(safe-area-inset-bottom);
      height: calc(58px + env(safe-area-inset-bottom));
    }
    body {
      padding-bottom: calc(58px + env(safe-area-inset-bottom));
    }
    #scrollTopBtn {
      bottom: calc(76px + env(safe-area-inset-bottom));
      right: 16px;
      left: auto;
    }
    /* #waBtn stacks above scrollTopBtn — JS controlled */
  }
}

/* ============================================================
   NPNT ENHANCEMENTS — Scroll to Top, WhatsApp, Urgency, USP, etc.
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   Scroll-to-Top & WhatsApp Floating Buttons
   Base shared styles (position, shape, colour, z-index).
   bottom/right/size values are set per-breakpoint below so
   mobile rules always win without specificity fights.
───────────────────────────────────────────────────────────── */

/* --- Shared layout (all screen sizes) --- */
#scrollTopBtn {
  position: fixed;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s, visibility .3s;
  box-shadow: 0 4px 20px rgba(147,51,234,.35);
}
#scrollTopBtn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTopBtn:hover   { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(147,51,234,.5); }

/* #waBtn — All position/size/background set via JS inline style with !important */
/* Only decorative states defined here */
#waBtn:hover  { box-shadow: 0 8px 32px rgba(37,211,102,.6) !important; }
#waBtn .wa-tooltip {
  position: absolute;
  right: 68px;
  background: #111;
  color: #fff;
  font-size: 11px;
  letter-spacing: 1px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 4px;
  border: 1px solid rgba(147,51,234,.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
#waBtn:hover .wa-tooltip { opacity: 1; }

/* --- Desktop scroll-to-top position (≥ 769px) --- */
@media (min-width: 769px) {
  #scrollTopBtn {
    bottom: 100px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
  /* #waBtn desktop position is set by JS drag system */
}

/* --- Countdown Sale Banner --- */

.sale-countdown-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(147,51,234,.04) 50%, transparent 100%);
  animation: shimmer 3s infinite;
}





/* --- USP Bar (Homepage above-fold) --- */
.usp-bar {
  background: var(--dark2);
  border-bottom: 1px solid rgba(147,51,234,.1);
  padding: 14px 0;
  text-align: center;
}
.usp-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-light);
}
.usp-item span:first-child { font-size: 16px; }
.usp-item strong { color: var(--gold); }

/* --- Hero USP Tagline --- */
.hero-usp-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(147,51,234,.1);
  border: 1px solid rgba(147,51,234,.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  backdrop-filter: blur(10px);
}

/* --- Urgency Badges on product cards --- */
.urgency-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(192,57,43,.9);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.urgency-badge.trending {
  background: rgba(39,174,96,.9);
}
.urgency-badge.limited {
  background: rgba(192,57,43,.9);
}

/* --- Product Card Stock Urgency --- */
.stock-urgency {
  font-size: 10px;
  color: #e74c3c;
  font-weight: 600;
  letter-spacing: .5px;
  margin-top: 4px;
}
.stock-trending { color: #27ae60; }

/* --- Product Detail Page: Image Zoom --- */
.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: zoom-in;
  background: var(--dark2);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
}
.gallery-main.zoomed { cursor: zoom-out; }
.gallery-main.zoomed img { transform: scale(2); }

/* --- Size Guide Modal --- */
.size-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.size-modal-overlay.open { opacity: 1; visibility: visible; }
.size-modal {
  background: var(--dark2);
  border: 1px solid rgba(147,51,234,.2);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s;
}
.size-modal-overlay.open .size-modal { transform: translateY(0); }
.size-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 24px; color: var(--grey); cursor: pointer;
  transition: var(--transition);
}
.size-modal-close:hover { color: var(--gold); }
.size-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.size-table th { background: rgba(147,51,234,.1); color: var(--gold); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 10px 12px; text-align: left; }
.size-table td { padding: 9px 12px; font-size: 12px; color: var(--grey); border-bottom: 1px solid rgba(255,255,255,.05); }
.size-table tr:hover td { color: var(--white); background: rgba(255,255,255,.02); }

/* --- Product Detail: Fabric/Model Info Box --- */
.product-meta-box {
  background: rgba(147,51,234,.05);
  border: 1px solid rgba(147,51,234,.12);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.product-meta-box .meta-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--grey);
  padding: 5px 0;
  letter-spacing: .3px;
}
.product-meta-box .meta-row strong { color: var(--gold-light); min-width: 80px; }

/* --- Product Quick View Modal --- */
.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.quickview-overlay.open { opacity: 1; visibility: visible; }
.quickview-modal {
  background: var(--dark2);
  border: 1px solid rgba(147,51,234,.15);
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.95);
  transition: transform .3s;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.quickview-overlay.open .quickview-modal { transform: scale(1); }
.quickview-img { aspect-ratio: 3/4; object-fit: cover; border-radius: 12px 0 0 12px; }
.quickview-body { padding: 36px 32px; overflow-y: auto; }
.quickview-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  transition: var(--transition);
}
.quickview-close:hover { background: var(--gold); color: #ffffff; }
@media(max-width:600px){
  .quickview-modal { grid-template-columns: 1fr; }
  .quickview-img { border-radius: 12px 12px 0 0; aspect-ratio: 4/3; }
}

/* --- Contact: WhatsApp CTA Block --- */
.wa-cta-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(37,211,102,.06);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: 8px;
  padding: 18px 22px;
  margin-top: 24px;
  cursor: pointer;
  transition: var(--transition);
}
.wa-cta-block:hover { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.4); }
.wa-cta-icon { width: 44px; height: 44px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-cta-icon svg { width: 24px; height: 24px; fill: #fff; }
.wa-cta-title { font-size: 14px; font-weight: 600; color: #25D366; margin-bottom: 2px; }
.wa-cta-sub { font-size: 11px; color: var(--grey); }
