* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* główne CTA — pomarańcz: kontrast + animacja */
@keyframes cta-pulse-glow {
  0%,
  100% {
    box-shadow:
      0 8px 24px rgba(234, 88, 12, 0.48),
      0 0 0 0 rgba(255, 159, 28, 0.45);
  }
  50% {
    box-shadow:
      0 12px 36px rgba(234, 88, 12, 0.62),
      0 0 0 14px rgba(255, 159, 28, 0);
  }
}

@keyframes cta-pulse-glow-header {
  0%,
  100% {
    box-shadow:
      0 4px 18px rgba(234, 88, 12, 0.42),
      0 0 0 0 rgba(255, 159, 28, 0.35);
  }
  50% {
    box-shadow:
      0 8px 26px rgba(234, 88, 12, 0.55),
      0 0 0 10px rgba(255, 159, 28, 0);
  }
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
  background: #ffffff;
  color: #1a2a2a;
  line-height: 1.4;
}

.page {
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: max(clamp(24px, 5.5vw, 44px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(24px, 5.5vw, 44px), env(safe-area-inset-right, 0px));
}

/* site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(11, 18, 32, 0.88);
  backdrop-filter: blur(8px);
  color: #e6f4ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* шире боковые поля, чем у обычного .container (и не затираются вертикальным padding) */
.site-header .container.header-inner {
  padding-left: max(clamp(28px, 6.25vw, 52px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(28px, 6.25vw, 52px), env(safe-area-inset-right, 0px));
}

.brand {
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 26px;
  line-height: 1;
  color: inherit;
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 36px;
  width: auto;
}

@media (min-width: 768px) {
  .brand img {
    height: 52px;
  }
}

.brand-mark {
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.brand-accent {
  color: #34d399;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.header-badges {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.header-badge {
  font-size: 12px;
  color: rgba(230, 244, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.header-badges--trust {
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(100%, 420px);
}

.header-badge--trust {
  color: #1e4a44;
  background: #eef7f4;
  border: 1px solid #cae3dc;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-cta {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9f1c 0%, #f97316 42%, #ea580c 100%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.2s ease;
  animation: cta-pulse-glow-header 2.5s ease-in-out infinite;
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.08);
}

.header-cta:active {
  transform: translateY(0) scale(0.98);
}

.header-cta:focus-visible {
  outline: 3px solid rgba(255, 159, 28, 0.65);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
  .header-badges {
    gap: 6px;
  }
  .header-badge {
    font-size: 11px;
    padding: 6px 9px;
  }
  .header-cta {
    font-size: 13px;
    padding: 9px 14px;
  }

  /* landing: jedna linia logo + CTA, pod spodem pasek zaufania */
  .header-inner:has(.header-actions) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 8px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-inner:has(.header-actions) .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .header-inner:has(.header-actions) .brand img {
    height: 32px;
    max-width: 100%;
    width: auto;
  }

  .header-inner:has(.header-actions) .header-actions {
    display: contents;
  }

  .header-inner:has(.header-actions) .header-badges--trust {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: stretch;
    gap: 6px;
  }

  .header-inner:has(.header-actions) .header-badge--trust {
    flex: 1 1 0;
    min-width: 0;
    font-size: 10px;
    padding: 6px 8px;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
  }

  .header-inner:has(.header-actions) .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    flex: none;
    width: auto;
    white-space: nowrap;
  }
}

section {
  padding: 48px 0;
  border-bottom: 1px solid #e6f0ef;
}

.section-sm {
  padding: 32px 0;
}

/* шапка */
.top-bar {
  background: transparent;
  padding: 12px 0 14px;
  font-size: 13px;
  color: rgba(230, 244, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.top-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-links span {
  cursor: default;
}

.badge-header {
  background: rgba(52, 211, 153, 0.14);
  padding: 6px 12px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(230, 244, 255, 0.95);
  border: 1px solid rgba(52, 211, 153, 0.25);
}

/* hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0 24px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.hero-media {
  flex: 1;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: start;
}

.hero-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-thumb {
  position: relative;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: #e8f4f1;
  cursor: pointer;
  padding: 0;
  line-height: 0;
}

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

.hero-thumb.is-active {
  border-color: #0f9d8e;
}

.hero-thumb-badge {
  position: absolute;
  right: 6px;
  bottom: 6px;
  background: rgba(15, 157, 142, 0.95);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  padding: 4px 6px;
  font-weight: 800;
}

.video-placeholder {
  background: linear-gradient(135deg, #1f3e3a 0%, #0f2c28 100%);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .video-placeholder {
    aspect-ratio: 4 / 5;
    max-height: 520px;
  }
}

.hero-stage {
  position: relative;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  padding: 0;
}

.hero-nav-prev {
  left: 14px;
}

.hero-nav-next {
  right: 14px;
}

.hero-nav:hover {
  opacity: 0.82;
}

.hero-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.hero-slide.is-active {
  display: block;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  background: #0b2a25;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8e6e0;
  font-weight: 500;
}

.video-placeholder iframe,
.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

.product-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.18);
  transform-origin: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f5faf8;
}

@media (max-width: 767px) {
  .hero-gallery {
    grid-template-columns: 1fr;
  }
  .hero-thumbs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .hero-thumb {
    min-width: 74px;
  }
}

.hero-content {
  flex: 1;
}

.hero-subtitle {
  margin: 8px 0 10px;
  color: #527a72;
  font-size: 17px;
  line-height: 1.45;
  max-width: 640px;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.stars {
  color: #f5b342;
  font-size: 20px;
  letter-spacing: 2px;
}

.badge-sold {
  background: #e0f2ef;
  color: #0f6b5f;
  padding: 6px 12px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
}

h1 {
  font-size: 32px;
  line-height: 1.2;
  margin: 16px 0 12px;
  font-weight: 800;
  color: #1e3a36;
}

@media (min-width: 768px) {
  h1 {
    font-size: 44px;
  }
}

.feature-tag {
  background: #eef7f4;
  padding: 6px 14px;
  border-radius: 40px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0;
  color: #0f6b5f;
}

.price-block {
  margin: 20px 0;
}

.current-price {
  font-size: 48px;
  font-weight: 800;
  color: #1d6f5e;
  line-height: 1;
}

.old-price {
  font-size: 20px;
  text-decoration: line-through;
  color: #8aa6a0;
  margin-left: 12px;
}

.discount-badge {
  background: linear-gradient(135deg, #f97316 0%, #e31b23 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(233, 88, 35, 0.3);
}

.countdown-badge {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(135deg, #0b5c52 0%, #0f9d8e 100%);
  color: #f4fffc;
  border: 2px solid rgba(255, 255, 255, 0.45);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 4px 18px rgba(11, 92, 82, 0.35), 0 1px 0 rgba(255, 255, 255, 0.25) inset;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.countdown-badge .js-countdown {
  display: inline-block;
  margin-left: 2px;
  font-size: 1.15em;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: #fef9c3;
  text-shadow: 0 0 12px rgba(254, 249, 195, 0.45);
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ff9f1c 0%, #f97316 42%, #ea580c 100%);
  color: white;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 32px;
  border-radius: 60px;
  text-decoration: none;
  text-align: center;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.2s ease;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.48);
  width: 100%;
  max-width: 320px;
  border: none;
  cursor: pointer;
  animation: cta-pulse-glow 2.6s ease-in-out infinite;
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-3px) scale(1.02);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-primary:focus-visible {
  outline: 3px solid rgba(255, 159, 28, 0.55);
  outline-offset: 3px;
}

.btn-primary.btn-loading {
  animation: none;
}

.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.92;
}

.btn-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
  vertical-align: -2px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: #0f9d8e;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 60px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  border: 2px solid #0f9d8e;
  cursor: pointer;
  width: 100%;
}

.small-meta {
  font-size: 13px;
  color: #6f8e87;
  margin-top: 16px;
}

/* преимущества в три колонки */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
  align-items: stretch;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  padding: 24px 20px;
  background: #f9fffd;
  border-radius: 28px;
  border: 1px solid #d9f0ea;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: #0f9d8e;
  box-shadow: 0 8px 20px rgba(15, 157, 142, 0.08);
}

.feature-icon {
  width: 100%;
  flex-shrink: 0;
  height: clamp(150px, 26vw, 200px);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.feature-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.feature-icon--cover-wide {
  overflow: hidden;
  position: relative;
}

.feature-icon--cover-wide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
}

.feature-card h3 {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1.28;
  margin-bottom: 10px;
  margin-top: 0;
  color: #1e4a44;
  min-height: 4.85em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
}

.feature-card p {
  flex: 1 1 auto;
  margin: 0;
  color: #527a72;
  line-height: 1.55;
  text-wrap: balance;
}

/* отзывы */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px 0;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid #e0f0ec;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.review-photo-wrap {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 4 / 3;
  background: #eef2f0;
}

.review-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-weight: 700;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2c6b60;
}

@media (max-width: 768px) {
  .reviews-section h2 {
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }

  .review-card {
    padding: 20px;
  }

  .review-name {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 16px;
  justify-content: center;
}

.color-picker-section {
  padding-top: 8px;
  padding-bottom: 0;
}

.color-chip {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  background: #f5faf8;
  padding: 8px 20px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #cae3dc;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.2;
}

.color-options-media {
  justify-content: flex-start;
}

.color-chip-media {
  width: 150px;
  padding: 8px;
  border-radius: 16px;
  text-align: left;
}

.color-preview {
  width: 100%;
  height: 82px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin-bottom: 6px;
}

.color-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.color-chip.selected {
  border: 2px solid #0f9d8e;
  background: #e0f7f2;
  color: #0f6b5f;
}

.color-chip:focus-visible {
  outline: 3px solid rgba(15, 157, 142, 0.25);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .price-block .countdown-badge {
    display: block;
    width: fit-content;
    max-width: calc(100% - 8px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
    text-align: center;
    box-sizing: border-box;
  }

  .color-options-media {
    flex-wrap: nowrap;
    justify-content: stretch;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 12px;
  }

  .color-options-media .color-chip-media {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
    padding: 6px;
  }

  .color-options-media .color-preview {
    height: 64px;
  }

  .color-options-media .color-name {
    font-size: 11px;
    line-height: 1.25;
    word-break: break-word;
  }
}

.promo-block {
  background: linear-gradient(135deg, #eef7f4 0%, #e2f3ef 100%);
  border-radius: 48px;
  padding: 32px 24px;
  text-align: center;
}

@media (max-width: 480px) {
  section {
    padding: 32px 0;
  }
  .current-price {
    font-size: 38px;
  }
  .btn-primary {
    font-size: 18px;
    padding: 14px 24px;
  }
}

h2 {
  color: #1e4a44;
  font-size: 32px;
  text-align: center;
  margin-bottom: 24px;
}

h3 {
  color: #1e5e53;
}

/* форма */
.order-form {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  padding: 32px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #d9f0ea;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e4a44;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 1.5px solid #e0eee9;
  border-radius: 60px;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}

.form-group input:focus {
  border-color: #0f9d8e;
  box-shadow: 0 0 0 3px rgba(15, 157, 142, 0.1);
}

.form-group input.error {
  border-color: #e31b23;
  background: #fff5f5;
}

.error-message {
  color: #e31b23;
  font-size: 12px;
  margin-top: 6px;
  margin-left: 12px;
  display: none;
}

.error-message.show {
  display: block;
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-code {
  background: #f0f7f5;
  padding: 14px 18px;
  border-radius: 60px;
  font-weight: 600;
  color: #1d6f5e;
  border: 1.5px solid #e0eee9;
  font-size: 16px;
}

.phone-prefix input {
  flex: 1;
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.next-step-note {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #6f8e87;
}

.pay-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  min-height: 0;
  line-height: 0;
}

.pay-logo img {
  display: block;
  height: 32px;
  width: auto;
  object-fit: contain;
}

.pay-logo svg {
  display: block;
  height: 32px;
  width: auto;
  max-width: 100%;
}

.pay-icon--mc {
  width: 52px;
}

/* utility / extracted from inline styles */
.video-wrapper.stack {
  flex-direction: column;
  gap: 12px;
}

.video-cta {
  font-size: 14px;
  background: #1f544b;
  padding: 8px 16px;
  border-radius: 60px;
}

.video-subcopy {
  font-size: 12px;
  max-width: 80%;
  text-align: center;
}

.hero-hint {
  font-size: 13px;
  text-align: center;
  margin-top: -18px;
  margin-bottom: 0;
  display: block;
  width: 100%;
  color: #6f8e87;
}

.section-title-sm {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.stars-lg {
  font-size: 20px;
}

.review-text {
  margin: 12px 0;
}

.center {
  text-align: center;
}

.review-count-badge {
  background: #eef7f4;
  padding: 6px 20px;
  border-radius: 60px;
  color: #1d6f5e;
  display: inline-block;
}

.info-card {
  background: linear-gradient(135deg, #eef7f4 0%, #ffffff 100%);
  border-radius: 36px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #d9f0ea;
}

.info-card-compact {
  padding: 24px 22px 28px;
}

.info-card-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.info-card-compact .info-card-title {
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1e4a44;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.info-card-points {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  color: #1d6f5e;
}

.section-no-border {
  border-bottom: none;
}

.promo-title-tight {
  color: #1e4a44;
  margin-bottom: 12px;
}

.price-block-tight {
  margin: 16px 0;
}

.order-form-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.input-readonly {
  background: #f5faf8;
  cursor: default;
}

.btn-max {
  max-width: 100%;
}

/* baner cookies */
.cookie-banner {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1250;
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom, 0));
  background: rgba(8, 17, 31, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-banner-text {
  flex: 1 1 220px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(230, 244, 255, 0.92);
  max-width: 720px;
}

.cookie-banner-text a {
  color: #6ee7b7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
  color: #a7f3d0;
}

.cookie-banner-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner-btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #ff9f1c 0%, #f97316 42%, #ea580c 100%);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.2s ease;
  animation: cta-pulse-glow-header 2.5s ease-in-out infinite;
}

.cookie-banner-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.03);
}

.cookie-banner-btn:active {
  transform: translateY(0) scale(0.99);
}

.cookie-banner-btn:focus-visible {
  outline: 3px solid rgba(255, 159, 28, 0.65);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 72px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-btn {
    width: 100%;
    text-align: center;
  }

  body.has-cookie-banner {
    padding-bottom: calc(84px + 110px);
  }
}

@media (min-width: 769px) {
  body.has-cookie-banner {
    padding-bottom: 100px;
  }
}

.sticky-cta {
  position: fixed;
  left: max(18px, env(safe-area-inset-left, 0px));
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9f1c 0%, #f97316 42%, #ea580c 100%);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: cta-pulse-glow 2.6s ease-in-out infinite;
}

.sticky-cta.is-visible:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.sticky-cta:active {
  filter: brightness(0.98);
}

.sticky-cta:focus-visible {
  outline: 3px solid rgba(255, 159, 28, 0.7);
  outline-offset: 3px;
}

.order-popup {
  position: fixed;
  left: max(18px, env(safe-area-inset-left, 0px));
  bottom: 74px;
  z-index: 1300;
  max-width: 310px;
  background: #ffffff;
  border: 1px solid #d9f0ea;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  padding: 10px 12px;
  font-size: 13px;
  color: #2c6b60;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.order-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 769px) {
  .order-popup {
    bottom: 16px;
  }
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 84px;
  }
}

.footer-note {
  margin-top: 10px;
  color: rgba(230, 244, 255, 0.66);
  font-size: 12px;
}

/* site footer */
.site-footer {
  background: #08111f;
  color: rgba(230, 244, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-title {
  font-weight: 800;
  color: #e6f4ff;
  margin-bottom: 10px;
}

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

.footer-link {
  color: rgba(230, 244, 255, 0.86);
  text-decoration: none;
}

.footer-link:hover {
  color: #34d399;
}

.footer-text {
  color: rgba(230, 244, 255, 0.78);
  margin-bottom: 6px;
}

.footer-legal {
  padding-top: 2px;
}

/* order status pages */
.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(circle at top, rgba(224, 242, 239, 0.9) 0%, #ffffff 55%);
}

.status-card {
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  border: 1px solid #d9f0ea;
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.status-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.status-icon.success {
  background: linear-gradient(135deg, #0f9d8e 0%, #0d7a6e 100%);
}

.status-icon.error {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.status-title {
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 10px;
  font-weight: 900;
  color: #1e3a36;
}

.status-text {
  color: #527a72;
  font-size: 16px;
  line-height: 1.7;
  margin: 8px auto 0;
  max-width: 560px;
}

.status-orderid {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef7f4;
  color: #1d6f5e;
  font-weight: 700;
  font-size: 13px;
}

.status-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.is-hidden {
  display: none !important;
}

/* policy pages */
.policy-wrap {
  padding: 42px 0 58px;
}

.policy-card {
  background: #ffffff;
  border: 1px solid #d9f0ea;
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.policy-title {
  text-align: left;
  margin-bottom: 12px;
  font-size: 34px;
  color: #1e3a36;
}

.policy-meta {
  color: #6f8e87;
  font-size: 13px;
  margin-bottom: 18px;
}

.policy-card h2 {
  text-align: left;
  font-size: 22px;
  margin: 22px 0 10px;
}

.policy-card p {
  color: #2c6b60;
  margin: 10px 0;
  line-height: 1.75;
}

.policy-card ul {
  margin: 10px 0 10px 20px;
  color: #2c6b60;
  line-height: 1.75;
}

.policy-card li {
  margin: 6px 0;
}

.policy-card a {
  color: #0f9d8e;
}

.policy-card a:hover {
  color: #0d8679;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #d9f0ea;
  border-radius: 16px;
  padding: 0 16px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #1e4a44;
  padding: 16px 0;
  position: relative;
  padding-right: 28px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  color: #0f9d8e;
}

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

.faq-item p {
  color: #527a72;
  line-height: 1.7;
  margin: 0 0 16px;
}
