:root {
  --red: #c8102e;
  --red-dark: #990d24;
  --green: #0b6b3a;
  --green-dark: #084b2a;
  --ink: #151515;
  --muted: #60656f;
  --line: #e8e8e8;
  --soft: #f7f8f7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
  --sticky-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(11, 107, 58, 0.05), transparent 320px),
    var(--white);
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
  line-height: 1.7;
  text-align: right;
  padding-bottom: calc(var(--sticky-height) + 20px);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(11, 107, 58, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 32px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--green));
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.2);
  overflow: hidden;
}

.brand-mark img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.header-link,
.footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: 8px;
  color: var(--red);
  font-weight: 800;
  background: rgba(200, 16, 46, 0.06);
}

.section-pad {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  padding: 54px 0;
}

.hero {
  display: grid;
  gap: 30px;
  align-items: center;
  min-height: calc(100svh - 90px);
  padding-top: 28px;
}

.hero-media {
  position: relative;
  order: -1;
}

.hero-image-shell {
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f2f5f2);
  box-shadow: var(--shadow);
}

.hero-image-shell img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
}

.hero-mini-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 1px;
  min-width: 138px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  color: var(--white);
  background: rgba(13, 17, 23, 0.82);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero-mini-card strong {
  font-size: 1.45rem;
  line-height: 1.1;
}

.mini-label,
.eyebrow {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-content h1,
.section-heading h2,
.fan-choice h2,
.offer h2,
.order-summary h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(2.05rem, 8vw, 4.25rem);
}

.hero-subtitle {
  max-width: 620px;
  margin: 18px 0 0;
  color: #343942;
  font-size: 1.08rem;
}

.price-box {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin: 24px 0;
}

.current-price {
  color: var(--green);
  font-size: clamp(2.2rem, 8vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
}

.old-price {
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: line-through;
}

.saving {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 4px 12px;
  border-radius: 8px;
  color: var(--red-dark);
  background: rgba(200, 16, 46, 0.08);
  font-weight: 800;
}

.hero-actions,
.offer-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:focus-visible,
.header-link:focus-visible,
.footer-contact:focus-visible,
.whatsapp-float:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(11, 107, 58, 0.28);
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--green));
  box-shadow: 0 14px 26px rgba(11, 107, 58, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(11, 107, 58, 0.28);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-ghost {
  color: var(--green);
  border: 1px solid rgba(11, 107, 58, 0.2);
  background: var(--white);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.badges span,
.fan-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(11, 107, 58, 0.14);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(11, 107, 58, 0.06);
  font-weight: 800;
}

.legal-note {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.trust-strip > div,
.feature-card,
.gallery-card,
.order-form,
.order-summary,
details {
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
}

.trust-strip > div {
  display: grid;
  gap: 3px;
  padding: 16px;
}

.trust-strip strong {
  font-size: 0.95rem;
}

.trust-strip span:not(.icon) {
  color: var(--muted);
  font-size: 0.84rem;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border-radius: 8px;
  color: var(--green);
  background: rgba(11, 107, 58, 0.08);
}

.icon svg,
.whatsapp-float svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-bottom: 24px;
}

.section-heading h2,
.fan-choice h2,
.offer h2,
.order-summary h2 {
  font-size: clamp(1.65rem, 5vw, 2.7rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.feature-card {
  padding: 20px;
}

.feature-card h3 {
  margin: 8px 0 6px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-section {
  width: min(1180px, calc(100% - 32px));
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-card {
  overflow: hidden;
  margin: 0;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.gallery-main img {
  object-position: center;
}

.gallery-card figcaption {
  padding: 13px 16px 16px;
  color: #30343a;
  font-weight: 800;
}

.fan-choice {
  display: grid;
  gap: 20px;
  align-items: center;
  border-block: 1px solid rgba(21, 21, 21, 0.08);
}

.fan-choice-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--muted);
}

.fan-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-card {
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(200, 16, 46, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.08), rgba(11, 107, 58, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.offer-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
}

.order-section {
  display: grid;
  gap: 18px;
  align-items: start;
}

#order {
  scroll-margin-top: 96px;
  scroll-margin-bottom: calc(var(--sticky-height) + 24px);
}

.order-summary {
  padding: 22px;
}

.order-summary p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.summary-product {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
  padding: 12px;
  border-radius: 8px;
  background: var(--soft);
}

.summary-product img {
  width: 76px;
  height: 66px;
  border-radius: 8px;
  object-fit: cover;
}

.summary-product div {
  display: grid;
  gap: 2px;
}

.summary-product span {
  color: var(--green);
}

.summary-product del {
  color: var(--red);
  margin-inline-start: 5px;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: #282c32;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d9dde2;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

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

.form-note,
.form-error,
.form-success {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-error,
.form-success {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.form-error {
  color: var(--red-dark);
  background: rgba(200, 16, 46, 0.08);
}

.form-success {
  color: var(--green-dark);
  background: rgba(11, 107, 58, 0.08);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 17px 18px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 12px;
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
  padding: 34px 0 28px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.site-footer small {
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: calc(var(--sticky-height) + 20px);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: #0b9f55;
  box-shadow: 0 14px 32px rgba(11, 159, 85, 0.32);
}

.sticky-order {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 40;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: var(--sticky-height);
  padding: 10px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(14px);
}

.sticky-order img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}

.sticky-info {
  display: grid;
  min-width: 0;
}

.sticky-info strong {
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1.2;
}

.sticky-info span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-btn {
  min-height: 48px;
  padding-inline: 15px;
  white-space: nowrap;
}

@media (min-width: 620px) {
  :root {
    --sticky-height: 92px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px;
  }

  .form-wide,
  .form-submit,
  .form-note,
  .form-error,
  .form-success {
    grid-column: 1 / -1;
  }

  .sticky-order {
    right: 50%;
    left: auto;
    width: min(680px, calc(100% - 32px));
    transform: translateX(50%);
  }
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    gap: 50px;
  }

  .hero-media {
    order: 0;
  }

  .hero-content {
    padding-inline-start: 8px;
  }

  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .gallery-main img,
  .gallery-card img {
    min-height: 430px;
  }

  .fan-choice {
    grid-template-columns: 1fr 0.92fr;
  }

  .order-section {
    grid-template-columns: 0.75fr 1.25fr;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: min(100% - 20px, 1120px);
    margin-top: 10px;
  }

  .brand {
    gap: 7px;
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-mark img {
    width: 28px;
    height: 28px;
  }

  .header-link {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .section-pad,
  .trust-strip,
  .gallery-section,
  .site-footer {
    width: min(100% - 22px, 1120px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-mini-card {
    min-width: 126px;
    padding: 10px 12px;
  }

  .sticky-order {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .sticky-order img {
    width: 48px;
    height: 48px;
  }

  .sticky-btn {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 0.9rem;
  }
}
