/* ============================================================
   ZIPPY — Official E-Commerce Standard (Safari Bags Light Theme)
   style.css | Clean Executive Design (NO EMOJIS, High Contrast)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --clr-bg:         #f8fafc;
  --clr-bg-card:    #ffffff;
  --clr-bg-soft:    #f1f5f9;

  --clr-text-main:  #0f172a;
  --clr-text-sub:   #475569;
  --clr-text-muted: #64748b;

  --clr-gold:       #d97706;
  --clr-blue:       #0284c7;
  --clr-blue-hover: #0369a1;
  --clr-emerald:    #059669;
  --clr-rose:       #dc2626;

  --border-subtle:  1px solid #e2e8f0;
  --border-card:    1px solid #cbd5e1;

  --ff-display:     'Outfit', sans-serif;
  --ff-body:        'Plus Jakarta Sans', sans-serif;

  /* Crisp 4px-6px radii */
  --r-sm:   4px;
  --r-md:   6px;
  --r-lg:   10px;

  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.06);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text-main);
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
  position: relative;
  width: 100%;
}

/* ─────────────────────────────────────
   UNIFIED BRIGHT TOP ANNOUNCEMENT STRIP
───────────────────────────────────── */
.announcement-bar {
  background: #0f172a;
  color: #ffffff;
  padding: 9px 1.5rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1002;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.announcement-badge-hot {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: #ffffff !important;
  padding: 3px 10px;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  animation: pulseZoom 1.6s infinite ease-in-out;
}

@keyframes pulseZoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ─────────────────────────────────────
   STICKY LIGHT HEADER
───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: #f1f5f9;
  padding: 2px;
  border: 1px solid #e2e8f0;
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--clr-text-main);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-menu a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-sub);
  transition: all 180ms ease;
  padding: 6px 0;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--clr-blue);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-cta {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--clr-blue);
  color: #ffffff;
  border-radius: var(--r-sm);
  transition: all 180ms ease;
}
.btn-header-cta:hover {
  background: var(--clr-blue-hover);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: var(--border-subtle);
  border-radius: var(--r-sm);
}
.hamburger span { width: 18px; height: 2px; background: var(--clr-text-main); }

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: 92px;
  width: 100vw;
  max-width: 100vw;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 300ms ease;
  padding: 1.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-main);
  padding: 1.2rem 0;
  border-bottom: var(--border-subtle);
  display: block;
  width: 100%;
}

/* ─────────────────────────────────────
   CRISP BUTTON SYSTEM
───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  transition: all 180ms ease;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--clr-blue);
  color: #ffffff;
  border: none;
}
.btn-primary:hover {
  background: var(--clr-blue-hover);
  transform: translateY(-1px);
}

.btn-dark {
  background: #0f172a;
  color: #ffffff;
  border: none;
}
.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.btn-glass {
  background: #ffffff;
  color: var(--clr-text-main);
  border: 1px solid #cbd5e1;
}
.btn-glass:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

/* ─────────────────────────────────────
   HERO SECTION
───────────────────────────────────── */
.hero-wrapper {
  position: relative;
  padding: 3rem 0;
  min-height: calc(100vh - 106px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000000;
  width: 100%;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.85;
}

.hero-vignette-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.65) 45%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content-box {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #ffffff;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-sub-title {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: #38bdf8;
  display: block;
  margin-top: 2px;
}

.hero-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hero-price-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
  max-width: 100%;
}
.price-now { font-size: 1.75rem; font-weight: 900; color: #ffffff; }
.price-was { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); text-decoration: line-through; }
.discount-badge {
  background: #059669;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  text-transform: uppercase;
}

/* ─────────────────────────────────────
   SUBPAGE BANNER
───────────────────────────────────── */
.page-hero-banner {
  position: relative;
  min-height: 360px;
  padding: 70px 0 40px;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: var(--border-subtle);
  width: 100%;
}
.page-hero-banner .hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.85;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #ffffff;
}

/* ─────────────────────────────────────
   PRODUCT PAGE & SHOWCASE GALLERY STAGE
───────────────────────────────────── */
.product-page .page-hero-banner { display: none; }

