/* ============ TOKENS ============ */
:root{
  --void:#F7F5F0;

  --surface:#FFFFFF;
  --surface-2:#F4F8FF;
  --surface-3:#EAF2FF;

  --line:rgba(76,127,238,.12);

  --accent:#4C7FEE;
  --accent-bright:#A9C4FF;
  --accent-dim:#DCE8FF;

  --silver:#7E8DA8;
  --royal-deep:#2B4A9D;

  --emerald:#16A085;
  --ruby:#E74C3C;

  --text:#1A2333;
  --text-muted:#667085;
  --text-faint:#94A3B8;

  --glass:rgba(255,255,255,.75);
  --glass-border:rgba(0,0,0,.06);

  --radius:18px;

  --display:'Space Grotesk',sans-serif;
  --body:'Inter',sans-serif;
  --mono:'JetBrains Mono',monospace;

  --ease:cubic-bezier(.16,.8,.24,1);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--void);
  color:var(--text);
  font-family:var(--body);
  overflow-x:hidden;
  line-height:1.5;
}
::selection{background:var(--accent); color:var(--void);}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none; color:inherit;}
.container{max-width:1240px; margin:0 auto; padding:0 32px;}
section{position:relative;}

/* subtle ambient texture across whole page */
body::before{
  content:"";
  position:fixed; inset:0;
  background:
    radial-gradient(ellipse 900px 500px at 12% 0%, rgba(76,141,255,0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 15%, rgba(76,127,238,0.08), transparent 55%);
  pointer-events:none;
  z-index:0;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar{width:10px;}
::-webkit-scrollbar-track{background:var(--void);}
::-webkit-scrollbar-thumb{background:var(--surface-3); border-radius:10px;}

/* ============ EYEBROW / LABELS ============ */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--accent-bright);
  margin-bottom:18px;
}
.eyebrow::before{
  content:"✦"; font-size:13px; color:var(--accent);
}

h1,h2,h3{font-family:var(--display); font-weight:600; letter-spacing:-0.01em; line-height:1.08;}

/* ============ CRYSTAL DIAMOND BUTTONS ============ */
.btn{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:17px 34px 17px 30px;
  font-family:var(--display); font-weight:600; font-size:15px; letter-spacing:.01em;
  color:var(--void);
  isolation:isolate;
  clip-path:polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  background:linear-gradient(120deg, var(--accent-bright), var(--accent) 45%, #16234A 100%);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
  box-shadow:0 10px 30px -8px rgba(76,127,238,0.55), inset 0 1px 0 rgba(255,255,255,0.6);
  overflow:hidden;
}
.btn::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.85) 35%, transparent 50%);
  transform:translateX(-120%);
  transition:transform .7s var(--ease);
  z-index:1;
}
.btn:hover::before{ transform:translateX(120%); }
.btn:hover{ transform:translateY(-3px); box-shadow:0 16px 40px -8px rgba(76,127,238,0.7), inset 0 1px 0 rgba(255,255,255,0.7); filter:brightness(1.04); }
.btn:active{ transform:translateY(-1px) scale(.98); }
.btn span{position:relative; z-index:2;}
.btn .facet{
  position:absolute; width:7px; height:7px; background:#fff;
  clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%);
  top:8px; right:16px; opacity:.9; z-index:2;
  animation:sparkle 2.4s ease-in-out infinite;
}
@keyframes sparkle{ 0%,100%{opacity:.2; transform:scale(.6);} 50%{opacity:1; transform:scale(1.15);} }

.btn-ghost{
  background:transparent;
  color:var(--text);
  clip-path:polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  border:1px solid var(--glass-border);
  box-shadow:none;
  padding:16px 32px 16px 28px;
}
.btn-ghost::before{ display:none; }
.btn-ghost:hover{
  border-color:var(--accent);
  color:var(--accent-bright);
  transform:translateY(-3px);
  box-shadow:0 10px 26px -12px rgba(76,127,238,.4);
}

.btn-small{ padding:13px 24px 13px 20px; font-size:13px; }

