/* ── Silveria Jewellery – Main Design System ─────────────────────────────── */

/* ── Google Fonts ────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ───────────────────────────────────────────────────────── */
:root {
  --white:          #FFFFFF;
  --off-white:      #F8F7F5;
  --light-bg:       #F4F3F0;
  --silver-lightest:#F0F0F4;
  --silver-light:   #E4E4EA;
  --silver-mid:     #C0BECB;
  --silver-dark:    #8E8D9A;
  --dark-blue:      #0B1C3D;
  --dark-blue-2:    #0F2557;
  --dark-blue-3:    #1E3A6E;
  --navy-soft:      #2A4680;
  --gold:           #C9A84C;
  --gold-light:     #E5C976;
  --text-primary:   #1A1A2E;
  --text-secondary: #4A4A5A;
  --text-muted:     #8A8A9A;
  --border:         #E2E2E8;
  --border-dark:    #C8C8D0;
  --success:        #2D7A4F;
  --success-bg:     #EAF7F0;
  --error:          #C0392B;
  --error-bg:       #FDECEA;
  --warning:        #D97706;
  --shadow-sm:      0 1px 4px rgba(11,28,61,0.06);
  --shadow-md:      0 4px 16px rgba(11,28,61,0.10);
  --shadow-lg:      0 8px 32px rgba(11,28,61,0.14);
  --shadow-xl:      0 16px 48px rgba(11,28,61,0.18);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --radius-full:    9999px;
  --transition:     all 0.22s cubic-bezier(0.4,0,0.2,1);
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width:      1280px;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Container ───────────────────────────────────────────────────────────── */
.container  { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--sm  { max-width: 720px; }
.container--md  { max-width: 960px; }
.container--lg  { max-width: 1120px; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.25; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem;  font-weight: 600; }
p  { line-height: 1.75; color: var(--text-secondary); }

.display-text { font-family: var(--font-display); }
.text-muted   { color: var(--text-muted); }
.text-small   { font-size: 0.85rem; }
.text-xs      { font-size: 0.75rem; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.font-500      { font-weight: 500; }
.font-600      { font-weight: 600; }
.font-700      { font-weight: 700; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 600; font-family: var(--font-body);
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--dark-blue); color: var(--white); border-color: var(--dark-blue);
}
.btn-primary:hover { background: var(--dark-blue-2); border-color: var(--dark-blue-2); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent; color: var(--dark-blue); border-color: var(--dark-blue);
}
.btn-outline:hover { background: var(--dark-blue); color: var(--white); }

.btn-white {
  background: var(--white); color: var(--dark-blue); border-color: var(--white);
}
.btn-white:hover { background: var(--off-white); }

.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-blue); border-color: var(--gold);
}
.btn-gold:hover { box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-xl { padding: 18px 52px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-loading { opacity: 0.7; pointer-events: none; }

/* ── Badge/Tag ───────────────────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-new      { background: var(--dark-blue);  color: var(--white); }
.badge-sale     { background: var(--error);       color: var(--white); }
.badge-limited  { background: var(--gold);        color: var(--dark-blue); }
.badge-sold-out { background: var(--silver-mid);  color: var(--dark-blue); }

/* ── Card ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── HEADER ──────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-top-bar {
  background: var(--dark-blue); color: rgba(255,255,255,0.9);
  font-size: 0.8rem; text-align: center; padding: 7px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.header-top-bar a { color: inherit; }
.header-top-bar .marquee { overflow: hidden; flex: 1; text-align: center; white-space: nowrap; }

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

.header-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.header-logo .logo-wordmark {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--dark-blue); letter-spacing: -0.5px;
}
.header-logo .logo-sub {
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--silver-dark); display: block; margin-top: -4px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 0.9rem;
  font-weight: 500; color: var(--text-primary); transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--dark-blue); background: var(--silver-lightest); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; margin-left: 6px; vertical-align: middle;
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 200px;
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 0.875rem; color: var(--text-primary); white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--silver-lightest); color: var(--dark-blue); }

.header-actions { display: flex; align-items: center; gap: 4px; }
.header-icon-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: none; background: transparent;
  color: var(--text-primary); transition: var(--transition); position: relative;
}
.header-icon-btn:hover { background: var(--silver-lightest); color: var(--dark-blue); }
.header-icon-btn svg { width: 20px; height: 20px; }

.cart-badge {
  position: absolute; top: 4px; right: 4px; width: 16px; height: 16px;
  background: var(--dark-blue); color: var(--white); border-radius: 50%;
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.header-lang {
  display: flex; align-items: center; gap: 6px; font-size: 0.82rem;
  color: var(--text-secondary); padding: 6px 10px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); cursor: pointer; background: none;
  transition: var(--transition); position: relative;
}
.header-lang:hover { background: var(--silver-lightest); }
.header-lang svg  { width: 16px; height: 16px; flex-shrink: 0; }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0; width: 200px;
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 8px; z-index: 100;
  display: none; max-height: 280px; overflow-y: auto;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  border-radius: var(--radius-sm); cursor: pointer; font-size: 0.85rem; transition: var(--transition);
}
.lang-option:hover { background: var(--silver-lightest); }
.lang-option.active { background: var(--dark-blue); color: var(--white); }

.mobile-menu-btn {
  display: none; width: 40px; height: 40px; align-items: center; justify-content: center;
  border: none; background: transparent; border-radius: var(--radius-sm); color: var(--text-primary);
}
.mobile-menu-btn svg { width: 22px; height: 22px; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 2000; flex-direction: column;
  padding: 24px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-links a {
  display: block; padding: 14px 0; font-size: 1.2rem; font-weight: 600;
  font-family: var(--font-display); border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── HERO / CTA BANNER ───────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 80vh; display: flex; align-items: center;
  overflow: hidden; background: linear-gradient(135deg, #F8F7F5 0%, #EEF0F8 50%, #E8EAF5 100%);
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,28,61,0.55) 0%, rgba(11,28,61,0.15) 60%, rgba(11,28,61,0) 100%);
}
.hero-content {
  position: relative; z-index: 1; color: var(--white); max-width: 600px;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px;
  border-bottom: 1px solid currentColor; padding-bottom: 6px;
}
.hero-title { margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.hero-subtitle { font-size: 1.15rem; margin-bottom: 36px; opacity: 0.9; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge {
  position: absolute; bottom: 40px; right: 80px;
  background: var(--white); border-radius: var(--radius-lg); padding: 16px 24px;
  box-shadow: var(--shadow-xl); text-align: center; min-width: 140px;
  animation: float 4s ease-in-out infinite;
}
.hero-badge .badge-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--dark-blue); }
.hero-badge .badge-label  { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

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

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-3) 100%);
  padding: 72px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04); top: -200px; right: -100px;
}
.cta-banner::after {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04); bottom: -100px; left: -50px;
}
.cta-banner .cta-title { color: var(--white); margin-bottom: 12px; }
.cta-banner .cta-sub   { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1.05rem; }
.cta-banner .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── PRODUCT CARDS ───────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition); position: relative;
  border: 1px solid var(--border);
}
.product-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.product-card:hover .product-img img { transform: scale(1.06); }

.product-img {
  position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--silver-lightest);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-img-hover { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; }
.product-card:hover .product-img-hover { opacity: 1; }
.product-img-hover img { width: 100%; height: 100%; object-fit: cover; }

.product-card-badge { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.product-card-wishlist {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  border: none; transition: var(--transition); opacity: 0;
}
.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-wishlist:hover { background: var(--dark-blue); color: var(--white); }
.product-card-wishlist svg { width: 16px; height: 16px; }

.product-card-quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--dark-blue); color: var(--white);
  padding: 12px; text-align: center; font-weight: 600; font-size: 0.875rem;
  transform: translateY(100%); transition: transform 0.3s ease;
  border: none; width: 100%; letter-spacing: 0.5px;
}
.product-card:hover .product-card-quick-add { transform: translateY(0); }

.product-card-body { padding: 18px 20px; }
.product-card-cat  { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.product-card-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; line-height: 1.3; }
.product-card-name a:hover { color: var(--dark-blue); }
.product-card-price { display: flex; align-items: center; gap: 10px; }
.product-price-current { font-size: 1.1rem; font-weight: 700; color: var(--dark-blue); }
.product-price-compare { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.product-price-save    { font-size: 0.75rem; color: var(--error); font-weight: 600; }

.product-card-stars { display: flex; gap: 2px; margin-top: 8px; }
.product-card-stars svg { width: 14px; height: 14px; fill: var(--gold); color: var(--gold); }

/* ── Featured Section ────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--dark-blue); color: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--dark-blue-3); margin-bottom: 12px;
  position: relative;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: ''; position: absolute; top: 50%; width: 30px; height: 1px;
  background: var(--silver-mid);
}
.section-eyebrow::before { right: calc(100% + 10px); }
.section-eyebrow::after  { left:  calc(100% + 10px); }
.section-title { margin-bottom: 14px; }
.section-subtitle { color: var(--text-secondary); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Category Cards ──────────────────────────────────────────────────────── */
.category-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px;
}
.category-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; transition: var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.category-card:hover img { transform: scale(1.08); }
.category-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.category-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(11,28,61,0.85) 0%, transparent 100%);
  padding: 28px 20px 22px;
}
.category-card-name {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--white);
  font-weight: 600; margin-bottom: 4px;
}
.category-card-count { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── PRODUCT DETAIL PAGE ─────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.product-detail { padding: 60px 0 80px; }
.product-detail-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}