.product-hero-card {
  padding: 1.8rem;
  background: #ffffff;
  border: var(--border-card);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.gallery-stage-human {
  height: 360px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: var(--border-subtle);
}
.gallery-stage-human img {
  max-height: 360px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 180ms ease;
}
.gallery-stage-human img.fade {
  opacity: 0.3;
}

/* HORIZONTAL THUMBNAIL ROW (NEVER VERTICAL) */
.thumbs-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  margin-top: 12px !important;
  justify-content: center !important;
  width: 100% !important;
}
.thumb-box {
  width: 58px !important;
  height: 58px !important;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  background: #f1f5f9;
  transition: all 150ms ease;
  flex-shrink: 0 !important;
}
.thumb-box.active, .thumb-box:hover {
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 2px var(--clr-blue);
}
.thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 1rem 0;
  width: 100%;
}
.spec-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8fafc;
  border: var(--border-subtle);
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text-main);
  box-sizing: border-box;
  width: 100%;
}

/* ─────────────────────────────────────
   COMPARISON TABLE
───────────────────────────────────── */
.comparison-table-wrapper {
  background: #ffffff;
  border: var(--border-card);
  border-radius: var(--r-md);
  overflow-x: auto;
  box-shadow: var(--shadow-card);
  width: 100%;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}
.comparison-table th {
  background: #0f172a;
  color: #ffffff;
  padding: 1.2rem 1.5rem;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.comparison-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  color: #0f172a;
  font-weight: 600;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td.col-zippy {
  color: #059669;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.05);
}
.comparison-table td.col-other {
  color: #dc2626;
}

/* ─────────────────────────────────────
   STATS BAR & CARDS
───────────────────────────────────── */
.designer-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
  width: 100%;
}

.designer-stat-card {
  background: #ffffff;
  border: var(--border-card);
  border-radius: var(--r-sm);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  width: 100%;
}
.designer-stat-value {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-text-main);
}
.designer-stat-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-blue);
  margin-top: 4px;
}

.glass-card {
  background: #ffffff;
  border: var(--border-card);
  border-radius: var(--r-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  width: 100%;
  box-sizing: border-box;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  width: 100%;
}
.card-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
}