/* ============ NAVBAR ============ */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:22px 0;
  transition:padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom:1px solid transparent;
}
header.scrolled{
  padding:12px 0;
  background:rgba(247,245,240,.88);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border-bottom:1px solid #E5EAF5;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:24px;}
.brand{display:flex; align-items:center; gap:11px; font-family:var(--display); font-weight:700; font-size:19px; letter-spacing:.01em;}
.brand-mark{
  width:34px; height:34px; position:relative; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.brand-mark svg{width:100%; height:100%;}
.brand small{display:block; font-family:var(--mono); font-weight:400; font-size:9.5px; letter-spacing:.16em; color:var(--accent-bright); text-transform:uppercase; margin-top:1px;}

.nav-links{display:flex; align-items:center; gap:38px;}
.nav-links a{
  font-size:14px;
  font-weight:500;
  color:#667085;
  position:relative;
  padding:4px 0;
  transition:color .25s;
}

.nav-links a:hover{
  color:#1A2333;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:1px; background:var(--accent);
  transition:width .3s var(--ease);
}
.nav-links a:hover{color:var(--text);}
.nav-links a:hover::after{width:100%;}
.nav-cta{display:flex; align-items:center; gap:18px;}
.nav-phone{
  font-family:var(--mono);
  font-size:13px;
  color:#667085;
  display:flex;
  align-items:center;
  gap:8px;
}
.nav-phone strong{color:var(--accent-bright); font-weight:500;}

.burger{display:none; flex-direction:column; gap:5px; width:24px;}
.burger span{
    height:2px;
    background:#1A2333;
    border-radius:2px;
    transition:.3s;
}

/* ============ HERO ============ */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:150px 0 100px;
  position:relative;
  overflow:hidden;

  background:linear-gradient(
      180deg,
      #F7F5F0 0%,
      #F2F7FF 55%,
      #FFFFFF 100%
  );
}

#stars{
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.25;
}

.hero .container{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:60px;
  align-items:center;
}

.hero h1{
  font-size:clamp(36px,4.6vw,64px);
  margin-bottom:22px;
  color:#1A2333;
}

.hero h1 em{
  font-style:normal;
  background:linear-gradient(
      100deg,
      #9CC7FF,
      #4C7FEE 60%,
      #7B8FAF
  );

  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero p.lead{
  font-size:17px;
  color:#667085;
  max-width:520px;
  margin-bottom:38px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:56px;
}

.stat-strip{
  display:grid;
  grid-template-columns:repeat(4,auto);
  gap:38px;
}

.stat-strip div b{
  display:block;
  font-family:var(--display);
  font-size:26px;
  color:var(--accent);
}

.stat-strip div span{
  font-size:12px;
  color:#8A96B2;
  font-family:var(--mono);
  letter-spacing:.03em;
}

/* Hero Cards */

.hero-visual{
  position:relative;
  height:460px;
}

.crystal-card{
  position:absolute;

  border-radius:var(--radius);

  background:#FFFFFF;

  border:1px solid #E6ECF5;

  box-shadow:0 25px 60px rgba(76,127,238,.12);

  padding:22px;

  backdrop-filter:blur(12px);
}
.crystal-card.c1{ width:78%; top:0; right:0; height:230px; animation:float1 7s ease-in-out infinite; }
.crystal-card.c2{ width:62%; bottom:0; left:0; height:210px; animation:float2 8s ease-in-out infinite; z-index:2;
  background:linear-gradient(150deg, rgba(76,127,238,0.12), var(--surface)); border-color:rgba(76,127,238,0.28); }
@keyframes float1{ 0%,100%{transform:translateY(0px) rotate(-1deg);} 50%{transform:translateY(-14px) rotate(0.5deg);} }
@keyframes float2{ 0%,100%{transform:translateY(0px) rotate(1deg);} 50%{transform:translateY(12px) rotate(-.5deg);} }
.crystal-card .tag{font-family:var(--mono); font-size:11px; color:var(--emerald); letter-spacing:.08em; text-transform:uppercase; margin-bottom:10px; display:flex; align-items:center; gap:6px;}
.crystal-card .tag::before{content:""; width:6px; height:6px; border-radius:50%; background:var(--emerald); box-shadow:0 0 8px var(--emerald);}
.crystal-card h4{font-family:var(--display); font-size:20px; margin-bottom:6px;}
.crystal-card p{font-size:13px; color:var(--text-muted);}
.crystal-card .price-row{margin-top:16px; display:flex; align-items:baseline; gap:10px;}
.crystal-card .price-row .old{font-family:var(--mono); font-size:13px; color:var(--text-faint); text-decoration:line-through;}
.crystal-card .price-row .new{font-family:var(--mono); font-size:20px; color:var(--accent-bright); font-weight:600;}

/* ============ MARQUEE ============ */
.marquee-wrap{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--surface); overflow:hidden; padding:16px 0; position:relative; z-index:1;
}
.marquee{display:flex; gap:60px; width:max-content; animation:scrollx 26s linear infinite;}
@keyframes scrollx{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
.marquee span{
  font-family:var(--mono); font-size:13px; letter-spacing:.05em; color:var(--text-muted);
  display:flex; align-items:center; gap:10px; white-space:nowrap;
}
.marquee span::before{content:"◆"; color:var(--accent); font-size:10px;}

/* ============ SECTION HEAD ============ */
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(28px,3.4vw,42px); margin-bottom:14px; }
.section-head p{ color:var(--text-muted); font-size:15.5px; }
.section-pad{ padding:120px 0; }