/* Gallery */
.product-gallery { position: sticky; top: 90px; }
.gallery-main {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1;
  background: var(--silver-lightest); margin-bottom: 12px; position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main video {
  width: 100%; height: 100%; object-fit: cover; display: none;
}
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 12px; pointer-events: none; }
.gallery-arrow {
  width: 40px; height: 40px; background: var(--white); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
  pointer-events: all; cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.gallery-arrow:hover { background: var(--dark-blue); color: var(--white); }
.gallery-arrow svg { width: 18px; height: 18px; }

.gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumbs::-webkit-scrollbar { height: 3px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--silver-mid); border-radius: 10px; }
.gallery-thumb {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: var(--radius-sm);
  overflow: hidden; border: 2px solid var(--border); cursor: pointer; transition: var(--transition);
}
.gallery-thumb.active { border-color: var(--dark-blue); }
.gallery-thumb:hover  { border-color: var(--dark-blue); }
.gallery-thumb img    { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.video-thumb { position: relative; background: var(--dark-blue); }
.gallery-thumb.video-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/32px no-repeat rgba(11,28,61,0.6);
}

/* Product Info */
.product-info-col {}
.product-info-breadcrumb {
  display: flex; gap: 8px; align-items: center; font-size: 0.82rem;
  color: var(--text-muted); margin-bottom: 20px;
}
.product-info-breadcrumb a:hover { color: var(--dark-blue); }
.product-info-breadcrumb span { color: var(--silver-mid); }

