/* ============================================================
   TechNest — Less Price. High Value.
   Design system: White + Orange + Dark Navy, mobile-first
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --orange-400: #ff8a2f;
  --orange-500: #ff6a00;
  --orange-600: #f05a00;
  --orange-700: #d94e00;

  --navy-950: #06121f;  /* darkest navy */
  --navy-900: #0a1b33;
  --navy-800: #10294b;
  --navy-700: #17345e;
  --navy-600: #1f4172;

  --ink: #101828;
  --ink-soft: #475467;
  --ink-mute: #667085;
  --line: #e7ecf3;

  --white: #ffffff;
  --off-white: #f6f8fb;
  --surface: #ffffff;

  /* Semantic */
  --primary: var(--orange-500);
  --primary-hover: var(--orange-600);
  --navy: var(--navy-900);
  --success: #16a34a;
  --success-bg: #ecfdf3;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --star: #f7b32b;

  /* Shape + type */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-head: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(10, 27, 51, .06), 0 1px 3px rgba(10, 27, 51, .08);
  --shadow: 0 6px 18px rgba(10, 27, 51, .10);
  --shadow-lg: 0 18px 44px rgba(10, 27, 51, .16);

  --container: 1200px;
  --header-h: 64px;
  --radius-pill: 999px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }

a { color: var(--navy-800); text-decoration: none; }
a:hover { color: var(--primary); }

ul, ol { list-style: none; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy-950);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 18px; }

.section { padding: clamp(44px, 8vw, 84px) 0; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); background: rgba(255, 106, 0, .10);
  padding: 6px 12px; border-radius: var(--radius-pill);
}

