:root {
  --bg: #fff8ef;
  --surface: #ffffff;
  --ink: #241512;
  --muted: #74645a;
  --primary: #aa0f14;
  --primary-dark: #7f080d;
  --accent: #d8a842;
  --accent-bright: #f2cd68;
  --accent-soft: #fff1cc;
  --border: #ecdcc9;
  --danger: #c83232;
  --shadow: 0 18px 45px rgba(96, 20, 16, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(170, 15, 20, 0.07), rgba(255, 248, 239, 0) 360px),
    var(--bg);
  color: var(--ink);
  line-height: 1.7;
  text-align: right;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.announcement {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 10px 14px;
  background: linear-gradient(90deg, #7f080d, #b51219);
  color: #fff;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 20px rgba(127, 8, 13, 0.28);
}

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

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0 4px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-star {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff0a8, #d39b27 54%, #8d5c0b);
  color: #fff9d8;
  font-size: 1.55rem;
  text-shadow: 0 2px 5px rgba(91, 48, 0, 0.45);
  box-shadow: 0 10px 22px rgba(158, 89, 13, 0.25);
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text strong {
  color: #fff;
  width: max-content;
  padding: 1px 12px 2px;
  border-radius: 5px;
  background: var(--primary);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand-text small {
  color: var(--primary-dark);
  font-weight: 900;
}

.brand-mini-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #2b1605;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(158, 89, 13, 0.18);
}

.hero {
  display: grid;
  gap: 24px;
  padding: 24px 0 34px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #3a1511;
  box-shadow: var(--shadow);
  min-height: 350px;
  border: 1px solid rgba(216, 168, 66, 0.52);
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent-bright), var(--accent));
  color: #2b2106;
  font-weight: 900;
  font-size: 0.86rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.gallery-nav {
  position: absolute;
  top: 48%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.gallery-nav:hover {
  transform: translateY(-2px);
  background: #fff;
}

.gallery-prev {
  right: 12px;
}

.gallery-next {
  left: 12px;
}

.gallery-thumbs {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}

.thumb {
  flex: 1;
  min-height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.thumb.is-active {
  background: var(--accent-bright);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--primary);
  font-weight: 900;
  font-size: 0.86rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 8vw, 3.9rem);
  line-height: 1.16;
  font-weight: 900;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  line-height: 1.25;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.06rem;
}

.hero-description,
.form-copy p,
.video-description {
  color: var(--muted);
  font-weight: 600;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding: 10px 38px 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #2b1605;
  font-size: 0.8rem;
}

.primary-cta,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #c11820, var(--primary));
  color: #fff;
  font-weight: 900;
  font-size: 1.06rem;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(170, 15, 20, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-cta:hover,
.submit-button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 16px 26px rgba(170, 15, 20, 0.34);
}

.primary-cta.full {
  width: 100%;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.trust-line span {
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
}

.deal-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    #7f080d;
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 168, 66, 0.38);
}

.strip-label {
  margin: 0;
  color: #ffe7a6;
  font-size: 0.84rem;
  font-weight: 800;
}

.countdown {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  align-items: baseline;
  gap: 5px;
  direction: ltr;
}

.countdown span {
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--accent);
  color: #201904;
  font-weight: 900;
}

.countdown small {
  color: #ffe7a6;
  font-weight: 800;
}

.checkout-grid,
.form-section {
  display: grid;
  gap: 18px;
  padding: 26px 0;
}

.config-panel,
.summary-card,
.order-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.config-panel,
.summary-card {
  padding: 18px;
}

.section-heading.centered {
  text-align: center;
}

.option-group {
  margin-top: 22px;
}