.product-info-title { margin-bottom: 12px; }
.product-info-rating {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.star-rating { display: flex; gap: 3px; }
.star-rating svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.review-count { font-size: 0.85rem; color: var(--text-muted); }

.product-info-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.price-main     { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--dark-blue); }
.price-compare  { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; }
.price-save-tag { background: var(--error-bg); color: var(--error); padding: 3px 10px; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 700; }

.product-info-desc { color: var(--text-secondary); line-height: 1.8; margin-bottom: 28px; }

.product-info-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.product-add-actions { display: flex; gap: 12px; margin-bottom: 24px; align-items: center; flex-wrap: wrap; }
.qty-input-wrap { display: flex; border: 1px solid var(--border); border-radius: var(--radius-full); overflow: hidden; }
.qty-btn {
  width: 44px; height: 52px; background: none; border: none; font-size: 1.3rem;
  color: var(--text-primary); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--silver-lightest); }
.qty-input-val { width: 52px; text-align: center; border: none; outline: none; font-size: 1rem; font-weight: 600; font-family: var(--font-body); }
.btn-add-cart { flex: 1; min-width: 180px; }
.btn-wishlist-lg {
  width: 52px; height: 52px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: none;
  transition: var(--transition); flex-shrink: 0;
}
.btn-wishlist-lg:hover { background: var(--dark-blue); color: var(--white); border-color: var(--dark-blue); }
.btn-wishlist-lg svg { width: 20px; height: 20px; }

