:root {
  --navy: #071a38;
  --blue: #1b4fd8;
  --orange: #e85d04;
  --orange-deep: #9a3400;
  --text: #121c2e;
  --muted: #5f6b7f;
  --line: #dbe2ee;
  --soft: #f2f5fa;
  --canvas: #eef1f7;
  --white: #fff;
  --own: #0f9a6a;
  --ink-wash: #0c2348;
  --shadow: 0 10px 28px rgba(7, 26, 56, 0.07);
  --shadow-lg: 0 20px 48px rgba(7, 26, 56, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --wrap: min(1375px, calc(100% - 56px));
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(1200px 520px at 8% -10%, rgba(27, 79, 216, 0.08), transparent 55%),
    radial-gradient(900px 480px at 92% 0%, rgba(232, 93, 4, 0.07), transparent 50%),
    linear-gradient(180deg, #f7f8fc 0%, var(--canvas) 40%, #e9edf5 100%);
  background-attachment: fixed;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}
#main { background: transparent; }
h1, h2, h3, .hero h1, .section-head h2, .block-head h2, .page-hero h1, .product-intro h1 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-weight: 700;
}
a { text-decoration: none; color: inherit }
img, svg { display: block; max-width: 100% }
button svg, a svg, .top-item svg, .feature svg, .aff-icon svg, .trust-item svg,
.aside-nav svg, .crumb svg, .btn svg, .search-go svg, .catbtn svg, .deals-link svg,
.navlinks svg, .burger svg, .to-top svg, .chips-arrow svg, .faq-item svg, .mega-side svg,
.mega-tile svg, .glance-card svg, .help-topic svg, .ccard svg, .cat svg {
  flex-shrink: 0;
}
button, input, textarea, select { font: inherit; color: inherit }
code { font-size: 0.92em; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace }

.skip { position: absolute; left: -999px; top: 8px }
.skip:focus { left: 12px; background: var(--navy); color: #fff; padding: 8px 12px; z-index: 40 }

/* SPA page transitions — chrome stays, only #main fades up */
.topbar { view-transition-name: js-topbar }
.header { view-transition-name: js-header }
.nav-shell { view-transition-name: js-nav }
.footer { view-transition-name: js-footer }
#main { view-transition-name: js-page }
.page-view { animation: pageIn .48s cubic-bezier(.16, .84, .34, 1) both }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(22px) }
  to { opacity: 1; transform: none }
}
::view-transition-old(js-page) {
  animation: pageOut .2s ease both
}
::view-transition-new(js-page) {
  animation: pageIn .42s cubic-bezier(.16, .84, .34, 1) both
}
@keyframes pageOut {
  from { opacity: 1 }
  to { opacity: 0 }
}
html:active-view-transition .page-view { animation: none }
.nbar {
  position: fixed; top: 0; left: 0; z-index: 400;
  height: 2px; width: 0; background: var(--orange);
  pointer-events: none; opacity: 0;
  transition: width .4s ease, opacity .25s ease;
}
.nbar.on { opacity: 1; width: 72% }
.nbar.done { opacity: 0; width: 100%; transition: width .18s ease, opacity .3s ease .05s }

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(7, 26, 56, 0.28);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, background .15s ease, box-shadow .15s ease;
}
.to-top.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:hover {
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(232, 93, 4, 0.32);
}
.to-top:focus-visible {
  outline: 2px solid rgba(27, 79, 216, 0.45);
  outline-offset: 3px;
}
.to-top svg { width: 20px; height: 20px; stroke-width: 2.4 }

