/* ═══════════════════════════════════════
   GARUDA — Shared Stylesheet
   Classic · Minimalist · Nigerian
═══════════════════════════════════════ */

@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');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

:root {
  --blue:       #1787B4;
  --blue-dark:  #116A90;
  --blue-hover: #1580AB;
  --blue-light: #E6F4FB;
  --blue-pale:  #EDF7FC;
  --black:      #0A0D14;
  --dark:       #111827;
  --mid:        #374151;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --light:      #F8FAFB;
  --white:      #FFFFFF;
  --green:      #16A34A;
  --red:        #DC2626;
  --gold:       #D97706;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --max-w: 1200px;
  --nav-h: 72px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Announcement Bar ── */
.announce-bar {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3px;
}
.announce-bar a { color: white; text-decoration: underline; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo img, .nav-logo .logo-svg {
  width: 42px;
  height: 42px;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -.3px;
}

/* Main nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0 32px;
}
.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-pale);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  position: relative;
}
.nav-cart:hover { background: var(--blue); }
.cart-badge {
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-cart:hover .cart-badge { background: white; color: var(--blue); }

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark);
  padding: 4px;
}

/* ══════════════════════════════════════
   HERO — Homepage
══════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: var(--black);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(27,159,212,.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  padding: 80px 24px 80px 60px;
  max-width: 620px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,159,212,.15);
  border: 1px solid rgba(27,159,212,.3);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: white;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn-white {
  background: white;
  color: var(--dark);
  border-color: white;
}
.btn-white:hover { background: var(--blue); color: white; border-color: var(--blue); }
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: white; }
.btn-blue {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,159,212,.35); }
.btn-dark {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--blue); border-color: var(--blue); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

.hero-visual {
  height: 100%;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.hero-logo-display {
  width: 300px;
  height: 300px;
  filter: drop-shadow(0 30px 60px rgba(27,159,212,.4));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: white;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .5px; margin-top: 2px; }

/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */
.trust-strip {
  background: var(--blue);
  color: white;
  padding: 0 24px;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.2);
}
.trust-item:last-child { border-right: none; }
.trust-item .ti { font-size: 20px; }

/* ══════════════════════════════════════
   SECTION SCAFFOLD
══════════════════════════════════════ */
.section { padding: 96px 24px; }
.section-sm { padding: 64px 24px; }
.section-light { background: var(--light); }
.section-dark { background: var(--black); color: white; }
.section-blue { background: var(--blue); color: white; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--blue);
}
.section-label.light { color: rgba(255,255,255,.7); }
.section-label.light::before { background: rgba(255,255,255,.5); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}
.section-title.light { color: white; }
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 560px;
}
.section-sub.light { color: rgba(255,255,255,.7); }
.section-header {
  max-width: var(--max-w);
  margin: 0 auto 56px;
}
.section-header-row {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

/* ══════════════════════════════════════
   CATEGORY CARDS
══════════════════════════════════════ */
.category-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  color: inherit;
}
.cat-card:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat-card .icon { font-size: 40px; margin-bottom: 14px; }
.cat-card .name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.cat-card .count {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.cat-card:hover .name { color: var(--blue); }

/* ══════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════ */
.products-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-img {
  position: relative;
  background: var(--light);
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 28px;
  transition: transform .35s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-blue { background: var(--blue); color: white; }
.badge-dark { background: var(--dark); color: white; }
.badge-gold { background: var(--gold); color: white; }

.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.product-model {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.spec { background: var(--light); color: var(--mid); font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 6px; }
.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}
.product-actions { display: flex; gap: 8px; }
.add-cart-btn, .view-btn {
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
}
.add-cart-btn { background: var(--blue); color: white; }
.add-cart-btn:hover { background: var(--blue-dark); }
.view-btn { background: var(--light); color: var(--dark); border: 1px solid var(--border); }
.view-btn:hover { background: var(--dark); color: white; }

/* ══════════════════════════════════════
   HOMEPAGE — Why Garuda
══════════════════════════════════════ */
.pillars-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.pillar {
  background: white;
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pillar p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════
   BRAND STORY SPLIT
══════════════════════════════════════ */
.brand-split {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: var(--radius-xl);
  padding: 60px;
  min-height: 400px;
}
.brand-visual .big-logo {
  width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.brand-visual-stat {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
}
.brand-visual-stat.tl { top: 24px; left: 24px; }
.brand-visual-stat.br { bottom: 24px; right: 24px; }
.vs-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--blue); }
.vs-label { font-size: 12px; color: var(--muted); }
.brand-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.brand-text p { font-size: 16px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
.brand-text ul { list-style: none; margin: 24px 0 32px; }
.brand-text ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.brand-text ul li::before { content: '✓'; color: var(--blue); font-weight: 700; font-size: 16px; }

/* ══════════════════════════════════════
   SOCIAL MEDIA STRIP
══════════════════════════════════════ */
.social-section { padding: 48px 24px; background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.social-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-label { font-size: 14px; font-weight: 600; color: var(--mid); margin-right: 8px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: all .15s;
}
.social-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(27,159,212,.15);
}
.social-link svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════
   PRODUCT PAGE
══════════════════════════════════════ */
.products-page-hero {
  background: var(--black);
  color: white;
  padding: 64px 24px;
  text-align: center;
}
.products-page-hero h1 { font-family: var(--font-display); font-size: 48px; font-weight: 700; margin-bottom: 12px; }
.products-page-hero p { font-size: 18px; color: rgba(255,255,255,.65); }

.filter-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  position: sticky;
  top: var(--nav-h);
  z-index: 10;
}
.filter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-right: 6px; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  color: var(--mid);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-hero {
  background: var(--black);
  color: white;
  padding: 96px 24px;
  text-align: center;
}
.about-hero h1 { font-family: var(--font-display); font-size: 56px; font-weight: 700; margin-bottom: 20px; }
.about-hero p { font-size: 20px; color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; line-height: 1.6; }

.values-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .2s, box-shadow .2s;
}
.value-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
}
.contact-info-block h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-info-block .sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; line-height: 1.6; }
.contact-entry {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-entry:last-of-type { border-bottom: none; }
.ce-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.ce-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.ce-value { font-size: 15px; font-weight: 600; color: var(--dark); margin-top: 2px; }
.wa-order-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-top: 28px;
  transition: background .15s, transform .15s;
  width: fit-content;
}
.wa-order-btn:hover { background: #1EB859; transform: translateY(-2px); }

.contact-form-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--mid); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark);
  background: white;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,159,212,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .15s, transform .15s;
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ══════════════════════════════════════
   CART PAGE