.product-trust-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-secondary); }
.trust-badge svg { width: 18px; height: 18px; color: var(--dark-blue); flex-shrink: 0; }

.product-details-tabs { margin-top: 40px; }
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn {
  padding: 10px 20px; font-weight: 600; font-size: 0.9rem; border: none;
  background: none; color: var(--text-muted); cursor: pointer; position: relative;
  transition: var(--transition);
}
.tab-btn.active { color: var(--dark-blue); }
.tab-btn.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--dark-blue);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Testimonial Videos (Shorts format) */
.video-testimonials { padding: 80px 0; background: var(--off-white); }
.video-shorts-grid {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px;
  scrollbar-width: thin; scroll-snap-type: x mandatory;
}
.video-shorts-grid::-webkit-scrollbar { height: 4px; }
.video-shorts-grid::-webkit-scrollbar-thumb { background: var(--silver-mid); border-radius: 10px; }
.video-short {
  flex-shrink: 0; width: 180px; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; aspect-ratio: 9/16; background: var(--dark-blue); scroll-snap-align: start;
  cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-md);
}
.video-short:hover { transform: scale(1.03); box-shadow: var(--shadow-xl); }
.video-short video,
.video-short img  { width: 100%; height: 100%; object-fit: cover; }
.video-short-overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,28,61,0.8) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
}
.video-short-name   { color: var(--white); font-weight: 600; font-size: 0.8rem; }
.video-short-rating { display: flex; gap: 2px; margin-top: 4px; }
.video-short-rating svg { width: 11px; height: 11px; fill: var(--gold); }
.video-play-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; background: rgba(255,255,255,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.video-play-icon svg { width: 20px; height: 20px; color: var(--dark-blue); margin-left: 3px; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── BLOG ────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 28px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img   { aspect-ratio: 16/9; overflow: hidden; background: var(--silver-lightest); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px 24px; }
.blog-card-meta  { display: flex; gap: 14px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; line-height: 1.35; }
.blog-card-title a:hover { color: var(--dark-blue); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }
.blog-card-read { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.85rem; font-weight: 600; color: var(--dark-blue); }
.blog-card-read svg { width: 14px; height: 14px; transition: transform 0.2s; }
.blog-card-read:hover svg { transform: translateX(3px); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── CART / CHECKOUT ─────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px 16px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.cart-table td { padding: 20px 16px; vertical-align: middle; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-md); object-fit: cover; }
.cart-item-name { font-weight: 600; margin-bottom: 4px; }
.cart-item-sku  { font-size: 0.8rem; color: var(--text-muted); }

.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-summary {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 28px;
  position: sticky; top: 90px;
}
.cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; }
.cart-summary-row.total { font-size: 1.15rem; font-weight: 700; border-top: 2px solid var(--border); padding-top: 16px; margin-top: 4px; }

.coupon-form { display: flex; gap: 10px; margin-top: 16px; }
.coupon-form input {
  flex: 1; border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 10px 16px; font-size: 0.9rem; outline: none; transition: var(--transition); background: var(--white);
}
.coupon-form input:focus { border-color: var(--dark-blue); }

/* Checkout form */
.form-group     { margin-bottom: 20px; }
.form-label     { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.form-input, .form-select, .form-textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 12px 16px; font-size: 0.95rem; font-family: inherit; outline: none;
  transition: var(--transition); background: var(--white); color: var(--text-primary);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--dark-blue); box-shadow: 0 0 0 3px rgba(11,28,61,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error  { font-size: 0.8rem; color: var(--error); margin-top: 5px; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── TESTIMONIALS SECTION ────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: var(--silver-light); position: absolute; top: 12px; left: 20px; font-weight: 700;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.testimonial-text { color: var(--text-secondary); line-height: 1.75; font-size: 0.95rem; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--silver-lightest); }
.testimonial-name   { font-weight: 700; font-size: 0.9rem; }
.testimonial-loc    { font-size: 0.78rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── FOOTER ──────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-blue); color: rgba(255,255,255,0.85);
  padding: 72px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; max-width: var(--max-width); margin: 0 auto;
}
.footer-brand .logo-wordmark { color: var(--white); font-size: 1.8rem; }
.footer-brand .logo-sub      { color: rgba(255,255,255,0.5); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }

.footer-heading { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-links a  { display: block; padding: 5px 0; font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-newsletter p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.footer-newsletter-form { display: flex; gap: 0; }
.footer-newsletter-form input {
  flex: 1; min-width: 0; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-right: none; border-radius: var(--radius-full) 0 0 var(--radius-full);
  padding: 12px 16px; color: var(--white); font-size: 0.875rem; outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form input:focus { border-color: rgba(255,255,255,0.5); }
.footer-newsletter-form button {
  padding: 12px 20px; background: var(--gold); color: var(--dark-blue); font-weight: 700;
  border: none; border-radius: 0 var(--radius-full) var(--radius-full) 0;
  cursor: pointer; font-size: 0.875rem; transition: var(--transition); white-space: nowrap;
}
.footer-newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0;
  max-width: var(--max-width); margin: 40px auto 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.footer-payments svg { width: 38px; height: 24px; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── COOKIE CONSENT (floating bottom bar) ────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 20px; left: 50%; z-index: 9999;
  width: calc(100% - 40px); max-width: 1080px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(11,28,61,0.24);
  padding: 16px 22px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(calc(100% + 40px));
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
}
.cookie-bar.show {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-bar-inner {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie-bar-text { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 260px; }
.cookie-bar-icon {
  width: 38px; height: 38px; background: var(--dark-blue); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden;
}
.cookie-bar-icon svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--white); }
.cookie-bar-text p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }
.cookie-bar-text a { color: var(--dark-blue); text-decoration: underline; font-weight: 600; }
.cookie-bar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-link-btn {
  background: none; border: none; color: var(--text-muted); font-size: 0.85rem;
  font-weight: 600; text-decoration: underline; padding: 8px 4px;
}
.cookie-link-btn:hover { color: var(--dark-blue); }

/* Expandable granular preferences */
.cookie-prefs {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cookie-prefs[hidden] { display: none; }
.cookie-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.cookie-option {
  border: 2px solid var(--border); border-radius: var(--radius-md); padding: 12px 14px;
  cursor: pointer; transition: var(--transition); position: relative;
  display: flex; align-items: center; gap: 12px;
}
.cookie-option.selected { border-color: var(--dark-blue); background: rgba(11,28,61,0.04); }
.cookie-option.required { cursor: default; }
.cookie-option-icon { width: 34px; height: 34px; flex-shrink: 0; background: var(--silver-lightest); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.cookie-option-icon svg { width: 18px; height: 18px; color: var(--dark-blue); }
.cookie-option-label { font-weight: 700; font-size: 0.85rem; margin-bottom: 2px; }
.cookie-option-desc  { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }
.cookie-required-tag { position: absolute; top: 8px; right: 8px; background: var(--dark-blue); color: var(--white); font-size: 0.58rem; padding: 2px 6px; border-radius: var(--radius-full); font-weight: 700; text-transform: uppercase; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── EMAIL SIGNUP POPUP ──────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(11,28,61,0.55); z-index: 9990;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup-modal {
  background: var(--white); border-radius: var(--radius-xl); max-width: 900px; width: 100%;
  overflow: hidden; box-shadow: var(--shadow-xl); display: grid; grid-template-columns: 1fr 1fr;
  transform: scale(0.95); transition: transform 0.3s;
}
.popup-overlay.show .popup-modal { transform: scale(1); }
.popup-image { background: var(--dark-blue); position: relative; min-height: 400px; }
.popup-image img { width: 100%; height: 100%; object-fit: cover; }
.popup-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,28,61,0.6) 0%, rgba(11,28,61,0.2) 100%);
  display: flex; align-items: flex-end; padding: 32px;
}
.popup-image-text { color: var(--white); }
.popup-image-text .popup-offer { font-size: 3.5rem; font-family: var(--font-display); font-weight: 700; line-height: 1; color: var(--gold-light); }
.popup-image-text .popup-offer-sub { font-size: 1rem; opacity: 0.9; margin-top: 6px; }

.popup-content { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.popup-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  background: rgba(255,255,255,0.9); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: var(--transition); z-index: 10;
}
.popup-close:hover { background: var(--dark-blue); color: var(--white); }
.popup-close svg { width: 16px; height: 16px; }
.popup-title { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 10px; }
.popup-desc  { color: var(--text-secondary); margin-bottom: 24px; font-size: 0.95rem; line-height: 1.7; }
.popup-form  { display: flex; flex-direction: column; gap: 12px; }
.popup-form input {
  border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 14px 20px; font-size: 0.95rem; outline: none; transition: var(--transition);
}
.popup-form input:focus { border-color: var(--dark-blue); }
.popup-legal { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── BREADCRUMBS & MISC ──────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--text-muted); padding: 16px 0; }
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--dark-blue); }
.breadcrumb span { color: var(--silver-mid); }

