/* ===== TEXROUTER GLOBAL STYLES ===== */
:root {
  --primary: #0066ff;
  --primary-dark: #0047cc;
  --accent: #00d4ff;
  --accent2: #ff5c00;
  --dark: #050d1e;
  --dark2: #0a1628;
  --dark3: #0f2040;
  --text: #e8f0fe;
  --text-muted: #7a9ac9;
  --white: #ffffff;
  --card-bg: #0d1f3c;
  --border: rgba(0,102,255,0.2);
  --gradient: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  --gradient2: linear-gradient(135deg, #ff5c00 0%, #ff9500 100%);
  --shadow: 0 20px 60px rgba(0,102,255,0.15);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.accent { color: var(--accent); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  text-align: center;
}
.tb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.tb-links { display: flex; gap: 20px; }
.tb-links a { color: #fff; opacity: .85; }
.tb-links a:hover { opacity: 1; }

/* ===== HEADER ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5,13,30,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.5); }

.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
}
.logo-icon { font-size: 24px; }
.logo-text .accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
  background: rgba(0,102,255,.15);
}

/* DROPDOWN */
.dropdown .drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  min-width: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 999;
}
.dropdown:hover .drop-menu { display: block; }
.drop-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all .2s;
}
.drop-menu a:hover { background: rgba(0,102,255,.1); color: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.search-wrap {
  display: flex;
  align-items: center;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color .2s;
}
.search-wrap:focus-within { border-color: var(--primary); }
.search-wrap input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 16px;
  width: 220px;
}
.search-wrap button {
  background: var(--gradient);
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  font-size: 16px;
}

.cart-btn {
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-btn:hover { background: var(--primary); border-color: var(--primary); }
.cart-count {
  background: var(--accent2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 80px 64px;
  gap: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,102,255,.15) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 30%, rgba(0,212,255,.08) 0%, transparent 60%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-badge {
  display: inline-block;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: .5px;
  animation: fadeUp .6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  line-height: .95;
  margin-bottom: 24px;
  animation: fadeUp .6s ease .1s both;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(60px, 7vw, 100px);
  color: var(--white);
}
.hero-title .line2 {
  display: block;
  font-size: clamp(60px, 7vw, 100px);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  animation: fadeUp .6s ease .2s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeUp .6s ease .3s both;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
  box-shadow: 0 8px 30px rgba(0,102,255,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,102,255,.5); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUp .6s ease .4s both;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 22px; font-weight: 800; color: var(--white); }
.stat span { font-size: 13px; color: var(--text-muted); }

.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  animation: fadeIn .8s ease .5s both;
}

.router-card-3d {
  background: linear-gradient(145deg, var(--dark3), var(--dark2));
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
  animation: float 4s ease-in-out infinite;
}

.router-img-wrap { position: relative; width: 380px; }
.router-img-wrap img { border-radius: 16px; width: 100%; object-fit: cover; height: 280px; }

.wifi-rings {
  position: absolute;
  bottom: -20px;
  right: -20px;
}
.ring {
  position: absolute;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: wifiPulse 2.5s ease-out infinite;
}
.r1 { width: 60px; height: 60px; top: -30px; left: -30px; animation-delay: 0s; }
.r2 { width: 100px; height: 100px; top: -50px; left: -50px; animation-delay: .5s; }
.r3 { width: 140px; height: 140px; top: -70px; left: -70px; animation-delay: 1s; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ti-icon { font-size: 28px; }
.trust-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.trust-item small { font-size: 12px; color: var(--text-muted); }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section-header p { font-size: 17px; color: var(--text-muted); }
.view-all {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  transition: gap .2s;
}
.view-all:hover { color: var(--primary); }

/* ===== CATEGORIES ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: block;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,102,255,.2); border-color: var(--primary); }
.cc-img { height: 200px; overflow: hidden; }
.cc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-card:hover .cc-img img { transform: scale(1.08); }
.cc-body { padding: 20px 22px; }
.cc-body h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.cc-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.cc-count { font-size: 12px; font-weight: 700; color: var(--accent); background: rgba(0,212,255,.1); padding: 3px 10px; border-radius: 50px; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.pc-img { position: relative; height: 220px; overflow: hidden; background: var(--dark3); }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .pc-img img { transform: scale(1.06); }
.pc-badge { position: absolute; top: 12px; left: 12px; background: var(--accent2); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.pc-wishlist { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.5); border: none; color: var(--text-muted); font-size: 18px; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.pc-wishlist:hover { background: var(--accent2); color: #fff; }
.pc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pc-cat { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.pc-name { font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 8px; flex: 1; }
.pc-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 14px; }
.pc-stars { color: #fbbf24; }
.pc-rcount { color: var(--text-muted); }
.pc-price-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.pc-price { display: flex; align-items: baseline; gap: 8px; }
.pc-price strong { font-size: 22px; font-weight: 800; color: var(--white); }
.pc-price del { font-size: 14px; color: var(--text-muted); }
.pc-add {
  background: var(--gradient);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.pc-add:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,102,255,.4); }

/* ===== DEALS BANNER ===== */
.deals-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0f2854 50%, #0a1628 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.deals-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,102,255,.1) 0%, transparent 70%);
}
.db-content { position: relative; z-index: 2; }
.db-badge {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}
.deals-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 16px;
}
.deals-banner p { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; }

.countdown { display: flex; justify-content: center; gap: 20px; margin-bottom: 36px; }
.cd-unit {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  min-width: 80px;
}
.cd-unit strong { display: block; font-family: var(--font-display); font-size: 40px; color: var(--accent); line-height: 1; }
.cd-unit span { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* ===== WHY US ===== */
.why-us { background: var(--dark2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: transform .3s, border-color .3s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.why-icon { font-size: 44px; margin-bottom: 20px; }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: transform .3s;
}
.review-card:hover { transform: translateY(-4px); }
.rc-stars { color: #fbbf24; font-size: 18px; margin-bottom: 14px; }
.review-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.rc-author { display: flex; align-items: center; gap: 12px; }
.rc-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.rc-author strong { display: block; font-size: 14px; color: var(--white); }
.rc-author small { font-size: 12px; color: var(--text-muted); }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--gradient);
  padding: 80px 24px;
}
.nl-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.nl-inner h3 { font-family: var(--font-display); font-size: 42px; color: #fff; margin-bottom: 12px; letter-spacing: 1px; }
.nl-inner > p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.nl-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
}
.nl-form input {
  flex: 1;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.2);
  border-right: none;
  border-radius: 50px 0 0 50px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 24px;
  outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.6); }
