
/* ===== CSS VARIABLES ===== */
:root {
  --bg: #070B14;
  --bg2: #0D1220;
  --bg3: #111826;
  --surface: #161D2E;
  --surface2: #1C2538;
  --border: rgba(255,255,255,0.07);
  --accent: #FF5733;
  --accent2: #FF8C42;
  --gold: #F0C040;
  --teal: #00D4B4;
  --text: #F0F4FF;
  --text2: #8A95A8;
  --text3: #5A6478;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --glow: 0 0 30px rgba(255,87,51,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== REUSABLE ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,87,51,0.1); border: 1px solid rgba(255,87,51,0.3);
  color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-sub { color: var(--text2); font-size: 17px; max-width: 560px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px; font-size: 15px;
  font-weight: 600; font-family: 'Outfit', sans-serif;
  cursor: pointer; transition: all 0.25s ease; border: none; text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 24px rgba(255,87,51,0.4);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,87,51,0.5); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ===== NOISE OVERLAY ===== */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 2px; text-decoration: none; color: var(--text);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text2); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); padding: 10px 18px; border-radius: 100px;
  cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 14px;
  font-weight: 600; display: flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.cart-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,87,51,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(0,212,180,0.06) 0%, transparent 60%),
    var(--bg);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: 
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-live-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,87,51,0.1); border: 1px solid rgba(255,87,51,0.3);
  padding: 8px 20px; border-radius: 100px; margin-bottom: 28px;
  font-size: 13px; font-weight: 600; color: var(--accent);
}
.live-dot {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.95; letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-title .line2 { color: var(--accent); }
.hero-title .line3 {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
  color: transparent;
}
.hero-sub { font-size: 18px; color: var(--text2); margin-bottom: 40px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; letter-spacing: 1px; color: var(--text);
}
.stat-label { font-size: 12px; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; }

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--accent); padding: 14px 0; overflow: hidden;
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 0; animation: marquee-scroll 20s linear infinite; width: max-content;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 3px;
  color: rgba(255,255,255,0.9); padding: 0 40px; white-space: nowrap;
}
.marquee-track span::after { content: '✦'; margin-left: 40px; opacity: 0.5; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
#about { background: var(--bg2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual {
  position: relative; height: 420px;
}
.about-card {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.about-card-main {
  top: 0; left: 0; right: 60px; bottom: 60px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.about-card-main::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,87,51,0.15), transparent 70%);
}
.about-card-float {
  bottom: 0; right: 0; width: 200px;
  background: var(--accent); color: #fff; text-align: center;
}
.about-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.about-num-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); }
.about-float-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; line-height: 1; }
.about-float-label { font-size: 12px; opacity: 0.9; }
.about-text .section-sub { margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 14px 18px; border-radius: var(--radius-sm);
}
.about-feature-icon {
  width: 36px; height: 36px; background: rgba(255,87,51,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.about-feature-text { font-size: 14px; color: var(--text2); }
.about-feature-text strong { color: var(--text); display: block; font-size: 15px; margin-bottom: 2px; }

/* ===== CATEGORIES ===== */
#categories { }
.categories-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; margin-top: 50px;
}
.cat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 12px; text-align: center;
  cursor: pointer; transition: all 0.25s ease; text-decoration: none; color: var(--text);
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,87,51,0.05));
  opacity: 0; transition: opacity 0.25s;
}
.cat-card:hover::before, .cat-card.active::before { opacity: 1; }
.cat-card:hover, .cat-card.active {
  border-color: var(--accent); transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,87,51,0.15);
}
.cat-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.cat-name { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; line-height: 1.3; }
.cat-card.active .cat-name { color: var(--accent); }