.container, .wrap { width: var(--wrap); margin-inline: auto }
.muted { color: var(--muted) }
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--font-sans);
}
.lede { font-size: 15px; color: #44516b; max-width: 40rem }
.text-link { color: var(--blue); font-weight: 700; font-size: 12px }
.text-link:hover { color: var(--orange) }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(7, 26, 56, 0.18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(7, 26, 56, 0.22) }
.btn-terracotta, .btn.primary, .btn.blue { background: var(--navy); color: #fff; border-color: var(--navy) }
.btn-ghost, .btn.secondary, .btn.light {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border-color: rgba(7, 26, 56, 0.12);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover, .btn.secondary:hover, .btn.light:hover {
  background: #fff; border-color: var(--navy);
}
.btn-ink { background: var(--navy); border-color: var(--navy); color: #fff }
.btn-own, .btn.orange { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(232, 93, 4, 0.28) }

/* Top bar */
.topbar {
  height: 36px;
  background: linear-gradient(90deg, #06152e 0%, var(--ink-wash) 55%, #0a2a57 100%);
  color: #fff; font-size: 12px;
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-left, .top-links { display: flex; align-items: center; gap: 20px; min-width: 0 }
.top-links { margin-inline-start: auto }
.top-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; opacity: 0.95 }
.top-item svg { width: 13px; height: 13px; flex: none }
.bismillah {
  display: inline-flex;
  align-items: center;
  flex: none;
  max-width: min(52vw, 340px);
  overflow: hidden;
  text-overflow: clip;
  font-family: Amiri, "Noto Naskh Arabic", "Traditional Arabic", serif;
  font-size: clamp(12px, 1.35vw, 16px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #f4e4c4;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(219, 226, 238, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-shell {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 226, 238, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  /* Named view-transition elements form stacking contexts; keep nav above #main
     so overflowing mega menus are not covered by the page content. */
  position: relative;
  z-index: 50;
}
.js { background: transparent }
.main-head { height: 78px; display: flex; align-items: center; gap: 30px }
.logo { display: flex; align-items: center; gap: 12px; width: auto; max-width: 220px; flex: none }
.logo img, .brand-logo {
  height: 48px;
  width: auto;
  max-width: 210px;
  display: block;
  object-fit: contain;
}
.logo--footer { max-width: 220px; margin-bottom: 10px }
.footer .logo, .foot .logo { display: inline-flex }
.logo--footer img, .logo--footer .brand-logo {
  height: 42px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
}
.logo-text { display: block; min-width: 0 }
.logo strong { font-size: 20px; letter-spacing: 0.4px; line-height: 18px; display: block }
.logo .logo-host {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--muted);
  margin-top: 3px;
}

.search {
  height: 44px;
  border: 1px solid rgba(219, 226, 238, 0.95);
  border-radius: 12px;
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 645px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(7, 26, 56, 0.04);
}
.search input {
  border: 0; outline: 0; flex: 1;
  padding: 0 16px; font-size: 13px; background: transparent;
}
.search button, .search-go {
  height: 100%; width: 52px; border: 0;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  transition: background .15s ease;
}
.search button:hover, .search-go:hover { background: var(--blue) }
.search-go svg { width: 18px; height: 18px }
.btn svg { width: 15px; height: 15px }
.catbtn svg { width: 15px; height: 15px }
.deals-link svg { width: 14px; height: 14px }
.navlinks svg { width: 12px; height: 12px }
.head-actions { margin-left: auto; display: flex; align-items: center; gap: 22px }
.action {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; white-space: nowrap;
}
.action svg { width: 21px; height: 21px; stroke-width: 1.7 }
.action:hover { color: var(--blue) }

/* Nav + mega menus */
.nav-row { height: 52px; display: flex; align-items: center; position: relative; z-index: 40 }
.nav-row details { position: relative }
.nav-row summary { list-style: none }
.nav-row summary::-webkit-details-marker, .nav-row summary::marker { display: none; content: '' }
.catbtn {
  height: 40px; width: 225px; border: 0; border-radius: 10px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; font-weight: 700; font-size: 12px; cursor: pointer; flex: none;
  box-shadow: 0 8px 18px rgba(7, 26, 56, 0.16);
  transition: transform .15s ease, background .15s ease;
}
.catbtn:hover { background: var(--blue); transform: translateY(-1px) }
.catbtn span { display: flex; gap: 10px; align-items: center }
.navlinks {
  display: flex; align-items: center; gap: 8px;
  margin-left: 32px; height: 100%; font-size: 12px;
}
.navlinks > a, .navlinks .nav-item > a {
  height: 100%; display: flex; align-items: center; gap: 5px; position: relative; padding: 0 10px;
}
.navlinks a.active, .navlinks a:hover { color: var(--blue); font-weight: 600 }
.navlinks > a.active:after, .navlinks .nav-item > a.active:after {
  content: "";
  position: absolute; height: 2px; background: var(--blue);
  left: 10px; right: 10px; bottom: 7px;
}
.deals-link {
  margin-left: auto; color: var(--orange); font-size: 12px; font-weight: 600;
  display: flex; gap: 6px; align-items: center; height: 100%;
}
.nav-item { display: flex; align-items: center; height: 100%; position: static }
.nav-item:hover > a:not(.catbtn) { color: var(--blue); font-weight: 600 }
.nav-item--end:hover > .deals-link { color: var(--orange) }

.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  padding-top: 12px; z-index: 50;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}
.mega-card {
  display: grid; grid-template-columns: 230px 1fr 270px;
  min-height: 340px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 22px 60px rgba(11, 36, 82, 0.16);
  overflow: hidden;
}
.mega-card--guides, .mega-card--deals { grid-template-columns: 1fr 270px }
.mega-side {
  background: var(--soft); padding: 12px 8px; display: flex; flex-direction: column; gap: 2px;
  min-height: 340px; max-height: 420px;
}
.mega-side-list {
  flex: 1; min-height: 0; overflow-y: auto;
  display: flex; flex-direction: column; gap: 2px;
  padding-right: 2px;
}
.mega-side-all {
  margin-top: 8px; padding: 10px 12px; font-size: 12px; font-weight: 700; color: var(--blue);
  display: flex; align-items: center; gap: 6px; border-top: 1px solid #d7e0f0;
}
.mega-side-all:hover { color: var(--orange) }
.mega-kicker {
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); padding: 4px 10px 8px; flex: none;
}
.mega-side a:not(.mega-side-all) {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px; color: var(--text);
}
.mega-side a svg { color: var(--blue); flex: none }
.mega-side a b { display: block; font-size: 12px; font-weight: 700 }
.mega-side a small { display: block; font-size: 10px; color: var(--muted); font-weight: 500 }
.mega-side a:hover, .mega-side a.is-on {
  background: #fff; color: var(--navy); box-shadow: 0 4px 14px rgba(11, 36, 82, 0.06);
}
.mega-empty {
  border: 1px dashed #c9d6ee; border-radius: 10px; padding: 28px 18px;
  text-align: center; color: var(--muted); font-size: 13px;
}
.mega-empty a { color: var(--blue); font-weight: 700 }
.mega-mid { padding: 18px 20px }
.mega-mid--wide { min-width: 0 }
.mega-mid-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px }
.mega-mid-head .mega-kicker { padding: 0 }
.mega-mid-head a { color: var(--blue); font-size: 12px; font-weight: 700; display: flex; gap: 6px; align-items: center }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px }
.mega-grid--guides { gap: 12px }
.mega-prod {
  display: flex; gap: 10px; align-items: center;
  border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; min-height: 74px;
}
.mega-prod:hover { border-color: #c9d6ee; box-shadow: var(--shadow) }
.mega-prod-img {
  width: 56px; height: 56px; border-radius: 8px; background: var(--soft);
  display: grid; place-items: center; flex: none; overflow: hidden;
}
.mega-prod-img .art { padding: 0; color: var(--navy) }
.mega-prod-img .art-svg { height: 48px }
.mega-prod b { display: block; font-size: 12px; line-height: 1.3; color: var(--navy) }
.mega-prod em { display: block; font-size: 11px; font-style: normal; color: var(--orange); margin-top: 4px }
.mega-guide {
  display: block; border: 1px solid var(--line); border-radius: 10px; padding: 14px;
}
.mega-guide:hover { border-color: #c9d6ee; box-shadow: var(--shadow) }
.mega-guide small { color: var(--muted); font-size: 10px }
.mega-guide b { display: block; margin: 6px 0 6px; color: var(--navy); font-size: 13px; line-height: 1.3 }
.mega-guide p { font-size: 11px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden }
.mega-banner {
  color: #fff; padding: 28px 24px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  background: linear-gradient(165deg, #0b2452 0%, #1451ad 70%);
  position: relative; overflow: hidden; min-height: 340px; text-decoration: none;
}
.mega-banner:before {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12); right: -70px; top: -80px;
}
.mega-banner--orange { background: linear-gradient(165deg, #c2410c 0%, #ff7a22 75%) }
.mega-banner small { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; position: relative }
.mega-banner strong { font-size: 26px; line-height: 1.1; letter-spacing: -0.5px; position: relative }
.mega-banner p { font-size: 13px; line-height: 1.45; opacity: .9; position: relative }
.mega-banner span {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  background: #fff; color: var(--navy); height: 36px; padding: 0 14px;
  border-radius: 6px; font-size: 12px; font-weight: 800; width: max-content; position: relative;
}
.mega-banner--orange span { color: #9a3412 }
.mega-card--swap { grid-template-columns: 230px 1fr }
.mega-swap { min-width: 0 }
.mega-panel { display: none }
.mega-panel.is-on { display: grid; grid-template-columns: 1fr 270px; min-height: 340px }
.mega-side svg { width: 18px; height: 18px; color: var(--blue); flex: none }
.burger {
  display: none; border: 0; background: transparent;
  width: 42px; height: 42px; margin-left: auto; cursor: pointer;
  place-items: center; color: var(--navy); flex: none;
  position: relative;
}
.burger > * {
  grid-area: 1 / 1;
  width: 22px;
  height: 22px;
}
.burger > :last-child { visibility: hidden }
.burger[aria-expanded="true"] > :first-child { visibility: hidden }
.burger[aria-expanded="true"] > :last-child { visibility: visible }
.nav-mobile {
  display: none; flex-direction: column; gap: 2px;
  padding: 8px 0 16px; border-top: 1px solid var(--line);
  flex-basis: 100%; width: 100%;
}
.nav-mobile a {
  padding: 11px 0; font-size: 14px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid rgba(219, 226, 238, 0.7);
}
.nav-mobile a:last-child { border-bottom: 0 }
.nav-mobile a:hover { color: var(--blue) }

/* Hero */
.hero {
  min-height: 440px;
  margin-top: 14px;
  background:
    linear-gradient(118deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.18) 42%, transparent 70%),
    linear-gradient(145deg, #102a55 0%, #163a78 38%, #1b4fd8 72%, #e85d04 140%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  color: #fff;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  contain: layout paint;
}
.hero:before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(560px 320px at 78% 28%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(420px 260px at 18% 90%, rgba(232, 93, 4, 0.28), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 72%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
}
.hero-content { padding: 52px 60px 36px; position: relative; z-index: 2; width: 56% }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px; padding: 7px 12px;
  font-size: 11px; font-weight: 700; color: #fff;
  letter-spacing: 0.1em; text-transform: uppercase;
  backdrop-filter: blur(8px);
  font-family: var(--font-sans);
}
.hero-badge b { color: #ffd4b0; font-weight: 800 }
.hero h1 {
  font-size: clamp(40px, 5vw, 56px); line-height: 0.96; margin: 18px 0 14px;
  letter-spacing: -0.04em; color: #fff; font-weight: 800;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic; font-weight: 700;
  color: #ffd7b5;
  background: linear-gradient(90deg, #fff 0%, #ffc089 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-content > p:not(.disclose) {
  font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.82);
  max-width: 455px; margin: 0 0 22px; font-family: var(--font-sans);
}
.hero .disclose {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 26, 56, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.ctas, .hero-actions { display: flex; gap: 12px; flex-wrap: wrap }
.features { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap }
.feature {
  display: flex; gap: 10px; align-items: center; font-size: 12px; color: #fff;
  padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
.feature svg { width: 18px; color: #ffd4b0; flex: none }
.feature b { font-family: var(--font-sans); font-weight: 700 }
.feature span { display: block; color: rgba(255,255,255,0.62); font-size: 10px; margin-top: 2px; font-weight: 500 }
.hero-products { position: absolute; right: 30px; bottom: 15px; width: 53%; height: 88%; z-index: 1 }
.podium {
  position: absolute; right: 105px; bottom: 8px; width: 420px; height: 100px;
  background: linear-gradient(#fff, #e9eef8);
  border-radius: 45% 45% 12px 12px;
  box-shadow: 0 15px 25px rgba(55, 83, 132, 0.15);
}
.hero-prop { position: absolute; filter: drop-shadow(0 18px 15px rgba(24, 44, 80, 0.2)) }
.phone {
  width: 145px; height: 270px; right: 190px; bottom: 48px;
  background: linear-gradient(140deg, #151b2c, #34476d);
  border-radius: 24px; transform: rotate(-1deg); box-shadow: inset 0 0 0 4px #111;
}
.phone:before { content: ""; position: absolute; inset: 7px; border-radius: 18px; background: linear-gradient(145deg, #263b70, #0b1222) }
.phone:after { content: ""; position: absolute; width: 45px; height: 13px; border-radius: 10px; background: #090d16; top: 9px; left: 50px }
.watch { right: 330px; bottom: 55px; width: 95px; height: 125px; border-radius: 25px; background: #10141e; transform: rotate(-16deg) }
.watch:before {
  content: ""; position: absolute; width: 45px; height: 78px; border-radius: 14px;
  background: #293143; left: 25px; top: 23px; box-shadow: inset 0 0 0 3px #05070b;
}
.headphones {
  right: 390px; bottom: 66px; width: 135px; height: 125px;
  border: 18px solid #11151f; border-bottom-color: transparent;
  border-radius: 80px 80px 0 0; transform: rotate(-5deg);
}
.headphones:after {
  content: ""; position: absolute; width: 37px; height: 57px; background: #11151f;
  border-radius: 14px; left: -28px; top: 57px; box-shadow: 126px 0 0 #11151f;
}
.shoe { right: 35px; bottom: 47px; width: 250px; height: 112px; transform: rotate(-4deg) }
.shoe:before {
  content: ""; position: absolute; width: 210px; height: 75px; background: #fff;
  border-radius: 80px 65px 20px 18px; right: 0; top: 20px; box-shadow: inset -10px -8px 0 #e5e8ee;
}
.shoe:after {
  content: ""; position: absolute; width: 240px; height: 22px; background: #fff;
  border-radius: 20px; right: 0; bottom: 0; box-shadow: 0 7px 0 #dce1e9;
}
.shoe .lace {
  position: absolute; width: 75px; height: 3px; background: #cdd2db;
  right: 73px; top: 46px; transform: rotate(-10deg);
  box-shadow: 0 9px #cdd2db, 0 18px #cdd2db;
}
.market {
  position: absolute; background: #fff; border-radius: 50%; width: 78px; height: 78px;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(24, 49, 93, 0.12);
  font-weight: 800; font-size: 16px; z-index: 3;
}
.market.daraz { right: 90px; top: 52px; color: #f26722 }
.market.telemart { right: 3px; top: 150px; color: #0b5cab; font-size: 10px; font-weight: 800 }
.market.own { right: 82px; bottom: 125px; background: #ff6f2c; color: #fff; font-size: 11px }

/* Sections */
.section { padding-top: 36px }
.section-head, .block-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 18px; gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(219, 226, 238, 0.9);
}
.section-head h2, .block-head h2 {
  font-size: clamp(22px, 2.4vw, 28px); margin: 0; color: var(--navy); letter-spacing: -0.03em; line-height: 1.15;
}
.section-head a {
  font-size: 12px; color: var(--blue); display: flex; gap: 6px; align-items: center;
  font-weight: 700; font-family: var(--font-sans);
}

.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px }
.cat {
  height: 108px; border: 1px solid transparent; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; background: rgba(255,255,255,0.78); transition: 0.22s ease; text-align: center; padding: 12px;
  box-shadow: 0 1px 0 rgba(7, 26, 56, 0.04);
  backdrop-filter: blur(6px);
}
.cat:hover {
  box-shadow: var(--shadow); transform: translateY(-3px);
  border-color: rgba(27, 79, 216, 0.18); background: #fff;
}
.cat svg { width: 26px; height: 26px; color: var(--blue); stroke-width: 1.5 }
.cat span, .cat strong { font-size: 13px; font-weight: 700; font-family: var(--font-sans) }
.cat p { display: none }
.cat small { font-size: 10px; color: var(--muted); font-weight: 500 }

.deal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px }
.deal {
  min-height: 142px; border: 1px solid transparent; border-radius: var(--radius);
  background: rgba(255,255,255,0.86); padding: 12px; display: flex; align-items: center; gap: 12px; position: relative;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  box-shadow: 0 1px 0 rgba(7, 26, 56, 0.04);
}
.deal:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: rgba(27, 79, 216, 0.16); background: #fff }
.discount, .badge {
  position: absolute; left: 10px; top: 9px;
  background: var(--orange-deep); color: #fff; font-size: 10px; font-weight: 800;
  border-radius: 5px; padding: 4px 7px; z-index: 1; letter-spacing: 0.02em;
}
.prod-img, .pcard-media {
  width: 105px; height: 112px; border-radius: 10px; background: var(--soft);
  display: grid; place-items: center; flex: none; overflow: hidden; position: relative;
}
.deal-info { min-width: 0 }
.deal-info h3 { font-size: 12px; margin: 0 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--font-sans); font-weight: 700 }
.deal-info p { font-size: 10px; color: #8b94a3; margin: 0 0 8px }
.price { font-size: 14px; font-weight: 800; color: var(--navy); font-family: var(--font-sans) }
.old { font-size: 9px; color: #9097a2; text-decoration: line-through; margin-left: 5px }
.store { font-size: 9px; margin-top: 6px; color: var(--blue); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase }
.store.orange { color: var(--orange) }

/* Product cards (shop / lists) */
.block { padding: 22px 0 40px }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px }
.pcard {
  border: 1px solid transparent; border-radius: 16px; padding: 12px;
  background: rgba(255,255,255,0.88); position: relative; display: flex; flex-direction: column;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease, background .22s ease;
  box-shadow: 0 1px 0 rgba(7, 26, 56, 0.04);
}
.pcard:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: rgba(27, 79, 216, 0.14); background: #fff;
}
.pcard-hit {
  display: flex; flex-direction: column; flex: 1; color: inherit; text-decoration: none; min-height: 100%;
}
.pcard-hit:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 12px;
}
.pcard .pcard-media {
  width: 100%; height: 196px; border-radius: 12px;
  display: grid; place-items: center; overflow: hidden; position: relative;
  background: var(--soft);
}
.pcard-body { padding: 14px 4px 4px; display: flex; flex-direction: column; gap: 6px; flex: 1 }
.pcard-title {
  display: block; font-size: 14px; font-weight: 700; line-height: 1.35;
  font-family: var(--font-sans); color: var(--navy);
}
.pcard-body .muted { font-size: 11px }
.pcard-foot {
  display: flex; justify-content: space-between; align-items: end;
  gap: 8px; margin-top: auto; padding-top: 10px;
}
.pcard-foot strong { font-size: 17px; color: var(--navy); font-family: var(--font-sans) }
.pcard-foot small { color: var(--orange-deep); display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase }
.tag {
  position: absolute; top: 22px; left: 22px;
  background: var(--own); color: #fff; font-size: 9px;
  padding: 4px 7px; border-radius: 4px; text-transform: uppercase; font-weight: 700;
}
.art { color: var(--navy); padding: 8px }
.art-svg { width: 100%; height: 140px }
.art-lg .art-svg { height: 280px }
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden }
.photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-lg { height: 100%; border-radius: 0; }
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 8px;
}
.gallery-thumb {
  display: block; width: 100%; padding: 0; margin: 0;
  border: 2px solid transparent; border-radius: 10px;
  background: #f7f8fb; cursor: pointer; overflow: hidden;
  aspect-ratio: 1; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;
}
.gallery-thumb:hover { border-color: #c5d0e4; transform: translateY(-1px) }
.gallery-thumb:focus-visible {
  outline: 2px solid rgba(17, 71, 166, 0.35); outline-offset: 2px;
}
.gallery-thumb.is-active {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 122, 34, 0.25);
}

/* How it works banner (starter affiliate strip, editorial copy) */
.affiliate {
  margin: 14px 0 8px; min-height: 100px;
  background: linear-gradient(100deg, #142b68, #1f3d87);
  border-radius: 10px; color: #fff;
  display: flex; align-items: center; padding: 18px; gap: 34px;
  overflow: hidden; position: relative;
}
.affiliate:after {
  content: ""; position: absolute; width: 330px; height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50%;
  right: -90px; top: -120px;
}
.aff-title { width: 215px; font-size: 17px; font-weight: 800; line-height: 1.2; position: relative; z-index: 1 }
.aff-title span { color: var(--orange) }
.aff-step { display: flex; align-items: center; gap: 13px; min-width: 180px; position: relative; z-index: 1 }
.aff-icon {
  width: 43px; height: 43px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.13); display: grid; place-items: center; flex: none;
}
.aff-step b { font-size: 11px; display: block; margin-bottom: 4px }
.aff-step span { font-size: 9px; color: #bfc9e1 }
.arrow { font-size: 20px; color: #a9b9dc }
.join {
  margin-left: auto; background: var(--orange-deep); border: 0; color: #fff;
  border-radius: 5px; height: 40px; padding: 0 25px; font-weight: 700;
  font-size: 12px; z-index: 2; cursor: pointer; display: inline-flex; align-items: center;
  text-decoration: none;
}
.join:hover { filter: brightness(1.06) }

.trust {
  margin: 22px 0 8px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.trust-item {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 18px 16px; display: flex; gap: 12px; align-items: flex-start;
}
.trust-item svg { color: var(--orange); flex: none; margin-top: 2px }
.trust-item b { display: block; font-size: 12px; color: var(--navy); margin-bottom: 4px }
.trust-item span { font-size: 11px; color: var(--muted); line-height: 1.45 }

.guide-teasers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px }
.gtease {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 18px; display: flex; flex-direction: column; gap: 8px; min-height: 180px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.gtease:hover { box-shadow: var(--shadow); transform: translateY(-3px) }
.gtease small { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em }
.gtease h3 { font-size: 14px; color: var(--navy); margin: 0; line-height: 1.35 }
.gtease p { font-size: 12px; color: #5a6780; margin: 0; flex: 1 }
.gtease .text-link { margin-top: auto }

.faq-home .faq-acc { grid-template-columns: 1fr 1fr }
.lede a { color: var(--blue); font-weight: 600 }
.lede a:hover { color: var(--orange) }

.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 8px 0 28px;
}
.stat {
  border: 1px solid transparent; border-radius: 14px;
  background: rgba(255,255,255,0.82);
  padding: 22px 14px; text-align: center;
  box-shadow: 0 1px 0 rgba(7, 26, 56, 0.04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: #fff }
.stat b {
  display: block; font-size: 28px; color: var(--navy); line-height: 1;
  font-family: var(--font-display); letter-spacing: -0.03em;
}
.stat span { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.02em }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px }
.chips-rail {
  position: relative;
  margin: 0 0 8px;
}
.chips-rail .chips-scroll { margin: 0 }
.chips-rail-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.chips-rail-track {
  position: relative;
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #e6ecf6;
  overflow: hidden;
}
.chips-rail-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 28px;
  border-radius: 999px;
  background: #9eb0d0;
  pointer-events: none;
}
.chips-arrow {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8fa0bc;
  cursor: pointer;
  transition: color .15s ease, background .15s ease, opacity .15s ease;
}
.chips-arrow:hover:not(:disabled) { color: var(--blue); background: #edf3ff }
.chips-arrow:disabled { opacity: 0.35; cursor: default }
.chips-arrow svg { width: 14px; height: 14px; pointer-events: none }
.chips-scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 10px;
  margin: 0 0 8px;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  cursor: grab;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), transparent);
}
.chips-scroll.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none }
.chips-scroll.is-dragging .chip { pointer-events: none }
.chips-scroll::-webkit-scrollbar { display: none }
.chips-scroll .chip {
  flex: none;
  scroll-snap-align: start;
  white-space: nowrap;
}
.chips-scroll .chip span { color: inherit; opacity: 0.72; font-weight: 500 }
.chip {
  font-size: 12px; padding: 8px 14px; border-radius: 8px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.88); color: var(--navy);
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  font-weight: 600;
}
.chip:hover { border-color: #c5d3ee; color: var(--blue); box-shadow: var(--shadow) }
.chip.is-on, .chip[aria-current="page"] { background: var(--navy); color: #fff; border-color: var(--navy) }

.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted); margin: 0 0 16px; font-weight: 500;
}
.crumb a { color: var(--blue); font-weight: 600 }
.crumb a:hover { color: var(--orange) }
.crumb span { color: var(--navy); font-weight: 600 }
.crumb svg { width: 12px; height: 12px; color: #9aa6b8 }

.banner-note {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: var(--radius); background: #edf4ff;
  border: 1px solid #d5e4ff; margin: 0 0 20px;
}
.banner-note p { margin: 0; font-size: 13px; color: #365b99 }
.banner-note b { display: block; color: var(--navy); margin-bottom: 4px }

.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 28px }
.store-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 22px 20px;
}
.store-card h2 { margin: 0 0 8px; font-size: 18px; color: var(--navy) }
.store-card p { font-size: 14px; color: #3d4a63; margin: 0 0 10px }
.store-card--wide { margin-bottom: 8px }
.store-card .btn { margin: 8px 12px 0 0 }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0 8px }
.ccard {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 18px;
}
.ccard b { display: block; color: var(--navy); margin: 8px 0 4px; font-size: 13px }
.ccard p, .ccard span { font-size: 12px; color: var(--muted); margin: 0 }
.ccard svg { color: var(--orange) }

.lazy-foot {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 0 4px;
}
.lazy-item { min-width: 0 }
.lazy-item .pcard { height: 100% }
.lazy-item.lazy-in { animation: pageIn .42s cubic-bezier(.16, .84, .34, 1) both }
.lazy-sent { width: 100%; height: 1px }

.guide-feature {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
  padding: 22px; margin-bottom: 28px;
}
.guide-feature h2 { font-size: 22px; margin: 6px 0 10px; color: var(--navy) }
.editorial { max-width: 52rem; margin: 0 0 18px }
.editorial p { font-size: 15px; color: #3d4a63; margin: 0 0 12px; line-height: 1.6 }
.aisle-blurb { font-size: 13px; color: var(--muted); margin: 0 0 14px !important }

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 44px;
  background:
    radial-gradient(700px 280px at 90% -20%, rgba(27, 79, 216, 0.12), transparent 60%),
    radial-gradient(480px 220px at 0% 100%, rgba(232, 93, 4, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.55), transparent);
  border-bottom: 1px solid rgba(219, 226, 238, 0.85);
}
.page-hero:before, .page-hero:after { display: none }
.page-hero-inner { position: relative; z-index: 1 }
.page-hero-copy { max-width: 46rem }
.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d5e0f5;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(11, 36, 82, 0.04);
  font-family: var(--font-sans);
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--navy);
  margin: 12px 0 12px;
  letter-spacing: -0.035em;
  line-height: 1.1;
  font-weight: 800;
}
.page-hero .lede { font-size: 16px; max-width: 40rem; color: #44516b }
.page { padding: 35px 0 80px }
.narrow { max-width: 560px }
.toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding: 12px 16px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 12px;
}
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
  padding: 32px 0 72px;
}
.page-main { min-width: 0 }
.page-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 28px 32px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.page-card > h2:first-child { margin-top: 0 }
.page-intro {
  font-size: 15px; color: #3d4a63; line-height: 1.65;
  margin: 0 0 22px;
}
.page-intro a { color: var(--blue); font-weight: 600 }
.page-intro a:hover { color: var(--orange) }
.glance {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 0 0 22px;
}
.glance-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 16px;
}
.glance-card svg { width: 22px; height: 22px; color: var(--orange); margin-bottom: 10px }
.glance-card b { display: block; color: var(--navy); font-size: 14px; margin-bottom: 6px }
.glance-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5 }
.page-aside { display: grid; gap: 14px; position: sticky; top: 18px }
.aside-card, .aside-cta {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 16px;
}
.aside-card h3 { font-size: 16px; color: var(--navy); margin: 8px 0 12px }
.aside-nav { display: grid; gap: 4px }
.aside-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text);
}
.aside-nav a svg { width: 16px; height: 16px; color: var(--blue); flex: none }
.aside-nav a:hover, .aside-nav a.is-on { background: var(--soft); color: var(--navy) }
.aside-cta { background: linear-gradient(165deg, #0b2452, #1451ad); color: #fff; border: 0 }
.aside-cta b { display: block; font-size: 15px; margin-bottom: 6px }
.aside-cta p { font-size: 12px; line-height: 1.5; opacity: .88; margin: 0 0 14px }
.aside-cta .btn { background: #fff; color: var(--navy); border-color: #fff; width: 100% }
.faq-acc { display: grid; gap: 10px }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item[open] { border-color: #c9d6ee; box-shadow: 0 8px 20px rgba(11, 36, 82, 0.05) }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary svg {
  width: 18px; height: 18px; flex: none; color: var(--blue);
  transition: transform .2s ease;
}
.faq-item[open] summary svg { transform: rotate(180deg) }
.faq-body { padding: 0 18px 16px }
.faq-body p { margin: 0; font-size: 14px; color: #4a5870; line-height: 1.6 }
.faq-group { margin-bottom: 22px }
.faq-group > h2 { font-size: 15px; color: var(--navy); margin: 0 0 12px }
.guide-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 8px 0 64px }
.guide-card {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; min-height: 220px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.guide-card:hover { box-shadow: var(--shadow); transform: translateY(-3px) }
.guide-card h2 { font-size: 20px; margin: 0; line-height: 1.3 }
.guide-card h2 a { color: var(--navy) }
.guide-card h2 a:hover { color: var(--blue) }
.guide-card p { margin: 0; font-size: 14px; color: #5a6780; flex: 1 }
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 28px 0 48px; align-items: start;
}
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 8px 24px rgba(11, 36, 82, 0.04);
}
.help-list { display: grid; gap: 16px }
.help-list h2 { font-size: 16px; margin: 0 0 8px; color: var(--navy) }
.help-list ul { margin: 0 0 0 1.1rem }
.help-list li { font-size: 14px; color: #3d4a63; margin: 0 0 6px }

/* Product detail */
.product { padding-bottom: 24px }
.product .prose { max-width: none }
.product-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 40px;
  align-items: start; padding: 28px 0 24px;
}
.product-intro {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: sticky; top: 16px;
  backdrop-filter: blur(10px);
}
.product-media {
  display: flex; flex-direction: column; gap: 12px;
  position: relative; height: auto; background: transparent; border: 0;
}
.product-stage, .bigpic {
  height: min(52vw, 460px); min-height: 280px; background: #fff;
  border: 1px solid transparent;
  border-radius: 16px;
  display: grid; place-items: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.product-stage .photo {
  transition: opacity .2s ease;
}
.product-stage .photo.is-swapping { opacity: 0.55 }
.product-intro h1 { font-size: clamp(26px, 3vw, 34px); color: var(--navy); margin: 8px 0 10px; line-height: 1.15 }
.rating { color: #f0a11a; font-size: 14px; margin-bottom: 8px }
.disclose {
  background: linear-gradient(90deg, rgba(27, 79, 216, 0.08), rgba(232, 93, 4, 0.06));
  border-left: 3px solid var(--orange);
  padding: 12px 14px; font-size: 12px; color: #365b99; margin: 16px 0; border-radius: 0 10px 10px 0;
}
.disclose-inline { margin: 8px 0 0; border: 0; background: transparent; padding: 0; font-size: 12px; color: var(--muted) }
.offers { display: grid; gap: 12px; margin: 8px 0 16px }
.offer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; border: 1px solid var(--line); background: #fff;
  border-radius: var(--radius-sm); padding: 16px;
}
.offer-price { display: flex; flex-direction: column }
.offer-price strong { font-size: 22px; color: var(--navy) }
.offer-price s { color: var(--muted); font-size: 12px }
.offer-store { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange) }
.pk-note {
  font-size: 13px; background: var(--soft); border-radius: 8px;
  padding: 12px 14px; border: 1px solid var(--line);
}

.page-main .prose, .page-card .prose { padding: 0; max-width: none }
.prose { padding: 20px 0 48px; max-width: 46rem }
/* Same element uses both classes — .prose must not wipe .page-card padding */
.page-card.prose {
  padding: 28px 32px 32px;
  max-width: none;
}
.prose p { margin: 0 0 16px; font-size: 15px; color: #3d4a63 }
.prose h2 { font-size: 18px; color: var(--navy); margin: 22px 0 10px }
.prose h3 { font-size: 15px; color: var(--navy); margin: 18px 0 8px }
.prose ol { margin: 0 0 16px 1.1rem }
.prose li { margin: 0 0 6px; font-size: 15px; color: #3d4a63 }
.prose a { color: var(--blue) }
.legal-meta { font-size: 12px; color: var(--muted); margin: 0 0 16px }
.listing-note {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f4f7fb;
  border: 1px solid var(--line);
  font-size: 14px;
  color: #5a6a84;
  line-height: 1.5;
}
.editorial { max-width: 46rem; padding: 4px 0 8px }
.editorial p, .aisle-blurb { font-size: 15px; color: #3d4a63; margin: 0 0 14px }
.editorial-block { padding-top: 0 }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 8px 0 28px }
.split.split-one { grid-template-columns: 1fr; max-width: 32rem }
.split > div {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px;
}
.prose ul { margin: 0 0 16px 1.1rem }
.prose table { width: 100%; border-collapse: collapse; margin: 8px 0 28px }
.prose th, .prose td { text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line); font-weight: 500 }
.prose th { color: var(--muted); width: 40%; font-size: 13px }
.faq div { padding: 12px 0; border-bottom: 1px solid var(--line) }
.faq dt { font-weight: 700; margin-bottom: 4px; color: var(--navy) }
.guide-pin { margin-top: 28px }
.guide-list { padding-bottom: 72px }
.guide-row { padding: 22px 0; border-bottom: 1px solid var(--line) }
.guide-row h2 { font-size: 20px; margin: 6px 0 8px; color: var(--navy) }

.form { display: grid; gap: 14px; margin: 0 }
.form label { display: grid; gap: 6px; font-size: 11px; font-weight: 700 }
.form input, .form textarea, .formbox input, .formbox textarea {
  border: 1px solid #dfe4eb; background: #fff; border-radius: 8px; padding: 12px;
}
.form input:focus, .form textarea:focus {
  outline: 2px solid rgba(17, 71, 166, 0.18); border-color: var(--blue);
}
.formbox {
  max-width: 520px; margin: 35px auto; border: 1px solid var(--line);
  padding: 30px; border-radius: 10px;
}
.go-page { max-width: 40rem }

.footer, .foot {
  margin-top: 0;
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(27, 79, 216, 0.28), transparent 55%),
    linear-gradient(165deg, #061428 0%, #0a1f45 55%, #0d2758 100%);
  color: #dce4f5; padding: 56px 0 22px;
}
.footgrid, .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 35px }
.footer h3, .foot h2 {
  color: #fff; font-size: 12px; margin-bottom: 8px;
  font-family: var(--font-sans); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
}
.footer a, .footer p, .foot a, .foot p {
  font-size: 11px; color: #b9c5dc; display: block; margin: 9px 0;
}
.footer a:hover, .foot a:hover { color: #fff }
.copy, .foot-copy {
  border-top: 1px solid #29416e; margin-top: 25px; padding-top: 16px;
  font-size: 10px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  align-items: center;
}
.copy a, .foot-copy a {
  display: inline; margin: 0; color: #dce4f5; font-weight: 600; text-decoration: underline;
  text-underline-offset: 2px;
}
.copy a:hover, .foot-copy a:hover { color: #fff }

@media (max-width: 1100px) {
  .container, .wrap { width: min(94%, 1375px) }
  .head-actions { gap: 12px }
  .action span { display: none }
  .logo { max-width: 170px }
  .logo img, .brand-logo { height: 40px }
  .categories-grid { grid-template-columns: repeat(2, 1fr) }
  .hero-content { width: 62%; padding-left: 40px }
  .hero-products { width: 54%; right: -45px }
  .deal-grid { grid-template-columns: repeat(3, 1fr) }
  .grid { grid-template-columns: repeat(3, 1fr) }
  .trust, .guide-teasers, .stat-row, .contact-cards, .store-grid, .glance, .guide-cards { grid-template-columns: repeat(2, 1fr) }
  .page-layout, .contact-split { grid-template-columns: 1fr }
  .page-aside { position: static }
  .guide-feature { grid-template-columns: 1fr }
  .deal:nth-child(n+4) { display: none }
  .mega-card { grid-template-columns: 200px 1fr 220px }
  .mega-card--guides, .mega-card--deals, .mega-panel.is-on { grid-template-columns: 1fr 220px }
  .mega-card--swap { grid-template-columns: 200px 1fr }
  .mega-banner strong { font-size: 22px }
}
@media (max-width: 850px) {
  :root { --wrap: min(1375px, calc(100% - 28px)) }
  .top-left { display: none }
  .top-links { margin-inline-start: 0; gap: 12px }
  .top-item--meta { display: none }
  .topbar-inner { justify-content: space-between; gap: 8px }
  .bismillah {
    max-width: none;
    flex: 1 1 auto;
    justify-content: flex-end;
    font-size: clamp(11px, 3.4vw, 14px);
  }
  .main-head { height: auto; padding: 12px 0; flex-wrap: wrap; gap: 10px }
  .logo { width: auto; max-width: 160px }
  .search { order: 3; flex-basis: 100%; max-width: none }
  .burger { display: grid; place-items: center }
  .navlinks, .deals-link, .head-actions, .mega, .nav-item--end,
  .nav-item.has-mega:first-child { display: none }
  .nav-mobile.is-open,
  .nav-mobile:not([hidden]) { display: flex }
  .nav-row { height: auto; min-height: 0; padding: 0; flex-wrap: wrap; gap: 0 }
  .nav-shell:has(.nav-mobile.is-open) .nav-row,
  .nav-shell:has(.nav-mobile:not([hidden])) .nav-row { padding: 4px 0 0 }
  .hero { height: auto; min-height: 0; margin-top: 10px; border-radius: 14px }
  .hero-content { width: 100%; padding: 18px 16px 14px }
  .hero-badge { padding: 5px 9px; font-size: 10px }
  .hero h1 { font-size: clamp(24px, 6.5vw, 30px); margin: 10px 0 8px; line-height: 1.05 }
  .hero-content > p:not(.disclose) {
    font-size: 13px; line-height: 1.45; margin: 0 0 12px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .hero-products { display: none }
  .hero .disclose { white-space: normal; margin: 10px 0 0; padding: 6px 10px; font-size: 10px }
  .features { display: none }
  .ctas, .hero-actions { gap: 8px }
  .ctas .btn, .hero-actions .btn { min-height: 40px; padding: 0 14px; font-size: 12px }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px }
  .deal-grid, .grid, .product-grid, .split, .foot-grid, .footgrid,
  .trust, .guide-teasers, .stat-row, .contact-cards, .faq-home, .store-grid, .glance, .guide-cards, .faq-home .faq-acc { grid-template-columns: 1fr }
  .product-intro { position: static }
  .product-stage, .bigpic { height: min(78vw, 380px); min-height: 240px }
  .page-hero h1 { font-size: clamp(24px, 7vw, 30px) }
  .page-card,
  .page-card.prose { padding: 22px 20px 24px }
  .page-hero { padding: 24px 0 28px }
  .banner-note { flex-direction: column; align-items: flex-start }
  .deal:nth-child(n+4) { display: flex }
  .affiliate { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px }
  .aff-title { width: auto }
  .aff-step { min-width: 0 }
  .arrow { display: none }
  .join { margin: 0 }
  .offer { flex-direction: column; align-items: stretch }
  .section { padding-top: 22px }
  .formbox { margin: 24px auto; padding: 22px 18px }
}
@media (max-width: 600px) {
  .affiliate { grid-template-columns: 1fr }
  .join { width: 100%; justify-content: center }
  .ctas .btn, .hero-actions .btn { flex: 1 1 auto; min-width: 132px }
  .section-head, .block-head { flex-wrap: wrap; gap: 8px }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)) }
  .topbar { height: 36px; min-height: 36px; padding: 0 }
  .topbar-inner { position: relative; gap: 8px; justify-content: flex-start }
  .top-links .top-item { font-size: 11px }
  .bismillah {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    max-width: calc(100% - 120px);
    font-size: clamp(10px, 3.5vw, 13px);
  }
  .footgrid, .foot-grid { gap: 22px }
}
@media (max-width: 400px) {
  :root { --wrap: min(1375px, calc(100% - 20px)) }
  .hero-content { padding: 16px 14px 12px }
  .hero h1 { font-size: 22px }
  .logo { max-width: 140px }
  .logo img, .brand-logo { height: 34px }
  .search { height: 42px }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  .cat:hover, .pcard:hover, .deal:hover, .gtease:hover, .guide-card:hover, .stat:hover, .btn:hover { transform: none }
  .mega { transition: none }
  .page-view { animation: none }
  .hero:after { animation: none }
  .to-top { transition: none }
  ::view-transition-old(js-page),
  ::view-transition-new(js-page) { animation: none }
  .nbar { display: none }
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.lang-opt {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
  text-decoration: none;
}
.lang-opt.is-on {
  background: #fff;
  color: var(--navy);
}
.lang-opt:hover { color: #fff }
.lang-opt.is-on:hover { color: var(--navy) }

/* Deals mega fallback tiles */
.mega-fallback-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}
.mega-grid--tiles { gap: 10px }
.mega-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: var(--soft);
}
.mega-tile:hover {
  border-color: #c9d6ee;
  box-shadow: var(--shadow);
  background: #fff;
}
.mega-tile svg { width: 18px; height: 18px; color: var(--orange) }
.mega-tile b { font-size: 12px; font-weight: 700 }

/* Help Center */
.help-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  margin: 0 0 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b2452 0%, #163a7a 55%, #1b4fd8 100%);
  color: #fff;
}
.help-banner .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.help-banner h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #fff;
}
.help-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}
.help-banner .btn {
  flex: none;
  background: #fff;
  color: var(--navy);
  border: 0;
}
.help-banner .btn:hover { background: #f3f6fb }
.help-topics { margin: 0 0 28px }
.help-topics > h2,
.help-faq-title {
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 14px;
}
.help-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.help-topic {
  display: block;
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.help-topic:hover {
  border-color: #c9d6ee;
  box-shadow: var(--shadow);
}
.help-topic svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  margin-bottom: 10px;
}
.help-topic b {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}
.help-topic p {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

/* Urdu / RTL */
body.is-rtl {
  font-family: "Noto Nastaliq Urdu", "Inter", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.7;
}
body.is-rtl .navlinks,
body.is-rtl .head-actions,
body.is-rtl .top-links,
body.is-rtl .mega-mid-head,
body.is-rtl .help-banner,
body.is-rtl .contact-split,
body.is-rtl .page-layout {
  direction: rtl;
}
body.is-rtl .mega-prod,
body.is-rtl .mega-tile,
body.is-rtl .help-topic,
body.is-rtl .aside-nav a {
  text-align: right;
}
body.is-rtl .lang-switch { direction: ltr }

@media (max-width: 900px) {
  .help-topic-grid { grid-template-columns: repeat(2, 1fr) }
  .help-banner { flex-direction: column; align-items: flex-start }
}
@media (max-width: 600px) {
  .help-topic-grid { grid-template-columns: 1fr }
}

/* Catalog filters */
.catalog-filters {
  display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: end;
  margin: 0 0 18px; padding: 12px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
}
.cf-field { display: grid; gap: 4px; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em }
.cf-field select {
  min-width: 150px; border: 1px solid #dfe4eb; border-radius: 8px;
  padding: 9px 10px; font: inherit; color: var(--navy); background: #fff;
}
.cf-check {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--navy); padding-bottom: 8px;
}
.cf-check input { width: 16px; height: 16px }
.cf-reset { font-size: 13px; color: var(--blue); padding-bottom: 8px; font-weight: 600 }

.pcard-best {
  display: block; font-style: normal; font-size: 11px; font-weight: 700;
  color: #0f7a45; margin-top: 2px;
}

/* Product trust + best price */
.best-price-banner {
  margin: 0 0 10px; padding: 10px 12px; border-radius: 10px;
  background: rgba(15, 122, 69, 0.08); border: 1px solid rgba(15, 122, 69, 0.22);
  font-size: 13px; color: #0f4d2e;
}
.best-price-banner strong { color: #0b3d24 }
.offer.is-best { border-color: rgba(15, 122, 69, 0.45); box-shadow: 0 0 0 1px rgba(15, 122, 69, 0.12) }
.offer-best-tag {
  display: inline-block; margin-top: 4px; font-size: 10px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: #0f7a45;
}
.trust-chips {
  list-style: none; margin: 0 0 12px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.trust-chips li {
  font-size: 11px; font-weight: 700; color: #365b99;
  background: rgba(27, 79, 216, 0.07); border: 1px solid rgba(27, 79, 216, 0.14);
  border-radius: 999px; padding: 6px 10px;
}
.compare-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 4px 0 14px;
}
.compare-btn {
  min-height: 44px;
  padding: 0 18px;
  font-weight: 700;
  border-width: 2px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.compare-hint {
  font-size: 12px;
  color: var(--muted, #64748b);
  line-height: 1.35;
}

/* Mobile sticky buy bar */
.buy-sticky {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,0.96); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(6, 20, 40, 0.12);
  backdrop-filter: blur(8px);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
}
.buy-sticky-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.buy-sticky-meta { display: grid; gap: 2px; min-width: 0 }
.buy-sticky-meta strong { font-size: 18px; color: var(--navy) }
.buy-sticky-meta span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--orange-deep) }
.buy-sticky .btn { flex-shrink: 0; min-height: 44px; padding: 0 16px }
@media (max-width: 850px) {
  .buy-sticky:not([hidden]) { display: block }
  body:has(.buy-sticky:not([hidden])) { padding-bottom: 78px }
}

/* Compare */
.compare-picker {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end;
  margin: 0 0 28px; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
}
.compare-picker label { display: grid; gap: 4px; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase }
.compare-picker select {
  width: 100%; border: 1px solid #dfe4eb; border-radius: 8px; padding: 10px; font: inherit; color: var(--navy);
}
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.compare-col {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px;
  display: grid; gap: 8px; align-content: start;
}
.compare-col h2 { font-size: 18px; margin: 0; line-height: 1.25 }
.compare-col h2 a { color: var(--navy); text-decoration: none }
.compare-media {
  display: grid; place-items: center; aspect-ratio: 1; background: #f7f9fc;
  border-radius: 12px; overflow: hidden;
}
.compare-media .photo { width: 70%; height: auto }
.compare-price { display: grid; gap: 2px; margin: 4px 0 }
.compare-price strong { font-size: 22px; color: var(--navy) }
.compare-price span { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--orange-deep) }
.compare-table { width: 100%; border-collapse: collapse }
.compare-table th, .compare-table td {
  text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top;
}
.compare-table thead th { font-size: 12px; color: var(--muted); font-weight: 700 }
.compare-table tbody th { color: var(--muted); font-weight: 600; width: 22% }
@media (max-width: 850px) {
  .compare-picker { grid-template-columns: 1fr }
  .compare-grid { grid-template-columns: 1fr }
}