══════════════════════════════════════ */
.cart-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.cart-section h1 { font-family: var(--font-display); font-size: 36px; font-weight: 700; margin-bottom: 32px; }
.empty-cart {
  padding: 80px 24px;
  text-align: center;
  color: var(--muted);
}
.empty-cart .empty-icon { font-size: 64px; margin-bottom: 20px; }
.empty-cart h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; margin-bottom: 12px; color: var(--dark); }
.empty-cart p { font-size: 16px; margin-bottom: 28px; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 2px solid var(--border);
}
.cart-row { border-bottom: 1px solid var(--border); }
.cart-row td { padding: 20px 0; vertical-align: middle; }
.cart-prod-info { display: flex; align-items: center; gap: 16px; }
.cart-prod-img {
  width: 72px; height: 72px;
  object-fit: contain;
  background: var(--light);
  border-radius: 10px;
  padding: 8px;
  flex-shrink: 0;
}
.cart-prod-name { font-weight: 700; font-size: 15px; }
.cart-prod-model { font-size: 12px; color: var(--muted); margin-top: 2px; }
.qty-ctrl { display: flex; align-items: center; gap: 10px; }
.qty-minus, .qty-plus {
  width: 30px; height: 30px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.qty-minus:hover, .qty-plus:hover { background: var(--blue); border-color: var(--blue); color: white; }
.qty-num { font-size: 15px; font-weight: 700; min-width: 24px; text-align: center; }
.row-price { font-size: 17px; font-weight: 700; }
.remove-row { background: none; border: none; color: var(--muted); font-size: 18px; cursor: pointer; padding: 4px; border-radius: 6px; transition: color .15s, background .15s; }
.remove-row:hover { color: var(--red); background: #FEF2F2; }

/* Checkout Summary */
.checkout-summary {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.checkout-summary h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.summary-row.total {
  font-size: 20px;
  font-weight: 800;
  border-bottom: none;
  margin-top: 8px;
  padding-top: 16px;
}
.summary-row.total span:last-child { color: var(--blue); }

.checkout-form { margin-top: 24px; }
.checkout-form .form-group { margin-bottom: 14px; }
.checkout-form label { font-size: 12px; font-weight: 600; color: var(--mid); display: block; margin-bottom: 6px; }
.checkout-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  background: white;
  outline: none;
  transition: border-color .15s;
}
.checkout-form input:focus { border-color: var(--blue); }

.pay-btn {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  margin-top: 20px;
  transition: background .15s, transform .15s, box-shadow .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pay-btn:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,159,212,.35); }
.pay-btn:disabled { background: var(--muted); cursor: not-allowed; transform: none; box-shadow: none; }

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: white;
  padding: 72px 24px 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
}
.footer-brand-col p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: all .15s;
}
.footer-social-link:hover { background: var(--blue); border-color: var(--blue); color: white; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.footer-bottom-links a:hover { color: var(--blue); }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner { padding: 80px 24px; background: var(--blue); color: white; text-align: center; }
.cta-banner h2 { font-family: var(--font-display); font-size: 40px; font-weight: 700; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; opacity: .85; margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,.5); padding: 14px 28px; border-radius: var(--radius); font-weight: 700; font-size: 15px; cursor: pointer; font-family: var(--font-body); transition: all .15s; }
.btn-white-outline:hover { background: rgba(255,255,255,.15); border-color: white; }

/* ══════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--dark);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateX(120px);
  opacity: 0;
  transition: all .3s ease;
  pointer-events: auto;
  max-width: 320px;
}
.toast.show { transform: translateX(0); opacity: 1; }

/* ══════════════════════════════════════
   PAGE BREADCRUMB
══════════════════════════════════════ */
.breadcrumb { padding: 16px 24px; border-bottom: 1px solid var(--border); }
.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-inner a { color: var(--muted); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--blue); }
.breadcrumb-inner span { margin: 0 6px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 80px 24px; max-width: 100%; }
  .hero-visual { display: none; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-split { grid-template-columns: 1fr; gap: 40px; }
  .brand-visual { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero h1 { font-size: 36px; }
  .hero-ctas { gap: 10px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .trust-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .section-title { font-size: 28px; }
  .hero-stats { display: none; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
}
