:root {
  --heroCardsTopOffset: 0px;
  --mobileStickyBuyBarHeight: 82px;
  --bg: #f4f7ff;
  --bg-elev: #ffffff;
  --card: #ffffff;
  --card-strong: #f3f7ff;
  --text: #1a2742;
  --muted: #62708c;
  --line: rgba(102, 124, 171, 0.26);
  --brand: #0ea5ff;
  --brand-deep: #1f74ff;
  --blue: #1a5cff;
  --blue-dark: #0a3ecc;
  --accent: #ff9a51;
  --success: #2dde9f;
  --danger: #ff6f6f;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(31, 65, 138, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(31, 116, 255, 0.12), transparent 40%),
    radial-gradient(circle at 88% 16%, rgba(255, 153, 90, 0.11), transparent 38%),
    var(--bg);
  min-height: 100vh;
  position: relative;
}

html,
body {
  overflow-x: hidden;
}

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% 58%, rgba(121, 158, 255, 0.2) 0%, rgba(121, 158, 255, 0) 55%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.045;
  background-image:
    radial-gradient(rgba(46, 75, 130, 0.22) 0.6px, transparent 0.7px),
    radial-gradient(rgba(46, 75, 130, 0.14) 0.5px, transparent 0.6px);
  background-size: 4px 4px, 6px 6px;
  background-position: 0 0, 2px 2px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 0.02em;
}

p {
  margin: 0;
  line-height: 1.6;
}

code {
  font-size: 0.9em;
  background: rgba(37, 208, 255, 0.16);
  border-radius: 0.4rem;
  padding: 0.1rem 0.35rem;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(78, 109, 176, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 109, 176, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 40%, black 45%, transparent 100%);
  opacity: 0.25;
}

.background-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.2;
  z-index: -2;
}

.orb-1 {
  width: 360px;
  height: 360px;
  background: #8cb2ff;
  top: -90px;
  left: -80px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: #ffd1b0;
  right: -100px;
  top: 120px;
}

.site-header,
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  font-weight: 800;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
}

.admin-link,
.back-link,
.table-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.header-contacts,
.footer-contacts {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-link {
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(133, 159, 223, 0.36);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.header-order-menu {
  position: relative;
  z-index: 30;
}

.nav-order-trigger {
  cursor: pointer;
  border: 1px solid transparent;
  background: linear-gradient(140deg, var(--blue), #2f80ff);
  color: #ffffff;
  padding: 0.76rem 1.08rem;
  box-shadow: 0 14px 28px rgba(26, 92, 255, 0.22);
}

.nav-order-trigger:hover {
  background: linear-gradient(140deg, #114ae8, var(--blue-dark));
  color: #ffffff;
}

.nav-order-trigger:focus-visible,
.order-menu-item:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

.order-menu-caret {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.header-order-menu.is-open .order-menu-caret {
  transform: rotate(180deg);
}

.order-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(270px, calc(100vw - 32px));
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(133, 159, 223, 0.24);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(17, 33, 74, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.header-order-menu.is-open .order-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.order-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  border: 0;
  border-radius: 14px;
  padding: 0.82rem 0.9rem;
  background: transparent;
  color: #20315c;
  text-decoration: none;
  text-align: left;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.order-menu-item:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  transform: translateX(2px);
}

.order-menu-item span[aria-hidden='true'] {
  font-size: 1rem;
  line-height: 1;
}

.subtle-link {
  color: var(--muted);
  border: 1px solid rgba(133, 159, 223, 0.3);
  background: rgba(255, 255, 255, 0.76);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.hero {
  margin: 2rem 0 2.1rem;
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.hero-showcase {
  max-width: none;
  margin: 1.2rem 0 1.4rem;
  padding: 1.4rem 1.6rem;
  border-radius: 32px;
  border: 1px solid rgba(128, 151, 206, 0.26);
  box-shadow: 0 24px 46px rgba(58, 87, 160, 0.14);
  background:
    linear-gradient(102deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 255, 0.9) 45%, rgba(240, 245, 255, 0.9) 100%),
    radial-gradient(circle at 16% 48%, rgba(104, 151, 255, 0.28), rgba(104, 151, 255, 0) 52%),
    radial-gradient(circle at 86% 20%, rgba(255, 186, 140, 0.22), rgba(255, 186, 140, 0) 40%);
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr);
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-showcase::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(240, 245, 255, 0.72), rgba(240, 245, 255, 0));
  pointer-events: none;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(39, 84, 182, 0.22));
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.72rem;
}

.hero-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-kicker-natural {
  text-transform: none;
  letter-spacing: 0.04em;
  color: #4b6091;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  color: #1a346d;
}

.hero p {
  color: var(--muted);
  max-width: 690px;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.trustbar {
  margin: 0 0 2.1rem;
  position: relative;
}

.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0.86rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.trustbar__item {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  justify-content: flex-start;
  border-radius: 18px;
  padding: 0.92rem 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.92));
  border: 1px solid rgba(125, 151, 214, 0.22);
  box-shadow: 0 10px 20px rgba(76, 109, 189, 0.12);
}

.trustbar__icon {
  font-size: 34px;
  filter: drop-shadow(0 8px 16px rgba(78, 145, 255, 0.28));
  flex-shrink: 0;
}

.trustbar__icon-svg {
  width: 38px;
  height: 38px;
  display: block;
}

.trustbar__meta {
  display: grid;
  gap: 0.18rem;
}

.trustbar__title {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a346d;
}

.trustbar__text {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: rgba(52, 73, 116, 0.92);
  line-height: 1.35;
}

.trustbar::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  height: 2px;
  background: radial-gradient(circle, rgba(111, 171, 255, 0.7), rgba(111, 171, 255, 0.18), rgba(111, 171, 255, 0));
}

.warning-banner,
.success-box,
.error-box {
  border-radius: 15px;
  padding: 0.95rem 1rem;
  margin: 1rem 0;
  font-weight: 600;
}

.warning-banner {
  color: #8f4b17;
  border: 1px solid rgba(255, 155, 69, 0.3);
  background: rgba(255, 230, 206, 0.85);
}

.success-box {
  color: #0f6d4a;
  border: 1px solid rgba(45, 222, 159, 0.3);
  background: rgba(221, 253, 239, 0.85);
}

.error-box {
  color: #9b2b2b;
  border: 1px solid rgba(255, 111, 111, 0.32);
  background: rgba(255, 228, 228, 0.9);
}

.toolbar {
  display: grid;
  gap: 0.78rem;
  margin: 2rem 0 1.3rem;
  position: relative;
  z-index: 4;
}

.toolbar-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toolbar-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(128, 150, 214, 0.55), rgba(128, 150, 214, 0.05));
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  position: relative;
  z-index: 5;
}

button,
.admin-link,
.filter-btn,
.outline-btn {
  border: none;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn {
  background: linear-gradient(180deg, rgba(232, 238, 255, 0.95), rgba(224, 232, 252, 0.95));
  color: var(--text);
  border: 1px solid rgba(132, 157, 222, 0.4);
  box-shadow: 0 4px 10px rgba(83, 112, 186, 0.1);
}

.filter-btn.active {
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  border-color: rgba(31, 116, 255, 0.48);
}

.filter-btn.is-empty:not(.active) {
  opacity: 0.78;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(276px, 1fr));
  gap: 1rem;
  padding-bottom: 2.5rem;
  position: relative;
  isolation: isolate;
}

.catalog::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(980px, 95%);
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(65, 138, 255, 0.12) 0%, rgba(65, 138, 255, 0.04) 36%, transparent 72%);
  filter: blur(18px);
  z-index: -1;
}

.catalog-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px dashed rgba(128, 153, 217, 0.46);
  background: rgba(248, 251, 255, 0.88);
  color: #3e5686;
  font-weight: 600;
}

