/* ════════════════════════════════════════════════════════════
   NOVARA DIGITAL™ — Master StylesHEET
   Colors: #1B2A4A (Navy) | #FFFFFF (White) | #C4933F (Gold)
   ════════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #1B2A4A;
  --navy-deep:  #111D33;
  --navy-mid:   #243660;
  --gold:       #C4933F;
  --gold-light: #E4B86A;
  --white:      #FFFFFF;
  --off-white:  #F8F9FB;
  --gray-100:   #F1F3F7;
  --gray-200:   #E2E6EF;
  --gray-400:   #9BA8C0;
  --gray-600:   #5A6680;
  --text:       #1B2A4A;
  --text-muted: #5A6680;
  --success:    #2E7D32;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 2px 12px rgba(27,42,74,0.08);
  --shadow-lg:  0 6px 24px rgba(27,42,74,0.12);
  --transition: 0.25s ease;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
  text-align: right;
  font-family: 'Outfit', 'Tahoma', 'Arial', sans-serif;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.8; }

/* ── Section Title ───────────────────────────────────────── */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title .label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title h2 { margin-bottom: 16px; }
.section-title p { font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.section-title .gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
  background: var(--navy-deep);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-text span { color: var(--gold); }

.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--gold); }

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

.lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.lang-switcher a {
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.lang-switcher a.active,
.lang-switcher a:hover {
  background: var(--gold);
  color: var(--navy);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(196,147,63,0.12) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(196,147,63,0.08) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,147,63,0.15);
  border: 1px solid rgba(196,147,63,0.35);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge::before { content: '✦'; }
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero .subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-stats .stat {
  text-align: center;
}
.hero-stats .stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stats .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-600);
}
.trust-item .icon { font-size: 1rem; }

/* ════════════════════════════════════════════════════════════
   PRODUCT GRID
   ════════════════════════════════════════════════════════════ */
.products-section { background: var(--white); padding: 80px 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}

.product-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
  z-index: 2;
}
.rtl .product-badge { left: auto; right: 14px; }

.product-card-body { padding: 22px; }

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--navy);
}

.product-card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.product-format {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
}
.product-pages {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.price-current {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}
.price-old {
  font-size: 1rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.price-save {
  background: #FFF3E0;
  color: #E65100;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-card:hover {
  background: var(--navy-mid);
  transform: scale(1.01);
}
.btn-card .arrow { transition: transform var(--transition); }
.btn-card:hover .arrow { transform: translateX(4px); }
.rtl .btn-card:hover .arrow { transform: translateX(-4px); }

/* ════════════════════════════════════════════════════════════
   WHY US SECTION
   ════════════════════════════════════════════════════════════ */
.why-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 50%, rgba(196,147,63,0.08) 0%, transparent 60%);
}
.why-section .section-title .label { color: var(--gold-light); }
.why-section .section-title h2 { color: var(--white); }
.why-section .section-title p { color: rgba(255,255,255,0.65); }
.why-section .gold-line { display: none; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 2;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover {
  background: rgba(196,147,63,0.1);
  border-color: rgba(196,147,63,0.3);
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.why-card h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--off-white); padding: 80px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.stars { color: #F4B400; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.author-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════
   PRODUCT LANDING PAGE
   ════════════════════════════════════════════════════════════ */
.product-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(196,147,63,0.12) 0%, transparent 60%);
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.product-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-emoji-display {
  width: 280px;
  height: 280px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.product-hero-info .breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.product-hero-info .breadcrumb a:hover { color: var(--gold); }
.product-hero-info h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.product-hero-info .tagline {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 24px;
}
.product-hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-price-main {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: white;
}
.hero-price-old {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.hero-save-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.product-actions { display: flex; flex-direction: column; gap: 12px; max-width: 380px; }

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  width: 100%;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,147,63,0.4);
}
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  width: 100%;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,147,63,0.08);
}

.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.trust-badge .check { color: var(--gold); }

/* Product content section */
.product-content { padding: 80px 0; }
.product-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Features list */
.features-list { list-style: none; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.features-list li:last-child { border-bottom: none; }
.features-list .check-icon {
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Sticky buy box */
.buy-box {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow);
}
.buy-box-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.buy-box-price .main {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
}
.buy-box-price .old {
  font-size: 1rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.buy-box-save {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 20px;
}
.buy-box .btn-primary,
.buy-box .btn-secondary { margin-bottom: 0; }
.buy-box-sep {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 10px 0;
  position: relative;
}
.buy-box-sep::before, .buy-box-sep::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--gray-200);
}
.buy-box-sep::before { left: 0; }
.buy-box-sep::after { right: 0; }
.buy-box-features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.buy-box-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 5px 0;
}
.buy-box-features .icon { font-size: 0.9rem; }

/* Tabs */
.product-tabs {
  margin-bottom: 36px;
}
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 28px;
}
.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { font-size: 1.4rem; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 300px; margin-bottom: 20px; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-payment-icons { display: flex; gap: 10px; align-items: center; }
.payment-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .product-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .product-emoji-display { width: 200px; height: 200px; font-size: 5rem; margin: 0 auto; }
  .product-actions { max-width: 100%; }
  .product-hero-price, .trust-badges { justify-content: center; }
  .product-content-grid { grid-template-columns: 1fr; }
  .buy-box { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero { padding: 60px 0 50px; }
  .hero-stats { gap: 24px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .section-pad { padding: 56px 0; }
  .tab-nav { overflow-x: auto; }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  .site-header .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-inner {
    gap: 8px;
    height: 68px;
    overflow: hidden;
  }

  .logo {
    flex: 1 1 auto;
    max-width: calc(100vw - 190px);
    overflow: hidden;
  }

  .logo img {
    width: 34px !important;
    height: 34px !important;
    flex-shrink: 0;
  }

  .logo > span {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .logo > span > span:first-child {
    display: block;
    font-size: 1rem !important;
    letter-spacing: 2px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo > span > span:last-child {
    display: block;
    font-size: 0.48rem !important;
    letter-spacing: 3px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions {
    gap: 6px;
    flex: 0 0 auto;
  }

  .header-actions > a[aria-label="Cart"] {
    margin-right: 0 !important;
    padding: 2px !important;
  }

  .lang-switcher a {
    padding: 6px 11px;
    font-size: 0.78rem;
  }

  .mobile-menu-toggle {
    padding: 4px 0 4px 4px;
  }

  .product-hero,
  .product-content,
  .products-section,
  .why-section,
  .testimonials-section,
  .site-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .product-hero-inner,
  .product-content-grid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .product-hero-visual,
  .product-hero-info,
  .buy-box {
    min-width: 0;
    max-width: 100%;
  }

  .product-hero-info h1,
  .product-hero-info .tagline,
  .breadcrumb {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats .stat-number { font-size: 1.5rem; }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .header-inner {
    gap: 6px;
  }

  .logo {
    max-width: calc(100vw - 176px);
    gap: 8px;
  }

  .logo img {
    width: 32px !important;
    height: 32px !important;
  }

  .logo > span > span:first-child {
    font-size: 0.94rem !important;
    letter-spacing: 1.6px !important;
  }

  .logo > span > span:last-child {
    font-size: 0.44rem !important;
    letter-spacing: 2.4px !important;
  }

  .lang-switcher a {
    padding: 5px 9px;
    font-size: 0.75rem;
  }
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up {
  animation: fadeUp 0.6s ease forwards;
}
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ── Performance & Accessibility ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}