.selection-area {
  display: grid;
  gap: 8px;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.size-option {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.size-option:hover,
.size-option.is-selected {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(170, 15, 20, 0.12);
}

.size-option strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.size-option span {
  color: var(--primary);
  font-weight: 900;
  font-size: 0.92rem;
}

.size-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.size-option-head span {
  white-space: nowrap;
}

.size-quantity-stepper {
  grid-template-columns: 34px 1fr 34px;
  gap: 6px;
}

.size-quantity-stepper button {
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
}

.size-quantity-stepper output {
  height: 34px;
}

.extra-clips-card {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff6df;
}

.extra-clips-copy {
  display: grid;
  gap: 1px;
}

.extra-clips-copy strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.extra-clips-copy span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 900;
}

.compact-stepper {
  grid-template-columns: 38px 1fr 38px;
  gap: 7px;
}

.compact-stepper button {
  width: 38px;
  height: 38px;
}

.compact-stepper output {
  height: 38px;
}

.discount-offer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid #e2c06c;
}

.discount-offer.is-active {
  background: #fff5d9;
  border-color: var(--accent);
  box-shadow: 0 10px 22px rgba(216, 168, 66, 0.14);
}

.offer-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
}

.discount-offer small,
.addon-title span,
.summary-note {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.addon-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stepper {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 10px;
  align-items: center;
}

.stepper button {
  width: 56px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f7fbf7;
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
}

.stepper output {
  display: grid;
  place-items: center;
  height: 50px;
  border-radius: var(--radius);
  background: #fff6df;
  font-weight: 900;
}

.stepper input {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: var(--radius);
  background: #fff6df;
  color: var(--ink);
  text-align: center;
  font-weight: 900;
  outline: none;
}

.stepper input:focus {
  box-shadow: 0 0 0 4px rgba(170, 15, 20, 0.1);
}

.summary-list {
  display: grid;
  gap: 11px;
  margin: 0 0 16px;
}

.summary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.summary-list dt {
  color: var(--muted);
  font-weight: 800;
}

.summary-list dd {
  margin: 0;
  font-weight: 900;
  text-align: left;
}

.summary-list .total-row {
  padding: 14px 0 0;
  border-bottom: 0;
}

.total-row dt,
.total-row dd {
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.summary-note {
  margin: -4px 0 14px;
}

.summary-note span {
  text-decoration: line-through;
}

.video-section,
.social-proof,
.faq {
  padding: 36px 0;
}

.video-frame {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(56, 9, 11, 0.18), rgba(56, 9, 11, 0.78)),
    url("https://images.pexels.com/photos/5591571/pexels-photo-5591571.jpeg?auto=compress&cs=tinysrgb&w=1200") center/cover;
  box-shadow: var(--shadow);
  color: #fff;
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-placeholder {
  display: grid;
  place-items: center;
  gap: 10px;
  width: 100%;
  min-height: 220px;
  padding: 26px;
  text-align: center;
  font-weight: 900;
}

.play-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent);
  color: #231a04;
  font-size: 2rem;
}

.video-description {
  max-width: 760px;
  margin: 14px auto 0;
  text-align: center;
}

.testimonials {
  display: grid;
  gap: 12px;
}

.testimonials article {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 45, 31, 0.08);
}

.testimonials p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.form-copy {
  align-self: center;
}

.order-form {
  padding: 18px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfdfb;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  resize: vertical;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(170, 15, 20, 0.1);
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--danger);
}

.error-message {
  min-height: 22px;
  color: var(--danger);
  font-weight: 800;
}

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

.submit-button.is-loading {
  opacity: 0.78;
  cursor: wait;
}

.success-message {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff5d9;
  color: var(--primary-dark);
  font-weight: 900;
}

.form-error-message {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff0f0;
  color: var(--danger);
  font-weight: 900;
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.sticky-mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 248, 239, 0.94);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.sticky-mobile-cta .primary-cta {
  min-width: 132px;
  min-height: 50px;
  padding-inline: 14px;
}

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

.sticky-total span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.sticky-total strong {
  color: var(--primary-dark);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;
}

.sticky-total small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: line-through;
}

main {
  padding-bottom: 92px;
}

@media (min-width: 560px) {
  .brand-mini-cta {
    display: inline-flex;
  }

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

  .selection-area {
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: stretch;
  }

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

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: 42px 0 46px;
  }

  .checkout-grid,
  .form-section {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
  }

  .selection-area {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .summary-card {
    position: sticky;
    top: 68px;
    align-self: start;
  }

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

  .sticky-mobile-cta {
    display: none;
  }

  main {
    padding-bottom: 0;
  }
}