.model-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(170deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(120, 146, 210, 0.24);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 116, 255, 0.42);
}

.image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  display: block;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-pill,
.promo-badge {
  position: absolute;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  backdrop-filter: blur(6px);
}

.category-pill {
  left: 0.72rem;
  top: 0.72rem;
  color: #22365b;
  background: rgba(248, 251, 255, 0.92);
  border: 1px solid rgba(135, 164, 224, 0.4);
}

.promo-badge {
  right: 0.72rem;
  top: 0.72rem;
  color: #8d3f0f;
  background: rgba(255, 226, 203, 0.95);
  border: 1px solid rgba(243, 170, 121, 0.6);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.72rem;
  padding: 1rem;
}

.product-title-link {
  color: var(--text);
  text-decoration: none;
}

.card-body h3 {
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.card-body p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
  overflow: hidden;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.card-footer {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
}

.price-box,
.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.old-price {
  font-size: 0.9rem;
  color: #b88888;
  text-decoration: line-through;
  text-decoration-thickness: 1.7px;
}

.price {
  font-size: 1.34rem;
  font-weight: 800;
  color: #183f80;
}

.card-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.order-btn,
.submit-order,
button {
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  text-decoration: none;
}

.order-btn,
.submit-order {
  border: 1px solid rgba(34, 123, 255, 0.35);
  box-shadow: 0 10px 22px rgba(20, 99, 255, 0.26), inset 0 1px 0 rgba(216, 238, 255, 0.45);
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.order-btn:hover,
.submit-order:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 0 0 1px rgba(61, 139, 255, 0.35), 0 16px 30px rgba(18, 95, 246, 0.3);
}

.outline-btn,
.danger-outline {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(113, 140, 206, 0.5);
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
}

.detail-order-btn {
  width: fit-content;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(29, 43, 76, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  padding: 1rem;
}

.modal[aria-hidden='false'] {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(470px, 100%);
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid rgba(120, 146, 210, 0.34);
  border-radius: 18px;
  padding: 1rem;
  position: relative;
  box-shadow: var(--shadow);
}

.close-modal {
  position: absolute;
  right: 0.68rem;
  top: 0.45rem;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
}

.modal-model {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.telegram-deeplink-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.disabled-link {
  opacity: 0.65;
  pointer-events: none;
}

.field-error {
  min-height: 1rem;
  color: #c85151;
  font-size: 0.78rem;
  line-height: 1.3;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea,
select {
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(37, 208, 255, 0.35);
  outline-offset: 1px;
}

textarea {
  resize: vertical;
}

#orderForm,
.stack-form,
.login-form {
  display: grid;
  gap: 0.75rem;
}

.order-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.order-status.error {
  color: #b52e2e;
}

.order-status.success {
  color: #168a5f;
}

.site-footer {
  border-top: 1px solid rgba(120, 146, 210, 0.28);
  margin-top: 1.8rem;
  background: rgba(243, 247, 255, 0.9);
}

.footer-inner {
  padding: 1rem 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.modal-open {
  overflow: hidden;
}

.admin-page {
  --bg: #070b18;
  --bg-elev: #111a33;
  --card: #111c37;
  --card-strong: #0f1730;
  --text: #ebf0ff;
  --muted: #9ba9cf;
  --line: rgba(148, 165, 217, 0.24);
  --shadow: 0 24px 54px rgba(0, 8, 28, 0.46);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, rgba(31, 116, 255, 0.24), transparent 33%),
    radial-gradient(circle at 84% 12%, rgba(37, 208, 255, 0.2), transparent 34%),
    #070b18;
}

.admin-page .outline-btn,
.admin-page .danger-outline {
  color: var(--text);
  background: transparent;
  border-color: rgba(143, 166, 233, 0.42);
}

.admin-page input,
.admin-page textarea,
.admin-page select {
  background: rgba(10, 17, 38, 0.9);
  color: var(--text);
}

.login-shell {
  width: min(450px, calc(100% - 2rem));
  margin: 8vh auto;
  background: linear-gradient(180deg, #16214a 0%, #111a38 100%);
  border: 1px solid rgba(133, 154, 219, 0.34);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.9rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 2rem;
}

.panel {
  background: linear-gradient(175deg, rgba(20, 30, 60, 0.95), rgba(11, 18, 37, 0.95));
  border: 1px solid rgba(130, 151, 212, 0.25);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
}

.full-width {
  grid-column: 1 / -1;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tiny-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.inline-category-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 120px auto;
  gap: 0.5rem;
  align-items: center;
}

.admin-table-wrap {
  overflow: auto;
}

.admin-products-toolbar {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.admin-products-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(180px, 1fr));
  gap: 0.7rem;
  align-items: end;
}

.filter-field {
  display: grid;
  gap: 0.35rem;
}

.filter-field > span {
  font-size: 0.8rem;
  color: var(--muted);
}

.admin-products-toolbar-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.admin-link-btn {
  min-height: 42px;
  padding: 0.55rem 0.9rem;
}

.admin-products-summary {
  margin-top: -0.1rem;
}

.admin-row-links {
  margin-top: 0.3rem;
}

.admin-row-links .admin-link {
  font-size: 0.8rem;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.62rem;
  border-bottom: 1px solid rgba(130, 151, 212, 0.2);
  text-align: left;
  font-size: 0.91rem;
}

.admin-checkbox-col {
  width: 44px;
  text-align: center;
}

.admin-checkbox-col input[type='checkbox'] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.admin-bulk-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-bulk-select-all {
  font-size: 0.88rem;
}

.admin-bulk-delete {
  min-height: 42px;
  padding: 0.55rem 0.9rem;
}

.admin-bulk-delete:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.admin-pagination {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.admin-pagination .outline-btn {
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.admin-pagination .outline-btn.is-active {
  background: rgba(46, 122, 255, 0.16);
  border-color: rgba(75, 139, 255, 0.55);
  color: #dfeeff;
  box-shadow: inset 0 0 0 1px rgba(83, 146, 255, 0.28);
}

.admin-pagination-gap {
  color: var(--muted);
  padding: 0 0.15rem;
}

.admin-edit-product-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 0.6rem;
}

.admin-edit-product-image {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(130, 151, 212, 0.28);
  background: rgba(10, 17, 38, 0.9);
}

.admin-edit-product-image img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  display: block;
}

.admin-video-preview {
  margin-top: 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(130, 151, 212, 0.25);
  background: rgba(9, 16, 35, 0.74);
  padding: 0.75rem;
}

.admin-video-preview video {
  width: 100%;
  max-width: 760px;
  border-radius: 12px;
  border: 1px solid rgba(130, 151, 212, 0.25);
  display: block;
  background: #000;
}

.admin-logo-preview {
  margin-top: 0.6rem;
  border-radius: 14px;
  border: 1px solid rgba(130, 151, 212, 0.25);
  background: rgba(9, 16, 35, 0.74);
  padding: 0.75rem;
}

.admin-logo-preview img {
  width: 100%;
  max-width: 280px;
  max-height: 140px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(130, 151, 212, 0.25);
  background: rgba(255, 255, 255, 0.95);
  display: block;
}

.admin-settings-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.product-layout {
  margin: 1rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.gallery-panel,
.detail-panel {
  border: 1px solid rgba(120, 146, 210, 0.26);
  border-radius: 20px;
  background: linear-gradient(175deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.gallery-main-wrap {
  display: grid;
  place-items: center;
  min-height: 340px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(123, 149, 210, 0.24);
  margin-bottom: 0.7rem;
  position: relative;
  background: radial-gradient(circle at 50% 35%, rgba(168, 196, 255, 0.26), rgba(246, 250, 255, 0.95));
}

.gallery-main {
  width: 100%;
  height: 100%;
  max-height: 68vh;
  object-fit: contain;
  display: block;
}

.thumb-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(94px, 1fr));
  gap: 0.5rem;
}

.thumb-btn {
  border: 1px solid rgba(122, 149, 211, 0.25);
  background: rgba(255, 255, 255, 0.92);
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}

.thumb-btn.active {
  border-color: rgba(31, 116, 255, 0.62);
  box-shadow: 0 0 0 2px rgba(64, 137, 255, 0.24);
}

.thumb-btn img {
  width: 100%;
  height: 74px;
  object-fit: cover;
  display: block;
}

.detail-panel {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.25rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 255, 0.95) 100%),
    radial-gradient(circle at 10% 8%, rgba(68, 132, 255, 0.08), rgba(68, 132, 255, 0) 52%);
}

.detail-panel h1 {
  margin: 0;
}

.detail-main-info {
  display: grid;
  gap: 0.9rem;
}

.detail-panel .hero-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #2f66d8;
}

.detail-panel .hero-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(41, 101, 223, 0.95), rgba(41, 101, 223, 0.3));
}