/* ============ CATEGORIES ============ */
.cat-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:18px; }
.cat-card{
  background:var(--glass); border:1px solid var(--glass-border); border-radius:var(--radius);
  padding:26px 18px; text-align:center;
  transition:transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  opacity:0; transform:translateY(24px);
}
.cat-card.in{opacity:1; transform:translateY(0);}
.cat-card:hover{ transform:translateY(-8px); border-color:var(--accent); background:rgba(76,127,238,0.06); }
.cat-card .icon{
  width:52px; height:52px; margin:0 auto 16px; color:var(--accent-bright);
  display:flex; align-items:center; justify-content:center;
}
.cat-card .icon svg{width:100%; height:100%;}
.cat-card h3{ font-size:14.5px; font-weight:600; margin-bottom:5px; }
.cat-card span{ font-size:11.5px; color:var(--text-faint); font-family:var(--mono); }

/* ============ PRODUCTS ============ */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.product-card{
  background:#FFFFFF;
  border:1px solid #E6ECF5;
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;

  opacity:0;
  transform:translateY(26px);

  transition:
      opacity .7s var(--ease),
      transform .7s var(--ease),
      border-color .35s,
      box-shadow .35s;
}

.product-card.in{
  opacity:1;
  transform:translateY(0);
}

.product-card:hover{
  border-color:var(--accent);
  box-shadow:0 25px 55px rgba(76,127,238,.18);
  transform:translateY(-8px);
}

.product-media{
  height:180px;
  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
      radial-gradient(circle at 30% 20%, rgba(169,196,255,.35), transparent 55%),
      radial-gradient(circle at 80% 80%, rgba(76,127,238,.10), transparent 55%),
      #F4F8FF;

  border-bottom:1px solid #E6ECF5;
}

.product-media svg{
  width:76px;
  height:76px;
  color:var(--accent);
  opacity:1;
  transition:transform .5s var(--ease);
}

.product-card:hover .product-media svg{
  transform:scale(1.08) rotate(-2deg);
}