.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(24px, 4.5vw, 36px); margin: 12px 0 10px; }
.section-head p { color: var(--ink-mute); font-size: 15.5px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 14.5px; line-height: 1;
  padding: 14px 22px; border-radius: var(--radius); border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-align: center; white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { flex: none; }

.btn-primary { background: linear-gradient(180deg, var(--orange-400), var(--orange-500)); color: #fff; box-shadow: 0 8px 20px rgba(255, 106, 0, .32); }
.btn-primary:hover { background: linear-gradient(180deg, var(--orange-500), var(--orange-600)); color: #fff; box-shadow: 0 10px 26px rgba(255, 106, 0, .40); }

.btn-navy { background: var(--navy-900); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }

.btn-outline { background: #fff; border-color: var(--line); color: var(--navy-900); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-ghost { color: var(--navy-900); }
.btn-ghost:hover { color: var(--primary); }

.btn-lg { padding: 17px 28px; font-size: 15.5px; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 15px; font-size: 13.5px; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .03em;
  padding: 5px 10px; border-radius: var(--radius-pill);
}
.badge-new { background: var(--navy-900); color: #fff; }
.badge-off { background: var(--danger); color: #fff; }
.badge-hot { background: var(--primary); color: #fff; }
.badge-stock { background: var(--success-bg); color: var(--success); }
.badge-low { background: #fffbeb; color: #b54708; }
.badge-sale { background: #fff4e6; color: var(--orange-700); }
.badge-ok { background: #e7f6ef; color: #12714d; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-top {
  background: var(--navy-900); color: #cdd8ea;
  font-size: 12.5px; font-weight: 600;
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 36px; }
.header-top a { color: #fff; display: inline-flex; gap: 7px; align-items: center; }
.header-top a:hover { color: var(--orange-400); }
.header-top .ht-mid { white-space: nowrap; }
.ht-phone { display: inline-flex; align-items: center; gap: 7px; }

.header-main { position: relative; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 14px rgba(255, 106, 0, .35);
}
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--navy-950); line-height: 1; display: flex; flex-direction: column; }
.logo-text b { letter-spacing: -.02em; }
.logo-text span { font-size: 9.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav-link { font-weight: 600; font-size: 14.5px; color: var(--ink-soft); position: relative; padding: 8px 2px; }
.nav-link:hover { color: var(--primary); }
.nav-link.is-active { color: var(--navy-950); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2.5px;
  background: var(--primary); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; color: var(--navy-900);
  background: var(--off-white); transition: background .15s, color .15s;
}
.icon-btn:hover { background: rgba(255, 106, 0, .12); color: var(--primary); }

.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding-inline: 4px;
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 700;
  border-radius: var(--radius-pill); display: grid; place-items: center;
  border: 2px solid #fff;
}

/* Search */
.header-search { display: none; flex: 1; max-width: 420px; margin-inline: auto; position: relative; }
@media (min-width: 1024px) { .header-search { display: block; } }
.search-wrap { position: relative; }
.header-search input {
  width: 100%; height: 44px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line); background: var(--off-white);
  padding: 0 46px 0 18px; font-size: 14px; outline: none; transition: border-color .15s, box-shadow .15s;
}
.header-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 106, 0, .12); background: #fff; }
.header-search button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: var(--radius-pill);
  background: var(--primary); color: #fff; display: grid; place-items: center;
}
.search-overlay { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden; display: none; z-index: 40; }
.search-overlay.open { display: block; }
.search-results { padding: 6px; max-height: 340px; overflow: auto; }
.search-results img.photo { padding: 4px; }
.search-empty { padding: 22px; text-align: center; color: var(--ink-mute); font-size: 14px; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px); z-index: 90;
  background: #fff; transform: translateX(100%); transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(10, 27, 51, .2);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 18px; border-bottom: 1px solid var(--line); }
.mobile-nav .nav { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 18px; overflow: auto; flex: 1; }
.mobile-nav .nav-link { padding: 15px 0; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
.mobile-nav .nav-link.is-active::after { display: none; }
.mobile-nav .nav-link.is-active { color: var(--primary); }
.mobile-nav-foot { padding: 16px 18px 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-mute); }
.nav-backdrop { position: fixed; inset: 0; background: rgba(6, 18, 31, .5); z-index: 80; opacity: 0; pointer-events: none; transition: opacity .25s; }
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

.hamburger { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--off-white); }
@media (min-width: 1024px) { .desktop-nav { display: flex; } .hamburger { display: none; } }
@media (max-width: 1023.98px) { .desktop-nav { display: none; } }

/* ---------- Mobile search ---------- */
.mobile-search { padding: 10px 18px 12px; border-bottom: 1px solid var(--line); display: block; position: relative; }
@media (min-width: 1024px) { .mobile-search { display: none; } }
.mobile-search .search-overlay { top: calc(100% + 4px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #b9c6d9; }
.footer-cta {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-xl); padding: clamp(28px, 6vw, 48px);
  transform: translateY(50%); display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.footer-cta h3 { color: #fff; font-size: clamp(20px, 4vw, 28px); }
.footer-cta p { color: #aebbd0; margin-top: 6px; font-size: 14.5px; }
.footer-main { padding: 96px 0 40px; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer-brand p { font-size: 14px; margin-top: 14px; max-width: 300px; }
.footer-title { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #b9c6d9; font-size: 14px; }
.footer-links a:hover { color: var(--orange-400); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 12px; }
.footer-contact svg { flex: none; margin-top: 2px; color: var(--orange-400); }
.footer-contact a { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-btn { width: 38px; height: 38px; border-radius: 11px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: #fff; transition: background .15s, transform .15s; }
.social-btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .09); padding: 18px 0; margin-top: 44px; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; font-size: 13px; }
.pay-icons { display: flex; align-items: center; gap: 8px; color: #7d8ba0; }
.pay-chip { border: 1px solid rgba(255,255,255,.12); border-radius: 6px; padding: 3px 7px; font-size: 11px; font-weight: 700; letter-spacing: .04em; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%); color: #fff; overflow: hidden; position: relative; }
.hero::after { content: ""; position: absolute; right: -140px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 106, 0, .35), transparent 62%); }
.hero::before { content: ""; position: absolute; left: -120px; bottom: -180px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 138, 47, .18), transparent 62%); }
.hero .container { position: relative; z-index: 2; display: grid; gap: 36px; align-items: center; padding-top: clamp(36px, 7vw, 72px); padding-bottom: clamp(36px, 7vw, 72px); }
@media (min-width: 1024px) { .hero .container { grid-template-columns: 1.05fr .95fr; } }
.hero-copy { max-width: 560px; text-align: center; margin-inline: auto; }
@media (min-width: 1024px) { .hero-copy { text-align: left; margin-inline: 0; } }
.hero-tagline { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; color: var(--orange-400); background: rgba(255, 106, 0, .14); border: 1px solid rgba(255, 138, 47, .35); padding: 7px 14px; border-radius: var(--radius-pill); }
.hero h1 { color: #fff; font-size: clamp(30px, 7vw, 54px); margin: 18px 0 14px; }
.hero h1 .grad { background: linear-gradient(90deg, var(--orange-400), #ffb066); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: #c6d2e4; font-size: 16px; max-width: 470px; }
@media (min-width: 1024px) { .hero p.lead { margin-inline: 0; } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; justify-content: center; }
@media (min-width: 1024px) { .hero-cta { justify-content: flex-start; } }
.hero-stats { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; }
@media (min-width: 1024px) { .hero-stats { justify-content: flex-start; } }
.hero-stats { margin-top: 30px; border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 22px; }
.stat { text-align: center; min-width: 84px; }
.stat b { display: block; font-family: var(--font-head); font-size: 22px; color: #fff; }
.stat span { font-size: 12px; color: #93a4bd; }
.hero-visual { position: relative; max-width: 480px; margin-inline: auto; width: 100%; }
.hero-float {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 12px 14px; display: flex; gap: 10px; align-items: center;
  animation: floaty 5s ease-in-out infinite;
}
.hero-float .hf-ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(255, 106, 0, .12); color: var(--primary); display: grid; place-items: center; }
.hero-float b { font-size: 14px; color: var(--navy-950); display: block; }
.hero-float span { font-size: 12px; color: var(--ink-mute); }
.hero-float.f1 { top: -8px; left: 0; animation-delay: 0s; }
.hero-float.f2 { bottom: 4px; right: 0; animation-delay: 1.6s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-visual .ph-big { aspect-ratio: 4/4.4; border-radius: 26px; }

/* Marquee strip */
.marquee { background: var(--orange-500); color: #fff; overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 22s linear infinite; width: max-content; }
.marquee-track span { display: inline-flex; align-items: center; gap: 26px; padding: 11px 26px; font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Product cards ---------- */
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #dde5ef; }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--off-white); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-media img.photo { object-fit: contain; padding: 18px; background: #fff; }
.pc-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pc-brand { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--navy-800); background: #eef2f9; border: 1px solid var(--line); border-radius: 99px; padding: 2px 9px; }
.pc-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.pc-actions { position: absolute; right: 10px; top: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.pc-action {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--navy-900);
  opacity: 0; transform: translateX(6px); transition: opacity .2s, transform .2s, color .15s, background .15s;
}
.product-card:hover .pc-action { opacity: 1; transform: translateX(0); }
.pc-action:hover { background: var(--primary); color: #fff; }
.pc-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pc-cat { font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--primary); }
.pc-name { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--navy-950); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em; }
.pc-stock { font-size: 12px; display: inline-flex; align-items: center; gap: 6px; }
.pc-stock.in { color: var(--success); }
.pc-stock.soon { color: #b54708; }
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot.green { background: var(--success); }
.dot.amber { background: var(--star); }
.pc-price-row { margin-top: auto; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-now { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--navy-950); }
.price-was { font-size: 13px; color: var(--ink-mute); text-decoration: line-through; }
.price-off { font-size: 12px; font-weight: 700; color: var(--success); }
.stars { display: inline-flex; align-items: center; gap: 3px; color: var(--star); font-size: 12px; }
.stars span { color: var(--ink-mute); font-size: 12px; margin-left: 2px; }
.pc-cta { display: flex; gap: 8px; margin-top: 4px; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 560px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 820px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Category chips / cards ---------- */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(6, 1fr); } }
.category-card {
  border-radius: var(--radius-lg); padding: 18px 14px; text-align: center;
  background: #fff; border: 1px solid var(--line); transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(255, 106, 0, .4); }
.category-card .cc-ic {
  width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); color: #fff;
  box-shadow: var(--shadow);
}
.category-card h3 { font-size: 14px; }
.category-card span { font-size: 12.5px; color: var(--ink-mute); }

/* Category banner big tiles */
.cat-tile { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 200px; display: flex; align-items: flex-end; color: #fff; }
.cat-tile .ph-lite { position: absolute; inset: 0; }
.cat-tile > div:last-child { position: relative; z-index: 2; padding: 22px; width: 100%; background: linear-gradient(to top, rgba(6,18,31,.78), transparent); }
.cat-tile h3 { color: #fff; font-size: 19px; }
.cat-tile p { font-size: 13px; color: #d9e2ee; }
.big-cat-grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .big-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .big-cat-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Offers ---------- */
.offer-banner {
  border-radius: var(--radius-xl); padding: clamp(26px, 6vw, 56px);
  color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
}
.offer-banner::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,106,0,.45), transparent 60%); }
.offer-banner .ob-inner { position: relative; z-index: 2; display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .offer-banner .ob-inner { grid-template-columns: 1.2fr .8fr; } }
.offer-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 26px; text-align: center;
  backdrop-filter: blur(6px);
}
.offer-card .oc-code {
  font-family: var(--font-head); font-weight: 800; font-size: 22px; letter-spacing: .04em;
  background: linear-gradient(90deg, var(--orange-400), #ffb066);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  border: 1.5px dashed rgba(255,138,47,.6); border-radius: 12px; padding: 10px 8px; display: block; margin-bottom: 12px;
}
.offer-card p { color: #d9e2ee; font-size: 13.5px; }
.offer-discount { font-family: var(--font-head); font-weight: 800; font-size: clamp(40px, 8vw, 64px); line-height: 1; }
.offer-discount small { font-size: .42em; vertical-align: super; margin-right: 2px; }

/* ---------- Why TechNest ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 22px; text-align: center; transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card .wc-ic { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: linear-gradient(150deg, var(--orange-400), var(--orange-600)); box-shadow: 0 10px 22px rgba(255,106,0,.3); }
.why-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.why-card p { font-size: 13.5px; color: var(--ink-mute); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; gap: 16px; }
@media (min-width: 820px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { background: var(--off-white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.testi-card .quote { font-size: 15px; color: var(--ink-soft); margin: 14px 0 18px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; }
.testi-person b { display: block; font-size: 14.5px; color: var(--navy-950); }
.testi-person span { font-size: 12.5px; color: var(--ink-mute); }
.quote-mark { color: var(--primary); opacity: .25; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: linear-gradient(150deg, var(--navy-950), var(--navy-800)); color: #fff; padding: clamp(34px, 6vw, 64px) 0; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(255,106,0,.32), transparent 60%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(28px, 5vw, 40px); }
.page-hero p { color: #c3cfe1; margin-top: 8px; max-width: 560px; font-size: 15.5px; }
.breadcrumb { font-size: 13px; color: #9fb0c8; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.breadcrumb a { color:#cdd8ea; }
.breadcrumb a:hover { color: var(--orange-400); }
.breadcrumb .sep { color: #5c6f8b; }

/* ---------- Filter toolbar ---------- */
.toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 9px 15px; border-radius: var(--radius-pill); border: 1.5px solid var(--line);
  background: #fff; font-size: 13px; font-weight: 600; color: var(--ink-soft); transition: all .15s;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

/* ---------- Brand filters + brand cards ---------- */
.brand-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.brand-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 12px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(255, 106, 0, .4); }
.bc-photo { width: 64px; height: 64px; border-radius: 14px; overflow: hidden; flex: none; background: #fff; border: 1px solid var(--line); }
.bc-photo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.bc-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bc-info b { font-family: var(--font-head); font-size: 15px; color: var(--navy-950); }
.bc-info span { font-size: 12.5px; color: var(--ink-mute); }
.bc-info small { font-size: 11.5px; color: var(--primary); font-weight: 700; }
@media (max-width: 640px) { .brand-grid { grid-template-columns: 1fr; } }
.sort-box select {
  height: 42px; border-radius: var(--radius); border: 1.5px solid var(--line); background: #fff;
  padding: 0 34px 0 14px; font-weight: 600; font-size: 13.5px; color: var(--navy-900);
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230a1b33' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 11px center;
}
.results-count { font-size: 13px; color: var(--ink-mute); }
.load-more-wrap { text-align: center; margin-top: 30px; }

/* ---------- Toolbar (shop layout) ---------- */
.shop-layout { display: grid; gap: 26px; }
@media (min-width: 1024px) { .shop-layout { grid-template-columns: 250px 1fr; align-items: start; } }
.filters-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; }
.filters-panel h3 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); margin: 20px 0 12px; }
.filters-panel h3:first-child { margin-top: 0; }
.check-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.check-row input { width: 17px; height: 17px; accent-color: var(--primary); }
.check-row .count { margin-left: auto; color: var(--ink-mute); font-size: 12px; }
.range-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-mute); margin-bottom: 10px; }
input[type="range"] { width: 100%; accent-color: var(--primary); }
.filter-clear { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--primary); }
.mobile-filters-toggle { display: inline-flex; }
@media (min-width: 1024px) { .mobile-filters-toggle { display: none; } }

/* ---------- Product detail ---------- */
.pd-layout { display: grid; gap: 30px; }
@media (min-width: 1024px) { .pd-layout { grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; } }
.pd-gallery { position: relative; }
.pd-main { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line); background: var(--off-white); aspect-ratio: 1/1; position: relative; }
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-main img.photo { object-fit: contain; padding: 22px; background: #fff; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.pd-thumb { aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; cursor: pointer; opacity: .7; transition: all .15s; }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--primary); opacity: 1; }
.pd-gallery .badges-left { position: absolute; top: 14px; left: 14px; z-index: 3; display:flex; flex-direction:column; gap:7px; }

.pd-info h1 { font-size: clamp(22px, 4vw, 32px); margin: 10px 0 8px; }
.pd-reviews { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-mute); flex-wrap: wrap; }
.pd-price-box { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 6px; flex-wrap: wrap; }
.pd-price-now { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 5vw, 36px); color: var(--navy-950); }
.pd-price-was { font-size: 17px; color: var(--ink-mute); text-decoration: line-through; }
.pd-save { font-size: 13px; font-weight: 700; color: var(--success); background: var(--success-bg); padding: 5px 11px; border-radius: var(--radius-pill); }
.pd-tax { font-size: 12.5px; color: var(--ink-mute); margin-bottom: 16px; }
.pd-offers { background: #fff7ed; border: 1px dashed var(--orange-400); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 18px; font-size: 13.5px; color: #7c3c00; }
.pd-offers li { display: flex; gap: 9px; margin-bottom: 6px; align-items: flex-start; }
.pd-offers li:last-child { margin-bottom: 0; }

.qty-box { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.qty-box button { width: 42px; height: 46px; display: grid; place-items: center; font-size: 20px; color: var(--navy-900); background: var(--off-white); transition: background .15s, color .15s; }
.qty-box button:hover { background: rgba(255,106,0,.1); color: var(--primary); }
.qty-box input { width: 54px; text-align: center; border: 0; outline: none; font-weight: 700; font-size: 15px; height: 46px; }
.pd-buy-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.pd-buy-row .btn { flex: 1 1 200px; }
.pd-meta { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 8px; font-size: 13.5px; color: var(--ink-soft); }
.pd-meta b { color: var(--navy-950); }
.pd-trust { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.trust-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--off-white); border: 1px solid var(--line); padding: 8px 12px; border-radius: var(--radius-pill); font-size: 12.5px; font-weight: 600; color: var(--navy-900); }

.pd-tabs { margin-top: 46px; }
.tabs-nav { display: flex; gap: 6px; border-bottom: 2px solid var(--line); flex-wrap: wrap; }
.tab-btn { padding: 12px 18px; font-weight: 700; font-size: 14.5px; color: var(--ink-mute); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color .15s, border-color .15s; }
.tab-btn.active { color: var(--navy-950); border-color: var(--primary); }
.tab-panel { display: none; padding: 24px 2px; }
.tab-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.feat-list { display: grid; gap: 12px; }
.feat-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.feat-list li svg { flex: none; color: var(--primary); margin-top: 1px; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; gap: 24px; }
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.cart-item { display: flex; gap: 14px; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); margin-bottom: 12px; }
.cart-item .ci-img { width: 86px; height: 86px; border-radius: var(--radius-sm); overflow: hidden; flex: none; background: var(--off-white); border: 1px solid var(--line); }
.cart-item .ci-body { flex: 1; min-width: 0; }
.cart-item .ci-name { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--navy-950); line-height: 1.35; }
.cart-item .ci-cat { font-size: 11.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--primary); font-weight: 700; margin: 2px 0 6px; }
.cart-item .ci-price { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy-950); }
.cart-item .ci-remove { font-size: 12.5px; color: var(--danger); font-weight: 600; margin-top: 6px; display: inline-flex; align-items: center; gap: 5px; }
.cart-item .ci-line { font-weight: 800; font-size: 16px; color: var(--navy-950); }
.cart-item .qty-box button, .cart-item .qty-box input { height: 40px; }
.cart-item .qty-box input { width: 44px; }

.cart-summary { position: sticky; top: calc(var(--header-h) + 16px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.cart-summary h3 { font-size: 18px; margin-bottom: 16px; }
.cs-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 9px 0; color: var(--ink-soft); }
.cs-row.total { border-top: 1.5px dashed var(--line); margin-top: 8px; padding-top: 14px; font-family: var(--font-head); font-size: 17px; color: var(--navy-950); font-weight: 800; }
.cs-row.total span { font-size: 22px; }
.cs-free { background: var(--success-bg); color: var(--success); font-size: 13px; font-weight: 600; padding: 10px 12px; border-radius: var(--radius); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }

/* ---------- Empty states ---------- */
.empty-state { text-align: center; padding: 50px 18px; }
.empty-state .es-ic { width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 26px; background: var(--off-white); color: var(--primary); display: grid; place-items: center; }
.empty-state h3 { font-size: 20px; margin-bottom: 6px; }
.empty-state p { color: var(--ink-mute); font-size: 14.5px; max-width: 360px; margin: 0 auto 20px; }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 13.5px; color: var(--navy-900); margin-bottom: 7px; }
.field .hint { font-size: 12px; color: var(--ink-mute); margin-top: 5px; }
.field input, .field select, .field textarea {
  width: 100%; height: 48px; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 0 14px; background: #fff; outline: none; transition: border-color .15s, box-shadow .15s;
  font-size: 14.5px;
}
.field textarea { height: auto; padding: 13px 14px; resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255,106,0,.1); }
.field.required label::after { content: " *"; color: var(--danger); }
.form-grid { display: grid; gap: 0 16px; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.form-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; align-items: center; }
.check-line { display: flex; gap: 9px; align-items: center; font-size: 13.5px; color: var(--ink-soft); }
.check-line input { accent-color: var(--primary); width: 16px; height: 16px; }

.radio-block { display: grid; gap: 10px; }
.radio-card { display: flex; gap: 12px; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 15px 16px; cursor: pointer; transition: border-color .15s, background .15s; }
.radio-card:hover { border-color: var(--primary); }
.radio-card.selected { border-color: var(--primary); background: #fff7ed; }
.radio-card input { accent-color: var(--primary); width: 17px; height: 17px; }
.radio-card b { display: block; font-size: 14px; color: var(--navy-950); }
.radio-card span { font-size: 12.5px; color: var(--ink-mute); }
.rc-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--off-white); display: grid; place-items: center; color: var(--navy-800); flex: none; }

/* ---------- Auth (account) ---------- */
.auth-wrap { display: grid; gap: 26px; }
@media (min-width: 900px) { .auth-wrap { grid-template-columns: 1fr 1fr; align-items: start; } }
.auth-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(22px, 4vw, 36px); }
.auth-card h2 { font-size: 22px; margin-bottom: 6px; }
.auth-card > p { color: var(--ink-mute); font-size: 14px; margin-bottom: 22px; }
.auth-note { font-size: 13px; color: var(--ink-mute); text-align: center; margin-top: 16px; }
.auth-note a { color: var(--primary); font-weight: 600; }