.detail-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.85rem, 2.35vw, 2.5rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: #132b59;
  margin-top: 0.15rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.product-price .price-new {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.85rem, 2.65vw, 2.6rem);
  font-weight: 800;
  color: #173f8d;
  line-height: 1;
  letter-spacing: -0.03em;
}

.product-price .price-old {
  font-size: 1.05rem;
  color: #8a95ab;
  text-decoration: line-through;
  text-decoration-thickness: 1.8px;
}

.price-discount-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(34, 123, 255, 0.95), rgba(23, 88, 214, 0.95));
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 20px rgba(22, 91, 220, 0.18);
}

.detail-panel .detail-order-btn {
  margin-top: 0.55rem;
  width: 100%;
  min-height: 58px;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(24, 97, 240, 0.22), inset 0 1px 0 rgba(217, 238, 255, 0.5);
}

.detail-panel-divider {
  height: 1px;
  margin: 0.25rem 0 0.1rem;
  background: linear-gradient(90deg, rgba(116, 146, 212, 0.05), rgba(116, 146, 212, 0.35), rgba(116, 146, 212, 0.05));
}

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.42rem 0.1rem;
  color: #243a68;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(41, 107, 230, 0.1), rgba(41, 107, 230, 0.04));
  border: 1px solid rgba(117, 149, 218, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.benefit-meta {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.benefit-title {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
  color: #182f5d;
}

.benefit-subtitle {
  display: block;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #6b7894;
}

.detail-description {
  color: var(--muted);
  white-space: pre-line;
  overflow-wrap: anywhere;
  line-height: 1.65;
}

.product-description {
  margin-top: 32px;
  padding-top: 1rem;
  border-top: 1px solid rgba(120, 146, 210, 0.22);
  display: grid;
  gap: 0.75rem;
}

.product-description h2 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: #1b2d53;
}

.product-description h3 {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: #21365f;
}

.product-description-list,
.product-features-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  line-height: 1.6;
}

.product-video {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(120, 146, 210, 0.24);
  background: #0b1020;
}

.product-video iframe {
  display: block;
  width: 100%;
}

.product-badge {
  top: 0.8rem;
  right: 0.8rem;
}

.mobile-product-summary,
.mobile-sticky-buybar {
  display: none;
}

.mobile-sticky-buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.55rem 0 calc(env(safe-area-inset-bottom) + 0.6rem);
  background: linear-gradient(180deg, rgba(244, 247, 255, 0) 0%, rgba(244, 247, 255, 0.95) 36%, rgba(244, 247, 255, 0.98) 100%);
  backdrop-filter: blur(10px);
}

.mobile-sticky-buybar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  padding-top: 0.5rem;
}

.mobile-sticky-price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
  min-width: 0;
}

.mobile-sticky-price-new {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  color: #173f8d;
}

.mobile-sticky-price-old {
  font-size: 0.84rem;
  color: #8a95ab;
  text-decoration: line-through;
  text-decoration-thickness: 1.6px;
}

.mobile-sticky-order-btn {
  min-height: 48px;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-products-filters {
    grid-template-columns: 1fr;
  }

  .admin-edit-product-images {
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
    gap: 0.5rem;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    padding: 1.1rem 1.1rem 1.25rem;
    gap: 0.5rem;
  }

  .hero-visual img {
    max-height: 250px;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .detail-panel .detail-order-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .detail-panel {
    padding: 1rem;
    border-radius: 16px;
    gap: 0.75rem;
  }

  .detail-title {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .product-price .price-new {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .product-price .price-old {
    font-size: 0.95rem;
  }

  .price-discount-chip {
    min-height: 30px;
    padding: 0.25rem 0.6rem;
    font-size: 0.84rem;
  }

  .detail-panel .detail-order-btn {
    min-height: 52px;
    border-radius: 14px;
    font-size: 0.96rem;
  }

  .benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .benefit-title {
    font-size: 0.96rem;
  }

  .benefit-subtitle {
    font-size: 0.84rem;
  }
}

@media (max-width: 900px) {
  .trustbar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header,
  .admin-header {
    padding: 1rem 0;
  }

  .hero {
    margin-top: 1rem;
  }

  .hero-showcase {
    border-radius: 22px;
  }

  .toolbar-head {
    gap: 0.6rem;
  }

  .catalog {
    grid-template-columns: 1fr;
  }

  .card-actions {
    flex-direction: column;
  }

  .outline-btn,
  .order-btn {
    width: 100%;
  }

  .modal-actions .outline-btn,
  .modal-actions .submit-order {
    width: 100%;
  }

  .header-contacts {
    justify-content: flex-end;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .inline-category-form {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 520px) {
  .trustbar__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trustbar__item {
    padding: 0.86rem 0.9rem;
  }

  .trustbar__icon-svg {
    width: 34px;
    height: 34px;
  }

  .gallery-main-wrap {
    min-height: 240px;
  }
}

/* ===== Home Redesign ===== */
body.home-page {
  --heroCardsTopOffset: 56px;
  --navHeight: 80px;
  --blue: #1a5cff;
  --blue-dark: #0a3ecc;
  --accent: #ff4d1a;
  --home-bg: #f5f7ff;
  --home-text: #0d0d1a;
  --home-muted: #6b7280;
  --home-border: rgba(26, 92, 255, 0.12);
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 5% 30%, rgba(137, 157, 255, 0.14), transparent 34%),
    radial-gradient(circle at 94% 18%, rgba(194, 210, 255, 0.18), transparent 35%),
    var(--home-bg);
  color: var(--home-text);
  overflow-x: hidden;
}

body.home-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.28;
}

.home-page .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.home-page * {
  min-width: 0;
}

.home-page .site-header,
.product-page .site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245, 247, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--home-border);
}

.home-page .nav-shell,
.product-page .nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.72rem 0;
}

.home-page .brand,
.product-page .brand {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  gap: 0.8rem;
  justify-self: start;
  color: #20315c;
}

.home-page .brand-mark,
.product-page .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.12rem;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  background: linear-gradient(140deg, var(--blue), #2f80ff);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(26, 92, 255, 0.24);
}

.home-page .header-nav,
.product-page .header-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: center;
}

.home-page .header-nav a,
.product-page .header-nav a {
  text-decoration: none;
  color: #4a5c8a;
  font-size: 0.84rem;
  font-weight: 700;
  border: 1px solid rgba(129, 154, 219, 0.3);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.34rem 0.66rem;
  border-radius: 999px;
}

.home-page .header-nav a:hover,
.product-page .header-nav a:hover {
  color: var(--blue);
  border-color: rgba(26, 92, 255, 0.35);
}

.home-page .header-contacts,
.product-page .header-contacts {
  gap: 0;
  justify-self: end;
}

.home-page .contact-link,
.product-page .contact-link {
  border: 1px solid rgba(129, 154, 219, 0.42);
  background: rgba(255, 255, 255, 0.86);
  color: #20315c;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.48rem 0.92rem;
  position: relative;
  z-index: 2;
}