.alert { padding: 14px 18px; border-radius: var(--radius-md); margin-bottom: 16px; font-size: 0.9rem; display: flex; gap: 10px; align-items: flex-start; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: var(--success-bg); color: var(--success); }
.alert-error   { background: var(--error-bg);   color: var(--error);   }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination li a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-md); font-size: 0.9rem;
  font-weight: 500; border: 1px solid var(--border); color: var(--text-primary); transition: var(--transition);
}
.pagination li a:hover,
.pagination li.active a { background: var(--dark-blue); color: var(--white); border-color: var(--dark-blue); }

/* ── SEO hidden content ──────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Toast notifications ─────────────────────────────────────────────────── */
.toast-container { position: fixed; top: 90px; right: 24px; z-index: 8000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--white); border-radius: var(--radius-md); padding: 14px 18px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); display: flex;
  align-items: center; gap: 12px; font-size: 0.9rem; min-width: 280px; max-width: 380px;
  transform: translateX(120%); transition: transform 0.3s;
}
.toast.show { transform: translateX(0); }
.toast-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast-success .toast-icon { background: var(--success-bg); color: var(--success); }
.toast-error   .toast-icon { background: var(--error-bg);   color: var(--error);   }
.toast-icon svg { width: 18px; height: 18px; }
.toast-body    { flex: 1; }
.toast-title   { font-weight: 600; font-size: 0.875rem; }
.toast-msg     { font-size: 0.82rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────────────────────── */
/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
/* ── RESPONSIVE GRID HELPERS (replace hard-coded inline grids) ───────────── */
/* ─────────────────────────────────────────────────────────────────────────── */
.trust-grid      { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: center; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.pay-method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }

.blog-feature      { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-xl); margin-bottom: 48px; min-height: 380px; overflow: hidden; }
.blog-feature-img  { overflow: hidden; }
.blog-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-feature-body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }

