


main > .l-article > section:not(.l-hero) { background: var(--bg-secondary); }
main > .l-article > section:nth-child(odd):not(.l-hero) { background: var(--bg-primary); }


main > .l-article > .l-hero,
.l-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  color: #ffffff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image:
    radial-gradient(120% 95% at 90% 6%, rgba(234, 88, 12, 0.55) 0%, rgba(234, 88, 12, 0) 58%),
    radial-gradient(85% 75% at 6% 10%, rgba(191, 230, 234, 0.42) 0%, rgba(191, 230, 234, 0) 62%),
    linear-gradient(158deg, #0b3f49 0%, #0f6f7d 40%, #2fa3ad 66%, #7fc7cd 82%, #ffedd5 100%);
}

.l-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 32, 38, 0.88) 0%, rgba(6, 32, 38, 0.35) 55%, rgba(6, 32, 38, 0) 86%);
}

.hero-frost {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.085) 0 2px, rgba(255, 255, 255, 0) 2px 26px),
    repeating-linear-gradient(-64deg, rgba(255, 255, 255, 0.05) 0 1px, rgba(255, 255, 255, 0) 1px 38px);
}

.hero-halo {
  position: absolute;
  top: 8%;
  right: 4%;
  width: clamp(200px, 34vw, 420px);
  height: clamp(200px, 34vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 38%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.06) 52%, rgba(255, 255, 255, 0) 70%);
}

.hero-shard {
  position: absolute;
  top: 16%;
  right: 12%;
  width: clamp(120px, 22vw, 280px);
  height: clamp(138px, 25vw, 322px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.55) 0%, rgba(191, 230, 234, 0.28) 45%, rgba(15, 111, 125, 0.05) 100%);
  animation: shard-drift 11s ease-in-out infinite alternate;
}

.hero-shard-small {
  position: absolute;
  top: 46%;
  right: 30%;
  width: clamp(48px, 8vw, 104px);
  height: clamp(55px, 9vw, 120px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
  animation: shard-drift 8s ease-in-out infinite alternate-reverse;
}

@keyframes shard-drift {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-18px) rotate(7deg); }
}

.hero-inner {
  position: relative;
  padding: 32px 16px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chill-soft);
  border: 1px solid rgba(191, 230, 234, 0.5);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  margin-bottom: 18px;
}

.hero-title {
  color: #ffffff;
  max-width: 780px;
  margin-bottom: 14px;
}

.hero-lead {
  font-size: var(--fluid-lead);
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin-bottom: 20px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-price-now {
  font-family: var(--font-num);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

.hero-price-old {
  font-family: var(--font-num);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
}

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

.hero-giant-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 64px);
  margin: 34px 0 4px;
}

.giant-stat { text-align: left; }

.giant-stat-number {
  font-family: var(--font-num);
  font-size: var(--fluid-giant);
  font-weight: 800;
  color: var(--chill-soft);
  line-height: 1;
}

.giant-stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}


.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.logo:hover { text-decoration: none; }

.logo-mark {
  display: inline-flex;
  height: 34px;
  width: auto;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
}


[data-mm-header] {
  --mm-bg: #fffaf5;
  --mm-text: #431407;
  --mm-primary: #ea580c;
  --mm-overlay-bg: rgba(11, 63, 73, 0.55);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
}

.nav-link:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

.nav-mega-panel { display: none; }
.nav-mega-col { min-width: 0; }

.nav-mega-title {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.nav-mega-link {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--line-soft);
}

.nav-mega-link:hover { color: var(--accent-hover); }


.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-pill);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.cart-pill:hover {
  background: var(--accent-wash);
  text-decoration: none;
  transform: scale(1.03);
}

.cart-pill-icon { flex: none; }
.cart-pill-label { display: none; }

.cart-pill-count {
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: var(--font-num);
  font-size: 13px;
}


.header-toggle {
  margin-left: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.header-toggle span {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
}

.header-close {
  font-size: 34px;
  color: var(--text-primary);
  min-width: 44px;
  min-height: 44px;
}


.page-head {
  border-left: 5px solid var(--accent);
  padding-left: 18px;
  margin-bottom: 24px;
}

.page-head-title { margin-bottom: 8px; }

.page-head-text {
  font-size: var(--fluid-lead);
  color: var(--text-secondary);
  max-width: 720px;
}

.section-kicker {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 10px;
}

.section-title { margin-bottom: 12px; }

.section-intro {
  font-size: var(--fluid-lead);
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 24px;
}

.section-head { margin-bottom: 28px; }


.card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow 0.3s ease;
  transform-origin: center;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lift);
  position: relative;
  z-index: 10;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: var(--chill-wash);
  color: var(--chill);
}

.card-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.card-text {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 0;
}