.home-page .nav-order-trigger,
.product-page .nav-order-trigger {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #2f80ff);
  box-shadow: 0 16px 32px rgba(26, 92, 255, 0.24);
  min-height: 48px;
}

.product-page .nav-order-trigger:hover,
.product-page .nav-order-trigger:focus-visible {
  color: #ffffff;
}

.home-page .order-menu-panel {
  background: rgba(255, 255, 255, 0.97);
}

.home-page main {
  position: relative;
  z-index: 2;
}

.info-page .info-main {
  padding-top: 48px;
  padding-bottom: 56px;
}

.info-page h1 {
  margin: 0 0 18px;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  color: #0d1433;
  max-width: 900px;
}

.info-page .info-section {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(127, 150, 213, 0.28);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(27, 57, 124, 0.08);
}

.info-page .info-section h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #14224a;
}

.info-page .info-section h3 {
  margin: 18px 0 10px;
  font-size: 1.04rem;
  color: #13244f;
}

.info-page .info-section p {
  margin: 0 0 8px;
  color: #4f5e7f;
  line-height: 1.6;
}

.info-page .info-section p:last-child {
  margin-bottom: 0;
}

.info-page .contact-main-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.info-page .contact-summary-card,
.contact-map-card {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(127, 150, 213, 0.22);
  background: rgba(255, 255, 255, 0.84);
  padding: 1.1rem;
}

.info-page .contact-summary-card {
  padding: 0;
  overflow: hidden;
  font-style: normal;
}

.info-page .contact-summary-card h2 {
  margin: 0;
  padding: 1rem 1.2rem 0.85rem;
  border-bottom: 1px solid rgba(128, 150, 212, 0.22);
  font-size: 1.22rem;
}

.info-page .contact-summary-list {
  margin: 0;
  font-style: normal;
}

.info-page .contact-summary-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.86rem 1.2rem;
  border-bottom: 1px solid rgba(128, 150, 212, 0.2);
  color: #2a3a62;
  text-decoration: none;
  font-size: 1.02rem;
  line-height: 1.4;
  transition: background-color 0.2s ease;
}

.info-page .contact-summary-item:hover {
  background: rgba(41, 103, 228, 0.05);
}

.info-page .contact-summary-item:last-child {
  border-bottom: 0;
}

.info-page .contact-summary-item-static {
  cursor: default;
}

.info-page .contact-summary-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2a66e8, #1a57da);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(35, 91, 215, 0.24);
  flex-shrink: 0;
}

.info-page .contact-summary-item-static .contact-summary-icon {
  background: linear-gradient(145deg, #7c8fb3, #6e7f9f);
  box-shadow: none;
}

.contact-map-card h2 {
  margin: 0 0 0.7rem;
}

.contact-map-card iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 12px;
  background: #eef3ff;
  display: block;
  margin-top: 0.45rem;
}

.info-page .contact-seo-copy {
  margin-top: 22px;
}

.info-page .contact-seo-copy h2 {
  margin-bottom: 14px;
}

.info-page .contact-seo-copy h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.info-page .contact-seo-copy ul {
  margin: 0.25rem 0 0.1rem;
  padding-left: 1.1rem;
  color: #485a7f;
}

.info-page .contact-seo-copy li {
  margin-bottom: 0.35rem;
}

.info-page .contact-seo-extra h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.contact-faq {
  display: grid;
  gap: 0.7rem;
}

.contact-faq h3 {
  margin-bottom: 0.2rem;
}

.faq-item {
  border: 1px solid rgba(123, 146, 209, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  padding: 0.15rem 0.85rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #152a5a;
  padding: 0.7rem 1.5rem 0.7rem 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2968e1;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0 0 0.8rem;
  color: #52627f;
}

.home-page .modal {
  z-index: 120;
}

.home-page .hero {
  padding: 48px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  column-gap: 40px;
  align-items: center;
  min-height: clamp(480px, 65vh, 720px);
  position: relative;
}

@media (min-width: 1600px) {
  .home-page {
    --heroNextSectionPullUp: 150px;
  }

  .home-page .hero {
    padding-bottom: calc(40px + var(--heroNextSectionPullUp));
  }

  .home-page .hero-section + .home-scroll-video,
  .home-page .hero-section + .features {
    margin-top: calc(-1 * var(--heroNextSectionPullUp));
  }
}

.home-page .hero::after {
  content: '';
  position: absolute;
  right: -140px;
  top: 150px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(26, 92, 255, 0.12) 0%, rgba(26, 92, 255, 0.04) 48%, transparent 72%);
}

.home-page .hero-left {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  align-self: stretch;
  position: relative;
  z-index: 2;
  animation: homeFadeUp 0.75s ease both;
}

.home-page .hero-top {
  max-width: 620px;
  padding-top: 0;
  margin-top: 0;
}

.home-page .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(26, 92, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 10px;
}

.home-page .hero-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  border-radius: 999px;
  background: rgba(26, 92, 255, 0.3);
}

.home-page .hero h1,
.home-page .hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  color: rgba(13, 20, 51, 0.88);
  margin-bottom: 20px;
  max-width: 620px;
}

.home-page .hero h1 .hl {
  color: rgba(26, 92, 255, 0.9);
  white-space: nowrap;
}

.home-page .hero-sub {
  color: var(--home-muted);
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  line-height: 1.56;
  max-width: 620px;
  margin-bottom: 24px;
}

.home-page .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: stretch;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

.home-page .hero-stats {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin-top: 24px;
  padding-top: 0;
}

.home-page .hero-stats .stat {
  display: grid;
  gap: 4px;
}

.home-page .hero-stats .stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  letter-spacing: -0.03em;
  color: #111634;
}

.home-page .hero-stats .stat-label {
  font-size: 0.88rem;
  color: #5e6b87;
}

.home-page .hero-stats .stat-divider {
  width: 1px;
  background: rgba(95, 122, 191, 0.28);
}

.home-page .btn-primary,
.home-page .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 0.88rem 1.3rem;
  min-height: 52px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-page .btn-primary {
  background: linear-gradient(140deg, var(--blue), #2f80ff);
  color: #fff;
  box-shadow: 0 14px 32px rgba(26, 92, 255, 0.32);
}

.home-page .btn-primary:hover {
  background: linear-gradient(140deg, #134ce8, var(--blue-dark));
  transform: translateY(-2px);
}

.home-page .btn-secondary {
  color: #17264a;
  background: #fff;
  border: 1.5px solid rgba(126, 148, 209, 0.42);
}

.home-page .btn-secondary:hover {
  border-color: rgba(26, 92, 255, 0.55);
  color: var(--blue);
  transform: translateY(-2px);
}

.home-page .hero-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 206px;
  gap: 18px;
  align-content: start;
  align-self: center;
  justify-self: end;
  max-width: 590px;
  width: 100%;
  margin-top: var(--heroCardsTopOffset);
  position: relative;
  z-index: 2;
  animation: homeFadeUp 0.8s 0.15s ease both;
}

.home-page .hero-right .product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(126, 148, 209, 0.34);
  background: #dbe5ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.home-page .hero-right .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.home-page .hero-product-media,
.home-page .product-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dde4ff 0%, #bfd0ff 100%);
  position: absolute;
  inset: 0;
}

.home-page .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .hero-card-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: rgba(30, 90, 196, 0.42);
}

.home-page .hero-right .product-card .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  right: auto;
  z-index: 2;
  background: #ff4d1a;
  color: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  width: auto;
  height: auto;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1.1;
}

.home-page .hero-right .product-card .product-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(130, 154, 217, 0.32);
  z-index: 2;
}

.home-page .product-label-name {
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111d3e;
}

.home-page .product-label-price {
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 700;
  margin-top: 0.2rem;
}

