/* =============================================
   VYZO – Premium Tech Accessories
   style.css – Single global stylesheet
   ============================================= */

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

/* ── CSS Custom Properties ── */
:root {
  --accent:       #FF6A00;
  --accent-hover: #FF7A1A;
  --heading:      #111111;
  --body:         #666666;
  --white:        #FFFFFF;
  --bg-secondary: #FAFAFA;
  --border:       #EAEAEA;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-width:    1280px;
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::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(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { line-height: 1.7; }

/* ── Layout Utility ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title { margin-bottom: 12px; }
.section-sub {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,106,0,0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 28px rgba(255,106,0,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--heading);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--heading);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--heading);
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--heading);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.announcement-bar span { color: var(--accent); font-weight: 700; }

/* ── HEADER / NAV ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-img {
  background: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active { color: var(--accent); }
.nav-links a.nav-active::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  transition: var(--transition);
  position: relative;
}
.nav-icon-btn:hover { background: var(--bg-secondary); color: var(--accent); }
.nav-icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--heading); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 72vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,106,0,0.12) 0%, transparent 70%);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0;
}
.hero-inner > * { min-width: 0; }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,106,0,0.12);
  border: 1px solid rgba(255,106,0,0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse-dot 1.5s ease-in-out infinite; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .accent-text { color: var(--accent); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.hero-visual { position: relative; z-index: 2; }
/* ── Hero Video Frame ── */
.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}
.hero-video-frame-border {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 520px;
  border: 2px solid rgba(255,106,0,0.35);
  box-shadow:
    0 0 0 6px rgba(255,106,0,0.08),
    0 0 0 12px rgba(255,106,0,0.04),
    0 24px 64px rgba(0,0,0,0.6);
  background: #0a0a0a;
}
.hero-video-frame-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 2;
  pointer-events: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* keep old wrap for other pages */
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 520px;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.hero-image-wrap:hover img { transform: scale(1.04); }
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 20px;
  border-radius: var(--radius);
  color: #fff;
}
.hero-badge-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; }
.hero-badge-sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.hero-float-card {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}
.hero-float-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,106,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}
.hero-float-label { font-size: 0.7rem; color: var(--body); }
.hero-float-value { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; color: var(--heading); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-divider { width: 1px; height: 32px; background: var(--border); }

/* ── CATEGORIES ── */
.categories { background: var(--white); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #111;
}
.cat-card:first-child { grid-row: span 2; aspect-ratio: unset; min-height: 480px; }
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
  opacity: 0.85;
}
.cat-card:hover img { transform: scale(1.06); opacity: 0.75; }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.cat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.cat-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cat-card:first-child .cat-name { font-size: 1.8rem; }
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.cat-card:hover .cat-link { color: var(--accent); }

/* ── FEATURED PRODUCTS ── */
.featured { background: var(--white); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-6px);
  border-color: transparent;
}
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-secondary);
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-badge.new { background: var(--heading); }
.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: var(--transition);
  font-size: 0.9rem;
}
.product-action-btn:hover { background: var(--accent); color: var(--white); }
.product-card-body { padding: 18px 20px 20px; }
.product-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 6px;
}
.product-card-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.stars { display: flex; gap: 2px; }
.stars svg { color: #FFC107; }
.review-count { font-size: 0.75rem; color: var(--body); }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--accent); }
.product-price-original { font-size: 0.85rem; color: var(--body); text-decoration: line-through; margin-left: 6px; }
.add-to-cart-btn {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.add-to-cart-btn:hover { background: var(--accent-hover); transform: scale(1.1); }

/* ── HERO BANNER ── */
.promo-banner {
  background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 100%);
  padding: 60px 0;
  overflow: hidden;
}
.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.promo-content { position: relative; z-index: 2; }
.promo-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.promo-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.promo-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}
.promo-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.promo-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.promo-feature-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.promo-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
}
.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.promo-image:hover img { transform: scale(1.04); }
.promo-price-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.promo-price-tag .price-big { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; display: block; }
.promo-price-tag .price-label { font-size: 0.7rem; opacity: 0.85; }

/* ── WHY VYZO ── */
.why-vyzo { background: var(--bg-secondary); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
}
.why-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: transparent;
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,106,0,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.why-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.why-desc { font-size: 0.875rem; line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.t-stars { margin-bottom: 16px; }
.t-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 24px;
}
.t-quote::before { content: '\201C'; font-size: 1.5rem; color: var(--accent); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff9a3c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.t-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; color: var(--heading); }
.t-location { font-size: 0.75rem; color: var(--body); }

/* ── NEW ARRIVALS STRIP ── */
.new-arrivals { background: var(--heading); padding: 60px 0; }
.new-arrivals .section-title { color: #fff; }
.new-arrivals .section-sub { color: rgba(255,255,255,0.5); }
.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.new-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.new-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,106,0,0.3);
  transform: translateY(-4px);
}
.new-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.new-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.new-card:hover .new-card-image img { transform: scale(1.06); }
.new-card-body { padding: 20px; }
.new-card-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.new-card-price { color: var(--accent); font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, var(--accent) 0%, #ff4500 100%);
  padding: 60px 0;
}
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); }

/* ── FOOTER ── */
.footer { background: #0a0a0a; color: rgba(255,255,255,0.6); }
.footer-top {
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .footer-logo { margin-bottom: 20px; }
.footer-brand .footer-logo img { height: 46px; filter: invert(1); }
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  font-size: 0.875rem;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,106,0,0.08); }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--accent); }
.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 16px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--accent); }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-payments { display: flex; align-items: center; gap: 8px; }
.payment-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, calc(100% - 20px));
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { display: block; }
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.mobile-nav-links a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading);
  border-bottom: 1px solid var(--border);
  display: block;
}

/* ── ANIMATIONS ── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.fade-in { opacity: 0; animation: fadeIn 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 32px 0; }
  .hero-visual { display: none !important; }
  .hero { min-height: auto; padding: 24px 0 40px; }
  .hero .fade-up,
  .hero .fade-in { opacity: 1; animation: none; transform: none; }
  .hero-stats { gap: 24px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .cat-card:first-child { grid-column: span 2; min-height: 320px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .promo-inner { grid-template-columns: 1fr; gap: 40px; }
  .new-arrivals-grid { grid-template-columns: 1fr 1fr; }
  .nav-logo img { height: 46px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card:first-child { grid-column: auto; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .new-arrivals-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .trust-divider { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .nav-cta { display: none; }
}