.card-tag {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--chill);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.btn:hover {
  transform: scale(1.03);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary::after {
  content: " \2192";
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-quiet {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--line);
}

.btn-quiet:hover { border-color: var(--accent); color: var(--accent-hover); }

.btn-block { display: flex; width: 100%; }

.btn-large { min-height: 56px; padding: 17px 32px; font-size: 18px; }


@media (max-width: 599px) {
  .btn-block.btn-large { font-size: 15px; padding: 16px 12px; gap: 6px; }
}


.ridge {
  position: relative;
  height: 90px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.ridge-layer {
  position: absolute;
  inset: 0;
  display: block;
  clip-path: polygon(0 100%, 25% 40%, 55% 80%, 80% 30%, 100% 70%, 100% 100%);
}

.ridge-layer-back { background: rgba(234, 88, 12, 0.15); }

.ridge-layer-front {
  background: rgba(15, 111, 125, 0.3);
  transform: translateY(12px);
}


.shop-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.shop-card-media {
  background: linear-gradient(140deg, #e8f6f8 0%, #fff7ed 100%);
  padding: 18px;
}

.shop-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.shop-card-name { font-size: 24px; }

.product-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}


.gallery-cell {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-cell-photo {
  padding: 14px;
  background: linear-gradient(140deg, #e8f6f8 0%, #fff7ed 100%);
}

.gallery-cell-chill {
  background:
    repeating-linear-gradient(118deg, rgba(15, 111, 125, 0.07) 0 2px, rgba(255, 255, 255, 0) 2px 18px),
    linear-gradient(160deg, #f2fbfc 0%, #ffffff 100%);
}

.gallery-cell-warm {
  background:
    radial-gradient(90% 80% at 20% 20%, rgba(234, 88, 12, 0.14) 0%, rgba(234, 88, 12, 0) 60%),
    linear-gradient(160deg, #fff7ed 0%, #ffffff 100%);
}

.gallery-key {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.gallery-value {
  font-family: var(--font-head);
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.gallery-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
}


.buy-panel {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.buy-title { margin-bottom: 6px; }

.buy-sub {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.price-now {
  font-family: var(--font-num);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-primary);
}

.price-old {
  font-family: var(--font-num);
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-badge {
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-num);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
}

.meta-item { display: flex; gap: 8px; font-size: 14px; }
.meta-key { color: var(--text-muted); }
.meta-value { font-family: var(--font-num); color: var(--text-primary); }

.stock-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--chill);
  font-weight: 600;
  margin-bottom: 16px;
}

.stock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--chill-mid);
  display: inline-block;
}


.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 46px;
  height: 46px;
  font-size: 20px;
  font-family: var(--font-num);
  color: var(--text-secondary);
  background: var(--bg-secondary);
}

.qty-btn:hover { background: var(--bg-tertiary); }

.qty-input {
  width: 58px;
  height: 46px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: var(--font-num);
  font-size: 17px;
  background: #ffffff;
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}


.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.tier {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  background: var(--bg-secondary);
}

.tier-qty {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.tier-price {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 0;
}


.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.tab-btn {
  padding: 12px 16px;
  min-height: 44px;
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--text-secondary);
  border-bottom: 3px solid transparent;
}

.tab-btn.is-active {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
}

.tab-panel:not(.is-active) { display: none; }
.tab-panel.is-active { display: block; }

.spec-list { display: block; }

.spec-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 15px;
  border-bottom: 1px dashed var(--line-soft);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.spec-list b { font-family: var(--font-num); font-size: 13px; color: var(--chill); min-width: 118px; }


.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.trust-item {
  border-left: 3px solid var(--accent-line);
  padding-left: 14px;
}

.trust-item-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-item-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 0; }


.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-num);
  font-weight: 700;
  background: var(--chill-soft);
  color: var(--chill-deep);
}

.step-text { margin-bottom: 0; }


.faq { border-top: 1px solid var(--line-soft); }

.faq-item { border-bottom: 1px solid var(--line-soft); }

.faq-q {
  padding: 16px 0;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 18px;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-primary);
}

.faq-q::after {
  content: "+";
  font-family: var(--font-num);
  color: var(--accent);
  flex: none;
}

.faq-item.is-open .faq-q::after { content: "\2013"; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  color: var(--text-secondary);
}

.faq-item.is-open .faq-a {
  max-height: 400px;
  padding-bottom: 16px;
}


.form { display: block; }

.form-group { margin-bottom: 14px; }

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  font-size: 16px;
}

.form-input:focus { border-color: var(--chill-mid); }

.form-input.is-error { border-color: #b91c1c; background: #fef2f2; }

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.form-check { width: 18px; height: 18px; margin-top: 2px; flex: none; }

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 0;
}

.form-grid { display: grid; grid-template-columns: 1fr; gap: 0 16px; }