.home-page .home-scroll-video {
  margin: 0 auto;
  padding-top: 0.35rem;
  padding-bottom: 1.8rem;
}

.home-page .home-scroll-video-shell {
  border-radius: 20px;
  border: 1px solid rgba(127, 150, 213, 0.3);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(31, 59, 123, 0.1);
  overflow: hidden;
}

.home-page .home-scroll-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  display: block;
  background: #0d1534;
  object-fit: cover;
}

.home-page .features,
.home-page .categories {
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 3.5rem;
  padding-left: 0;
  padding-right: 0;
}

.home-page .contact-section {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.home-page .section-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
}

.home-page .section-title {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f1737;
  margin-bottom: 2rem;
}

.home-page .contact-section {
  padding-top: 0.6rem;
  padding-bottom: 2.4rem;
}

.home-page .contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
  gap: 1rem;
}

.home-page .contact-card,
.home-page .map-card {
  border-radius: 18px;
  border: 1px solid rgba(127, 150, 213, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(31, 59, 123, 0.08);
}

.home-page .contact-card {
  padding: 0;
  overflow: hidden;
  font-style: normal;
  color: #22365f;
  line-height: 1.6;
}

.home-page .contact-card a {
  color: var(--blue);
  text-decoration: none;
}

.home-page .contact-brand {
  margin: 0;
  padding: 1.12rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(127, 150, 213, 0.26);
  font-size: 1.08rem;
  color: #13244f;
}

.home-page .contact-row {
  display: flex;
  align-items: center;
  gap: 0.88rem;
  padding: 0.86rem 1.4rem;
  border-bottom: 1px solid rgba(127, 150, 213, 0.2);
  transition: background-color 0.22s ease;
}

.home-page .contact-row:hover {
  background: rgba(42, 102, 232, 0.05);
}

.home-page .contact-row:last-child {
  border-bottom: 0;
}

.home-page .contact-row-static {
  color: #22365f;
}

.home-page .contact-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a66e8 0%, #1f56d2 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(39, 92, 214, 0.25);
  flex-shrink: 0;
}

.home-page .contact-icon svg {
  width: 21px;
  height: 21px;
}

.home-page .contact-icon-muted {
  background: linear-gradient(135deg, #7e8ead 0%, #6f809f 100%);
  box-shadow: none;
}

.home-page .contact-text {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.36rem;
  min-width: 0;
}

.home-page .contact-label {
  font-size: 0.95rem;
  color: #2f3e63;
  font-weight: 500;
  line-height: 1.3;
}

.home-page .contact-value {
  color: #245fe4;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.home-page .contact-row-static .contact-value {
  color: #1e2f52;
}

.home-page .map-card {
  overflow: hidden;
  min-height: 260px;
}

.home-page .map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.home-page .seo-copy {
  margin: 0 auto 2.4rem;
  padding: 1.35rem 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(127, 150, 213, 0.26);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 59, 123, 0.06);
}

.home-page .seo-copy h2 {
  margin: 0 0 0.85rem;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #102149;
}

.home-page .seo-copy h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.05rem;
  color: #13244f;
}

.home-page .seo-copy p {
  margin: 0 0 0.8rem;
  color: #4f5e7f;
  line-height: 1.7;
}

.home-page .seo-copy ul {
  margin: 0.15rem 0 0;
  padding-left: 1.05rem;
  color: #4f5e7f;
}

.home-page .seo-copy li {
  margin-bottom: 0.38rem;
  line-height: 1.6;
}

.home-page .seo-copy li:last-child,
.home-page .seo-copy p:last-child {
  margin-bottom: 0;
}

.home-page .faq-section {
  margin: 0 auto 2.4rem;
  padding: 1.2rem 1.3rem;
  border-radius: 20px;
  border: 1px solid rgba(127, 150, 213, 0.26);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 59, 123, 0.06);
  display: grid;
  gap: 0.7rem;
}

.home-page .faq-section h3 {
  margin: 0 0 0.1rem;
  font-size: 1.14rem;
  color: #102149;
}

.home-page .faq-section .faq-item {
  background: rgba(248, 251, 255, 0.9);
}

.home-page .features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-page .feature-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(127, 150, 213, 0.28);
  box-shadow: 0 12px 30px rgba(31, 59, 123, 0.1);
  padding: 1.35rem 1.2rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-page .feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 92, 255, 0.42);
  box-shadow: 0 18px 36px rgba(31, 59, 123, 0.16);
}

.home-page .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(26, 92, 255, 0.1);
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.home-page .feature-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 0.55rem;
}

.home-page .feature-desc {
  font-size: 0.94rem;
  color: var(--home-muted);
  line-height: 1.55;
}

.home-page .cats-row,
.home-page .filters {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1.7rem;
  position: relative;
  z-index: 5;
}

.home-page .cat-btn,
.home-page .filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(128, 151, 210, 0.36);
  background: #fff;
  color: #253760;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(38, 62, 130, 0.08);
  text-decoration: none;
}

.home-page .cat-btn:hover,
.home-page .filter-btn:hover,
.home-page .cat-btn.active,
.home-page .filter-btn.active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(140deg, var(--blue), #2f80ff);
}

.home-page .products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-page .model-card,
.home-page .shop-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(121, 146, 211, 0.26);
  box-shadow: 0 14px 34px rgba(27, 57, 124, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .model-card:hover,
.home-page .shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27, 57, 124, 0.18);
}

.home-page .image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-page .shop-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .shop-card-cat,
.home-page .shop-card-disc {
  position: absolute;
  top: 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 0.28rem 0.62rem;
  font-weight: 700;
}

.home-page .shop-card-cat {
  left: 0.75rem;
  color: #1f2f58;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(125, 149, 209, 0.4);
}

.home-page .shop-card-disc {
  right: 0.75rem;
  color: #fff;
  background: var(--accent);
}

.home-page .shop-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  padding: 0.95rem;
  flex: 1;
}

.home-page .product-title-link {
  color: #131e3f;
  text-decoration: none;
}