.badge-moq{
  position:absolute;
  top:12px;
  left:12px;

  font-family:var(--mono);
  font-size:10.5px;
  letter-spacing:.05em;

  background:#D9F8F1;
  color:#0F8F6F;
  border:1px solid #7FE3C8;

  padding:5px 10px;
  border-radius:100px;
}
.badge-save{
  position:absolute; top:12px; right:12px;
  font-family:var(--mono); font-size:10.5px;
  background:rgba(240,85,91,0.14); color:var(--ruby); border:1px solid rgba(240,85,91,0.3);
  padding:5px 10px; border-radius:100px;
}
.product-body{ padding:22px; }
.product-body .cat-label{ font-family:var(--mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--silver); margin-bottom:8px; }
.product-body h3{ font-family:var(--display); font-size:17.5px; margin-bottom:8px; }
.specs{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
.specs span{ font-size:11px; font-family:var(--mono); color:var(--text-muted); background:rgba(255,255,255,0.04); padding:4px 9px; border-radius:6px; border:1px solid var(--glass-border); }
.price-block{ display:flex; align-items:flex-end; justify-content:space-between; padding-top:14px; border-top:1px dashed var(--line); }
.price-block .old{ font-family:var(--mono); font-size:12.5px; color:var(--text-faint); text-decoration:line-through; display:block; }
.price-block .new{ font-family:var(--mono); font-size:22px; font-weight:600; color:var(--accent-bright); }
.price-block .new small{ font-size:11px; color:var(--text-faint); font-weight:400; }
.icon-btn{
  width:42px; height:42px; border-radius:50%;
  background:var(--surface-3); border:1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:center;
  transition:.3s var(--ease);
}
.icon-btn svg{width:18px; height:18px;}
.icon-btn:hover{ background:var(--accent); color:var(--void); transform:rotate(90deg); }

/* ============ FILTERS ============ */
.filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.filter-chip{
  padding:9px 18px; border-radius:100px; font-size:13px; font-family:var(--body); font-weight:500;
  border:1px solid var(--glass-border); color:var(--text-muted); background:var(--glass);
  transition:.3s var(--ease);
}
.filter-chip:hover{ color:var(--text); border-color:rgba(76,127,238,0.4); }
.filter-chip.active{ background:var(--accent); border-color:var(--accent); color:#fff; }

/* ============ QTY STEPPER ============ */
.qty-row{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.qty-stepper{ display:flex; align-items:center; border:1px solid var(--glass-border); border-radius:9px; overflow:hidden; }
.qty-stepper button{ width:30px; height:30px; color:var(--text-muted); font-size:16px; transition:.2s; }
.qty-stepper button:hover{ background:var(--surface-3); color:var(--text); }
.qty-stepper input{
  width:38px; text-align:center; background:transparent; border:none; color:var(--text);
  font-family:var(--mono); font-size:13px; -moz-appearance:textfield;
}
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.moq-note{ font-family:var(--mono); font-size:10.5px; color:var(--text-faint); }
.add-cart-btn{
  width:100%; padding:12px; border-radius:10px; font-family:var(--display); font-weight:600; font-size:13.5px;
  background:linear-gradient(120deg, var(--accent-bright), var(--accent)); color:var(--void);
  display:flex; align-items:center; justify-content:center; gap:8px;
  transition:filter .25s, transform .25s;
}
.add-cart-btn:hover{ filter:brightness(1.08); transform:translateY(-2px); }
.add-cart-btn svg{ width:15px; height:15px; }
.add-cart-btn.added{ background:linear-gradient(120deg, var(--emerald), #1b9c72); }

/* ============ CART ICON / BADGE ============ */
.cart-btn{ position:relative; width:38px; height:38px; display:flex; align-items:center; justify-content:center; color:var(--text-muted); transition:.25s; }
.cart-btn:hover{ color:var(--accent-bright); }
.cart-btn svg{ width:21px; height:21px; }
.cart-badge{
  position:absolute; top:-2px; right:-2px; min-width:16px; height:16px; padding:0 4px; border-radius:100px;
  background:var(--accent); color:#fff; font-family:var(--mono); font-size:9.5px; font-weight:600;
  display:flex; align-items:center; justify-content:center; line-height:1;
}
.cart-badge.pulse{ animation:pulse .4s var(--ease); }
@keyframes pulse{ 0%{transform:scale(1);} 40%{transform:scale(1.5);} 100%{transform:scale(1);} }

/* ============ OVERLAY / DRAWER / MODAL ============ */
.overlay{
  position:fixed; inset:0; background:rgba(4,7,14,0.65); backdrop-filter:blur(3px);
  z-index:300; opacity:0; pointer-events:none; transition:opacity .35s var(--ease);
}
.overlay.open{ opacity:1; pointer-events:auto; }

.cart-drawer{
  position:fixed; top:0; right:0; bottom:0; width:400px; max-width:92vw;
  background:var(--surface); border-left:1px solid var(--glass-border);
  z-index:301; display:flex; flex-direction:column;
  transform:translateX(100%); transition:transform .45s var(--ease);
}
.cart-drawer.open{ transform:translateX(0); }
.cart-head{ display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-bottom:1px solid var(--line); }
.cart-head h3{ font-family:var(--display); font-size:18px; }
.cart-close{ width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--text-muted); }
.cart-close:hover{ background:var(--surface-3); color:var(--text); }
.cart-items{ flex:1; overflow-y:auto; padding:10px 24px; }
.cart-empty{ text-align:center; padding:60px 10px; color:var(--text-faint); }
.cart-empty svg{ width:44px; height:44px; margin:0 auto 14px; opacity:.5; }
.cart-line{ display:flex; gap:12px; padding:16px 0; border-bottom:1px solid var(--line); align-items:center; }
.cart-line .ci-icon{ width:46px; height:46px; flex-shrink:0; border-radius:10px; background:var(--void); border:1px solid var(--glass-border); display:flex; align-items:center; justify-content:center; color:var(--accent-bright); }
.cart-line .ci-icon svg{ width:24px; height:24px; }
.cart-line .ci-info{ flex:1; min-width:0; }
.cart-line .ci-info h4{ font-size:13.5px; font-weight:600; margin-bottom:4px; }
.cart-line .ci-info .ci-price{ font-family:var(--mono); font-size:12px; color:var(--text-muted); }
.cart-line .ci-remove{ font-size:11px; color:var(--ruby); font-family:var(--mono); margin-top:4px; }
.cart-foot{ padding:22px 24px; border-top:1px solid var(--line); }
.cart-subtotal{ display:flex; justify-content:space-between; font-family:var(--mono); font-size:14px; margin-bottom:16px; }
.cart-subtotal b{ color:var(--accent-bright); font-size:18px; }
.cart-foot .btn{ width:100%; }

.modal{
  position:fixed; top:50%; left:50%; transform:translate(-50%,-46%); width:520px; max-width:92vw;
  max-height:86vh; overflow-y:auto; background:var(--surface); border:1px solid var(--glass-border);
  border-radius:20px; z-index:302; padding:30px; opacity:0; pointer-events:none;
  transition:opacity .35s var(--ease), transform .35s var(--ease);
}
.modal.open{ opacity:1; pointer-events:auto; transform:translate(-50%,-50%); }
.modal-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; }
.modal-head h3{ font-family:var(--display); font-size:20px; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:12px; color:var(--text-muted); margin-bottom:7px; font-family:var(--mono); letter-spacing:.03em; }
.field input, .field textarea{
  width:100%; padding:12px 14px; border-radius:10px; background:var(--void); border:1px solid var(--glass-border);
  color:var(--text); font-family:var(--body); font-size:14px; transition:border-color .25s;
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--accent); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.order-summary{ background:var(--void); border:1px solid var(--glass-border); border-radius:12px; padding:16px 18px; margin-bottom:20px; font-size:13px; }
.order-summary .os-line{ display:flex; justify-content:space-between; color:var(--text-muted); padding:5px 0; }
.order-summary .os-total{ display:flex; justify-content:space-between; padding-top:10px; margin-top:8px; border-top:1px dashed var(--line); font-family:var(--mono); font-weight:600; color:var(--accent-bright); font-size:16px; }
.confirm-view{ text-align:center; padding:20px 0; }
.confirm-view .check{ width:64px; height:64px; margin:0 auto 20px; border-radius:50%; background:rgba(52,211,153,0.14); border:1px solid rgba(52,211,153,0.4); display:flex; align-items:center; justify-content:center; }
.confirm-view .check svg{ width:30px; height:30px; color:var(--emerald); }
.order-id-box{
  font-family:var(--mono); font-size:20px; letter-spacing:.05em; color:var(--accent-bright);
  background:var(--void); border:1px dashed var(--accent); border-radius:10px; padding:14px; margin:18px 0;
}
.form-error{ color:var(--ruby); font-size:12.5px; font-family:var(--mono); margin-top:-6px; margin-bottom:14px; min-height:16px; }

/* ============ ORDER TRACKING ============ */
.track-box{
  max-width:640px; margin:0 auto; background:var(--glass); border:1px solid var(--glass-border);
  border-radius:20px; padding:34px;
}
.track-input-row{ display:flex; gap:10px; }
.track-input-row input{
  flex:1; padding:14px 16px; border-radius:12px; background:var(--void); border:1px solid var(--glass-border);
  color:var(--text); font-family:var(--mono); font-size:14px;
}
.track-input-row input:focus{ outline:none; border-color:var(--accent); }
.recent-chips{ display:flex; gap:8px; flex-wrap:wrap; margin-top:14px; }
.recent-chips button{ font-family:var(--mono); font-size:11px; color:var(--text-muted); border:1px solid var(--glass-border); padding:5px 11px; border-radius:100px; }
.recent-chips button:hover{ border-color:var(--accent); color:var(--accent-bright); }
.track-result{ margin-top:28px; }
.track-error{ color:var(--ruby); font-size:13.5px; text-align:center; padding:16px 0; }
.track-loading{ color:var(--text-muted); font-size:13.5px; text-align:center; padding:16px 0; }
.tracker{ display:flex; align-items:flex-start; margin:26px 0 30px; }
.t-step{ flex:1; text-align:center; position:relative; }
.t-step .t-dot{
  width:26px; height:26px; border-radius:50%; margin:0 auto 10px; background:var(--surface-3); border:2px solid var(--glass-border);
  display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-size:11px; color:var(--text-faint); position:relative; z-index:1;
}
.t-step .t-line{ position:absolute; top:13px; left:-50%; width:100%; height:2px; background:var(--glass-border); z-index:0; }
.t-step:first-child .t-line{ display:none; }
.t-step span{ font-size:11px; color:var(--text-faint); font-family:var(--mono); }
.t-step.done .t-dot{ background:var(--accent); border-color:var(--accent); color:#fff; }
.t-step.done .t-line{ background:var(--accent); }
.t-step.current .t-dot{ background:var(--accent-bright); border-color:var(--accent-bright); color:var(--void); box-shadow:0 0 0 4px rgba(76,127,238,0.2); }
.t-step.done span, .t-step.current span{ color:var(--text); }
.track-order-meta{ font-size:13px; color:var(--text-muted); margin-bottom:16px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }
.track-items{ border-top:1px solid var(--line); padding-top:14px; }
.track-item-row{ display:flex; justify-content:space-between; font-size:13.5px; padding:6px 0; color:var(--text-muted); }
.track-item-row b{ color:var(--text); }
.track-total-row{ display:flex; justify-content:space-between; padding-top:12px; margin-top:8px; border-top:1px dashed var(--line); font-family:var(--mono); font-weight:600; color:var(--accent-bright); }

/* ============ WHY US ============ */
.why-wrap{ display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.why-list{ display:flex; flex-direction:column; gap:0; }
.why-item{
  display:flex; gap:22px; padding:26px 0; border-bottom:1px solid var(--line);
  opacity:0; transform:translateX(-20px); transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.why-item.in{opacity:1; transform:translateX(0);}
.why-item:first-child{padding-top:0;}
.why-num{ font-family:var(--mono); font-size:13px; color:var(--accent); flex-shrink:0; width:36px; padding-top:3px;}
.why-item h3{ font-size:17px; margin-bottom:6px; }
.why-item p{ font-size:14px; color:var(--text-muted); max-width:440px; }
.why-visual{
  position:relative; border-radius:24px; overflow:hidden;
  background:linear-gradient(155deg, var(--surface-2), var(--void));
  border:1px solid var(--glass-border); height:520px;
  display:flex; align-items:center; justify-content:center;
}
.trust-panel{ width:100%; max-width:340px; padding:8px; }
.trust-metric{
  display:flex; align-items:center; gap:18px;
  padding:22px 20px; border-radius:14px;
  background:var(--glass); border:1px solid var(--glass-border);
  margin-bottom:14px;
}
.trust-metric:last-child{ margin-bottom:0; }
.trust-metric .tm-icon{
  width:46px; height:46px; flex-shrink:0; border-radius:12px;
  background:linear-gradient(155deg, var(--surface-3), var(--surface));
  border:1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:center; color:var(--accent-bright);
}
.trust-metric .tm-icon svg{ width:22px; height:22px; }
.trust-metric b{ display:block; font-family:var(--display); font-size:20px; color:var(--accent-bright); }
.trust-metric span{ font-size:12.5px; color:var(--text-muted); font-family:var(--mono); }

/* ============ TESTIMONIALS ============ */
.test-wrap{ position:relative; max-width:760px; margin:0 auto; text-align:center; }
.test-slide{ display:none; }
.test-slide.active{ display:block; animation:fadeUp .6s var(--ease); }
@keyframes fadeUp{ from{opacity:0; transform:translateY(14px);} to{opacity:1; transform:translateY(0);} }
.test-slide p{ font-family:var(--display); font-size:clamp(19px,2.4vw,26px); font-weight:500; line-height:1.5; margin-bottom:26px; }
.test-slide .who{ font-family:var(--mono); font-size:13px; color:var(--accent-bright); }
.test-slide .who span{ color:var(--text-faint); }
.test-dots{ display:flex; gap:10px; justify-content:center; margin-top:36px; }
.test-dots button{ width:8px; height:8px; border-radius:50%; background:var(--surface-3); transition:.3s; }
.test-dots button.active{ background:var(--accent); width:22px; border-radius:5px; }

/* ============ CTA BAND ============ */
.cta-band{
  margin:0 32px; border-radius:28px; padding:70px 60px;
  background:linear-gradient(120deg, var(--surface-2), var(--royal-deep) 140%);
  position:relative; overflow:hidden;
  border:1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
}
.cta-band::after{
  content:"✦"; position:absolute; right:-30px; top:-40px; font-size:220px; color:rgba(76,127,238,0.06);
  font-family:var(--display);
}
.cta-band h2{ font-size:clamp(26px,3vw,36px); max-width:480px; margin-bottom:10px; }
.cta-band p{ color:var(--text-muted); max-width:440px; font-size:15px;}
.cta-actions{ display:flex; gap:16px; flex-wrap:wrap; position:relative; z-index:1;}

/* ============ FOOTER ============ */
footer{ padding:90px 0 30px; margin-top:120px; border-top:1px solid var(--line); position:relative; z-index:1;}
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:50px; margin-bottom:70px; }
.footer-brand p{ color:var(--text-muted); font-size:14px; margin-top:16px; max-width:280px; }
.footer-col h4{ font-family:var(--mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--accent-bright); margin-bottom:20px; }
.footer-col li{ margin-bottom:12px; }
.footer-col a{ color:var(--text-muted); font-size:14px; transition:.25s; }
.footer-col a:hover{ color:var(--accent-bright); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid var(--line); font-size:12.5px; color:var(--text-faint); font-family:var(--mono); flex-wrap:wrap; gap:12px;}

/* ============ REVEAL ============ */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .hero .container{ grid-template-columns:1fr; }
  .hero-visual{ display:none; }
  .cat-grid{ grid-template-columns:repeat(3,1fr); }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .why-wrap{ grid-template-columns:1fr; }
  .why-visual{ height:360px; order:-1; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .nav-links, .nav-phone{ display:none; }
  .burger{ display:flex; }
}
@media (max-width: 620px){
  .container{ padding:0 20px; }
  .cat-grid{ grid-template-columns:repeat(2,1fr); }
  .product-grid{ grid-template-columns:1fr; }
  .stat-strip{ grid-template-columns:repeat(2,1fr); gap:24px; }
  .cta-band{ margin:0 20px; padding:44px 26px; flex-direction:column; align-items:flex-start; }
  .footer-grid{ grid-template-columns:1fr; gap:34px; }
  .field-row{ grid-template-columns:1fr; }
  .modal{ padding:22px; }
  .tracker{ flex-wrap:wrap; gap:16px 0; }
  .t-step{ flex:0 0 50%; }
  .t-step .t-line{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}
.product-image{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.cart-image{
    width:52px;
    height:52px;
    object-fit:contain;
    display:block;
}
.products-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:28px;
    margin-bottom:26px;
    flex-wrap:wrap;
}
.products-header h2{
    font-size:42px;
    font-weight:700;
    color:#1A2333;
    line-height:1.1;
    margin:8px 0;
}

.products-header p{
    color:#667085;
    font-size:16px;
    max-width:520px;
    margin:0;
}

.products-header .eyebrow{
    display:inline-block;
    color:var(--accent);
    font-size:12px;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.product-search{
    position:relative;
    width:420px;
    max-width:100%;
}

.product-search input{
    width:100%;
    height:56px;

    background:#FFFFFF;

    border:1px solid #DDE5F4;

    border-radius:16px;

    padding:0 18px 0 56px;

    color:#1A2333;

    font-size:15px;

    box-shadow:0 10px 25px rgba(76,127,238,.08);

    transition:.35s;
}

.product-search input::placeholder{
    color:#94A3B8;
}

.product-search input:focus{
    outline:none;

    border-color:var(--accent);

    box-shadow:
        0 0 0 4px rgba(76,127,238,.12),
        0 15px 35px rgba(76,127,238,.18);
}

.search-icon{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);

    width:20px;
    height:20px;

    stroke:var(--accent);
    stroke-width:2;
    fill:none;
}