/* ── Tablet (≤1024px) ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid           { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery       { position: static; }
  .cart-layout           { grid-template-columns: 1fr; }
  .popup-modal           { grid-template-columns: 1fr; max-width: 440px; }
  .popup-image           { display: none; }
  .hero-content          { padding: 64px 0; }
  .hero-badge            { right: 32px; bottom: 24px; }
  .section               { padding: 64px 0; }
  .product-grid          { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
  .container             { padding: 0 20px; }
  .checkout-layout       { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Mobile / small tablet (≤768px) ───────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav, .header-lang    { display: none; }
  .mobile-menu-btn           { display: flex; }
  .header-inner              { height: 60px; padding: 0 16px; gap: 12px; }
  .header-top-bar            { padding: 6px 16px; font-size: 0.72rem; }
  .header-top-bar > span     { display: none; }            /* hide domain text, give marquee room */
  .header-top-bar .marquee   { text-align: center; }
  .header-logo .logo-wordmark{ font-size: 1.35rem; }
  .header-actions            { gap: 0; }

  .hero                      { min-height: 56vh; }
  .hero-content              { padding: 48px 0; }
  .hero-badge                { display: none; }
  .hero-subtitle             { font-size: 1rem; margin-bottom: 28px; }
  .hero-actions              { flex-direction: column; align-items: stretch; }
  .hero-actions .btn         { width: 100%; justify-content: center; }

  .footer-grid               { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand              { grid-column: 1 / -1; }
  .footer-bottom             { flex-direction: column; text-align: center; gap: 14px; }

  .category-grid             { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .testimonials-grid         { grid-template-columns: 1fr; }
  .section                   { padding: 52px 0; }
  .section-header            { margin-bottom: 36px; }

  .product-add-actions       { flex-wrap: wrap; }
  .btn-add-cart              { min-width: 0; flex: 1 1 100%; }
  .form-row                  { grid-template-columns: 1fr; }

  .popup-modal               { max-width: 420px; }
  .popup-content             { padding: 32px 24px; }
  .cta-banner                { padding: 52px 20px; }
  .gallery-thumb             { width: 60px; height: 60px; }
  .video-shorts-grid         { gap: 10px; }
  .video-short               { width: 150px; }
  .tabs-nav                  { overflow-x: auto; }

  /* Inline-grid sections → stack / 2-up on mobile */
  .trust-grid                { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .pay-method-grid           { grid-template-columns: 1fr; }
  .blog-feature              { grid-template-columns: 1fr; min-height: 0; }
  .blog-feature-img          { border-radius: var(--radius-xl) var(--radius-xl) 0 0; max-height: 240px; }
  .blog-feature-img img      { aspect-ratio: 16/10; }
  .blog-feature-body         { padding: 28px 24px; }

  /* Cookie bar stacks on mobile */
  .cookie-bar-inner          { gap: 12px; }
  .cookie-bar-actions        { width: 100%; justify-content: stretch; }
  .cookie-bar-actions .btn   { flex: 1; justify-content: center; }
  .cookie-options            { grid-template-columns: 1fr; }
}

/* ── Phones (≤480px) ──────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .product-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .container     { padding: 0 16px; }
  .section       { padding: 44px 0; }
  .product-card-body { padding: 14px 14px; }
  .product-card-name { font-size: 0.95rem; }
  .cta-banner    { padding: 44px 16px; }

  /* Floating cookie bar — full-width buttons, customise link on its own row */
  .cookie-bar               { bottom: 12px; width: calc(100% - 20px); padding: 14px 16px; }
  .cookie-bar-text p        { font-size: 0.8rem; }
  .cookie-bar-actions       { flex-direction: column; align-items: stretch; }
  .cookie-bar-actions .btn  { width: 100%; }
  #cookieCustomize          { order: 3; }
}