.home-page .shop-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-page .shop-card-desc {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-page .shop-card-price-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.home-page .price-new {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.home-page .price-old {
  font-size: 0.9rem;
  color: #8790a6;
  text-decoration: line-through;
}

.home-page .shop-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.65rem;
  border: 0;
  width: 100%;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-size: 0.94rem;
  font-weight: 800;
  background: linear-gradient(140deg, var(--blue), #2f80ff);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 92, 255, 0.24);
  text-decoration: none;
}

.home-page .shop-card-btn:hover {
  background: linear-gradient(140deg, #144eea, var(--blue-dark));
}

.home-page .catalog-empty {
  margin: 0 0 1rem;
  border: 1px dashed rgba(127, 149, 209, 0.42);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  padding: 0.76rem 0.9rem;
  color: #41557f;
  font-weight: 600;
}

.home-page .catalog-more-wrap {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.catalog-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(128, 151, 210, 0.36);
  background: rgba(255, 255, 255, 0.92);
  color: #1f3666;
  text-decoration: none;
  font-weight: 700;
  padding: 0.65rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.catalog-more-link:hover {
  color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(39, 71, 138, 0.14);
}

.home-page .cta-banner {
  margin: 0 auto 3.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  border-radius: 28px;
  padding: 3.1rem 3.5rem;
  background: linear-gradient(140deg, #1a5cff 0%, #2f7cff 100%);
  position: relative;
  overflow: hidden;
}

.home-page .cta-banner::before,
.home-page .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.home-page .cta-banner::before {
  width: 420px;
  height: 420px;
  top: -210px;
  right: -100px;
}

.home-page .cta-banner::after {
  width: 300px;
  height: 300px;
  bottom: -170px;
  right: 120px;
}

.home-page .cta-text,
.home-page .cta-actions {
  position: relative;
  z-index: 2;
}

.home-page .cta-text h2 {
  margin: 0 0 0.7rem;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 2.3vw, 2.6rem);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}

.home-page .cta-text p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.home-page .cta-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.home-page .btn-white,
.home-page .btn-ghost {
  border-radius: 14px;
  padding: 0.92rem 1.55rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.home-page .btn-white {
  background: #fff;
  color: #1a5cff;
  box-shadow: 0 10px 26px rgba(10, 24, 60, 0.2);
}

.home-page .btn-white:hover {
  transform: translateY(-2px);
}

.home-page .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.home-page .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.home-page .cta-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.home-page .btn-white .cta-btn-icon {
  background: rgba(26, 92, 255, 0.12);
  color: #1a5cff;
}

.home-page .btn-ghost .cta-btn-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-page .cta-btn-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.home-page .site-footer {
  background: rgba(246, 249, 255, 0.88);
  border-top: 1px solid rgba(127, 149, 209, 0.3);
  margin-top: 0;
}

.home-page .footer-inner {
  padding: 1.35rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-page .footer-brand {
  font-size: 0.96rem;
}

.home-page .footer-note {
  color: #5f6d8b;
  font-size: 0.92rem;
}

.catalog-page .catalog-main,
.blog-page .blog-main {
  padding-top: 1.2rem;
  padding-bottom: 2.4rem;
}

.catalog-page .catalog-title,
.blog-page .blog-title {
  margin: 0 0 0.9rem;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111b3e;
}

.catalog-page .cats-row {
  margin-bottom: 1.5rem;
}

.catalog-page .catalog-pagination {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.catalog-page .catalog-page-link {
  text-decoration: none;
  border: 1px solid rgba(128, 151, 210, 0.36);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  color: #1f3666;
  font-weight: 700;
}

.catalog-page .catalog-page-status {
  color: #596a8d;
  font-weight: 700;
  font-size: 0.92rem;
}

.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-page .blog-card,
.blog-page .blog-post-card {
  border-radius: 20px;
  border: 1px solid rgba(121, 146, 211, 0.26);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(27, 57, 124, 0.11);
  overflow: hidden;
}

.blog-page .blog-cover-link {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-page .blog-cover,
.blog-page .blog-post-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-page .blog-card-body,
.blog-page .blog-post-body {
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.blog-page .blog-card-body h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.12rem;
  line-height: 1.25;
}

.blog-page .blog-card-body h2 a {
  color: #15244d;
  text-decoration: none;
}

.blog-page .blog-date {
  color: #6a7896;
  font-size: 0.86rem;
  font-weight: 700;
}

.blog-page .blog-card-body p,
.blog-page .blog-excerpt {
  color: #4f6185;
  line-height: 1.65;
}

.blog-page .blog-post-content p {
  margin: 0;
  white-space: pre-line;
  color: #344a75;
  line-height: 1.75;
}

.blog-page .blog-post-content {
  display: grid;
  gap: 0.8rem;
}

.blog-page .blog-post-card {
  overflow: visible;
}

.blog-page .blog-post-cover {
  border-radius: 20px 20px 0 0;
}

.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.article h1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.article h2 {
  font-size: 24px;
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #15244d;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.article p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: #4a5568;
}

.article ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.article li {
  list-style: disc;
  margin-bottom: 8px;
  color: #475569;
  line-height: 1.65;
}

.article li::before {
  content: none;
}

.article section {
  margin-bottom: 32px;
}

.article section + section {
  margin-top: 32px;
}

.article section:last-child {
  margin-bottom: 0;
}

.article .note {
  background: #f1f5f9;
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: 16px;
  border-radius: 12px;
  margin: 20px 0;
  color: #334155;
  line-height: 1.6;
}

.blog-page .article .blog-date {
  margin-bottom: 8px;
}

.blog-page .article .blog-excerpt {
  margin: 0 0 20px;
  color: #2d3748;
  font-size: 18px;
  line-height: 1.7;
}

.blog-page .article .blog-post-content > section:first-child p:first-of-type {
  font-size: 18px;
  line-height: 1.7;
  color: #2d3748;
}

.blog-page .article .blog-post-content {
  display: block;
}

.blog-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 16px;
  color: #374151;
}

.blog-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #111827;
}

.blog-content p {
  margin-bottom: 16px;
}

.blog-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-content li {
  margin-bottom: 8px;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 18px;
  color: #374151;
}

.article-content h2,
.article-content h3 {
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.3;
  color: #111827;
}

.article-content h2 {
  font-size: 24px;
}

.article-content h3 {
  font-size: 20px;
}

.article-content p {
  margin-bottom: 14px;
}

.article-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  list-style: disc;
}

.article-content li {
  margin-bottom: 8px;
  padding-left: 0;
  list-style: disc;
}

.article-content li::before {
  content: none;
}

.article-content strong {
  font-weight: 700;
  color: #111827;
}

.article hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.admin-page .inline-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-page .admin-orders-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.admin-page .admin-orders-toolbar .filter-field {
  min-width: 220px;
}

.admin-page .order-status-wrap {
  display: grid;
  gap: 0.42rem;
  min-width: 132px;
}

.admin-page .order-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.28rem 0.64rem;
  width: max-content;
}

.admin-page .order-status-badge.status-new {
  background: rgba(148, 163, 184, 0.2);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.admin-page .order-status-badge.status-in_progress {
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
  border: 1px solid rgba(59, 130, 246, 0.36);
}

.admin-page .order-status-badge.status-done {
  background: rgba(22, 163, 74, 0.2);
  color: #bbf7d0;
  border: 1px solid rgba(22, 163, 74, 0.36);
}

.admin-page .order-status-badge.status-cancelled {
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
  border: 1px solid rgba(239, 68, 68, 0.36);
}

.admin-page .order-status-select {
  min-height: 36px;
  padding: 0.38rem 0.58rem;
}

.admin-page .login-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.28rem 0.64rem;
  width: max-content;
}

.admin-page .login-status-badge.is-success {
  background: rgba(22, 163, 74, 0.2);
  color: #bbf7d0;
  border: 1px solid rgba(22, 163, 74, 0.36);
}

.admin-page .login-status-badge.is-failed {
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
  border: 1px solid rgba(239, 68, 68, 0.36);
}

.admin-page .ip-cell {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.82rem;
}

.admin-page .ua-cell {
  min-width: 260px;
  max-width: 480px;
  white-space: normal;
  word-break: break-word;
  color: #9fb0da;
  font-size: 0.82rem;
  line-height: 1.35;
}

.home-page .reviews-section {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.8rem;
  padding-bottom: 2.1rem;
}

.home-page .reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-page .reviews-header .section-title {
  margin-bottom: 0;
}

.home-page .reviews-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.home-page .reviews-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(120, 145, 210, 0.38);
  background: rgba(255, 255, 255, 0.92);
  color: #1f3573;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home-page .reviews-arrow:hover:not(:disabled) {
  border-color: rgba(40, 98, 228, 0.55);
  color: var(--blue);
  transform: translateY(-1px);
}

.home-page .reviews-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.home-page .reviews-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, calc((100% - 2rem) / 3));
  gap: 1rem;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.home-page .reviews-carousel::-webkit-scrollbar {
  display: none;
}

.home-page .review-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(125, 145, 198, 0.26);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(19, 35, 83, 0.08);
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
  scroll-snap-align: start;
  min-height: 100%;
}

.home-page .review-rating {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #f59e0b;
}

.home-page .review-text {
  margin: 0;
  color: #34405f;
  line-height: 1.5;
  font-size: 0.95rem;
}

.home-page .review-meta {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.home-page .review-photo,
.home-page .review-avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.home-page .review-photo {
  object-fit: cover;
  border: 1px solid rgba(100, 123, 186, 0.35);
}

.home-page .review-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 96, 227, 0.14);
  color: #2246ab;
  font-weight: 700;
}