.order-list { display: grid; gap: 12px; }
.order-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; background:#fff; }
.oc-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.oc-head b { color: var(--navy-950); }
.oc-head span { font-size: 12.5px; color: var(--ink-mute); }
.oc-items { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 10px; }
.oc-total { font-family: var(--font-head); font-weight: 800; color: var(--navy-950); }

.address-card { background: var(--off-white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; }
.address-card b { color: var(--navy-950); display: block; margin-bottom: 4px; }
.address-card p { font-size: 14px; color: var(--ink-soft); }
.account-grid { display: grid; gap: 20px; }
@media (min-width: 900px) { .account-grid { grid-template-columns: 240px 1fr; align-items: start; } }
.account-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.account-nav a { flex: 1 1 auto; }
@media (min-width: 900px) {
  .account-nav { flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 10px; position: sticky; top: calc(var(--header-h) + 16px); }
  .account-nav a { text-align: left; padding: 13px 14px; border-radius: var(--radius-sm); color: var(--ink-soft); font-weight: 600; font-size: 14px; display:flex; gap:10px; align-items:center; }
  .account-nav a:hover { background: var(--off-white); color: var(--primary); }
  .account-nav a.active { background: var(--navy-900); color: #fff; }
}

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; width: min(92vw, 400px); }
.toast {
  background: var(--navy-950); color: #fff; border-radius: var(--radius); padding: 14px 16px;
  display: flex; gap: 11px; align-items: center; box-shadow: var(--shadow-lg);
  font-size: 14px; font-weight: 600; animation: toastIn .3s cubic-bezier(.2,.9,.3,1.2);
}
.toast svg { flex: none; color: var(--orange-400); }
.toast.success svg { color: #34d399; }
.toast.out { animation: toastOut .3s ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px) scale(.97); } }

