/* ============================================================
   ORZU MOBILE — Design System
   Brand tokens derived from official ORZU Mobile brand book
   ============================================================ */

:root{
  --white:#ffffff;
  --black:#000000;
  --ink:#111318;
  --gray-900:#16181d;
  --gray-700:#3c4048;
  --gray-600:#565b64;
  --gray-500:#767b85;
  --gray-400:#9aa0aa;
  --gray-300:#c7cbd1;
  --gray-200:#e4e7eb;
  --gray-100:#f1f3f5;
  --gray-50:#f7f9fb;

  --malibu:#72c0fe;
  --blue-light:#a9d9ff;
  --blue:#1c86ee;
  --blue-deep:#0b5ed7;
  --blue-ink:#0a2a63;

  --accent:#f7471e;
  --accent-2:#ff7a4d;
  --star:#ffb020;

  /* light-theme surface tokens (default) — white page canvas, light header
     chrome. Elevated cards (product/category/trust/testimonial/calc)
     intentionally stay white+ink in BOTH themes — only the page canvas,
     header chrome and translucent "wash" overlays fork between light/dark
     below. */
  --bg:#f5f7fa;
  --bg-alt:#eef1f6;
  --text:#12151c;
  --header-bg: rgba(255,255,255,.85);
  --surface-wash: rgba(17,19,24,.04);
  --surface-wash-strong: rgba(17,19,24,.08);
  --surface-border: rgba(17,19,24,.12);
  --surface-border-soft: rgba(17,19,24,.08);
  --muted-text: var(--gray-600);

  --grad-primary: linear-gradient(135deg, var(--malibu) 0%, var(--blue) 55%, var(--blue-deep) 100%);
  --grad-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --grad-dark: linear-gradient(135deg, #14161b 0%, #000000 100%);

  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --radius-xl:40px;

  --shadow-sm: 0 2px 10px rgba(15,23,42,.06);
  --shadow-md: 0 16px 32px -8px rgba(15,23,42,.14);
  --shadow-lg: 0 30px 70px -20px rgba(15,23,42,.28);
  --shadow-blue: 0 16px 34px -10px rgba(11,94,215,.45);
  --shadow-accent: 0 16px 34px -10px rgba(247,71,30,.4);

  --container: 1440px;
  --ff: 'Roboto', system-ui, -apple-system, sans-serif;
  --header-h: 108px;
}

/* light is the site-wide default (no OS-preference fork); the header toggle
   (data-theme, set by site.js from localStorage) switches to dark. */
:root[data-theme="dark"]{
  --bg:#0a0d14; --bg-alt:#0d1220; --text:#f4f6fa;
  --header-bg: rgba(10,13,20,.82);
  --surface-wash: rgba(255,255,255,.05); --surface-wash-strong: rgba(255,255,255,.12);
  --surface-border: rgba(255,255,255,.14); --surface-border-soft: rgba(255,255,255,.08);
  --muted-text: var(--gray-300);
}
:root[data-theme="light"]{
  --bg:#f5f7fa; --bg-alt:#eef1f6; --text:#12151c;
  --header-bg: rgba(255,255,255,.85);
  --surface-wash: rgba(17,19,24,.04); --surface-wash-strong: rgba(17,19,24,.08);
  --surface-border: rgba(17,19,24,.12); --surface-border-soft: rgba(17,19,24,.08);
  --muted-text: var(--gray-600);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: 90px; }
body{
  margin:0;
  font-family:var(--ff);
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button,input,select{ font-family:inherit; color:inherit; }
button{ cursor:pointer; -webkit-appearance:none; appearance:none; }
button:focus:not(:focus-visible){ outline:none; }
button:focus-visible{ outline:2px solid var(--blue); outline-offset:2px; }
h1,h2,h3,h4,p{ margin:0; }
.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }

.icon{ width:22px; height:22px; display:inline-block; vertical-align:middle; flex-shrink:0; }
.icon--sm{ width:16px; height:16px; }
.icon--lg{ width:30px; height:30px; }
.icon--xl{ width:42px; height:42px; }

/* ============ REVEAL ANIMATION ============ */
[data-reveal]{
  opacity:0;
  transform:translateY(28px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }

/* staggered cascade for grid rows (categories, products, testimonials) */
.cat-grid > [data-reveal]:nth-child(1),
.product-grid > [data-reveal]:nth-child(1),
.testimonials > [data-reveal]:nth-child(1){ transition-delay:0s; }
.cat-grid > [data-reveal]:nth-child(2),
.product-grid > [data-reveal]:nth-child(2),
.testimonials > [data-reveal]:nth-child(2){ transition-delay:.07s; }
.cat-grid > [data-reveal]:nth-child(3),
.product-grid > [data-reveal]:nth-child(3),
.testimonials > [data-reveal]:nth-child(3){ transition-delay:.14s; }
.cat-grid > [data-reveal]:nth-child(4),
.product-grid > [data-reveal]:nth-child(4){ transition-delay:.21s; }
.cat-grid > [data-reveal]:nth-child(5),
.product-grid > [data-reveal]:nth-child(5){ transition-delay:.28s; }
.cat-grid > [data-reveal]:nth-child(6),
.product-grid > [data-reveal]:nth-child(6){ transition-delay:.35s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 30px; border:none; border-radius:999px;
  font-weight:600; font-size:15px; letter-spacing:.01em;
  cursor:pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-3px); }
.btn:active{ transform:translateY(-1px); }
.btn--primary{ background:var(--grad-primary); color:#fff; box-shadow:var(--shadow-blue); }
.btn--accent{ background:var(--grad-accent); color:#fff; box-shadow:var(--shadow-accent); }
.btn--dark{ background:var(--black); color:#fff; }
.btn--dark:hover{ background:#1a1a1a; }
.btn--ghost{ background:transparent; color:var(--ink); border:1.5px solid var(--gray-300); }
.btn--ghost:hover{ background:var(--gray-100); }
.btn--ghost-dark{ color:#fff; border-color:rgba(255,255,255,.35); }
.btn--ghost-dark:hover{ background:rgba(255,255,255,.1); }
.btn--block{ width:100%; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(114,192,254,.14); color:var(--malibu);
  font-weight:700; font-size:13px; letter-spacing:.02em;
  padding:8px 16px; border-radius:999px; margin-bottom:20px;
}
.eyebrow--dark{ background:rgba(255,255,255,.1); color:var(--malibu); }

/* ============================================================
   ICON BUTTONS / BADGES
   ============================================================ */
.icon-btn{
  position:relative; width:42px; height:42px; border-radius:50%;
  border:none; background:transparent; display:flex; align-items:center; justify-content:center;
  color:var(--text); transition:background .2s ease;
}
.icon-btn:hover{ background:var(--surface-wash-strong); }
.icon-btn__badge{
  position:absolute; top:0; right:0; min-width:16px; height:16px; padding:0 3px;
  background:var(--accent); color:#fff; font-size:10px; font-weight:700;
  border-radius:999px; display:flex; align-items:center; justify-content:center;
  transform:scale(0); transition:transform .25s ease;
}
.icon-btn__badge.show{ transform:scale(1); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar{ background:var(--ink); color:var(--gray-300); font-size:13px; }
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; padding:9px 28px; gap:16px; }
.topbar__left{ display:flex; align-items:center; gap:8px; }
.topbar__right{ display:flex; align-items:center; gap:16px; }
.topbar__right a{ display:flex; align-items:center; gap:6px; transition:color .2s; }
.topbar__right a:hover{ color:var(--malibu); }
.topbar__divider{ width:1px; height:14px; background:rgba(255,255,255,.2); }

.lang-switch{ display:flex; align-items:center; gap:1px; }
.lang-switch button{
  background:none; border:none; color:var(--gray-400); font-size:12px; font-weight:700;
  padding:4px 7px; border-radius:6px; cursor:pointer; transition:all .2s ease; letter-spacing:.02em;
}
.lang-switch button:hover{ color:var(--malibu); }
.lang-switch button.active{ background:rgba(114,192,254,.14); color:var(--malibu); }

/* ============================================================
   HEADER
   ============================================================ */
.header{
  position:sticky; top:0; z-index:500;
  background:var(--header-bg); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--surface-border-soft);
  transition:background .25s ease, border-color .25s ease;
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; padding:16px 28px; gap:24px; }

.brand{ display:flex; align-items:center; gap:11px; flex-shrink:0; }
.brand__mark{ width:42px; height:42px; }
.brand__word{ display:flex; align-items:flex-end; gap:6px; }
.brand__word-main{ font-weight:800; font-size:21px; letter-spacing:-0.02em; color:var(--text); line-height:1; }
.brand__word-sub{ font-weight:400; font-size:13px; color:var(--gray-400); line-height:1; transform:translateY(-1px); }
.brand__word-main--light{ color:#fff; }
.brand__word-sub--light{ color:var(--gray-400); }

.nav{ display:flex; align-items:center; gap:34px; }
.nav a{
  position:relative; font-weight:500; font-size:15px; color:var(--gray-400);
  padding:6px 0; transition:color .2s ease;
}
.nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2px;
  background:var(--grad-primary); transform:scaleX(0); transform-origin:left; transition:transform .3s ease;
}
.nav a:hover{ color:var(--text); }
.nav a:hover::after{ transform:scaleX(1); }
.nav a.is-active-link{ color:var(--text); }
.nav a.is-active-link::after{ transform:scaleX(1); }

.header__actions{ display:flex; align-items:center; gap:4px; }
.nav-toggle{ display:none; }

.search-panel{ max-height:0; overflow:hidden; transition:max-height .35s ease, border-color .35s; border-top:1px solid transparent; }
.search-panel.is-open{ max-height:80px; border-top-color:var(--surface-border-soft); }
.search-panel__inner{ display:flex; align-items:center; gap:14px; padding:16px 28px; color:var(--gray-400); }
.search-panel__inner input{ flex:1; border:none; outline:none; font-size:16px; background:transparent; color:var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; overflow:hidden; background:var(--bg);
  display:flex; flex-direction:column; justify-content:center;
  padding:48px 0;
  min-height:calc(100vh - 114px);
  min-height:calc(100dvh - 114px);
}
.hero__bg{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero__blob{ position:absolute; border-radius:50%; filter:blur(90px); opacity:.35; animation:floatSlow 12s ease-in-out infinite; }
.hero__blob--1{ width:520px; height:520px; background:var(--malibu); top:-180px; right:-140px; }
.hero__blob--2{ width:420px; height:420px; background:var(--blue-light); bottom:-160px; left:-120px; animation-delay:-6s; }
.hero__stripes{
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(100deg, rgba(114,192,254,.06) 0 46px, transparent 46px 100px);
}

.hero__inner{ position:relative; z-index:1; width:100%; display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center; min-height:600px; }
.hero__title{ font-size:clamp(2.4rem,4.6vw,3.75rem); font-weight:900; line-height:1.06; letter-spacing:-0.02em; color:var(--text); margin-bottom:20px; }
.hero__desc{ font-size:17px; color:var(--gray-400); line-height:1.65; max-width:480px; margin-bottom:32px; }
.hero__cta{ display:flex; gap:14px; flex-wrap:wrap; }
.hero__trust{ display:flex; gap:34px; margin-top:44px; flex-wrap:wrap; }
.hero__trust-item{ display:flex; flex-direction:column; gap:2px; }
.hero__trust-item strong{ font-size:22px; font-weight:800; color:var(--text); }
.hero__trust-item span{ font-size:13px; color:var(--gray-400); }

.hero__visual{ position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; }
.phone-stage{ position:relative; display:flex; align-items:center; justify-content:center; perspective:1400px; }

.phone-stage--3d{ width:100%; max-width:420px; height:560px; }
.hero-3d-model{
  width:100%; height:100%; --poster-color:transparent; background-color:transparent;
  filter:drop-shadow(0 30px 40px rgba(10,15,30,.28));
}
.hero-3d-hint{ display:flex; align-items:center; gap:8px; font-size:13px; color:var(--gray-400); font-weight:500; }
.hero-3d-hint svg{ opacity:.55; width:15px; height:15px; }

.model-loading{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; pointer-events:none; }
.model-loading__bar{ width:56%; height:4px; background:rgba(255,255,255,.12); border-radius:999px; overflow:hidden; }
.model-loading__bar span{ display:block; height:100%; width:0%; background:var(--grad-primary); transition:width .15s ease; }

.model-failed .hero-3d-model{ visibility:hidden; }
.model-failed::before{
  content:'3D model yuklanmadi — sahifani yangilang'; position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-size:13px; color:var(--gray-400); padding:0 24px;
}
.hero__glow{
  position:absolute; width:360px; height:360px; left:50%; top:50%;
  transform:translate(-50%,-50%); background:var(--grad-primary);
  filter:blur(80px); opacity:.45; z-index:-1; border-radius:50%;
}
.hero__glow--spotlight{ background:radial-gradient(circle,var(--blue) 0%, transparent 70%); opacity:.35; }

.float-badge{
  position:absolute; display:inline-flex; align-items:center; gap:8px;
  background:#fff; color:var(--ink); font-weight:700; font-size:13px;
  padding:11px 18px; border-radius:999px; box-shadow:var(--shadow-md);
  animation:float 5s ease-in-out infinite;
}
.float-badge small{ font-weight:400; color:var(--gray-500); margin-left:2px; }
.float-badge--1{ top:8%; left:-6%; animation-delay:0s; }
.float-badge--2{ top:46%; right:-14%; animation-delay:-1.6s; }
.float-badge--3{ bottom:6%; left:-10%; animation-delay:-3.2s; }

.hero__scroll{ position:relative; z-index:1; display:flex; justify-content:center; margin-top:24px; }
.hero__scroll span{ width:26px; height:42px; border:2px solid rgba(255,255,255,.2); border-radius:999px; position:relative; display:block; }
.hero__scroll span::before{
  content:''; position:absolute; top:8px; left:50%; width:4px; height:8px; background:var(--gray-400);
  border-radius:999px; transform:translateX(-50%); animation:scrollDot 1.8s ease-in-out infinite;
}

@keyframes float{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-14px) } }
@keyframes floatSlow{ 0%,100%{ transform:translate(0,0) } 50%{ transform:translate(-20px,20px) } }
@keyframes scrollDot{ 0%{ opacity:1; top:8px } 80%{ opacity:0; top:22px } 100%{ opacity:0; top:8px } }

/* ============================================================
   PHONE MOCKUP COMPONENT — realistic 3D studio render
   ============================================================ */
.phone-stage{ padding-bottom:6px; }
.phone-stage::after{
  content:''; display:block; width:62%; height:22px; margin:14px auto 0;
  background:radial-gradient(closest-side, rgba(10,15,30,.32), rgba(10,15,30,0) 75%);
  filter:blur(2px);
}
.phone-stage--spotlight::after{ width:56%; height:26px; }

.phone{
  --phone-color:#1d1d1f; position:relative; transform-style:preserve-3d; max-width:100%;
  transition:transform .2s ease-out; filter:drop-shadow(0 26px 40px rgba(10,15,30,.28));
}
.phone--hero{ width:264px; height:548px; }
.phone--spotlight{ width:296px; height:604px; }
.phone--card{ width:150px; height:308px; margin:0 auto 18px; }
.phone--mini{ width:92px; height:190px; }

/* thin extruded side edge for real volume (revealed on hover tilt) */
.phone__edge{
  position:absolute; inset:0; border-radius:56px; z-index:0;
  background:linear-gradient(155deg, color-mix(in srgb, var(--phone-color) 55%, black) 0%, color-mix(in srgb, var(--phone-color) 90%, black) 100%);
  transform:translateZ(-7px);
}
.phone--mini .phone__edge, .phone--card .phone__edge{ border-radius:34px; transform:translateZ(-4px); }

.phone__frame{
  width:100%; height:100%; padding:12px; border-radius:56px; position:relative; z-index:1;
  overflow:hidden; transform-style:flat; transform:translateZ(0);
  background:
    linear-gradient(100deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 8%, rgba(255,255,255,0) 85%, rgba(255,255,255,.28) 100%),
    linear-gradient(155deg, color-mix(in srgb, var(--phone-color) 82%, white) 0%, var(--phone-color) 42%, color-mix(in srgb, var(--phone-color) 80%, black) 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,.35),
    inset 0 1px 1px rgba(255,255,255,.5),
    inset 0 -14px 22px -14px rgba(0,0,0,.4),
    0 30px 60px -18px rgba(10,15,30,.45), 0 12px 22px -8px rgba(10,15,30,.25);
}
.phone--mini .phone__frame, .phone--card .phone__frame{ border-radius:34px; padding:8px; }

.phone__screen{
  width:100%; height:100%; border-radius:44px; position:relative; overflow:hidden; background:#050608;
  transform-style:flat; transform:translateZ(0); isolation:isolate;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), inset 0 0 26px rgba(0,0,0,.5);
}
.phone--mini .phone__screen, .phone--card .phone__screen{ border-radius:26px; }

/* glass reflection sheen across the screen */
.phone__screen::before{
  content:''; position:absolute; z-index:6; pointer-events:none; inset:0;
  background:linear-gradient(115deg, rgba(255,255,255,.32) 0%, rgba(255,255,255,.06) 16%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 72%, rgba(255,255,255,.14) 100%);
  mix-blend-mode:screen;
}
/* home indicator */
.phone__screen::after{
  content:''; position:absolute; bottom:9px; left:50%; transform:translateX(-50%); z-index:5;
  width:32%; height:4px; border-radius:999px; background:rgba(255,255,255,.55);
}
.phone--mini .phone__screen::after, .phone--card .phone__screen::after{ bottom:6px; height:3px; }

.phone__wallpaper{
  position:absolute; inset:0;
  background:
    radial-gradient(90% 60% at 20% 0%, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 45%),
    radial-gradient(120% 90% at 25% 0%, var(--blue-light) 0%, var(--blue) 42%, #071634 100%);
}
.phone__wallpaper--spotlight{
  background:
    radial-gradient(90% 60% at 75% 0%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 45%),
    radial-gradient(120% 90% at 75% 0%, #e4e4e8 0%, #55555c 45%, #0a0a0c 100%);
}

.phone__island{
  position:absolute; top:16px; left:50%; transform:translateX(-50%);
  width:32%; height:20px; background:#000; border-radius:20px; z-index:5;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06), inset 4px 0 6px -3px rgba(255,255,255,.15);
}
.phone--card .phone__island, .phone--mini .phone__island{ top:10px; height:12px; width:34%; }

.phone__statusbar{
  position:absolute; top:18px; left:0; right:0; z-index:4;
  display:flex; justify-content:space-between; padding:0 26px;
  font-size:11px; font-weight:600; color:#fff; opacity:.92;
}
.phone__apps{
  position:absolute; left:22px; right:22px; bottom:30px; z-index:3;
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
}
.phone__apps span{ position:relative; aspect-ratio:1; border-radius:24%; box-shadow:0 4px 10px rgba(0,0,0,.3); overflow:hidden; }
.phone__apps span::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(155deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 55%);
}
.phone__apps span:nth-child(4n+1){ background:rgba(255,255,255,.92); }
.phone__apps span:nth-child(4n+2){ background:linear-gradient(135deg,var(--blue-light),var(--blue)); }
.phone__apps span:nth-child(4n+3){ background:rgba(255,255,255,.35); }
.phone__apps span:nth-child(4n){ background:linear-gradient(135deg,var(--accent-2),var(--accent)); }

.phone--mini .phone__statusbar,
.phone--mini .phone__apps,
.phone--card .phone__statusbar{ display:none; }

/* real product photo override — used automatically when an image is available.
   Real photos are styled as a photography tile (not forced into the tall
   CSS-phone silhouette), since stock/vendor photos come in their own crop. */
/* every real product photo is now a transparent cutout (background removed
   during import) — contain (not cover) so the whole product shows instead
   of cropping into the transparent padding or the product itself */
.product-photo{ display:block; width:100%; height:100%; object-fit:contain; object-position:center; }

.phone.has-photo{
  width:100%; height:auto; aspect-ratio:4/5; filter:drop-shadow(0 22px 34px rgba(10,15,30,.3));
}
.phone--hero.has-photo, .phone--spotlight.has-photo{ aspect-ratio:3/4; }
.phone--mini.has-photo{ aspect-ratio:1/1; }
.has-photo .product-photo{ border-radius:28px; box-shadow:inset 0 0 0 1px rgba(255,255,255,.14); }
.phone--mini.has-photo .product-photo{ border-radius:18px; }

/* transparent cutout photos (no background to crop) — fit whole image, no card frame */
#spotlightPhone.has-photo{ width:100%; height:auto; aspect-ratio:894/1200; }
#spotlightPhone .product-photo{ object-fit:contain; border-radius:0; box-shadow:none; }
#spotlightPhone.has-photo{ animation:float 5.5s ease-in-out infinite; }

.product-card__stage.has-photo{ aspect-ratio:4/5; margin:0 auto 16px; }
.product-card__stage.has-photo .product-photo{
  transition:transform .5s cubic-bezier(.16,1,.3,1);
  filter:drop-shadow(0 14px 18px rgba(10,15,30,.18));
}
.product-card:hover .product-card__stage.has-photo{ transform:translateY(-2px); }
.product-card:hover .product-card__stage.has-photo .product-photo{ transform:scale(1.08); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar{ background:var(--bg); padding:8px 0 16px; }
.trustbar + .section{ padding-top:48px; }
.trustbar__inner{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.trust-card{
  display:flex; align-items:center; gap:16px; padding:20px 22px; color:var(--ink);
  background:#fff; border-radius:20px; transition:box-shadow .25s ease, transform .25s ease;
}
.trust-card:hover{ box-shadow:var(--shadow-sm); transform:translateY(-3px); }
.trust-card svg{ width:26px; height:26px; padding:11px; border-radius:14px; background:var(--grad-primary); color:#fff; box-sizing:content-box; flex-shrink:0; }
.trust-card strong{ display:block; font-size:15px; font-weight:700; margin-bottom:2px; line-height:1.25; }
.trust-card span{ font-size:13px; color:var(--gray-500); line-height:1.3; display:block; }

/* ============================================================
   SECTION GENERIC
   ============================================================ */
.section{ padding:96px 0; }
.section--tint{ background:var(--bg-alt); }
.section__head{ text-align:center; max-width:640px; margin:0 auto 52px; }
.section__head h2{ font-size:clamp(1.9rem,3.2vw,2.5rem); font-weight:800; letter-spacing:-0.01em; margin-bottom:14px; color:var(--text); }
.section__head p{ font-size:16px; color:var(--gray-400); line-height:1.6; }
.section__head--light h2{ color:#fff; }
.section__head--light p{ color:rgba(255,255,255,.85); }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:20px; }
.cat-card{
  display:flex; flex-direction:column; align-items:center; gap:12px; text-align:center; color:var(--ink);
  padding:32px 18px; background:#fff; border:1px solid var(--gray-200); border-radius:24px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cat-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); border-color:transparent; }
.cat-card__icon{
  width:64px; height:64px; border-radius:50%; background:var(--gray-100); color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s ease, color .3s ease, transform .3s ease;
}
.cat-card:hover .cat-card__icon:not(.cat-card__icon--dark):not(.cat-card__icon--accent):not(.cat-card__icon--brand){
  background:var(--grad-primary); color:#fff; transform:scale(1.08);
}
/* brend logolari o'z rangida (Apple qora, Samsung ko'k, Xiaomi to'q sariq) —
   hover'da fon ko'k gradientga aylansa logo fon bilan qo'shilib ketardi,
   shuning uchun ular faqat kattalashadi */
.cat-card:hover .cat-card__icon--dark,
.cat-card:hover .cat-card__icon--accent,
.cat-card:hover .cat-card__icon--brand{ transform:scale(1.08); }
.cat-card__icon--brand{ background:#fff; box-shadow:inset 0 0 0 1.5px var(--gray-200); }
.cat-card__icon--brand .icon--lg{ width:26px; height:26px; }
/* Samsung logotipi — kvadrat emas, "SAMSUNG" so'z-belgisi (nisbati ~24:3.7).
   viewBox logotipning o'z chegarasiga qisqartirilgan (main.js da), shuning
   uchun bu yerda faqat kenglik beriladi — balandligi nisbatdan hisoblanadi. */
.cat-card__icon--brand svg[aria-label="Samsung"]{ width:42px; height:auto; }
.cat-card__icon--dark{ background:var(--black); color:#fff; }
.cat-card__icon--accent{ background:var(--grad-accent); color:#fff; }
.cat-card--accent{ background-image:linear-gradient(180deg,rgba(247,71,30,.06),rgba(247,71,30,0)); background-color:#fff; border-color:rgba(247,71,30,.18); }
.cat-card__name{ font-weight:700; font-size:15px; }
.cat-card__sub{ font-size:12px; color:var(--gray-500); }

/* ============================================================
   FILTER CHIPS
   ============================================================ */
.filter-row{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:44px; }
.chip{
  padding:11px 22px; border-radius:999px; border:none; box-shadow:inset 0 0 0 1.5px var(--gray-200); background:#fff;
  font-weight:600; font-size:14px; color:var(--gray-700); transition:all .25s ease;
  overflow:hidden;
}
.chip:hover{ box-shadow:inset 0 0 0 1.5px var(--blue); color:var(--blue-deep); }
.chip.chip--active{ background:var(--grad-primary); color:#fff; box-shadow:none; }

.section__more{ display:flex; justify-content:center; margin-top:44px; }

/* ============================================================
   PRODUCT GRID / CARD
   ============================================================ */
.product-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:24px; }
.product-card{
  position:relative; background:#fff; border:1px solid var(--gray-200); border-radius:26px; padding:26px 22px 24px;
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
  display:flex; flex-direction:column; color:var(--ink);
}
.product-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.product-card:hover .phone{ transform:rotateY(-8deg) rotateX(4deg); }

.product-card__top{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:6px; }
.product-card__badge{
  padding:5px 13px; border-radius:999px; font-size:11px; font-weight:700; letter-spacing:.03em;
  text-transform:uppercase; color:#fff; background:var(--blue);
}
.product-card__badge--sale{ background:var(--grad-accent); }
.product-card__wishlist{ width:34px; height:34px; border-radius:50%; background:var(--gray-50); border:none; display:flex; align-items:center; justify-content:center; color:var(--gray-500); transition:all .2s ease; }
.product-card__wishlist:hover{ background:#fff; box-shadow:var(--shadow-sm); }
.product-card__wishlist.active{ color:var(--accent); }

.product-card__stage{ padding:12px 0 6px; }
.product-card__photo-link, .product-card__title-link{ display:block; color:inherit; }

.swatches{ display:flex; gap:8px; justify-content:center; margin:6px 0 14px; }
.swatch{
  width:19px; height:19px; border-radius:50%; border:2px solid #fff; box-shadow:0 0 0 1.5px var(--gray-300);
  cursor:pointer; transition:box-shadow .2s ease, transform .2s ease; padding:0;
}
.swatch:hover{ transform:scale(1.12); }
.swatch.active{ box-shadow:0 0 0 2px var(--blue); }

.product-card__name{ font-weight:700; font-size:16px; text-align:center; margin-bottom:4px; }
.product-card__specs{ font-size:12px; color:var(--gray-500); text-align:center; margin-bottom:12px; }

.storage-row{ display:flex; gap:6px; justify-content:center; margin-bottom:14px; flex-wrap:wrap; }
.storage-chip{
  padding:6px 12px; border-radius:8px; border:1.5px solid var(--gray-200); background:#fff;
  font-size:12px; font-weight:600; color:var(--gray-600); transition:all .2s ease;
}
.storage-chip.active{ border-color:var(--blue); color:var(--blue-deep); background:rgba(28,134,238,.06); }

.price-row{ text-align:center; margin-top:auto; }
.price-row .old-price{ text-decoration:line-through; color:var(--gray-400); font-size:13px; margin-right:8px; }
.price-row .price{ font-weight:800; font-size:20px; color:var(--ink); }
.installment-line{ margin-top:5px; font-size:13px; color:var(--blue-deep); font-weight:600; }

.product-card__actions{ margin-top:18px; }
.add-to-cart{
  width:100%; padding:13px; border:none; border-radius:14px; background:var(--ink); color:#fff;
  font-weight:600; font-size:14px; display:flex; align-items:center; justify-content:center; gap:8px;
  transition:background .25s ease, transform .2s ease;
}
.add-to-cart:hover{ background:var(--blue-deep); transform:translateY(-2px); }
.add-to-cart.added{ background:#1a9f5c; }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc{ position:relative; background:var(--grad-primary); overflow:hidden; padding:100px 0; }
.calc__stripes{ opacity:.5; mix-blend-mode:overlay; }
.calc__inner{ position:relative; z-index:1; }

.calc-card{
  background:#fff; border-radius:34px; padding:44px; box-shadow:var(--shadow-lg); color:var(--ink);
  max-width:1000px; margin:0 auto; display:grid; grid-template-columns:1fr 380px; gap:44px;
}
.calc-field{ display:flex; flex-direction:column; gap:12px; margin-bottom:26px; }
.calc-field > span{ font-weight:600; font-size:14px; color:var(--gray-700); }
.calc-field select{
  padding:15px 16px; border-radius:14px; border:1.5px solid var(--gray-200); font-size:15px; background:#fff;
  appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23767b85' stroke-width='2'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; background-size:16px;
}
.calc-price-input{ display:flex; align-items:center; gap:18px; }
.calc-price-input output{ font-weight:800; font-size:18px; min-width:150px; text-align:right; white-space:nowrap; }

input[type="range"]{
  -webkit-appearance:none; appearance:none; flex:1; height:6px; border-radius:999px; background:var(--gray-200); outline:none;
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none; width:24px; height:24px; border-radius:50%; background:var(--blue-deep);
  border:4px solid #fff; box-shadow:0 4px 10px rgba(11,94,215,.4); cursor:pointer; margin-top:0;
}
input[type="range"]::-moz-range-thumb{
  width:24px; height:24px; border-radius:50%; background:var(--blue-deep); border:4px solid #fff;
  box-shadow:0 4px 10px rgba(11,94,215,.4); cursor:pointer;
}

.term-pills{ display:flex; gap:8px; flex-wrap:wrap; }
.term-pills button{
  padding:11px 18px; border-radius:12px; border:1.5px solid var(--gray-200); background:#fff;
  font-weight:600; font-size:14px; color:var(--gray-700); transition:all .2s ease;
}
.term-pills button.term-pills__active{ background:var(--ink); color:#fff; border-color:var(--ink); }

.calc-card__result{ background:var(--gray-50); border-radius:26px; padding:32px 28px; display:flex; flex-direction:column; }
.calc-card__result-label{ font-size:14px; font-weight:600; color:var(--gray-500); }
.calc-card__result-value{ font-size:38px; font-weight:900; color:var(--blue-deep); line-height:1.1; margin:8px 0 22px; }
.calc-card__result-value small{ font-size:15px; font-weight:500; color:var(--gray-500); margin-left:4px; }
.calc-card__result-rows{ display:flex; flex-direction:column; gap:11px; font-size:14px; border-top:1px solid var(--gray-200); padding-top:20px; margin-bottom:24px; }
.calc-card__result-rows div{ display:flex; justify-content:space-between; color:var(--gray-600); }
.calc-card__result-rows output{ font-weight:700; color:var(--ink); }
.calc-card__note{ display:flex; align-items:center; gap:6px; justify-content:center; font-size:12px; color:var(--gray-500); margin-top:14px; }
.calc-card__note svg{ color:#1a9f5c; }

/* ============================================================
   SPOTLIGHT
   ============================================================ */
.spotlight{ background:var(--grad-dark); color:#fff; padding:110px 0; overflow:hidden; }
.spotlight__inner{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.spotlight__title{ font-size:clamp(2.1rem,4vw,3.2rem); font-weight:800; line-height:1.08; margin-bottom:20px; letter-spacing:-0.02em; }
.spotlight__desc{ color:var(--gray-400); font-size:16px; line-height:1.7; max-width:440px; margin-bottom:32px; }

.spec-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-bottom:34px; max-width:440px; }
.spec-chip{ background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:16px; padding:16px 18px; }
.spec-chip strong{ display:block; font-size:18px; font-weight:800; margin-bottom:2px; }
.spec-chip span{ font-size:12px; color:var(--gray-400); }

.spotlight__price{ display:flex; gap:44px; margin-bottom:34px; }
.spotlight__price div{ display:flex; flex-direction:column; gap:4px; }
.spotlight__price span{ font-size:13px; color:var(--gray-400); }
.spotlight__price strong{ font-size:23px; font-weight:800; }
.spotlight__price strong small{ font-size:13px; font-weight:400; color:var(--gray-400); margin-left:2px; }

/* ============================================================
   TRADE-IN
   ============================================================ */
.steps{ display:flex; flex-direction:column; gap:22px; margin:0; }
.step{ display:flex; gap:16px; align-items:flex-start; }
.step__num{
  width:40px; height:40px; border-radius:50%; background:var(--grad-primary); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:800; flex-shrink:0;
  box-shadow:var(--shadow-blue);
}
.step strong{ display:block; font-weight:700; margin-bottom:4px; color:var(--text); }
.step > div span{ font-size:14px; color:var(--gray-400); }
.steps--row{ flex-direction:row; flex-wrap:wrap; gap:36px; justify-content:center; margin:0 0 36px; }
.steps--row .step{ flex:1 1 220px; max-width:280px; }

.tradein-hero{
  position:relative;
  display:flex; flex-direction:column; align-items:center;
  padding:0 0 28px;
  margin-bottom:56px;
}
.tradein-hero__text{ position:relative; z-index:2; text-align:center; padding:0 24px; margin-bottom:8px; }
.tradein-hero__text h2{ font-size:clamp(1.9rem,3.4vw,2.6rem); font-weight:800; line-height:1.12; letter-spacing:-0.01em; color:var(--text); }

.tradein-hero__tags{
  position:relative; z-index:2; width:100%; max-width:500px; display:flex; justify-content:center;
  padding:22px 24px 0; gap:12px; flex-wrap:wrap;
}
.tradein-hero__tag{
  background:rgba(255,255,255,.94); color:var(--ink); font-weight:700; font-size:13px;
  padding:9px 16px; border-radius:999px; box-shadow:var(--shadow-sm);
}
.tradein-hero__tag--new{ background:var(--accent); color:#fff; }

.tradein-info{ text-align:center; max-width:760px; margin:0 auto; }
.tradein-info__desc{ font-size:16px; color:var(--gray-400); line-height:1.65; max-width:520px; margin:0 auto 40px; }

/* ============================================================
   STATS
   ============================================================ */
.stats{ background:var(--grad-dark); color:#fff; padding:76px 0; }
.stats__inner{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat strong{ font-size:clamp(2rem,4vw,2.8rem); font-weight:900; display:block; color:var(--malibu); }
.stat span{ font-size:14px; color:var(--gray-400); margin-top:8px; display:block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; }
.testimonial-card{ background:#fff; border:1px solid var(--gray-200); border-radius:24px; padding:30px; color:var(--ink); transition:box-shadow .3s ease, transform .3s ease; }
.testimonial-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-4px); }
.testimonial-card__stars{ display:flex; gap:3px; color:var(--star); margin-bottom:16px; }
.testimonial-card p{ font-size:15px; color:var(--gray-700); line-height:1.7; margin-bottom:22px; }
.testimonial-card__author{ display:flex; align-items:center; gap:12px; }
.avatar{
  width:44px; height:44px; border-radius:50%; background:var(--grad-primary); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px; flex-shrink:0;
}
.testimonial-card__author strong{ display:block; font-size:14px; }
.testimonial-card__author span{ font-size:12px; color:var(--gray-500); }

/* ============================================================
   PROMO / TELEGRAM
   ============================================================ */
.promo{ background:#0a0b0d; color:#fff; padding:90px 0; }
.promo__inner{ display:flex; justify-content:space-between; align-items:center; gap:50px; flex-wrap:wrap; }
.promo__copy{ max-width:480px; }
.promo__copy h2{ font-size:clamp(1.7rem,3.2vw,2.3rem); font-weight:800; margin-bottom:16px; line-height:1.2; }
.promo__copy p{ color:var(--gray-400); font-size:15px; line-height:1.65; margin-bottom:28px; }

.qr-card{ background:#fff; border-radius:28px; padding:28px; display:flex; flex-direction:column; align-items:center; gap:14px; color:var(--ink); box-shadow:var(--shadow-lg); }
/* Haqiqiy QR kod (assets/img/qr-bot.svg) — t.me/OrzuMobileBot ga olib boradi.
   Oq to'ldirish (padding) skanerlash uchun majburiy: QR atrofida bo'sh joy
   bo'lmasa telefon kamerasi chegarani topa olmaydi. */
.qr-code{
  display:block; width:160px; height:160px; padding:10px;
  background:#fff; border-radius:12px; box-sizing:content-box;
  transition:transform .25s ease;
}
.qr-code:hover{ transform:scale(1.04); }
.qr-code img{ display:block; width:100%; height:100%; }
.qr-card span{ font-size:13px; font-weight:600; color:var(--gray-600); }

/* ============================================================
   STORES
   ============================================================ */
.stores{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.stores-map{ aspect-ratio:4/3; border-radius:28px; background:var(--gray-200); box-shadow:var(--shadow-md); }
.stores-map.leaflet-container{ font-family:inherit; }

/* brand-colored pin + popup for the real Leaflet map */
.orzu-map-pin{ color:var(--accent); filter:drop-shadow(0 8px 10px rgba(0,0,0,.3)); }
.orzu-map-pin svg{ width:34px; height:34px; }
.leaflet-popup-content-wrapper{ border-radius:14px; box-shadow:var(--shadow-md); }
.leaflet-popup-content{ margin:14px 16px; }
.orzu-map-popup strong{ display:block; font-size:14.5px; margin-bottom:4px; }
.orzu-map-popup span{ font-size:13px; color:var(--gray-700); }

.store-card{ background:#fff; border-radius:24px; padding:32px; box-shadow:var(--shadow-md); margin-top:22px; color:var(--ink); }
.store-card h3{ font-size:20px; margin-bottom:16px; }
.store-card p{ display:flex; align-items:center; gap:10px; font-size:14.5px; color:var(--gray-700); margin-bottom:12px; }
.store-card .btn{ margin-top:16px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter{ background:linear-gradient(120deg,var(--blue-deep),#0d3fae); color:#fff; padding:70px 0; }
.newsletter__inner{ display:flex; justify-content:space-between; align-items:center; gap:34px; flex-wrap:wrap; }
.newsletter__inner h2{ font-size:clamp(1.5rem,3vw,2rem); margin-bottom:8px; color:#fff; }
.newsletter__inner p{ color:rgba(255,255,255,.8); font-size:15px; max-width:420px; }
.newsletter__form{ display:flex; gap:10px; flex-wrap:wrap; }
.newsletter__form input{ flex:1; min-width:240px; padding:15px 20px; border-radius:999px; border:none; font-size:15px; outline:none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:#0a0b0d; color:var(--gray-400); padding-top:72px; }
.footer__top{ display:grid; grid-template-columns:1.7fr repeat(4,1fr); gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer__brand p{ color:var(--gray-500); font-size:14px; line-height:1.65; margin:18px 0 22px; max-width:280px; }
.footer__social{ display:flex; gap:10px; }
.footer__social a{ width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; transition:background .2s ease; }
.footer__social a:hover{ background:var(--blue); }
.footer__col h4{ color:#fff; font-size:13px; font-weight:700; margin-bottom:20px; text-transform:uppercase; letter-spacing:.05em; }
.footer__col a, .footer__text{ display:block; color:var(--gray-500); font-size:14px; margin-bottom:13px; transition:color .2s ease; }
.footer__col a:hover{ color:#fff; }

.footer__bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; flex-wrap:wrap; gap:14px; font-size:13px; color:var(--gray-500); }
.footer__payments{ display:flex; gap:12px; }
.footer__payments span{ padding:6px 14px; border:1px solid rgba(255,255,255,.15); border-radius:8px; font-size:12px; font-weight:600; color:var(--gray-400); }

/* ============================================================
   TOAST
   ============================================================ */
.toast{
  position:fixed; bottom:26px; right:26px; z-index:900; background:var(--ink); color:#fff;
  padding:16px 24px; border-radius:14px; box-shadow:var(--shadow-lg); font-size:14px; font-weight:600;
  display:flex; align-items:center; gap:10px;
  transform:translateY(30px); opacity:0; pointer-events:none; transition:transform .35s ease, opacity .35s ease;
}
.toast.show{ transform:translateY(0); opacity:1; }

/* ============================================================
   CATALOG PAGE
   ============================================================ */
.catalog-breadcrumb{ display:flex; align-items:center; gap:8px; padding:22px 0 0; font-size:13px; color:var(--gray-500); }
.catalog-breadcrumb a{ color:var(--gray-400); transition:color .2s ease; }
.catalog-breadcrumb a:hover{ color:var(--malibu); }
.catalog-breadcrumb svg{ opacity:.5; }
.catalog-breadcrumb span{ color:var(--text); font-weight:500; }

.catalog-head{ padding:18px 0 36px; }
.catalog-head h1{ font-size:clamp(1.8rem,3vw,2.4rem); font-weight:800; letter-spacing:-0.01em; color:var(--text); margin-bottom:10px; }
.catalog-head p{ font-size:15px; color:var(--gray-400); max-width:560px; }

.catalog-layout{ display:grid; grid-template-columns:272px 1fr; gap:32px; align-items:start; padding-bottom:100px; }
.catalog-filters-overlay{ display:none; }
.catalog-main{ min-width:0; }

/* ---- filter sidebar (white card, matches product-card surface style) ---- */
.catalog-filters{
  background:#fff; border-radius:24px; padding:26px 24px 28px; color:var(--ink);
  position:sticky; top:24px; box-shadow:var(--shadow-sm);
}
.catalog-filters__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; padding-bottom:16px; border-bottom:1px solid var(--gray-200); }
.catalog-filters__head h3{ font-size:17px; font-weight:800; }
.catalog-filters__head-actions{ display:flex; align-items:center; gap:6px; }
.catalog-filters__clear{ border:none; background:transparent; color:var(--blue-deep); font-weight:600; font-size:13px; padding:6px 4px; }
.catalog-filters__clear:hover{ text-decoration:underline; }
.catalog-filters__close{ display:none; color:var(--ink); }
#applyCatalogFilters{ display:none; }

.filter-group{ padding:18px 0; border-bottom:1px solid var(--gray-200); }
.filter-group:first-of-type{ padding-top:0; }
.filter-group:last-of-type{ border-bottom:none; }
.filter-group h4{ font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--gray-600); margin-bottom:14px; }

.filter-check-list{ display:flex; flex-direction:column; gap:2px; }
.filter-check{ display:flex; align-items:center; gap:10px; padding:7px 2px; font-size:14px; color:var(--gray-700); cursor:pointer; }
.filter-check input{ width:17px; height:17px; accent-color:var(--blue-deep); cursor:pointer; flex-shrink:0; }
.filter-check span{ flex:1; }
.filter-check em{ font-style:normal; font-size:12px; color:var(--gray-400); }

/* ---- dual-handle price range slider ---- */
.price-range{ position:relative; height:24px; margin-bottom:14px; }
.price-range__track{
  position:absolute; top:50%; left:0; right:0; height:4px; transform:translateY(-50%);
  background:var(--gray-200); border-radius:999px;
}
.price-range__fill{ position:absolute; top:0; bottom:0; background:var(--grad-primary); border-radius:999px; }
.price-range input[type="range"]{
  position:absolute; top:0; left:0; width:100%; height:24px; margin:0;
  background:transparent; pointer-events:none; -webkit-appearance:none; appearance:none;
}
.price-range input[type="range"]::-webkit-slider-runnable-track{ background:transparent; }
.price-range input[type="range"]::-moz-range-track{ background:transparent; }
.price-range input[type="range"]::-webkit-slider-thumb{
  pointer-events:auto; -webkit-appearance:none; width:20px; height:20px; border-radius:50%;
  background:var(--blue-deep); border:3px solid #fff; box-shadow:0 2px 8px rgba(11,94,215,.4); cursor:pointer; margin-top:0;
}
.price-range input[type="range"]::-moz-range-thumb{
  pointer-events:auto; width:20px; height:20px; border-radius:50%; background:var(--blue-deep);
  border:3px solid #fff; box-shadow:0 2px 8px rgba(11,94,215,.4); cursor:pointer;
}
.price-range__labels{ display:flex; justify-content:space-between; font-size:13px; font-weight:600; color:var(--gray-600); }

/* ---- toolbar: count / search / sort ---- */
.catalog-toolbar{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:24px; }
.catalog-toolbar__filters-btn{
  display:none; align-items:center; gap:8px; padding:11px 18px; border-radius:12px;
  border:1.5px solid var(--surface-border); background:var(--surface-wash); color:var(--text);
  font-weight:600; font-size:14px;
}
.catalog-toolbar__count{ font-size:14px; color:var(--gray-400); margin-right:auto; }
.catalog-toolbar__search{
  display:flex; align-items:center; gap:10px; background:var(--surface-wash); border:1.5px solid var(--surface-border-soft);
  border-radius:999px; padding:10px 18px; flex:1 1 220px; max-width:320px; color:var(--gray-400);
}
.catalog-toolbar__search input{ flex:1; border:none; outline:none; background:transparent; color:var(--text); font-size:14px; }
.catalog-toolbar__sort{
  padding:11px 38px 11px 16px; border-radius:999px; border:1.5px solid var(--surface-border); background-color:var(--surface-wash);
  color:var(--text); font-size:14px; font-weight:600; appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa0aa' stroke-width='2'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; background-size:15px;
}
.catalog-toolbar__sort option{ background:var(--bg); color:var(--text); }

/* ---- empty state ---- */
.catalog-empty{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; padding:90px 20px; color:var(--gray-400); }
.catalog-empty svg{ opacity:.4; margin-bottom:6px; }
.catalog-empty h3{ font-size:19px; font-weight:700; color:var(--text); }
.catalog-empty p{ font-size:14px; }

/* ---- pagination ---- */
.catalog-pagination{ display:flex; justify-content:center; align-items:center; gap:8px; margin-top:48px; }
.pg-btn{
  min-width:40px; height:40px; padding:0 8px; border-radius:12px; border:none;
  background:var(--surface-wash); color:var(--gray-400); font-weight:600; font-size:14px;
  display:flex; align-items:center; justify-content:center; transition:all .2s ease;
}
.pg-btn:hover:not(:disabled){ background:var(--surface-wash-strong); color:var(--text); }
.pg-btn--active{ background:var(--grad-primary); color:#fff; box-shadow:var(--shadow-blue); }
.pg-btn:disabled{ opacity:.3; cursor:not-allowed; }

@media (max-width:900px){
  .catalog-layout{ grid-template-columns:1fr; padding-bottom:70px; }
  .catalog-toolbar__filters-btn{ display:flex; }

  .catalog-filters{
    position:fixed; top:0; left:0; bottom:0; width:min(340px,86vw); z-index:1001;
    border-radius:0; overflow-y:auto; transform:translateX(-100%);
    transition:transform .35s cubic-bezier(.16,1,.3,1); padding-top:20px;
  }
  .catalog-filters.is-open{ transform:translateX(0); }
  .catalog-filters__close{ display:flex; }
  #applyCatalogFilters{ display:flex; margin-top:10px; }

  .catalog-filters-overlay{
    display:block; position:fixed; inset:0; background:rgba(5,7,12,.6); z-index:1000;
    opacity:0; pointer-events:none; transition:opacity .3s ease;
  }
  .catalog-filters-overlay.is-open{ opacity:1; pointer-events:auto; }
}

@media (max-width:640px){
  .catalog-head{ padding:14px 0 26px; }
  .catalog-toolbar__search{ flex:1 1 100%; max-width:none; }
  .catalog-pagination{ margin-top:28px; }
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.phone--detail{ width:240px; height:492px; }

.product-detail{ display:grid; grid-template-columns:1fr 1fr; gap:56px; padding:8px 0 24px; align-items:start; }

.product-detail__gallery{ position:sticky; top:24px; }
.product-detail__stage{
  background:#fff; border-radius:28px; padding:40px; box-shadow:var(--shadow-sm);
  display:flex; align-items:center; justify-content:center; min-height:460px;
}
.product-detail__stage.has-photo{ padding:24px; }
.product-detail__stage .product-photo{
  max-height:420px; width:auto; filter:drop-shadow(0 20px 26px rgba(10,15,30,.16));
}

.gallery-main{ position:relative; }
.gallery-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:2;
  width:42px; height:42px; border-radius:50%; border:none; background:rgba(255,255,255,.92);
  color:var(--ink); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); transition:background .2s ease, transform .2s ease;
}
.gallery-nav:hover{ background:#fff; transform:translateY(-50%) scale(1.06); }
.gallery-nav--prev{ left:14px; }
.gallery-nav--next{ right:14px; }

.gallery-thumbs{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.gallery-thumb{
  width:64px; height:64px; border-radius:12px; padding:4px; background:#fff;
  border:2px solid var(--gray-200); flex-shrink:0; transition:border-color .2s ease, opacity .2s ease;
}
.gallery-thumb img{ width:100%; height:100%; object-fit:contain; border-radius:8px; }
.gallery-thumb:hover{ border-color:var(--blue); }
.gallery-thumb.active{ border-color:var(--blue-deep); }

.product-detail__title{ font-size:clamp(1.6rem,2.8vw,2.1rem); font-weight:800; color:var(--text); margin-bottom:8px; letter-spacing:-0.01em; }
.product-detail__variant{ font-size:14px; color:var(--gray-400); margin-bottom:18px; }
.product-detail__price-row{ display:flex; align-items:baseline; gap:12px; margin-bottom:26px; }
.product-detail__price-row .price{ font-size:32px; font-weight:900; color:var(--text); }
.product-detail__price-row .old-price{ font-size:16px; color:var(--gray-500); }

.product-detail__group{ margin-bottom:24px; }
.product-detail__group h4{ font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--gray-500); margin-bottom:12px; }
.product-detail__group h4 span{ text-transform:none; color:var(--text); font-weight:600; letter-spacing:0; font-size:14px; }

.detail-pill-row{ display:flex; gap:10px; flex-wrap:wrap; }
.detail-swatch-row{ display:flex; gap:12px; flex-wrap:wrap; }
.storage-chip--lg{ padding:12px 20px; font-size:14px; border-radius:12px; }
.swatch--lg{ width:32px; height:32px; }

/* ---- payment method + installment calculator ---- */
.detail-payment{ margin-bottom:26px; }
.detail-payment > h4{ font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--gray-500); margin-bottom:12px; }

.payment-method-row{ display:flex; gap:10px; margin-bottom:18px; }
.payment-method{
  flex:1; padding:14px; border-radius:14px; border:1.5px solid var(--surface-border);
  background:var(--surface-wash); color:var(--muted-text); font-weight:700; font-size:14px; transition:all .2s ease;
}
.payment-method.active{ background:var(--ink); color:#fff; border-color:var(--ink); }

.detail-calc-card{ background:var(--gray-50); color:var(--ink); border-radius:20px; padding:24px; margin-bottom:18px; }
.detail-calc-card__head{ font-weight:700; font-size:14px; margin-bottom:16px; color:var(--gray-700); }
.detail-calc-card .term-pills{ margin-bottom:18px; }
.detail-calc-card__row{ display:flex; justify-content:space-between; align-items:center; font-size:14px; color:var(--gray-600); padding:2px 0; }
.detail-calc-card__row strong{ color:var(--ink); font-weight:700; }
.detail-calc-card__note{ font-size:12px; color:var(--gray-400); margin:6px 0 16px; line-height:1.5; }
.detail-calc-card__divider{ height:1px; background:var(--gray-200); margin-bottom:16px; }
.detail-calc-card__row--big{ align-items:baseline; margin-bottom:4px; }
.detail-calc-card__row--big span{ font-size:14px; color:var(--gray-600); }
.detail-calc-card__row--big strong{ font-size:24px; color:#1a9f5c; }
.detail-calc-card__sub{ font-size:12px; color:var(--gray-400); text-align:right; }

.detail-payment__actions{ display:flex; gap:12px; }
.detail-buy-btn{
  flex:1; padding:16px; border:none; border-radius:14px; background:var(--ink); color:#fff;
  font-weight:700; font-size:15px; display:flex; align-items:center; justify-content:center; gap:8px;
  transition:background .25s ease, transform .2s ease;
}
.detail-buy-btn:hover{ background:var(--blue-deep); transform:translateY(-2px); }
.detail-buy-btn.added{ background:#1a9f5c; }
.product-detail__wishlist{
  width:54px; height:54px; border-radius:14px; background:var(--surface-wash);
  border:1.5px solid var(--surface-border); flex-shrink:0; color:var(--text);
}
.product-detail__wishlist.active{ color:var(--accent); border-color:rgba(247,71,30,.4); }

.product-detail__trust{ display:flex; flex-direction:column; gap:10px; font-size:13.5px; color:var(--gray-400); }
.product-detail__trust span{ display:flex; align-items:center; gap:8px; }
.product-detail__trust svg{ color:#1a9f5c; flex-shrink:0; }

/* ---- description / specs tabs ---- */
.detail-tabs{ padding:20px 0 30px; }
.detail-tabs__head{ display:flex; border-bottom:1px solid var(--surface-border-soft); margin-bottom:24px; }
.detail-tab{ padding:14px 4px; margin-right:28px; border:none; background:transparent; color:var(--gray-400); font-weight:600; font-size:15px; position:relative; }
.detail-tab::after{ content:''; position:absolute; left:0; right:0; bottom:-1px; height:2px; background:var(--grad-primary); transform:scaleX(0); transition:transform .25s ease; }
.detail-tab.active{ color:var(--text); }
.detail-tab.active::after{ transform:scaleX(1); }
.detail-tab-panel{ display:none; color:var(--gray-400); font-size:15px; line-height:1.75; max-width:760px; }
.detail-tab-panel.active{ display:block; }

.spec-table{ width:100%; border-collapse:collapse; }
.spec-table tr{ border-bottom:1px solid var(--surface-border-soft); }
.spec-table tr:last-child{ border-bottom:none; }
.spec-table th, .spec-table td{ text-align:left; padding:14px 8px; font-weight:400; }
.spec-table th{ width:220px; color:var(--gray-500); font-weight:600; }
.spec-table td{ color:var(--text); }

/* ---- related products ---- */
.product-related{ padding:10px 0 90px; }
.product-related__head{ margin-bottom:28px; }
.product-related__head h2{ font-size:clamp(1.4rem,2.6vw,1.9rem); font-weight:800; color:var(--text); }

/* ---- not-found state ---- */
.product-not-found{ text-align:center; padding:120px 20px; color:var(--gray-400); }
.product-not-found h2{ color:var(--text); font-size:22px; margin-bottom:10px; }
.product-not-found .btn{ margin-top:22px; }

@media (max-width:900px){
  .product-detail{ grid-template-columns:1fr; gap:32px; }
  .product-detail__gallery{ position:static; }
  .product-detail__stage{ min-height:360px; padding:28px; }
  .phone--detail{ width:190px; height:390px; }
}

@media (max-width:640px){
  .product-detail__stage{ min-height:300px; padding:20px; border-radius:22px; }
  .phone--detail{ width:150px; height:308px; }
  .product-detail__price-row .price{ font-size:26px; }
  .detail-tab{ margin-right:18px; font-size:14px; }
  .spec-table th{ width:150px; font-size:13px; }
  .spec-table th, .spec-table td{ padding:11px 6px; font-size:13.5px; }
  .product-not-found{ padding:80px 20px; }
  .gallery-nav{ width:36px; height:36px; }
  .gallery-thumb{ width:52px; height:52px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .hero__inner{ grid-template-columns:1fr; text-align:center; min-height:auto; padding-top:0; }
  .hero__visual{ display:none; }
  .hero__desc{ margin-left:auto; margin-right:auto; }
  .hero__cta{ justify-content:center; }
  .hero__trust{ justify-content:center; }
  .float-badge--1{ left:2%; }
  .float-badge--2{ right:0%; }
  .float-badge--3{ left:0%; }

  .spotlight__inner{ grid-template-columns:1fr; text-align:center; }
  .spotlight__desc{ margin-left:auto; margin-right:auto; }
  .spec-grid{ margin-left:auto; margin-right:auto; }
  .spotlight__price{ justify-content:center; }
  .hero__cta{ justify-content:center; }

  .steps--row{ gap:26px; }

  .stores{ grid-template-columns:1fr; }
  .calc-card{ grid-template-columns:1fr; }
  .footer__top{ grid-template-columns:repeat(3,1fr); }
}

@media (max-width:900px){
  :root{ --header-h:64px; }
  .topbar__left span{ display:none; }
  .nav{
    position:fixed; top:var(--header-h,64px); left:0; right:0; z-index:400;
    background:var(--bg); flex-direction:column; align-items:stretch; gap:0; padding:10px 28px 18px;
    box-shadow:0 20px 40px rgba(0,0,0,.35); transform:translateY(-14px); opacity:0; pointer-events:none;
    transition:transform .3s ease, opacity .3s ease, background .25s ease; border-bottom:1px solid var(--surface-border-soft);
  }
  .nav.is-open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav a{ padding:15px 2px; border-bottom:1px solid var(--surface-border-soft); font-size:16px; }
  .nav a::after{ display:none; }
  .nav-toggle{ display:flex; }

  .cat-grid{ grid-template-columns:repeat(3,1fr); }
  .trustbar__inner{ grid-template-columns:repeat(2,1fr); }
  .stats__inner{ grid-template-columns:repeat(2,1fr); }
  .section{ padding:72px 0; }

  .phone-stage--3d{ height:420px; }
}

@media (max-width:640px){
  .container{ padding-left:20px; padding-right:20px; }
  .header__inner{ padding:14px 20px; }
  /* 5 icon buttons (theme/search/wishlist/cart/menu) no longer fit at 42px
     each on narrow phones once the theme toggle was added — shrink both
     the buttons and their gap rather than dropping one from the header */
  .header__actions{ gap:0; }
  .icon-btn{ width:36px; height:36px; }
  .icon-btn .icon{ width:19px; height:19px; }
  .footer__top{ grid-template-columns:1fr 1fr; gap:32px 24px; }
  .footer__brand{ grid-column:1/-1; }
  .promo__inner{ justify-content:center; text-align:center; }
  .newsletter__inner{ justify-content:center; text-align:center; }
  .newsletter__form{ width:100%; }
  .newsletter__form button{ width:100%; }
  .footer__bottom{ justify-content:center; text-align:center; }
  .hero__trust{ gap:22px; }

  .tradein-hero{ padding:0 0 24px; }
  .tradein-hero__tags{ flex-direction:column; align-items:center; padding:16px 20px 0; }
  .steps--row{ flex-direction:column; align-items:center; }

  /* ---- Hero: fills the first screen (base rule handles that); just tighter padding on phone ---- */
  .hero{ padding:24px 0; }
  .eyebrow{ margin-bottom:14px; }
  .hero__title{ margin-bottom:14px; }
  .hero__desc{ margin-bottom:24px; }
  .hero__trust{ margin-top:28px; }
  .hero__scroll{ display:none; }

  /* ---- Trust bar: short, compact 2x2 strip ---- */
  .trustbar{ padding:4px 0 16px; }
  .trustbar__inner{ gap:10px; align-items:start; }
  .trust-card{ padding:12px 10px; gap:8px; border-radius:14px; min-width:0; }
  .trust-card > div{ min-width:0; }
  .trust-card svg{ width:16px; height:16px; padding:7px; border-radius:10px; }
  .trust-card strong{ font-size:12.5px; margin-bottom:1px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .trust-card span{ font-size:10.5px; display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

  /* ---- Categories: smaller, 3 per row ---- */
  .cat-grid{ grid-template-columns:repeat(3,1fr); gap:10px; }
  .cat-card{ padding:16px 8px; gap:8px; border-radius:16px; }
  .cat-card__icon{ width:40px; height:40px; }
  .cat-card__icon .icon--lg{ width:19px; height:19px; }
  .cat-card__icon--brand .icon--lg{ width:19px; height:19px; }
  .cat-card__icon--brand svg[aria-label="Samsung"]{ width:28px; height:auto; }
  .cat-card__name{ font-size:11.5px; }
  .cat-card__sub{ font-size:9.5px; }

  /* ---- Product grid: 2 per row, compact cards ---- */
  .product-grid{ grid-template-columns:repeat(2,1fr); gap:10px; }
  .product-card{ padding:12px 10px; border-radius:16px; }
  .product-card__stage{ padding:4px 0 4px; }
  .product-card__stage.has-photo{ margin:0 auto 8px; }
  .product-card__badge{ font-size:9px; padding:3px 8px; }
  .product-card__wishlist{ width:26px; height:26px; }
  .product-card__wishlist svg{ width:14px; height:14px; }
  .swatches{ gap:5px; margin:4px 0 8px; }
  .swatch{ width:14px; height:14px; }
  .product-card__name{ font-size:12.5px; margin-bottom:2px; }
  .product-card__specs{ font-size:9.5px; margin-bottom:6px; }
  .storage-row{ gap:4px; margin-bottom:8px; }
  .storage-chip{ padding:3px 7px; font-size:9.5px; border-radius:6px; }
  .price-row .price{ font-size:14px; }
  .price-row .old-price{ font-size:10px; margin-right:4px; }
  .installment-line{ font-size:10px; margin-top:2px; }
  .product-card__actions{ margin-top:10px; }
  .add-to-cart{ padding:9px; font-size:11px; border-radius:10px; gap:5px; }
  .add-to-cart svg{ width:14px; height:14px; }

  /* ---- Installment calculator: compact phone layout ---- */
  .calc{ padding:48px 0; }
  .calc-card{ padding:20px 16px; border-radius:20px; gap:18px; }
  .calc-field{ margin-bottom:16px; gap:7px; }
  .calc-field > span{ font-size:12px; }
  .calc-field select{ padding:11px 12px; font-size:13px; border-radius:10px; background-size:14px; }
  .calc-price-input{ gap:10px; }
  .calc-price-input output{ font-size:13px; min-width:90px; }
  input[type="range"]::-webkit-slider-thumb{ width:18px; height:18px; border-width:3px; }
  input[type="range"]::-moz-range-thumb{ width:18px; height:18px; border-width:3px; }
  .term-pills{ gap:6px; }
  .term-pills button{ padding:8px 12px; font-size:11.5px; border-radius:9px; }
  .calc-card__result{ padding:18px 16px; border-radius:16px; }
  .calc-card__result-value{ font-size:24px; margin:5px 0 12px; }
  .calc-card__result-value small{ font-size:11px; }
  .calc-card__result-rows{ font-size:11.5px; gap:7px; padding-top:12px; margin-bottom:14px; }
  .calc-card__note{ font-size:10px; }
}

@media (max-width:480px){
  .footer__top{ grid-template-columns:1fr; }
  .stats__inner{ grid-template-columns:repeat(2,1fr); gap:20px 14px; }
  .spec-grid{ grid-template-columns:1fr 1fr; }
  .spotlight__price{ gap:26px; }
  .phone--hero{ width:220px; height:456px; }
  .phone--spotlight{ width:220px; height:448px; }
  .float-badge{ font-size:11.5px; padding:9px 14px; }
  .phone-stage--3d{ height:340px; }
}

/* ============================================================
   CUSTOM CURSOR — enabled via JS only on fine-pointer (mouse) devices
   ============================================================ */
.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor input,
.has-custom-cursor select,
.has-custom-cursor .swatch,
.has-custom-cursor label{ cursor:none !important; }

.cursor-dot,
.cursor-ring{
  position:fixed; top:0; left:0; z-index:9999; pointer-events:none;
  border-radius:50%; transform:translate(-50%,-50%);
  opacity:0; transition:opacity .25s ease, width .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
}
.cursor-dot{
  width:7px; height:7px; background:var(--malibu);
}
.cursor-ring{
  width:34px; height:34px; border:1.5px solid rgba(114,192,254,.55);
  transition:opacity .25s ease, width .2s ease, height .2s ease, border-color .2s ease, background .2s ease, transform .05s linear;
}
.has-custom-cursor .cursor-dot,
.has-custom-cursor .cursor-ring{ opacity:1; }

.cursor-ring.is-hover{
  width:54px; height:54px; background:rgba(114,192,254,.12); border-color:var(--malibu);
}
.cursor-dot.is-hover{ opacity:0; }
.cursor-ring.is-hidden,
.cursor-dot.is-hidden{ opacity:0; }

/* ============================================================
   ORDER MODAL
   ============================================================ */
.order-modal-overlay{
  position:fixed; inset:0; z-index:1100; background:rgba(5,7,12,.6);
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.order-modal-overlay.is-open{ opacity:1; pointer-events:auto; }
.order-modal{
  position:relative; width:100%; max-width:420px; max-height:90vh; overflow-y:auto;
  background:#fff; color:var(--ink); border-radius:var(--radius-lg); padding:32px 28px 28px;
  box-shadow:var(--shadow-lg); transform:translateY(16px) scale(.98); transition:transform .3s ease;
}
.order-modal-overlay.is-open .order-modal{ transform:translateY(0) scale(1); }
.order-modal__close{
  position:absolute; top:14px; right:14px; width:34px; height:34px; border-radius:50%;
  background:var(--gray-100); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer;
}
.order-modal__close:hover{ background:var(--gray-200); }
.order-modal__close .icon{ width:16px; height:16px; }
.order-modal__title{ font-size:20px; font-weight:800; margin:0 0 16px; padding-right:30px; }
.order-modal__recap{
  background:var(--gray-50); border-radius:var(--radius-sm); padding:14px 16px; margin-bottom:20px;
}
.order-modal__recap-name{ font-weight:700; font-size:15px; }
.order-modal__recap-variant{ font-size:13px; color:var(--gray-500); margin-top:2px; }
.order-modal__recap-price{ font-size:17px; font-weight:800; color:var(--blue-deep); margin-top:6px; }
.order-modal__field{ display:flex; flex-direction:column; gap:6px; font-size:13px; font-weight:600; color:var(--gray-700); margin-bottom:14px; }
.order-modal__field input,
.order-modal__field textarea{
  padding:12px 14px; border-radius:10px; box-shadow:inset 0 0 0 1.5px var(--gray-200);
  border:none; font-size:14px; font-family:inherit; color:var(--ink); background:#fff; resize:vertical;
}
.order-modal__field input:focus,
.order-modal__field textarea:focus{ box-shadow:inset 0 0 0 1.5px var(--blue); outline:none; }
.order-modal__hp{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.order-modal__error{ color:var(--red, #d64545); font-size:13px; margin:0 0 12px; }
.order-modal__success{ text-align:center; padding:8px 0 0; }
.order-modal__success-icon{
  width:56px; height:56px; border-radius:50%; background:#e8f7ee; color:#1a9f5c;
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px;
}
.order-modal__success-icon .icon{ width:26px; height:26px; }
.order-modal__success h3{ font-size:18px; font-weight:800; margin:0 0 8px; }
.order-modal__success p{ font-size:14px; color:var(--gray-500); margin:0 0 6px; }
.order-modal__success-no{ font-weight:700; color:var(--ink) !important; margin-bottom:20px !important; }
.order-modal__success .btn{ margin-top:6px; }

@media (max-width:480px){
  .order-modal{ padding:26px 20px 22px; }
}