.home-page .review-author {
  color: #19274e;
  font-size: 0.94rem;
}

.admin-page .checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
}

.admin-page .checkbox-inline input[type='checkbox'] {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
}

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1280px) {
  .home-page .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .product-page .container {
    padding: 0 20px;
  }

  .home-page .container {
    padding: 0 20px;
  }

  .home-page .nav-shell {
    padding: 0.32rem 20px;
  }

  body.home-page {
    --navHeight: 74px;
    --heroCardsTopOffset: 20px;
  }

  .home-page .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 0 12px;
    min-height: auto;
  }

  .home-page .hero-left {
    padding: 0 20px;
  }

  .home-page .hero-right {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
    gap: 14px;
    margin-top: 12px;
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
  }

  .home-page .hero-cta {
    flex-wrap: wrap;
  }

  .home-page .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-page .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article {
    padding: 32px 18px;
  }

  .article h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .article h2 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
  }

  .info-page .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-scroll-video {
    padding-top: 0.2rem;
    padding-bottom: 1.2rem;
  }

  .home-page .home-scroll-video-shell {
    border-radius: 16px;
  }

  .home-page .home-scroll-video-player {
    max-height: 460px;
  }

  .contact-map-card iframe {
    height: 240px;
  }

  .home-page .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-page .reviews-carousel {
    grid-auto-columns: minmax(280px, calc((100% - 1rem) / 2));
  }

  .home-page .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.7rem 1.5rem;
    gap: 1rem;
    margin-bottom: 2.4rem;
  }

  .home-page .cta-actions {
    width: 100%;
  }

  .home-page .contact-card,
  .home-page .map-card {
    border-radius: 16px;
  }
}

@media (max-width: 900px) {
  .home-page .hero-container,
  .home-page .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 32px 0 40px;
  }

  .home-page .hero-products,
  .home-page .hero-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-auto-rows: 150px;
    gap: 14px;
    overflow: visible;
    scroll-snap-type: none;
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    justify-self: stretch;
  }

  .home-page .hero-right .product-card {
    height: 150px;
    scroll-snap-align: none;
  }
}

@media (max-width: 768px) {
  .product-page .container {
    padding: 0 16px;
  }

  .product-page {
    padding-bottom: calc(var(--mobileStickyBuyBarHeight) + env(safe-area-inset-bottom) + 1rem);
  }

  .product-page .site-header {
    padding-top: calc(0.6rem + env(safe-area-inset-top));
    padding-bottom: 0.7rem;
    align-items: center;
    gap: 0.55rem;
  }

  .product-page .header-contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    flex-wrap: nowrap;
  }

  .product-page .header-contacts .contact-link {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 999px;
    justify-content: center;
  }

  .product-page .header-contacts .contact-link span:last-child {
    display: none;
  }

  .product-page .product-layout {
    margin: 0.7rem 0 2rem;
    gap: 0.8rem;
  }

  .product-page .gallery-panel {
    padding: 0.85rem;
  }

  .product-page .gallery-main-wrap {
    margin-bottom: 0.65rem;
  }

  .product-page .mobile-product-summary {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.8rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(120, 146, 210, 0.2);
  }

  .product-page .detail-title-mobile {
    margin: 0;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.12;
  }

  .product-page .mobile-product-summary .product-price {
    margin-top: 0;
  }

  .product-page .mobile-product-summary .detail-order-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    margin-top: 0.15rem;
  }

  .product-page .detail-panel {
    padding: 0.95rem 0.95rem 1rem;
  }

  .product-page .detail-main-info {
    display: none;
  }

  .product-page .detail-panel-divider {
    display: none;
  }

  .product-page .product-benefits {
    margin-top: 0;
  }

  .product-page .mobile-sticky-buybar {
    display: block;
  }

  .product-page .modal {
    z-index: 120;
  }

  .admin-page .admin-orders-toolbar {
    align-items: stretch;
  }

  .admin-page .admin-orders-toolbar .filter-field {
    width: 100%;
    min-width: 0;
  }

  .admin-page .order-status-wrap {
    min-width: 116px;
  }

  .home-page .container {
    padding: 0 16px;
  }

  .home-page .hero {
    padding: 24px 0 12px;
  }

  .home-page .hero-left {
    padding: 0 20px;
  }

  body.home-page {
    --navHeight: 68px;
    --heroCardsTopOffset: 0px;
  }