/* ---------- Product placeholder images (SVG-based) ---------- */
.ph-big { position: relative; display: grid; place-items: center; overflow: hidden; }
.ph-big::before, .ph-big::after { content: ""; position: absolute; border-radius: 50%; }
.ph-big::before { width: 62%; height: 62%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.4), rgba(255,255,255,0) 65%); }
.ph-big img { position: relative; z-index: 2; }
.ph-big img.photo { object-fit: contain; padding: 20px; background: #fff; border-radius: 22px; }

/* ---------- Misc ---------- */
.divider { border: 0; border-top: 1px solid var(--line); }
.divider-space { height: 1px; background: var(--line); margin: 20px 0; }

/* Offers page banner grid */
.offer-strip { display: grid; gap: 12px; }
@media (min-width: 760px) { .offer-strip { grid-template-columns: repeat(3, 1fr); } }
.mini-offer { border-radius: var(--radius-lg); padding: 22px; color: #fff; }
.mini-offer.grad1 { background: linear-gradient(120deg, var(--primary), var(--orange-700)); }
.mini-offer.grad2 { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); }
.mini-offer.grad3 { background: linear-gradient(120deg, #b54708, #f97316); }
.mini-offer h3 { color: #fff; font-size: 18px; }
.mini-offer p { font-size: 13px; opacity: .9; margin-top: 4px; }
.mini-offer .code { display: inline-block; margin-top: 14px; background: rgba(255,255,255,.18); border: 1px dashed rgba(255,255,255,.6); padding: 6px 12px; border-radius: 8px; font-weight: 800; letter-spacing: .05em; font-size: 13.5px; }

/* Contact */
.contact-grid { display: grid; gap: 24px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; } }
.contact-info-card { background: var(--navy-950); border-radius: var(--radius-xl); padding: clamp(22px, 4vw, 34px); color: #c6d2e4; }
.contact-info-card h2 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.contact-info-card > p { font-size: 14px; margin-bottom: 24px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.ci-item .ci-ic { width: 44px; height: 44px; flex: none; border-radius: 13px; background: rgba(255,106,0,.16); color: var(--orange-400); display: grid; place-items: center; }
.ci-item b { color: #fff; display: block; font-size: 14.5px; }
.ci-item a, .ci-item p { font-size: 14px; }
.ci-item a:hover { color: var(--orange-400); }

/* Map stub */
.map-stub { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); position: relative; min-height: 220px; background: linear-gradient(120deg, var(--off-white), #e9eef6); display: grid; place-items: center; }
.map-stub .pin { width: 54px; height: 54px; border-radius: 50% 50% 50% 8px; transform: rotate(-45deg); background: var(--primary); box-shadow: 0 10px 26px rgba(255,106,0,.4); display: grid; place-items: center; color: #fff; }
.map-stub .pin svg { transform: rotate(45deg); }

/* FAQ */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: #fff; }
.faq-q { width: 100%; text-align: left; padding: 16px 18px; font-weight: 700; font-size: 15px; color: var(--navy-950); display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.faq-q .chev { transition: transform .2s; color: var(--primary); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 18px 16px; font-size: 14px; color: var(--ink-soft); }
.faq-item.open .faq-a { display: block; animation: fadeIn .25s ease; }

/* Notice bar */
.notice { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; font-size: 13.5px; padding: 12px 16px; border-radius: var(--radius); display: flex; gap: 10px; align-items: center; }

/* Typography helper */
.prose { font-size: 15px; color: var(--ink-soft); }
.prose h2 { font-size: 20px; margin: 26px 0 10px; color: var(--navy-950); }
.prose p { margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; }
.prose b { color: var(--navy-950); }

/* Back to top */
.to-top { position: fixed; right: 16px; bottom: 16px; z-index: 50; width: 44px; height: 44px; border-radius: 13px; background: var(--navy-900); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(10px); transition: all .25s; }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--primary); color: #fff; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
}

/* print */
@media print {
  .site-header, .site-footer, .to-top, .toast-wrap, .no-print { display: none !important; }
}