.nl-form button {
  background: #fff;
  color: var(--primary-dark);
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.nl-form button:hover { background: #f0f0ff; }
.nl-legal { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 14px; }
.nl-legal a { color: #fff; text-decoration: underline; }

/* ===== FOOTER ===== */
footer { background: var(--dark2); }
.footer-top { padding: 70px 0 50px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand .logo { margin-bottom: 16px; font-size: 24px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.footer-address { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all .2s;
}
.social-links a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.payment-icons { display: flex; gap: 8px; }
.pay-icon {
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,102,255,.4);
}
.back-top.visible { opacity: 1; transform: translateY(0); }

/* ===== CHAT BUBBLE ===== */
.chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,102,255,.4);
  z-index: 999;
  transition: transform .2s;
  animation: pulse 2.5s infinite;
}
.chat-bubble:hover { transform: scale(1.1); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes wifiPulse {
  0% { transform: scale(.5); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== POLICY PAGES ===== */
.policy-page { max-width: 860px; margin: 0 auto; padding: 80px 24px; }
.policy-page h1 { font-family: var(--font-display); font-size: 52px; color: var(--white); margin-bottom: 8px; }
.policy-page .last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.policy-page h2 { font-size: 22px; font-weight: 700; color: var(--white); margin: 36px 0 14px; }
.policy-page p, .policy-page li { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.policy-page ul { list-style: disc; padding-left: 24px; }
.policy-page a { color: var(--accent); text-decoration: underline; }
.policy-page .highlight-box { background: var(--dark3); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; margin: 20px 0; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--dark2); border-bottom: 1px solid var(--border); padding: 14px 0; }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--white); }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: var(--text-muted); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ===== ALERTS ===== */
.alert { padding: 14px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.alert-success { background: rgba(0,200,100,.1); border: 1px solid rgba(0,200,100,.3); color: #00c864; }
.alert-error { background: rgba(255,60,60,.1); border: 1px solid rgba(255,60,60,.3); color: #ff5050; }

/* ===== PRODUCT PAGE ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px 0; }
.pd-gallery img { width: 100%; border-radius: 20px; object-fit: cover; }
.pd-info h1 { font-family: var(--font-display); font-size: 48px; color: var(--white); margin-bottom: 12px; }
.pd-price strong { font-size: 36px; font-weight: 800; color: var(--white); }
.pd-price del { font-size: 18px; color: var(--text-muted); margin-left: 12px; }
.pd-price .save { background: var(--accent2); color: #fff; font-size: 13px; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-left: 10px; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 32px; }
  .router-img-wrap { width: 300px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .search-wrap input { width: 140px; }
  .hero { flex-direction: column; padding: 50px 24px; text-align: center; min-height: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .trust-bar .container { justify-content: center; }
  .countdown { gap: 10px; }
  .cd-unit { padding: 12px 16px; min-width: 60px; }
  .cd-unit strong { font-size: 28px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-title .line1, .hero-title .line2 { font-size: 52px; }
}