.home-page .site-header,
  .product-page .site-header {
    backdrop-filter: blur(10px);
  }

  .home-page .nav-shell,
  .product-page .nav-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'brand contacts'
      'nav nav';
    align-items: center;
    gap: 0.35rem 0.5rem;
    padding: 0.32rem 20px;
  }

  .home-page .brand,
  .product-page .brand {
    grid-area: brand;
    font-size: 0.88rem;
    gap: 0.45rem;
  }

  .home-page .brand-mark,
  .product-page .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.86rem;
  }

  .home-page .header-nav,
  .product-page .header-nav {
    grid-area: nav;
    width: 100%;
    justify-content: flex-start;
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .home-page .header-nav::-webkit-scrollbar,
  .product-page .header-nav::-webkit-scrollbar {
    display: none;
  }

  .home-page .header-nav a,
  .product-page .header-nav a {
    font-size: 0.8rem;
    padding: 0.34rem 0.62rem;
    white-space: nowrap;
  }

  .home-page .header-contacts,
  .product-page .header-contacts {
    grid-area: contacts;
    justify-content: flex-end;
    width: auto;
    gap: 0;
  }

  .home-page .contact-link,
  .product-page .contact-link {
    min-height: 44px;
    padding: 0.42rem 0.78rem;
    font-size: 0.82rem;
  }

  .home-page .header-order-menu,
  .product-page .header-order-menu {
    min-width: 0;
  }

  .home-page .nav-order-trigger,
  .product-page .nav-order-trigger {
    padding: 0.5rem 0.88rem;
    min-height: 44px;
  }

  .home-page .nav-order-trigger span:nth-child(2),
  .product-page .nav-order-trigger span:nth-child(2) {
    white-space: nowrap;
  }

  .home-page .order-menu-panel,
  .product-page .order-menu-panel {
    right: 0;
    width: min(280px, calc(100vw - 32px));
  }

  .home-page .hero {
    padding: 40px 0;
    gap: 14px;
    min-height: auto;
    align-content: start;
  }

  .home-page .hero-top {
    max-width: 100%;
  }

  .home-page .hero-tag {
    margin-bottom: 12px;
    font-size: 0.82rem;
    padding: 0;
  }

  .home-page .hero h1 {
    font-size: clamp(28px, 7.2vw, 36px);
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    max-width: 100%;
  }

  .home-page .hero h1 .hl {
    white-space: normal;
  }

  .home-page .hero-sub {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .home-page .hero-cta {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 0;
  }

  .home-page .btn-primary,
  .home-page .btn-secondary {
    width: 100%;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.3;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
  }

  .home-page .hero-cta .btn-primary svg,
  .home-page .hero-cta .btn-secondary svg {
    display: none;
  }

  .home-page .hero-stats {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: center;
  }

  .home-page .hero-stats .stat-divider {
    display: none;
  }

  .home-page .hero-stats .stat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    background: transparent;
    border: 1px solid rgba(127, 149, 209, 0.2);
    box-shadow: none;
    border-radius: 999px;
    padding: 6px 10px;
    text-align: center;
  }

  .home-page .hero-stats .stat-num {
    font-size: 0.96rem;
    line-height: 1;
    white-space: nowrap;
  }

  .home-page .hero-stats .stat-label {
    font-size: 0.72rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .home-page .hero-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-auto-rows: 150px;
    gap: 14px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    margin-top: 0;
    align-self: start;
    justify-self: stretch;
  }

  .hero-buttons button,
  .hero-buttons a {
    width: 100%;
  }

  .home-page .hero-right .product-card {
    height: 150px;
    scroll-snap-align: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .home-page .reviews-carousel {
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .home-page .reviews-carousel .review-card {
    scroll-snap-align: start;
  }

  .home-page .reviews-nav {
    display: none;
  }

  .home-page .hero-right .product-card .product-label {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
  }

  .home-page .home-scroll-video {
    padding-top: 0.1rem;
    padding-bottom: 1rem;
  }

  .home-page .home-scroll-video-shell {
    border-radius: 14px;
  }

  .home-page .home-scroll-video-player {
    max-height: 340px;
    aspect-ratio: 16 / 10;
  }

  .home-page .product-label-name {
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .home-page .product-label-price {
    font-size: 0.78rem;
  }

  .home-page .features,
  .home-page .categories,
  .home-page .contact-section {
    padding-top: 1rem;
    padding-bottom: 1.6rem;
    margin-top: 0;
    margin-bottom: 0;
  }

  .home-page .section-title {
    font-size: clamp(1.35rem, 7vw, 2rem);
    margin-bottom: 1.1rem;
  }

  .home-page .features-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .home-page .feature-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .home-page .feature-title {
    font-size: 0.95rem;
  }

  .home-page .feature-desc {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .home-page .cats-row,
  .home-page .filters {
    gap: 0.45rem;
    margin-bottom: 1rem;
  }

  .home-page .cat-btn,
  .home-page .filter-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.84rem;
  }

  .home-page .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-page .image-wrap {
    height: 150px;
    aspect-ratio: auto;
  }

  .home-page .shop-card,
  .home-page .model-card {
    border-radius: 16px;
  }

  .home-page .shop-card-cat,
  .home-page .shop-card-disc {
    top: 0.5rem;
    font-size: 0.68rem;
    padding: 0.22rem 0.45rem;
  }

  .home-page .shop-card-cat {
    left: 0.5rem;
    max-width: calc(100% - 72px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-page .shop-card-disc {
    right: 0.5rem;
  }

  .home-page .shop-card-body {
    padding: 0.7rem;
    gap: 0.42rem;
  }

  .home-page .shop-card-name {
    font-size: 0.9rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
  }

  .home-page .shop-card-desc {
    font-size: 0.8rem;
    line-height: 1.35;
    -webkit-line-clamp: 5;
  }

  .home-page .price-new {
    font-size: 0.84rem;
    line-height: 1.2;
  }

  .home-page .price-old {
    font-size: 0.72rem;
  }

  .home-page .shop-card-btn {
    margin-top: 0.35rem;
    min-height: 44px;
    padding: 0.55rem 0.55rem;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .home-page .cta-banner {
    border-radius: 20px;
    padding: 24px;
    margin-top: 0;
    margin-bottom: 1.6rem;
  }

  .home-page .cta-text h2 {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
    margin-bottom: 0.45rem;
  }

  .home-page .cta-text p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .home-page .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .home-page .btn-white,
  .home-page .btn-ghost {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
  }

  .home-page .cta-btn-icon {
    width: 24px;
    height: 24px;
  }

  .home-page .cta-btn-icon svg {
    width: 14px;
    height: 14px;
  }

  .home-page .contact-card {
    padding: 0;
  }

  .home-page .contact-row {
    gap: 0.64rem;
    padding: 0.72rem 0.95rem;
    min-height: 44px;
  }

  .home-page .contact-icon {
    width: 38px;
    height: 38px;
  }

  .home-page .contact-label {
    font-size: 0.9rem;
  }

  .home-page .contact-value {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .home-page .map-card,
  .home-page .map-card iframe {
    min-height: 240px;
  }

  .home-page .seo-copy,
  .home-page .faq-section {
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1.6rem;
  }

  .home-page .seo-copy h2 {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
  }

  .home-page .seo-copy h3 {
    font-size: 0.95rem;
    margin-top: 0.85rem;
    margin-bottom: 0.45rem;
  }

  .home-page .seo-copy p,
  .home-page .seo-copy li {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .home-page .faq-section h3 {
    font-size: 1rem;
  }

  .blog-page .blog-grid {
    grid-template-columns: 1fr;
  }

  .article {
    padding: 24px 16px;
  }

  .article h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .article h2 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
  }

  .info-page .contact-main-grid {
    gap: 0.8rem;
  }

  .info-page .contact-summary-card h2 {
    padding: 0.85rem 0.95rem 0.75rem;
    font-size: 1.08rem;
  }

  .info-page .contact-summary-item {
    padding: 0.72rem 0.95rem;
    gap: 0.62rem;
    font-size: 0.96rem;
  }

  .info-page .contact-summary-icon {
    width: 32px;
    height: 32px;
    font-size: 0.92rem;
  }

  .info-page .contact-summary-card,
  .contact-map-card {
    padding: 0.85rem;
  }

  .info-page .contact-summary-card {
    padding: 0;
  }

  .contact-map-card iframe {
    height: 220px;
  }

  .faq-item summary {
    font-size: 0.95rem;
    line-height: 1.35;
    padding-right: 1.35rem;
  }

  .article p,
  .blog-page .article .blog-excerpt {
    font-size: 15px;
    line-height: 1.65;
  }

  .article section {
    margin-bottom: 24px;
  }

  .article .note {
    padding: 14px;
    margin: 16px 0;
  }

  .home-page .footer-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .home-page .footer-note {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .home-page .footer-inner .contact-link {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}

@media (max-width: 768px) {
  .header-order-menu {
    position: static;
  }

  .header-order-menu.is-open .order-menu-panel {
    transform: translateY(0);
  }

  .order-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: 16px;
    width: auto;
    border-radius: 18px;
    padding: 10px;
  }

  .order-menu-item {
    min-height: 48px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .home-page .header-nav {
    gap: 0.35rem;
  }

  .home-page .header-nav a {
    font-size: 0.76rem;
    padding: 0.3rem 0.55rem;
  }

  .home-page .seo-copy,
  .home-page .faq-section {
    padding: 0.9rem;
    margin-bottom: 1.3rem;
  }

  .home-page .seo-copy h2 {
    font-size: 1.05rem;
  }

  .home-page .seo-copy h3 {
    font-size: 0.9rem;
  }

  .home-page .faq-section h3 {
    font-size: 0.95rem;
  }

  .home-page .nav-tg span {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-page .hero h1 {
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.08;
  }

  .home-page .home-scroll-video-player {
    max-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .home-page .btn-primary,
  .home-page .btn-secondary {
    font-size: 13px;
    padding: 12px 14px;
  }

  .home-page .hero-right {
    grid-auto-columns: 86%;
  }

  .home-page .reviews-carousel {
    grid-auto-columns: 92%;
  }

  .home-page .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .hero-stats .stat {
    padding: 10px 4px;
  }

  .home-page .hero-stats .stat-num {
    font-size: 0.98rem;
  }

  .home-page .hero-stats .stat-label {
    font-size: 0.72rem;
  }

  .home-page .products-grid {
    gap: 10px;
  }

  .home-page .image-wrap {
    height: 138px;
  }
}

@media (max-width: 359px) {
  .home-page .products-grid {
    grid-template-columns: 1fr;
  }

  .home-page .image-wrap {
    height: 170px;
  }
}

.notfound-page .notfound-main {
  min-height: calc(100vh - var(--navHeight) - 90px);
  display: grid;
  align-items: center;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.notfound-page .notfound-card {
  max-width: 760px;
  border-radius: 24px;
  border: 1px solid rgba(126, 148, 209, 0.32);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(31, 59, 123, 0.12);
  padding: clamp(1.3rem, 2.2vw, 2rem);
}

.notfound-page .notfound-text {
  margin: 0 0 1.35rem;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.55;
  max-width: 62ch;
}

.notfound-page .notfound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