/* ===== PRODUCTS ===== */
#products { background: var(--bg2); }
.products-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; flex-wrap: wrap; gap: 20px;
}
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.filter-btn {
  padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border); color: var(--text2);
  cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px;
}
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow);
  border-color: rgba(255,87,51,0.3);
}
.product-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg3);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 1px;
}
.product-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateX(10px); transition: all 0.25s;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(7,11,20,0.9); border: 1px solid var(--border);
  color: var(--text); font-size: 15px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all 0.2s;
  backdrop-filter: blur(10px);
}
.product-action-btn:hover { background: var(--accent); border-color: var(--accent); }
.product-action-btn.wishlisted { background: rgba(255,87,51,0.2); border-color: var(--accent); color: var(--accent); }
.product-body { padding: 18px; }
.product-category {
  font-size: 11px; color: var(--accent); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px;
}
.product-name { font-size: 16px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.product-desc { font-size: 13px; color: var(--text2); margin-bottom: 14px; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Space Mono', monospace; font-size: 20px; color: var(--accent); font-weight: 700; }
.add-cart-btn {
  background: var(--accent); color: #fff; border: none; padding: 9px 18px;
  border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'Outfit', sans-serif; transition: all 0.2s; display: flex; align-items: center; gap: 6px;
}
.add-cart-btn:hover { background: var(--accent2); transform: scale(1.03); }
.add-cart-btn.added { background: var(--teal); }

/* ===== REASONS ===== */
#reasons { }
.reasons-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px;
}
.reason-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px; position: relative; overflow: hidden;
  transition: all 0.25s;
}
.reason-card:hover { border-color: rgba(255,87,51,0.4); transform: translateY(-4px); }
.reason-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 64px;
  color: rgba(255,87,51,0.08); line-height: 1;
  position: absolute; top: -8px; right: 12px;
}
.reason-icon { font-size: 28px; margin-bottom: 14px; }
.reason-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.reason-desc { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: -480px; width: 100%; max-width: 460px;
  height: 100vh; background: var(--bg2); border-left: 1px solid var(--border);
  z-index: 2001; transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  padding: 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-drawer-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; }
.close-btn {
  width: 36px; height: 36px; border-radius: 50%; background: var(--surface);
  border: 1px solid var(--border); color: var(--text); font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.close-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 12px; color: var(--text3);
}
.cart-empty-icon { font-size: 48px; opacity: 0.4; }
.cart-item {
  display: flex; gap: 14px; padding: 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px;
}
.cart-item-img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-family: 'Space Mono', monospace; font-size: 14px; color: var(--accent); }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.qty-btn {
  width: 26px; height: 26px; background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); border-radius: 6px; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--accent); border-color: var(--accent); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--text3); cursor: pointer; font-size: 18px; transition: color 0.2s; }
.cart-item-remove:hover { color: var(--accent); }
.cart-footer { padding: 20px; border-top: 1px solid var(--border); }
.cart-totals { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.cart-row {
  display: flex; justify-content: space-between; align-items: center; font-size: 14px;
}
.cart-row .label { color: var(--text2); }
.cart-row .val { font-family: 'Space Mono', monospace; font-weight: 600; }
.cart-row.total { font-size: 16px; padding-top: 10px; border-top: 1px solid var(--border); }
.cart-row.total .label { color: var(--text); font-weight: 700; }
.cart-row.total .val { color: var(--accent); font-size: 18px; }
.cart-row.shipping-free .val { color: var(--teal); }
.checkout-btn {
  width: 100%; padding: 16px; background: var(--accent); color: #fff;
  border: none; border-radius: 100px; font-size: 16px; font-weight: 700;
  font-family: 'Outfit', sans-serif; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255,87,51,0.3);
}
.checkout-btn:hover { background: var(--accent2); transform: translateY(-2px); }

/* ===== CHECKOUT MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  padding: 28px 28px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; }
.modal-body { padding: 24px 28px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-control {
  width: 100%; padding: 12px 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-size: 15px; font-family: 'Outfit', sans-serif;
  transition: border-color 0.2s; outline: none;
}
.form-control:focus { border-color: var(--accent); }
.form-control::placeholder { color: var(--text3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.payment-option { display: none; }
.payment-label {
  padding: 14px 10px; background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; text-align: center;
  font-size: 13px; font-weight: 600; transition: all 0.2s; color: var(--text2);
}
.payment-option:checked + .payment-label { border-color: var(--accent); color: var(--accent); background: rgba(255,87,51,0.08); }
.payment-icon { display: block; font-size: 22px; margin-bottom: 4px; }
.submit-order-btn {
  width: 100%; padding: 16px; background: var(--accent); color: #fff;
  border: none; border-radius: 100px; font-size: 16px; font-weight: 700;
  font-family: 'Outfit', sans-serif; cursor: pointer; transition: all 0.25s; margin-top: 8px;
}
.submit-order-btn:hover { background: var(--accent2); }
.success-msg {
  text-align: center; padding: 40px 20px; display: none;
}
.success-icon { font-size: 64px; margin-bottom: 16px; }
.success-title { font-family: 'Bebas Neue', sans-serif; font-size: 32px; margin-bottom: 10px; color: var(--teal); }
.success-text { color: var(--text2); font-size: 16px; }

/* ===== CONTACT ===== */
#contact { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; margin-top: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.contact-info-icon {
  width: 44px; height: 44px; background: rgba(255,87,51,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: 14px; color: var(--text2); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; }