.form-panel {
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.alert {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 15px;
}

.alert-ok { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.alert-bad { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }


.cart-line {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.cart-line-media {
  background: linear-gradient(140deg, #e8f6f8 0%, #fff7ed 100%);
  border-radius: var(--radius-sm);
  padding: 6px;
}

.cart-line-body { display: flex; flex-direction: column; gap: 8px; }
.cart-line-name { font-family: var(--font-head); font-size: 19px; font-weight: 700; }
.cart-line-meta { font-size: 14px; color: var(--text-secondary); margin-bottom: 0; }

.cart-sum { padding: 16px 0; }

.cart-sum-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  font-size: 15px;
}

.cart-sum-total {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 700;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 6px;
}

.cart-empty {
  text-align: center;
  padding: 36px 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}


.prose h2 { margin: 26px 0 10px; }
.prose h3 { margin: 20px 0 8px; }
.prose p { margin-bottom: 10px; color: var(--text-secondary); }
.prose ul { margin: 0 0 12px 0; }

.prose li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 15px;
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--accent-line);
  transform: rotate(45deg);
}

.note-box {
  background: var(--chill-wash);
  border-left: 4px solid var(--chill);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 18px 0;
}

.note-box-title {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 6px;
}


.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.crumb-link { color: var(--text-muted); }
.crumb-sep { color: var(--line); }


.l-footer {
  background: var(--chill-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 34px 0 26px;
}

.contact-panel {
  min-height: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.contact-panel-kicker {
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chill-soft);
  margin-bottom: 0;
}

.contact-panel-phone {
  font-family: var(--font-num);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

.contact-panel-mail { color: var(--chill-soft); font-size: 16px; }

.contact-panel-line {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

.footer-col { display: flex; flex-direction: column; gap: 8px; }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-link { color: rgba(255, 255, 255, 0.8); font-size: 15px; }
.footer-link:hover { color: #ffffff; }
.footer-link-inline { text-decoration: underline; }

.footer-col-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  margin-bottom: 0;
}

.footer-disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
}

.footer-bar { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 14px; }

.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}

.footer-bar-text { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin-bottom: 0; }


.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-panel);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.fab:hover { background: var(--accent-hover); transform: scale(1.06); }

.fab-panel {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 1200;
  width: min(340px, calc(100vw - 36px));
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
  padding: 18px;
}

.fab-panel[hidden] { display: none; }

.fab-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.fab-panel-title { font-family: var(--font-head); font-size: 19px; font-weight: 700; margin-bottom: 0; }

.fab-panel-close { font-size: 26px; min-width: 44px; min-height: 44px; color: var(--text-muted); }

.fab-panel-form { display: block; }


:root {
  --cc-bg: #fffaf5;
  --cc-text: #431407;
  --cc-text-secondary: #7c2d12;
  --cc-border: rgba(124, 45, 18, 0.18);
  --cc-primary: #ea580c;
  --cc-primary-hover: #c2410c;
  --cc-secondary: #ffffff;
  --cc-secondary-hover: #fff7ed;
  --cc-secondary-border: rgba(124, 45, 18, 0.28);
  --cc-toggle-bg: #e7d3c2;
  --cc-toggle-active: #0f6f7d;
  --cc-overlay: rgba(11, 63, 73, 0.6);
  --cc-shadow: 0 -14px 40px rgba(11, 63, 73, 0.18);
  --cc-radius: 14px;
  --cc-radius-sm: 8px;
  --cc-transition: 0.3s ease;
}


@media (min-width: 600px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .shop-card { grid-template-columns: 300px 1fr; }
  .cart-pill-label { display: inline; }
}

@media (min-width: 768px) {
  .nav .nav-list { flex-direction: row; gap: 2px; }
  .nav .nav-list .nav-link { padding: 10px 14px; font-size: 15px; font-weight: 600; }
  .nav { flex: 1 1 auto; }
  .cart-pill { margin-left: 16px; }
  .hero-inner { padding: 64px 16px 56px; }
  .nav-item-mega { position: relative; }
  .nav-link-mega::after { display: inline-block; }
  .nav-item-mega:hover .nav-mega-panel,
  .nav-item-mega:focus-within .nav-mega-panel {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    top: 100%;
    right: -16px;
    width: min(880px, 90vw);
    gap: 24px;
    padding: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-panel);
  }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; }
  .fab { right: 26px; bottom: 26px; }
  .fab-panel { right: 26px; bottom: 96px; }
}

@media (min-width: 1024px) {
  .buy-panel { padding: 32px; }
}


.firm-introduction { color: #ffffff; }
.client-inquiries { border-top: 3px solid var(--accent-line); }
.legal-services { border-top: 1px dashed var(--line-soft); }
.firm-heritage { border-top: 1px solid var(--line-soft); }
.client-advantages { border-top: 1px dashed var(--accent-line); }
.credentials-metrics { border-top: 1px solid var(--line-soft); }
.fee-structure { border-top: 1px dashed var(--line-soft); }
.payment-options { border-top: 1px solid var(--line-soft); }
.legal-process { border-top: 1px dashed var(--chill-soft); }
.service-terms { border-top: 1px solid var(--line-soft); }
.key-services { border-top: 1px dashed var(--line-soft); }


.l-split-body { min-width: 0; }
.l-split-media { min-width: 0; }

.nav-item { position: relative; }

.nav-link-mega { display: inline-flex; align-items: center; gap: 6px; }

.nav-link-mega::after { content: "\25BE"; font-size: 11px; color: var(--text-muted); display: none; }

.page-index,
.page-product,
.page-cart,
.page-info,
.page-legal,
.page-contacts,
.page-order { background: var(--bg-primary); }

.client-registration { border-top: 1px solid var(--line-soft); }
