:root {
  color-scheme: light;
  --bg: #f5f7f8;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f0f5f5;
  --surface-strong: #e5eeee;
  --text: #142321;
  --text-strong: #091614;
  --muted: #677774;
  --muted-2: #8a9996;
  --primary: #0b786e;
  --primary-strong: #075e57;
  --primary-soft: #ddf5f1;
  --accent: #f4aa24;
  --danger: #c93939;
  --danger-soft: #fff0f0;
  --success: #16815c;
  --success-soft: #e7f8f1;
  --border: #dce6e4;
  --border-strong: #c7d7d4;
  --header: rgba(255, 255, 255, .86);
  --footer: #0c2421;
  --footer-muted: #a9c1bd;
  --shadow-sm: 0 8px 24px rgba(13, 39, 35, .06);
  --shadow: 0 22px 70px rgba(13, 39, 35, .11);
  --shadow-strong: 0 30px 90px rgba(6, 30, 27, .2);
  --radius-sm: 13px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1200px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07110f;
  --bg-elevated: #0b1715;
  --surface: #0e1c19;
  --surface-soft: #12231f;
  --surface-strong: #19302b;
  --text: #dce9e6;
  --text-strong: #f6fbfa;
  --muted: #91a7a2;
  --muted-2: #708681;
  --primary: #34c6b5;
  --primary-strong: #51d5c5;
  --primary-soft: rgba(52, 198, 181, .13);
  --accent: #ffc65c;
  --danger: #ff8585;
  --danger-soft: rgba(201, 57, 57, .14);
  --success: #55d2a4;
  --success-soft: rgba(22, 129, 92, .14);
  --border: #203430;
  --border-strong: #2c4741;
  --header: rgba(8, 18, 16, .88);
  --footer: #030a09;
  --footer-muted: #8ba19c;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .16);
  --shadow: 0 22px 70px rgba(0, 0, 0, .28);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, .4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Vazirmatn, Tahoma, "Segoe UI", sans-serif;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.mobile-menu-open,
body.admin-menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(var(--container), calc(100% - 36px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 82px;
  background: var(--header);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  backdrop-filter: blur(22px) saturate(145%);
  transition: background .25s, border-color .25s;
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark,
.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #08786d, #34c6b5);
  box-shadow: 0 11px 28px rgba(11, 120, 110, .24);
}
.brand-logo { background: var(--surface); border: 1px solid var(--border); }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.brand-copy { display: grid; min-width: 0; line-height: 1.45; }
.brand-copy strong { color: var(--text-strong); font-size: 16px; white-space: nowrap; }
.brand-copy small { color: var(--muted); font-size: 10px; max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.desktop-nav { display: flex; align-items: center; gap: 27px; margin-inline-start: auto; }
.desktop-nav a { position: relative; color: var(--muted); font-size: 13px; font-weight: 750; transition: .2s; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; left: 100%; bottom: -9px; height: 2px; border-radius: 2px; background: var(--primary); transition: .2s; }
.desktop-nav a:hover { color: var(--text-strong); }
.desktop-nav a:hover::after { left: 0; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; direction: ltr; color: var(--muted); font-size: 12px; font-weight: 750; }
.header-phone svg { width: 18px; height: 18px; stroke: var(--primary); }
.icon-button,
.mobile-menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: .2s;
}
.icon-button:hover,
.mobile-menu-button:hover { border-color: var(--border-strong); background: var(--surface-soft); }
.theme-toggle .moon-icon { display: none; }
html[data-theme="dark"] .theme-toggle .sun-icon { display: none; }
html[data-theme="dark"] .theme-toggle .moon-icon { display: block; }
.mobile-menu-button { display: none; gap: 4px; padding: 10px; }
.mobile-menu-button span { width: 20px; height: 2px; border-radius: 5px; background: currentColor; display: block; }

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 10px 20px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, opacity .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { cursor: not-allowed; opacity: .65; transform: none; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), #139c8f); box-shadow: 0 12px 28px rgba(11, 120, 110, .22); }
.btn-primary:hover { box-shadow: 0 15px 36px rgba(11, 120, 110, .3); }
.btn-ghost { color: var(--text); background: var(--surface); border: 1px solid var(--border); }
.btn-light { color: #0d4f49; background: #fff; }
.btn-lg { min-height: 52px; padding: 13px 26px; border-radius: 16px; }
.full { width: 100%; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(2, 13, 11, .56);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: .25s;
}
.mobile-menu {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(390px, calc(100% - 38px));
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  transform: translateX(105%);
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu-open .mobile-menu-overlay { opacity: 1; visibility: visible; }
.mobile-menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.mobile-menu-head .icon-button { font-size: 27px; line-height: 1; }
.mobile-nav { display: grid; gap: 7px; padding: 18px 0; }
.mobile-nav a { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; border-radius: 14px; color: var(--text); font-weight: 750; background: var(--surface-soft); }
.mobile-nav a b { color: var(--primary); }
.mobile-menu-contact { margin-top: auto; padding: 18px; border-radius: 18px; background: linear-gradient(135deg, var(--primary-soft), var(--surface-soft)); border: 1px solid var(--border); }
.mobile-menu-contact a { display: grid; }
.mobile-menu-contact a span { color: var(--muted); font-size: 11px; }
.mobile-menu-contact a strong { direction: ltr; text-align: right; color: var(--primary); }
.mobile-menu-contact p { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.mobile-socials { display: flex; gap: 8px; padding-top: 13px; }
.mobile-socials a { flex: 1; text-align: center; border: 1px solid var(--border); border-radius: 12px; padding: 9px; font-size: 12px; font-weight: 800; }

.hero {
  position: relative;
  isolation: isolate;
  padding: 88px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 25%),
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--primary) 17%, transparent), transparent 32%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg));
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .32; background-image: radial-gradient(var(--border-strong) .8px, transparent .8px); background-size: 24px 24px; mask-image: linear-gradient(to bottom, #000, transparent 86%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 76px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-size: 12px; font-weight: 900; letter-spacing: .01em; }
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: currentColor; }
.hero h1,
.page-hero h1 { margin: 11px 0 19px; color: var(--text-strong); font-size: clamp(39px, 5vw, 68px); line-height: 1.22; letter-spacing: -2.3px; }
.hero h1 span { color: var(--primary); }
.hero-copy > p { max-width: 670px; margin: 0; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; gap: 11px; margin: 30px 0 25px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 11px 20px; color: var(--muted); font-size: 12px; font-weight: 750; }
.trust-row span { display: inline-flex; align-items: center; gap: 5px; }
.hero-card { position: relative; overflow: hidden; padding: 31px; border-radius: 31px; color: #eefbf9; background: linear-gradient(145deg, #0a3934, #0b635a); box-shadow: 0 35px 90px rgba(4, 54, 49, .28); }
.hero-card::before { content: ""; position: absolute; width: 250px; height: 250px; top: -130px; left: -90px; border-radius: 50%; background: rgba(97, 233, 216, .12); }
.hero-card::after { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(255,255,255,.08); border-radius: 24px; pointer-events: none; }
.hero-card > * { position: relative; z-index: 1; }
.hero-card-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.hero-card-head span { color: #93ddd4; font-size: 12px; }
.hero-card-head strong { font-size: 15px; }
.credit-pill { margin: 25px 0; padding: 14px 17px; border: 1px solid rgba(129, 236, 222, .32); border-radius: 17px; background: rgba(255,255,255,.07); font-size: 19px; font-weight: 900; }
.mini-calc { display: grid; gap: 13px; padding: 20px; color: #172b28; background: #fff; border-radius: 20px; }
.mini-calc div { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mini-calc small { color: #6d7d79; }
.mini-result { padding-top: 13px; border-top: 1px dashed #d5e0de; }
.mini-result b { color: #08786d; }
.hero-card > a { display: inline-flex; margin-top: 18px; color: #b3eee6; font-size: 13px; font-weight: 800; }

.section { padding: 84px 0; }
.section-soft { background: var(--surface-soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 31px; }
.section-head h2,
.center-head h2 { margin: 4px 0 0; color: var(--text-strong); font-size: 34px; line-height: 1.4; }
.section-head > a { color: var(--primary); font-size: 13px; font-weight: 850; }
.center-head { max-width: 750px; margin: 0 auto 37px; text-align: center; }
.center-head .eyebrow::before { display: none; }
.cards-grid { display: grid; gap: 21px; }
.plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan-card,
.product-card,
.content-card,
.side-card,
.filters,
.calc-form,
.calc-result {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.plan-card { position: relative; overflow: hidden; padding: 28px; border-radius: var(--radius); transition: .25s; }
.plan-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.plan-card.large { padding: 34px; }
.plan-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 16px; color: var(--primary); background: var(--primary-soft); font-size: 22px; font-weight: 900; }
.badge { display: inline-flex; max-width: 100%; padding: 5px 11px; border-radius: 999px; color: #8a5a00; background: #fff1cf; font-size: 10px; font-weight: 850; }
html[data-theme="dark"] .badge { color: #ffd77b; background: rgba(244, 170, 36, .12); }
.plan-card h2,
.plan-card h3 { margin: 12px 0 6px; color: var(--text-strong); }
.plan-card p { margin: 4px 0 18px; color: var(--muted); font-size: 13px; }
.term-list { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.term-list span { padding: 5px 10px; border: 1px solid var(--border); border-radius: 9px; color: var(--muted); background: var(--surface-soft); font-size: 11px; }
.plan-card > a:not(.btn) { color: var(--primary); font-size: 12px; font-weight: 850; }
.plan-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 20px 0; }
.plan-facts div { padding: 12px; border-radius: 12px; background: var(--surface-soft); }
.plan-facts dt { color: var(--muted); font-size: 10px; }
.plan-facts dd { margin: 2px 0; font-size: 12px; font-weight: 850; }
.product-card { overflow: hidden; border-radius: var(--radius); transition: .25s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-image { aspect-ratio: 4/3; display: grid; place-items: center; padding: 22px; background: linear-gradient(145deg, var(--surface-soft), var(--surface-strong)); }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-body { padding: 20px; }
.product-body small { color: var(--primary); font-size: 10px; font-weight: 850; }
.product-body h3 { margin: 5px 0; color: var(--text-strong); font-size: 16px; }
.product-body p { min-height: 48px; margin: 4px 0 16px; color: var(--muted); font-size: 12px; }
.price-row { display: flex; align-items: end; justify-content: space-between; gap: 15px; padding-top: 14px; border-top: 1px solid var(--border); }
.price-row span,
.big-price span { display: block; color: var(--muted); font-size: 10px; }
.price-row strong { color: var(--text-strong); font-size: 14px; }
.circle-link { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--primary); }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 17px; }
.steps > div { position: relative; padding: 23px; border: 1px solid var(--border); border-radius: 19px; text-align: center; background: var(--surface); box-shadow: var(--shadow-sm); }
.steps b { width: 42px; height: 42px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 13px; color: var(--primary); background: var(--primary-soft); }
.steps h3 { margin: 3px; color: var(--text-strong); }
.steps p { margin: 5px 0; color: var(--muted); font-size: 12px; }

.site-footer { padding: 60px 0 0; color: #deefec; background: var(--footer); }
.footer-grid { display: grid; grid-template-columns: 1.7fr .8fr 1fr; gap: 55px; }
.footer-about p { max-width: 560px; color: var(--footer-muted); font-size: 13px; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-brand .brand-copy small { color: var(--footer-muted); }
.footer-links,
.footer-contact { display: flex; flex-direction: column; align-items: start; gap: 8px; }
.footer-links strong,
.footer-contact strong { margin-bottom: 8px; color: #fff; }
.footer-links a,
.footer-contact a,
.footer-contact span,
.footer-contact small { color: var(--footer-muted); font-size: 12px; }
.footer-contact a { direction: ltr; text-align: right; }
.footer-links a:hover,
.footer-contact a:hover { color: #fff; }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-socials a { padding: 7px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; color: #cfe5e1; font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); color: #76918c; font-size: 10px; }

.page-hero { padding: 72px 0; color: #eafffb; background: linear-gradient(135deg, #082f2a, #0b786e); }
.page-hero.compact { padding: 55px 0; }
.page-hero h1 { color: #fff; font-size: 48px; }
.page-hero p { max-width: 760px; margin: 0; color: #bce5df; }
.page-hero .eyebrow { color: #8ce4d8; }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; }
.hero-feature-list { display: grid; gap: 10px; }
.hero-feature-list span { position: relative; padding: 11px 42px 11px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.06); font-size: 12px; }
.hero-feature-list span::before { content: "✓"; position: absolute; right: 14px; color: #8ce4d8; font-weight: 900; }
.detail-grid { display: grid; grid-template-columns: 1.45fr .8fr; gap: 23px; }
.content-card,
.side-card { padding: 28px; border-radius: var(--radius); }
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 9px 0; border-bottom: 1px solid var(--border); }
.check-list li::before { content: "✓"; margin-left: 9px; color: var(--primary); font-weight: 900; }
.term-row,
.credit-row { display: flex; justify-content: space-between; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.term-row span { color: var(--muted); font-size: 11px; }
.shop-layout { display: grid; grid-template-columns: 245px 1fr; gap: 24px; }
.filters { position: sticky; top: 105px; height: max-content; padding: 20px; border-radius: 18px; }
.filters form,
.calc-form { display: grid; gap: 16px; }
label { display: grid; gap: 7px; color: var(--text); font-size: 12px; font-weight: 800; }
input,
select,
textarea {
  width: 100%;
  min-height: 47px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 13px;
  outline: none;
  color: var(--text);
  background: var(--bg-elevated);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
textarea { min-height: auto; resize: vertical; }
input::placeholder,
textarea::placeholder { color: var(--muted-2); }
input:focus,
select:focus,
textarea:focus { border-color: color-mix(in srgb, var(--primary) 70%, white); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 13%, transparent); }
input[aria-invalid="true"],
select[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 4px color-mix(in srgb, var(--danger) 12%, transparent); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: start; }
.product-gallery { padding: 40px; border-radius: 26px; background: var(--surface-strong); }
.product-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: contain; }
.product-info h1 { color: var(--text-strong); font-size: 38px; line-height: 1.38; }
.product-info > p { color: var(--muted); }
.big-price { margin: 20px 0; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
.big-price strong { color: var(--primary); font-size: 24px; }
.available-plans { display: grid; gap: 9px; margin: 12px 0 20px; }
.available-plans a { display: flex; justify-content: space-between; gap: 15px; padding: 13px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.available-plans span { color: var(--muted); font-size: 11px; }

.calculator-section { position: relative; overflow: hidden; }
.calculator-section::before { content: ""; position: absolute; width: 460px; height: 460px; left: -240px; top: 20px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 7%, transparent); filter: blur(10px); }
.calculator-shell { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 23px; align-items: stretch; }
.calc-form,
.calc-result { border-radius: 27px; padding: 29px; }
.calc-form { align-content: start; }
.calc-form-head { display: flex; align-items: center; gap: 13px; padding-bottom: 17px; border-bottom: 1px solid var(--border); }
.calc-form-head h2 { margin: 0; color: var(--text-strong); font-size: 20px; }
.calc-form-head p { margin: 2px 0 0; color: var(--muted); font-size: 11px; }
.calc-step { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 14px; color: var(--primary); background: var(--primary-soft); font-size: 17px; font-weight: 900; }
.field-wrap > span { color: var(--text-strong); }
.field-hint { min-height: 20px; color: var(--muted); font-size: 10px; font-weight: 500; }
.money-field { position: relative; }
.money-field .money-input { direction: ltr; text-align: left; padding-right: 76px; font-family: Vazirmatn, Tahoma, sans-serif; font-size: 16px; font-weight: 750; font-variant-numeric: tabular-nums; }
.money-field em { position: absolute; top: 50%; right: 13px; transform: translateY(-50%); color: var(--muted); font-size: 10px; font-style: normal; pointer-events: none; }
.quick-amount-box { padding: 13px; border: 1px dashed var(--border-strong); border-radius: 16px; background: var(--surface-soft); }
.quick-amount-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.quick-amount-head > span { color: var(--text-strong); font-size: 11px; font-weight: 850; }
.quick-amount-head small { color: var(--muted); font-size: 9px; }
.amount-chips { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.amount-chip { display: flex; align-items: baseline; justify-content: center; gap: 5px; min-height: 43px; padding: 8px; border: 1px solid var(--border); border-radius: 12px; color: var(--text); background: var(--surface); cursor: pointer; transition: .2s; }
.amount-chip strong { color: var(--primary); font-size: 15px; }
.amount-chip span { color: var(--muted); font-size: 9px; }
.amount-chip:hover,
.amount-chip.active { border-color: var(--primary); background: var(--primary-soft); }
.calc-submit { justify-content: space-between; padding-inline: 20px; }
.calc-submit b { font-size: 19px; }
.calc-result { min-height: 610px; color: #eefbf9; background: linear-gradient(145deg, #082f2b, #0b6259); border-color: rgba(80, 205, 189, .18); box-shadow: 0 26px 80px rgba(6, 59, 53, .24); }
.result-placeholder { height: 100%; min-height: 540px; display: grid; place-content: center; justify-items: center; padding: 35px; text-align: center; }
.result-placeholder-icon { width: 70px; height: 70px; display: grid; place-items: center; margin-bottom: 12px; border: 1px solid rgba(143, 235, 223, .25); border-radius: 24px; color: #8fe9df; background: rgba(255,255,255,.06); font-size: 28px; font-weight: 900; }
.result-placeholder h2 { margin: 8px 0; font-size: 21px; }
.result-placeholder p { max-width: 470px; margin: 0; color: #a9d0ca; font-size: 12px; }
.placeholder-lines { width: min(320px, 100%); display: grid; gap: 8px; margin-top: 28px; }
.placeholder-lines i { height: 9px; border-radius: 9px; background: rgba(255,255,255,.07); }
.placeholder-lines i:nth-child(2) { width: 80%; }
.placeholder-lines i:nth-child(3) { width: 55%; }
.result-success-badge { display: inline-flex; padding: 6px 11px; border: 1px solid rgba(130, 235, 222, .22); border-radius: 999px; color: #a7eee5; background: rgba(255,255,255,.06); font-size: 10px; font-weight: 800; }
.result-head { margin: 21px 0; padding-bottom: 21px; border-bottom: 1px solid rgba(255,255,255,.13); }
.result-head > span { display: block; color: #9fdcd4; font-size: 12px; }
.result-head strong { display: block; margin-top: 5px; font-size: clamp(30px, 4vw, 43px); line-height: 1.35; }
.result-head strong small { font-size: 13px; }
.result-head p { margin: 1px 0 0; color: #9fd0ca; font-size: 11px; }
.result-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
.result-grid div { padding: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: rgba(255,255,255,.055); }
.result-grid div.highlight { border-color: rgba(133, 238, 224, .25); background: rgba(52, 198, 181, .12); }
.result-grid span { display: block; color: #9dc8c2; font-size: 9px; }
.result-grid b { font-size: 12px; }
.formula-note { margin: 16px 0; color: #a2cbc5; font-size: 10px; }
.result-action { justify-content: space-between; margin-top: 7px; }
.form-error { padding: 11px 13px; border: 1px solid color-mix(in srgb, var(--danger) 25%, transparent); border-radius: 12px; color: var(--danger); background: var(--danger-soft); font-size: 11px; font-weight: 650; }
.form-success { padding: 11px 13px; border: 1px solid color-mix(in srgb, var(--success) 25%, transparent); border-radius: 12px; color: var(--success); background: var(--success-soft); font-size: 11px; font-weight: 650; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .header-phone span { display: none; }
  .hero-grid { gap: 45px; }
  .calculator-shell { grid-template-columns: 1fr 1.12fr; }
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-cta,
  .header-phone { display: none; }
  .header-actions { margin-inline-start: auto; }
  .mobile-menu-button { display: grid; }
  .hero-grid,
  .product-detail,
  .calculator-shell,
  .detail-grid,
  .page-hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 58px 0 64px; }
  .hero-card { max-width: 640px; }
  .plans-grid,
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .footer-grid { grid-template-columns: 1.35fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
  .calc-result { min-height: 500px; }
  .result-placeholder { min-height: 430px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 22px, var(--container)); }
  .site-header { height: 68px; }
  .brand-mark,
  .brand-logo { width: 41px; height: 41px; flex-basis: 41px; border-radius: 13px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { max-width: 150px; }
  .header-actions { gap: 6px; }
  .icon-button,
  .mobile-menu-button { width: 39px; height: 39px; }
  .hero h1,
  .page-hero h1 { font-size: 36px; letter-spacing: -1.3px; }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .trust-row { gap: 7px 13px; }
  .section { padding: 58px 0; }
  .section-head { align-items: start; }
  .section-head h2,
  .center-head h2 { font-size: 27px; }
  .section-head > a { font-size: 10px; }
  .plans-grid,
  .product-grid,
  .steps,
  .footer-grid,
  .plan-facts { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .product-info h1 { font-size: 29px; }
  .page-hero { padding: 50px 0; }
  .page-hero.compact { padding: 42px 0; }
  .hero-feature-list { display: none; }
  .calc-form,
  .calc-result { padding: 20px; border-radius: 21px; }
  .calculator-shell { gap: 12px; }
  .calc-result { min-height: 460px; }
  .result-placeholder { min-height: 390px; padding: 20px; }
  .result-grid { grid-template-columns: 1fr; }
  .amount-chips { grid-template-columns: 1fr 1fr; }
  .quick-amount-head { align-items: start; flex-direction: column; }
}

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

/* Home refinements */
.hero-visual { position: relative; min-width: 0; }
.hero-orbit { position: absolute; border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 420px; height: 420px; right: -45px; top: -42px; }
.hero-orbit-two { width: 300px; height: 300px; left: -45px; bottom: -65px; }
.floating-card { position: absolute; z-index: 3; display: grid; min-width: 176px; padding: 11px 14px; border: 1px solid var(--border); border-radius: 15px; background: color-mix(in srgb, var(--surface) 92%, transparent); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.floating-card span { color: var(--muted); font-size: 9px; }
.floating-card strong { color: var(--text-strong); font-size: 11px; }
.floating-card-top { top: -25px; left: -38px; }
.floating-card-bottom { right: -42px; bottom: -28px; }
.benefit-strip { position: relative; z-index: 3; margin-top: -27px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border: 1px solid var(--border); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.benefit-grid > div { display: flex; align-items: center; gap: 11px; padding: 17px 18px; }
.benefit-grid > div + div { border-right: 1px solid var(--border); }
.benefit-grid b { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 11px; color: var(--primary); background: var(--primary-soft); }
.benefit-grid span { display: grid; line-height: 1.55; }
.benefit-grid strong { color: var(--text-strong); font-size: 11px; }
.benefit-grid small { color: var(--muted); font-size: 9px; }
.plan-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan-card-top .plan-icon { margin-bottom: 0; }
.plan-mini-facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin: 15px 0; }
.plan-mini-facts span { display: grid; padding: 10px; border-radius: 12px; background: var(--surface-soft); }
.plan-mini-facts small { color: var(--muted); font-size: 9px; }
.plan-mini-facts b { color: var(--text-strong); font-size: 11px; }
.plan-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.plan-card-actions > a:first-child { color: var(--primary); font-size: 11px; font-weight: 850; }
.plan-calc-link { padding: 6px 11px; border: 1px solid var(--border); border-radius: 9px; color: var(--text); background: var(--surface-soft); font-size: 10px; font-weight: 800; }
.product-image { position: relative; }
.product-badge { position: absolute; z-index: 2; top: 13px; right: 13px; padding: 5px 9px; border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent); border-radius: 999px; color: var(--primary); background: color-mix(in srgb, var(--surface) 90%, transparent); font-size: 9px; font-weight: 850; backdrop-filter: blur(10px); }
.home-cta { padding: 0 0 78px; }
.home-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 34px; border-radius: 27px; color: #effcf9; background: linear-gradient(135deg, #082f2a, #0b786e); box-shadow: 0 25px 70px rgba(7, 64, 58, .25); }
.home-cta-inner span { color: #a9ddd6; font-size: 11px; }
.home-cta-inner h2 { margin: 6px 0 0; font-size: 26px; line-height: 1.5; }

@media (max-width: 900px) {
  .hero-visual { max-width: 650px; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .benefit-grid > div + div { border-right: 0; }
  .benefit-grid > div:nth-child(even) { border-right: 1px solid var(--border); }
  .benefit-grid > div:nth-child(n+3) { border-top: 1px solid var(--border); }
}

@media (max-width: 620px) {
  .hero-orbit, .floating-card { display: none; }
  .benefit-strip { margin-top: -18px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid > div:nth-child(even) { border-right: 0; }
  .benefit-grid > div + div { border-top: 1px solid var(--border); }
  .home-cta { padding-bottom: 55px; }
  .home-cta-inner { align-items: stretch; flex-direction: column; padding: 25px; }
  .home-cta-inner h2 { font-size: 21px; }
}

/* Complete commerce flow */
.notice-card { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.notice-card.danger { color: var(--danger); border-color: color-mix(in srgb,var(--danger) 35%,var(--border)); background: var(--danger-soft); }
.checkout-shell { max-width: 1020px; }
.checkout-form { border: 1px solid var(--border); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.checkout-progress { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding: 0; background: var(--border); }
.checkout-progress span { padding: 15px; text-align: center; color: var(--muted); background: var(--surface-soft); font-size: 12px; font-weight: 800; }
.checkout-progress span.active { color: var(--primary); background: var(--primary-soft); }
.checkout-step { display: none; padding: 30px; }
.checkout-step.active { display: block; animation: checkoutIn .25s ease; }
@keyframes checkoutIn { from { opacity:0; transform:translateY(8px) } to { opacity:1; transform:none } }
.section-title { margin-bottom: 24px; }
.section-title h2 { margin:0; color:var(--text-strong); font-size:25px; }
.section-title p { margin:4px 0 0; color:var(--muted); font-size:12px; }
.step-actions { display:flex; justify-content:flex-end; gap:10px; margin-top:24px; padding-top:20px; border-top:1px solid var(--border); }
.calc-preview { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:18px; }
.calc-preview div { display:grid; gap:3px; padding:15px; border-radius:15px; background:var(--surface-soft); }
.calc-preview span { color:var(--muted); font-size:10px; }
.calc-preview strong { color:var(--text-strong); font-size:15px; }
.checkout-review { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.checkout-review article { display:grid; gap:3px; padding:15px; border:1px solid var(--border); border-radius:15px; background:var(--surface-soft); }
.checkout-review span { color:var(--muted); font-size:10px; }
.checkout-review strong { color:var(--text-strong); }
.accept-row { display:flex; align-items:center; gap:9px; margin-top:20px; padding:14px; border:1px solid var(--border); border-radius:14px; background:var(--surface-soft); font-size:12px; }
.accept-row input { width:auto; min-height:auto; }
.checkout-success { max-width:760px; margin:auto; padding:38px; border:1px solid var(--border); border-radius:28px; text-align:center; background:var(--surface); box-shadow:var(--shadow); }
.success-icon { width:72px; height:72px; display:grid; place-items:center; margin:0 auto 14px; border-radius:50%; color:#fff; background:var(--success); font-size:32px; }
.order-code { display:inline-block; margin:12px 0; padding:10px 18px; border-radius:12px; direction:ltr; color:var(--primary); background:var(--primary-soft); font-size:20px; letter-spacing:1px; }
.success-summary { display:flex; justify-content:center; flex-wrap:wrap; gap:10px; color:var(--muted); }
.document-upload-zone { display:grid; gap:10px; margin:24px 0; padding:20px; border:1px dashed var(--border-strong); border-radius:18px; text-align:right; background:var(--surface-soft); }
.document-upload-zone h3,.document-upload-zone p { margin:0; }
.track-shell { display:grid; grid-template-columns:minmax(280px,.42fr) minmax(0,1fr); gap:20px; align-items:start; }
.track-form { display:grid; gap:14px; padding:22px; position:sticky; top:105px; }
.track-result { padding:24px; border:1px solid var(--border); border-radius:24px; background:var(--surface); box-shadow:var(--shadow-sm); }
.track-head { display:flex; justify-content:space-between; gap:12px; align-items:center; padding-bottom:17px; border-bottom:1px solid var(--border); }
.track-head div { display:grid; }
.track-head span { color:var(--muted); font-size:10px; }
.track-head strong { direction:ltr; color:var(--text-strong); }
.track-summary { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin:18px 0; }
.track-summary article { display:grid; gap:3px; padding:13px; border-radius:13px; background:var(--surface-soft); }
.track-summary span { color:var(--muted); font-size:10px; }
.track-section { margin-top:20px; }
.track-section h3 { color:var(--text-strong); }
.mini-record { display:flex; align-items:center; gap:12px; padding:11px 0; border-bottom:1px solid var(--border); }
.mini-record span { flex:1; }
.mini-record small { color:var(--muted); }
.product-meta { display:flex; flex-wrap:wrap; gap:7px; margin:-6px 0 12px; }
.product-meta span { padding:4px 9px; border-radius:999px; color:var(--muted); background:var(--surface-soft); font-size:10px; }
.stock-note { margin:12px 0; color:var(--success); font-size:12px; font-weight:800; }
.stock-note.low { color:var(--accent); }
.available-plans article { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:13px; border:1px solid var(--border); border-radius:14px; background:var(--surface-soft); }
.available-plans article + article { margin-top:8px; }
.available-plans article div { display:grid; }
.available-plans article span { color:var(--muted); font-size:10px; }
.product-actions { display:grid; gap:9px; margin-top:15px; }
.gallery-thumbs { display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:10px; }
.gallery-thumbs img { width:100%; aspect-ratio:1; object-fit:cover; border:1px solid var(--border); border-radius:12px; }
.content-card,.specs-card { padding:28px; border:1px solid var(--border); border-radius:24px; background:var(--surface); }
.specs-card { max-width:850px; }
.specs-card h2 { margin-top:0; }
.specs-card > div { display:flex; justify-content:space-between; gap:20px; padding:11px 0; border-bottom:1px solid var(--border); }
.specs-card span { color:var(--muted); }
.status.danger,.status.order-6,.status.order-11,.status.order-4 { color:var(--danger); background:var(--danger-soft); }
.status.order-8,.status.order-10 { color:var(--success); background:var(--success-soft); }

@media (max-width: 760px) {
  .checkout-progress span { padding:11px 5px; font-size:10px; }
  .checkout-step { padding:20px 16px; }
  .checkout-review,.calc-preview,.track-summary { grid-template-columns:1fr 1fr; }
  .track-shell { grid-template-columns:1fr; }
  .track-form { position:static; }
  .step-actions { flex-direction:column-reverse; }
  .step-actions .btn { width:100%; }
}
@media (max-width: 460px) {
  .checkout-review,.calc-preview,.track-summary { grid-template-columns:1fr; }
  .checkout-progress span { font-size:0; }
  .checkout-progress span::first-letter { font-size:13px; }
}

/* Content and legal pages */
.content-hero{padding:64px 0 42px;background:linear-gradient(135deg,color-mix(in srgb,var(--primary) 12%,var(--surface)),var(--surface));border-bottom:1px solid var(--line)}
.content-hero h1{margin:10px 0;font-size:clamp(2rem,5vw,3.4rem)}
.content-hero p{max-width:720px;color:var(--muted);line-height:1.9}
.content-page{padding:42px 0 78px}.legal-card{background:var(--surface);border:1px solid var(--line);border-radius:24px;padding:clamp(22px,4vw,42px);box-shadow:var(--shadow-sm)}
.rich-content{line-height:2}.rich-content h2,.rich-content h3{margin-top:1.4em}.rich-content a{color:var(--primary)}
.contact-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.contact-action{display:block;width:max-content;direction:ltr;margin:10px 0;color:var(--primary);font-size:1.15rem;font-weight:900;text-decoration:none}.contact-socials{display:flex;flex-wrap:wrap;gap:10px}.contact-socials a{padding:10px 14px;border:1px solid var(--line);border-radius:12px;text-decoration:none;color:var(--text);font-weight:800}
@media(max-width:760px){.content-hero{padding:42px 0 30px}.content-page{padding:24px 0 54px}.contact-grid{grid-template-columns:1fr}}

/* Product prices, professional gallery and zoom */
.product-body{display:flex;flex-direction:column}.card-price-block{display:grid;grid-template-columns:1fr auto;align-items:end;gap:3px 10px;margin-top:auto;padding-top:13px;border-top:1px solid var(--border)}.card-price-block>span{color:var(--muted);font-size:9px}.card-price-block del{grid-row:2;color:var(--muted);font-size:9px}.card-price-block strong{grid-column:2;grid-row:1/3;direction:ltr;color:var(--text-strong);font-size:15px;text-align:left}.card-plan-prices{display:grid;gap:6px;margin-top:9px;padding:9px;border:1px solid color-mix(in srgb,var(--primary) 22%,var(--border));border-radius:12px;background:var(--primary-soft)}.card-plan-prices>div{display:flex;align-items:center;justify-content:space-between;gap:8px}.card-plan-prices span{min-width:0;overflow:hidden;color:var(--muted);font-size:8.5px;text-overflow:ellipsis;white-space:nowrap}.card-plan-prices b{direction:ltr;flex:0 0 auto;color:var(--primary);font-size:10px}.card-plan-prices>small{color:var(--primary);font-size:8px;font-weight:800}.price-row-hint{color:var(--muted);font-size:9px}.product-badge.special{color:#fff;background:linear-gradient(135deg,var(--primary),color-mix(in srgb,var(--primary) 68%,var(--secondary)))}.empty-products{grid-column:1/-1;display:grid;place-items:center;gap:5px;min-height:250px;padding:30px;border:1px dashed var(--border-strong);border-radius:22px;color:var(--muted);background:var(--surface)}.empty-products strong{color:var(--text-strong);font-size:18px}
.professional-gallery{position:sticky;top:105px;padding:18px}.gallery-stage{position:relative;overflow:hidden;border-radius:20px;background:var(--surface)}.gallery-main-button{position:relative;display:block;width:100%;padding:0;overflow:hidden;border:0;border-radius:20px;background:transparent;cursor:zoom-in}.professional-gallery .gallery-main-button img{display:block;width:100%;aspect-ratio:4/3;object-fit:contain;transition:transform .18s ease}.gallery-zoom-hint{position:absolute;right:13px;bottom:13px;padding:7px 10px;border:1px solid rgba(255,255,255,.2);border-radius:999px;color:#fff;background:rgba(7,22,21,.68);backdrop-filter:blur(8px);font-size:9px;pointer-events:none}.professional-gallery .gallery-thumbs{display:flex;gap:9px;margin-top:12px;padding:2px;overflow-x:auto;scrollbar-width:thin}.gallery-thumb{flex:0 0 76px;width:76px;height:68px;padding:3px;overflow:hidden;border:1px solid var(--border);border-radius:13px;background:var(--surface);cursor:pointer;transition:.2s}.professional-gallery .gallery-thumb img{width:100%;height:100%;aspect-ratio:auto;object-fit:cover;border:0;border-radius:9px}.gallery-thumb:hover,.gallery-thumb.active{border-color:var(--primary);box-shadow:0 0 0 3px var(--primary-soft)}.product-lightbox{position:fixed;inset:0;width:100vw;max-width:none;height:100dvh;max-height:none;margin:0;padding:0;border:0;color:#fff;background:rgba(3,12,12,.96)}.product-lightbox::backdrop{background:rgba(3,12,12,.82);backdrop-filter:blur(7px)}.lightbox-head{position:absolute;z-index:4;top:0;right:0;left:0;display:flex;align-items:center;justify-content:space-between;padding:13px 16px;background:linear-gradient(rgba(0,0,0,.65),transparent)}.lightbox-head>span{direction:ltr;color:rgba(255,255,255,.78);font-size:11px}.lightbox-head>div{display:flex;gap:6px}.lightbox-head button{min-width:38px;height:38px;padding:0 9px;border:1px solid rgba(255,255,255,.18);border-radius:11px;color:#fff;background:rgba(255,255,255,.08);font:inherit;cursor:pointer}.lightbox-head button:hover{background:rgba(255,255,255,.16)}.lightbox-stage{position:absolute;inset:0;display:grid;place-items:center;overflow:hidden;touch-action:none;cursor:zoom-in}.lightbox-stage.zoomed{cursor:grab}.lightbox-stage.zoomed:active{cursor:grabbing}.lightbox-stage img{max-width:92vw;max-height:84dvh;object-fit:contain;user-select:none;will-change:transform;transition:transform .1s ease}.lightbox-stage.zoomed img{transition:none}.lightbox-nav{position:absolute;z-index:4;top:50%;width:48px;height:62px;transform:translateY(-50%);border:1px solid rgba(255,255,255,.16);border-radius:14px;color:#fff;background:rgba(255,255,255,.08);font-size:32px;cursor:pointer}.lightbox-nav:hover{background:rgba(255,255,255,.16)}.lightbox-nav.prev{right:18px}.lightbox-nav.next{left:18px}.product-lightbox>p{position:absolute;z-index:4;right:0;bottom:16px;left:0;margin:0;padding:0 80px;color:rgba(255,255,255,.72);font-size:11px;text-align:center}.lightbox-open{overflow:hidden}.detail-special-prices{display:grid;gap:7px;margin:14px 0;padding:13px;border:1px solid color-mix(in srgb,var(--primary) 25%,var(--border));border-radius:17px;background:var(--primary-soft)}.detail-special-head{display:grid;margin-bottom:2px}.detail-special-head strong{color:var(--text-strong);font-size:12px}.detail-special-head span{color:var(--muted);font-size:9px}.detail-special-prices>a{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:10px 11px;border:1px solid var(--border);border-radius:12px;color:var(--text);background:var(--surface)}.detail-special-prices>a>span{display:grid}.detail-special-prices small{color:var(--muted);font-size:9px}.detail-special-prices b{direction:ltr;color:var(--primary);font-size:13px}.detail-special-prices em{color:var(--primary);font-size:9px;font-style:normal;font-weight:800}.available-plans article.has-special-price{border-color:color-mix(in srgb,var(--primary) 30%,var(--border));background:var(--primary-soft)}.plan-price-inline{margin-top:4px;color:var(--primary);font-size:10px}.rich-product-description{line-height:2.1}.rich-product-description img{max-width:100%;height:auto;border-radius:16px}.rich-product-description h2,.rich-product-description h3,.rich-product-description h4{color:var(--text-strong)}.rich-product-description blockquote{padding:12px 16px;border-right:4px solid var(--primary);border-radius:12px;background:var(--primary-soft)}
@media(max-width:980px){.professional-gallery{position:static}.product-detail{gap:28px}.card-price-block strong{font-size:14px}}@media(max-width:760px){.professional-gallery{padding:10px}.gallery-zoom-hint{font-size:8px}.gallery-thumb{flex-basis:64px;width:64px;height:58px}.lightbox-nav{top:auto;bottom:52px;width:42px;height:46px}.lightbox-nav.prev{right:12px}.lightbox-nav.next{left:12px}.product-lightbox>p{bottom:18px;padding:0 62px}.lightbox-head{padding:9px}.lightbox-head button{min-width:34px;height:34px;font-size:10px}.card-plan-prices span{white-space:normal}}@media(max-width:520px){.card-price-block{grid-template-columns:1fr}.card-price-block strong{grid-column:1;grid-row:auto;text-align:right}.card-price-block del{grid-row:auto}.detail-special-prices>a{align-items:flex-start;flex-direction:column}.product-lightbox>p{display:none}}