.feature-box-human {
  background: #ffffff;
  border: var(--border-subtle);
  border-radius: var(--r-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  width: 100%;
  box-sizing: border-box;
}

/* ─────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 840px;
  margin: 0 auto;
  width: 100%;
}
.faq-item {
  background: #ffffff;
  border: var(--border-subtle);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-card);
  width: 100%;
}
.faq-question {
  width: 100%;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--clr-text-main);
  text-align: left;
}
.faq-answer {
  padding: 0 1.6rem 1.2rem;
  font-size: 0.9rem;
  color: var(--clr-text-sub);
  line-height: 1.6;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open { border-color: var(--clr-blue); }

/* ─────────────────────────────────────
   FOOTER (CLEAN ALIGNED EXECUTIVE FOOTER)
───────────────────────────────────── */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  border-top: var(--border-subtle);
  width: 100%;
  overflow-x: hidden;
}
.site-footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer ul li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.site-footer ul li a {
  color: #cbd5e1;
  transition: color 180ms ease;
}
.site-footer ul li a:hover {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.social-brand-group { display: flex; gap: 12px; margin-top: 1.2rem; }
.social-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

.icon-insta-brand { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border: none; }
.icon-wa-brand { background: #25d366; border: none; }
.icon-email-brand { background: #ffffff; border: none; }

.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}
.wa-float svg { width: 32px; height: 32px; fill: #ffffff; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  padding: 1.5rem;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-panel {
  background: #ffffff;
  color: var(--clr-text-main);
  width: 100%;
  max-width: 560px;
  border-radius: var(--r-md);
  border: var(--border-card);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.form-field {
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  border: var(--border-subtle);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--clr-text-main);
  outline: none;
}
.form-field:focus { border-color: var(--clr-blue); background: #ffffff; }

/* ─────────────────────────────────────
   RESPONSIVE DESIGN (100% ZERO OVERFLOW ON MOBILE)
───────────────────────────────────── */
@media (min-width: 1024px) {
  .nav-menu { display: flex; }
  .hamburger { display: none; }
}

@media (max-width: 1023px) {
  .designer-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3, .card-grid-4, .card-grid-5 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* 📱 MOBILE PHONES (max-width: 768px) — 100% STRICT CONTAINER BOUNDS */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
  }

  .container {
    padding: 0 0.8rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .section {
    padding: 2.2rem 0 !important;
  }

  /* Compact Announcement Bar */
  .announcement-bar {
    padding: 7px 0.5rem !important;
    font-size: 0.65rem !important;
    gap: 4px !important;
    line-height: 1.3 !important;
    box-sizing: border-box !important;
  }
  .announcement-badge-hot {
    padding: 2px 6px !important;
    font-size: 0.68rem !important;
  }

  /* Mobile Header Bar */
  .site-header {
    height: 56px !important;
  }
  .header-actions .icon-insta-brand,
  .header-actions .btn-header-cta {
    display: none !important;
  }
  .logo-img {
    width: 30px !important;
    height: 30px !important;
  }
  .logo-text {
    font-size: 1.15rem !important;
  }

  /* Slide-down Mobile Nav Menu */
  .mobile-nav {
    top: 86px !important;
    padding: 1.2rem 1rem !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  .mobile-nav a {
    font-size: 0.9rem !important;
    padding: 1rem 0 !important;
  }

  /* Hero Section Video & Text Alignment */
  .hero-wrapper {
    min-height: calc(100vh - 86px) !important;
    padding: 1.8rem 0 !important;
    align-items: flex-end !important;
  }
  .hero-video-bg video {
    object-position: 70% 30% !important;
    opacity: 0.9 !important;
  }
  .hero-vignette-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.8) 45%, rgba(15, 23, 42, 0.96) 100%) !important;
  }

  .hero-trust-pill {
    font-size: 0.62rem !important;
    padding: 4px 8px !important;
    margin-bottom: 0.5rem !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .hero-title {
    font-size: 1.7rem !important;
    line-height: 1.12 !important;
    margin-bottom: 0.5rem !important;
  }
  .hero-sub-title {
    font-size: 1.18rem !important;
  }
  .hero-description {
    font-size: 0.82rem !important;
    margin-bottom: 0.8rem !important;
  }

  .hero-price-strip {
    padding: 4px 10px !important;
    margin-bottom: 0.8rem !important;
  }
  .price-now { font-size: 1.35rem !important; }

  /* PRODUCT PAGE & SHOWCASE MOBILE CARD & GALLERY */
  .grid-2, .grid-2-modal {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
    width: 100% !important;
  }
  .gallery-stage-human {
    height: 280px !important;
    width: 100% !important;
    background: #f8fafc !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .gallery-stage-human img {
    height: auto !important;
    max-height: 280px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
  .thumbs-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important; /* 4px gap so all 5 thumbnails fit 100% inside card */
    margin-top: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .thumb-box {
    width: 44px !important; /* 44px thumbnail size fits 100% inside 320px-360px mobile viewports */
    height: 44px !important;
    flex-shrink: 1 !important;
  }

  /* SPEC CARDS SINGLE COLUMN ON MOBILE SO TEXT & CARDS NEVER CLIP */
  .spec-grid {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin: 0.8rem 0 !important;
    width: 100% !important;
  }
  .spec-card {
    font-size: 0.78rem !important;
    padding: 8px 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* MOBILE BUTTONS — 100% FIT INSIDE CARD WITHOUT CUTOFF */
  .btn {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 12px 14px !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.08em !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }

  /* ALL GRIDS SINGLE COLUMN ON MOBILE */
  .card-grid-3, .card-grid-4, .card-grid-5, .designer-stats-bar {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
    width: 100% !important;
  }

  .glass-card, .feature-box-human {
    padding: 1.2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* MOBILE FOOTER — STACKED & ALIGNED PROFESSIONALLY */
  .site-footer {
    padding: 2.5rem 0 1.5rem !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: left !important;
    padding: 0 0.5rem 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .footer-grid h4 {
    margin-bottom: 0.6rem !important;
    color: #ffffff !important;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.55rem !important; }
  .designer-stat-value { font-size: 1.7rem !important; }
}