.contact-info-text a, .contact-info-text span { color: var(--text); font-size: 15px; text-decoration: none; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; }
.contact-success { display: none; text-align: center; padding: 20px; color: var(--teal); font-weight: 600; font-size: 15px; }

/* ===== NEWSLETTER ===== */
#newsletter {
  background: var(--accent);
  position: relative; overflow: hidden;
}
#newsletter::before {
  content: 'NOVA'; font-family: 'Bebas Neue', sans-serif;
  font-size: 300px; color: rgba(255,255,255,0.04);
  position: absolute; right: -20px; bottom: -60px; line-height: 1; pointer-events: none;
}
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.newsletter-left .section-tag { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: #fff; }
.newsletter-left .section-title { color: #fff; }
.newsletter-left .section-sub { color: rgba(255,255,255,0.8); }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.newsletter-control {
  padding: 14px 18px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 15px; font-family: 'Outfit', sans-serif;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.newsletter-control::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-control:focus { border-color: rgba(255,255,255,0.8); }
.newsletter-check { display: flex; align-items: flex-start; gap: 10px; }
.newsletter-check input { accent-color: #fff; margin-top: 3px; flex-shrink: 0; }
.newsletter-check label { color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.4; }
.newsletter-btn {
  padding: 15px; background: rgba(255,255,255,0.2); color: #fff; border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 100px; font-size: 15px; font-weight: 700; font-family: 'Outfit', sans-serif;
  cursor: pointer; transition: all 0.25s;
}
.newsletter-btn:hover { background: rgba(255,255,255,0.3); }
.newsletter-success { display: none; background: rgba(255,255,255,0.15); border-radius: var(--radius); padding: 20px; text-align: center; color: #fff; font-weight: 600; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg3); border-top: 1px solid var(--border); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px;
}
.footer-brand { }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; color: var(--text); margin-bottom: 14px; display: block;
}
.footer-logo span { color: var(--accent); }
.footer-desc { color: var(--text2); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: all 0.2s; text-decoration: none; color: var(--text);
}
.social-icon:hover { background: var(--accent); border-color: var(--accent); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text3); text-decoration: none; font-size: 14px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-bottom-text { color: var(--text3); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text3); text-decoration: none; font-size: 13px; transition: color 0.2s; cursor: pointer; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== POPUP MODALS ===== */
.policy-modal-body { padding: 24px 28px; }
.policy-modal-body h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; color: var(--accent); }
.policy-modal-body p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 8px; }
.policy-modal-body h3:first-child { margin-top: 0; }

/* ===== QUICK VIEW MODAL ===== */
.quickview-body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 24px 28px; }
.quickview-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.quickview-img img { width: 100%; height: 100%; object-fit: cover; }
.quickview-info { display: flex; flex-direction: column; }
.quickview-cat { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.quickview-name { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; margin-bottom: 14px; }
.quickview-desc { color: var(--text2); font-size: 14px; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.quickview-price { font-family: 'Space Mono', monospace; font-size: 28px; color: var(--accent); margin-bottom: 20px; }
.quickview-add {
  padding: 14px; background: var(--accent); color: #fff; border: none; border-radius: 100px;
  font-size: 15px; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: all 0.25s;
}
.quickview-add:hover { background: var(--accent2); }

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 20px;
  display: flex; align-items: center; gap: 10px; min-width: 260px;
  box-shadow: var(--shadow); animation: toast-in 0.3s ease;
  font-size: 14px;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.toast-icon { font-size: 18px; }
.toast.success { border-color: rgba(0,212,180,0.4); }
.toast.error { border-color: rgba(255,87,51,0.4); }

/* ===== TOP CATEGORY BANNER ===== */
.top-cat-banner {
  margin: 60px 0 0; background: linear-gradient(135deg, rgba(255,87,51,0.1), rgba(0,212,180,0.05));
  border: 1px solid rgba(255,87,51,0.2); border-radius: 20px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.top-cat-left { display: flex; align-items: center; gap: 20px; }
.top-cat-icon { font-size: 48px; }
.top-cat-badge { background: var(--gold); color: #000; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 100px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; display: inline-block; }
.top-cat-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; }
.top-cat-sub { color: var(--text2); font-size: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .quickview-body { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open { 
    display: flex; flex-direction: column; 
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--bg2); border-bottom: 1px solid var(--border);
    padding: 20px; gap: 16px; z-index: 999;
  }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-options { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
