/* =========================================================
   APEX SYSTEM — Design Tokens
   ========================================================= */
:root {
  --bg-deep:      #161212;
  --bg-surface:   #211b1b;
  --bg-surface-2: #2a2222;
  --border-soft:  #3a2f2f;
  --red-wine:     #8e1a1f;
  --red-bright:   #d63a3f;
  --red-glow:     rgba(214, 58, 63, 0.35);
  --ink-100:      #f3eeee;
  --ink-300:      #cdc2c2;
  --ink-500:      #968888;
  --ok-green:     #4caf6a;
  --font-display: 'Vazirmatn', sans-serif;
  --font-body:    'Vazirmatn', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 12px 30px -10px rgba(0,0,0,0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-color: #d63a3f black !important;
}
body.dark-mode{
  --bg-deep:      white;
  --bg-surface:   #E8DEDE;
  --bg-surface-2: #DDD1D1;
  --border-soft:  #ffffff;
  --red-wine:     #8e1a1f;
  --red-bright:   #d63a3f;
  --red-glow:     rgba(214, 58, 63, 0.35);
  --ink-100:      #161212;
  --ink-300:      #4A3F3F;
  --ink-500:      #655A5A;
  --ok-green:     #6FD68D;
}
.inpsearch{
  height: 40px;
  background-color: var(--bg-deep) !important;
  border: 2px solid rgb(41, 41, 41);
  /* color: white; */
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth;}
.dropdown-toggle{
  color: white;
}
.dropdown-toggle:hover{
  color: var(--red-bright);
}
body {
  background: var(--bg-deep);
  color: var(--ink-100);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea {
  font-family: inherit;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  color: var(--ink-100);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
input:focus, textarea:focus {
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px var(--red-glow);
}
input::placeholder, textarea::placeholder { color: var(--ink-500); }
:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 2px;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* =========================================================
   Typography helpers
   ========================================================= */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.3; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--red-bright);
  margin-bottom: 10px;
  position: relative;
  padding-right: 18px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--red-bright);
}
.eyebrow.light { color: var(--ink-100); }
.eyebrow.light::before { background: var(--ink-100); }
.section-head { margin-bottom: 44px; max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: none;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-desc { color: var(--ink-300); margin-top: 12px; font-size: 0.98rem; }
.accent-text { color: var(--red-bright); }
/* tabular/numeric utility — used for prices, stats, diagnostics */
.num, .price, .diag-val, .time-box span {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.dropdown-menu{
  background-color: var(--bg-surface-2) !important;
}
.dropdown-item{
  background-color: var(--bg-surface-2) !important;
  color: var(--ink-100) !important;
}
.btn-primary1 {
  background: var(--red-bright);
  color: #fff;
  box-shadow: 0 8px 20px -6px var(--red-glow);
}
.btn-primary1:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -6px var(--red-glow); }
.inpsearch::placeholder{color: var(--ink-500);}
.inpsearch:focus{box-shadow: 0px 0px 15px 1px rgb(250, 49, 49); border: 2px solid rgb(41, 41, 41) ;}
.btn-ghost {
  background: transparent;
  color: var(--ink-100);
  border: 1px solid var(--border-soft);
}
.btn-ghost:hover { border-color: var(--red-bright); color: var(--red-bright); }
.btn-light {
  background: var(--ink-100);
  color: var(--bg-deep);
}
.btn-light:hover { transform: translateY(-2px); }

.btn.full { width: 100%; }

/* =========================================================
   Announcement bar
   ========================================================= */
.announce-bar {
  background: var(--red-wine);
  color: var(--ink-100);
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 600;
  height: 36px;
  display: flex;
  align-items: center;
}
.announce-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  padding-inline-start: 100%;
}
.dot { opacity: 0.6; font-size: 0.6rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
/* =========================================================
Header
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: background .3s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}
.logo-text strong { color: var(--red-bright); font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-300);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--red-bright);
  transition: width .25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink-100); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
#dropdownMenuButton1{
  color: var(--ink-300);
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-count {
  position: absolute;
  top: -4px;
  left: -4px;
  background: var(--red-bright);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink-100);
  margin: 0 auto;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* =========================================================
Hero
========================================================= */
.hero {
  position: relative;
  padding: 72px 0 100px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
  linear-gradient(var(--border-soft) 1px, transparent 1px),
  linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 10%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  color: var(--ink-300);
  margin-bottom: 26px;
  font-variant-numeric: tabular-nums;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok-green);
  box-shadow: 0 0 0 0 rgba(76,175,106,0.6);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(76,175,106,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(76,175,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,106,0); }
}
.cursor { animation: blink 1s steps(1) infinite; color: var(--red-bright); }
@keyframes blink { 50% { opacity: 0; } }
.hero-title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-sub {
  color: var(--ink-300);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-cta-row { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 22px; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1.3rem; font-weight: 800; color: var(--ink-100); }
.trust-item span { font-size: 0.78rem; color: var(--ink-500); }
.trust-divider { width: 1px; height: 32px; background: var(--border-soft); }
/* --- Console (signature element) --- */
.hero-console {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  animation: float-console 6s ease-in-out infinite;
}
@keyframes float-console {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.console-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-surface-2);
  border-bottom: 1px solid var(--border-soft);
}
.console-dot { width: 11px; height: 11px; border-radius: 50%; }
.console-dot.red { background: #e3585c; }
.console-dot.yellow { background: #e3b15c; }
.console-dot.green { background: var(--ok-green); }
.console-title {
  margin-inline-start: auto;
  font-size: 0.72rem;
  color: var(--ink-500);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.console-body { padding: 28px 24px 24px; }
.diag-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.diag-label {
  width: 42px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
}
.diag-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-surface-2);
  border-radius: 999px;
  overflow: hidden;
}
.diag-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--c, var(--red-bright));
  transition: width 1.4s var(--ease);
}
.diag-val {
  width: 42px;
  text-align: left;
  font-size: 0.8rem;
  color: var(--ink-300);
}
.console-log {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-soft);
  font-size: 0.78rem;
  color: var(--ink-500);
}
.console-log p { margin-bottom: 6px; }
.console-log .ok { color: var(--ok-green); font-weight: 700; }
.blink-cursor::after { content: '_'; animation: blink 1s steps(1) infinite; color: var(--red-bright); }
/* =========================================================
Categories
========================================================= */
.categories { padding: 10px 0 40px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--red-bright);
  background: var(--bg-surface-2);
}
.cat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
  margin-bottom: 18px;
  transition: background .25s var(--ease);
}
.cat-card:hover .cat-icon { background: var(--red-wine); color: #fff; }
.cat-icon svg { width: 24px; height: 24px; }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cat-card p { font-size: 0.85rem; color: var(--ink-500); }
/* =========================================================
Products
========================================================= */
.products { padding: 70px 0; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-300);
  border: 1px solid var(--border-soft);
  transition: all .2s var(--ease);
}
.filter-tab:hover { color: var(--ink-100); }
.filter-tab.active { background: var(--red-bright); color: #fff; border-color: var(--red-bright); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--red-bright); }
.product-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.product-badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--red-bright);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.wishlist-btn {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(22,18,18,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-100);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.wishlist-btn svg { width: 17px; height: 17px; }
.wishlist-btn.active { color: var(--red-bright); background: rgba(22,18,18,0.85); }
.product-info { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-cat { font-size: 0.74rem; color: var(--ink-500); font-weight: 600; }
.product-name { font-size: 0.98rem; font-weight: 700; line-height: 1.5; }
.product-specs { font-size: 0.78rem; color: var(--ink-500); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}
.price-block { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.price-old { font-size: 0.72rem; line-height: 1.4; color: var(--ink-500); text-decoration: line-through; white-space: nowrap; }
.price-new { font-size: 1.02rem; line-height: 1.3; font-weight: 800; color: var(--red-bright); white-space: nowrap; }
.product-footer { gap: 10px; }
.add-cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-surface-2);
  color: var(--ink-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.add-cart-btn svg { width: 18px; height: 18px; }
.add-cart-btn:hover, .add-cart-btn.added { background: var(--red-bright); color: #fff; }
/* =========================================================
Countdown banner
========================================================= */
.countdown-banner {
  background: linear-gradient(120deg, var(--red-wine), #5e1115);
  padding: 50px 0;
  margin: 30px 0;
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.countdown-text h3 { font-size: 1.4rem; margin-top: 4px; }
.countdown-timer { display: flex; gap: 12px; }
.time-box {
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  min-width: 64px;
}
.time-box span { display: block; font-size: 1.3rem; font-weight: 800; }
.time-box label { font-size: 0.7rem; color: var(--ink-300); }
/* =========================================================
Services / Diagnostic tickets
========================================================= */
.services { padding: 90px 0; }

.ticket-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}
.diag-ticket {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px 24px 22px;
  position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.diag-ticket::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  /* right: 5px; */
  inset-inline-start: 0;
  width: 7px;
  background: var(--red-bright);
  border-radius: 0 7px 7px 0;
}
.diag-ticket:hover { transform: translateY(-4px); border-color: var(--red-bright); }
.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.ticket-id { font-size: 0.75rem; color: var(--ink-500); font-variant-numeric: tabular-nums; letter-spacing: 0.03em; }
.ticket-status {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--bg-surface-2);
  color: var(--red-bright);
  padding: 4px 10px;
  border-radius: 6px;
}
.diag-ticket h3 { font-size: 1.1rem; margin-bottom: 8px; }
.diag-ticket p { font-size: 0.88rem; color: var(--ink-300); margin-bottom: 16px; }
.ticket-bottom {
  font-size: 0.76rem;
  color: var(--ink-500);
  border-top: 1px dashed var(--border-soft);
  padding-top: 12px;
}
.service-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.service-cta p { color: var(--ink-300); }
/* =========================================================
Why Apex
========================================================= */
.why { padding: 70px 0 90px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.why-card:hover { transform: translateY(-6px); border-color: var(--red-bright); }
.why-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red-bright);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.why-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.why-card p { font-size: 0.86rem; color: var(--ink-500); }
/* =========================================================
Testimonials
========================================================= */
.testimonials { padding: 70px 0 90px; }
.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.testi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.testi-card p { font-size: 0.92rem; color: var(--ink-300); margin-bottom: 18px; }
.testi-author { display: flex; flex-direction: column; }
.testi-author strong { font-size: 0.92rem; }
.testi-author span { font-size: 0.78rem; color: var(--ink-500); }
/* =========================================================
Newsletter
========================================================= */
.newsletter {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 56px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter-text h3 { font-size: 1.2rem; margin-bottom: 6px; }
.newsletter-text p { color: var(--ink-500); font-size: 0.88rem; }
.newsletter-form { display: flex; gap: 10px; min-width: 320px; flex: 1; max-width: 420px; }
.newsletter-msg { width: 100%; font-size: 0.82rem; color: var(--ok-green); margin-top: 8px; }
/* =========================================================
Contact
========================================================= */
.contact { padding: 90px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}
.contact-list { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { font-size: 1.2rem; }
.contact-list strong { display: block; font-size: 0.92rem; margin-bottom: 3px; }
.contact-list p { font-size: 0.86rem; color: var(--ink-500); }
.contact-form {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form select{
  height: 50px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 7px;
  color: var(--ink-500);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { font-size: 0.82rem; color: var(--ok-green); }
/* =========================================================
Footer
========================================================= */
.site-footer { background: var(--bg-surface); border-top: 1px solid var(--border-soft); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer-brand p { color: var(--ink-500); font-size: 0.86rem; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-size: 0.92rem; margin-bottom: 16px; }
.footer-col a, .footer-col p {
  display: block;
  color: var(--ink-500);
  font-size: 0.86rem;
  margin-bottom: 10px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--red-bright); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-500);
}
.footer-bottom a{
  color: var(--red-wine);
  font-weight: 800;
  text-decoration: underline;
  
}
/* =========================================================
Toast
========================================================= */
.toast {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 50%;
  transform: translateX(50%) translateY(20px);
  background: var(--bg-surface-2);
  border: 1px solid var(--red-bright);
  color: var(--ink-100);
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 999;
  box-shadow: var(--shadow-card);
}
.toast.show { opacity: 1; transform: translateX(50%) translateY(0); }
/* =========================================================
Scroll reveal
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
/* =========================================================
Responsive
========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-console { max-width: 480px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-track { grid-template-columns: 1fr; }
  .ticket-board { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0;
    inset-inline-start: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-surface);
    border-inline-end: 1px solid var(--border-soft);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 28px;
    gap: 26px;
    transition: inset-inline-start .35s var(--ease);
    z-index: 99;
  }
  .main-nav.open { inset-inline-start: 0 !important; }
  .hamburger { display: flex; }
  .hero { padding: 40px 0 60px; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row .btn { flex: 1; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-card { padding: 22px 16px; }
  .section-head.row { flex-direction: column; align-items: flex-start; }
  .filter-tabs { overflow-x: auto; width: 100%; padding-bottom: 4px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-info { padding: 14px; }
  .countdown-inner { flex-direction: column; text-align: center; }
  .countdown-timer { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 34px; text-align: start; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .console-body { padding: 22px 18px; }
}
#svg.add{
  fill: rgb(0, 0, 0);
}