/* Sage Fitness Store – Squat Machine landing page
   Mobile-first. Full-width cream / black bands with a narrow centred column. No frameworks. */

:root {
  --cream: #fbf7f0;
  --paper: #ffffff;
  --grey: #f3f3f3;
  --black: #000;
  --ink: #1a1a1a;

  --orange: #f0490b;        /* burnt-orange hero headline */
  --gold: #9a7d3f;          /* muted gold: headings on light */
  --gold-line: #c9962b;     /* thin lines + icons on light */
  --yellow: #ffbb33;        /* yellow-gold: headings on black */
  --pale-gold: #f7dc8f;     /* thin bordered box + diamonds */
  --red: #e60000;
  --rust: #b92b00;
  --pack-yellow: #ffee00;

  --display: "Syne", "Arial Black", "Segoe UI", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Nunito Sans", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

.inner { max-width: 560px; margin: 0 auto; padding: 0 18px; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- bands ---------- */
.band { padding: 38px 0; }
.band.cream { background: var(--cream); }
.band.white { background: var(--paper); }
.band.grey  { background: var(--grey); }
.band.black { background: var(--black); color: #fff; }
.band.tight-top { padding-top: 10px; }
.band.black + .band.black { box-shadow: 0 -2px 0 #000; } /* hides a hairline seam between adjacent black bands */

/* ---------- headings ---------- */
.h-serif {
  font-family: var(--serif);
  font-weight: 700;
  text-align: center;
  line-height: 1.22;
  font-size: clamp(1.55rem, 6.8vw, 2.1rem);
  margin-bottom: 22px;
  color: var(--gold);
}
.black .h-serif { color: var(--yellow); }

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  color: var(--orange);
  text-align: center;
  line-height: 1.14;
  font-size: clamp(1.5rem, 6.9vw, 2.15rem);
  letter-spacing: -.01em;
}

/* ---------- hero ---------- */
.hero { padding-top: 26px; padding-bottom: 34px; }
.sub-box {
  border: 3px solid var(--pale-gold);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 22px 0 24px;
  text-align: center;
  background: rgba(255, 255, 255, .55);
}
.sub-box p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(1.15rem, 5.4vw, 1.4rem);
  line-height: 1.32;
}

/* Black frame with padding around the video, full width of the content column (as in the reference) */
.video-frame {
  background: #000;
  padding: clamp(10px, 3.6vw, 20px);
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}
.video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.video:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
/* YouTube's hqdefault thumbnail is 4:3 with black bars baked in; "cover" crops the bars away in the 16:9 box */
.video img, .video iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.video .play {
  position: absolute; left: 50%; top: 50%;
  width: 76px; height: 52px; margin: -26px 0 0 -38px;
  border-radius: 14px; background: #f00;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
  transition: background .15s ease, transform .15s ease;
}
.video:hover .play, .video:focus-visible .play { background: #cc0000; transform: scale(1.06); }
.video-fallback { text-align: center; padding: 10px 0 2px; }
.video-fallback a { color: #fff; }

/* YouTube "lite" embed sitting on a black section: give the frame a faint edge so it doesn't vanish into the background */
.yt-frame { background: #0d0d0d; box-shadow: 0 0 0 1px #3a3a3a; margin: 0 0 28px; }

/* ---------- hero product video (vertical 9:16, sits in the same black frame) ---------- */
.hero-video { position: relative; border-radius: 4px; overflow: hidden; background: #000; }
.hero-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(72vh, 580px);   /* keeps the tall video from filling a whole screen, so the price + ORDER NOW stay close */
  object-fit: contain;            /* thin black side bars if the height cap kicks in */
  background: #000;
}
.hv-play {
  position: absolute; left: 50%; top: 50%;
  width: 76px; height: 52px; margin: -26px 0 0 -38px;
  border: 0; border-radius: 14px; background: #f00; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
  -webkit-tap-highlight-color: transparent;
}
.hv-play .tri {
  position: absolute; left: 50%; top: 50%; margin: -11px 0 0 -8px;
  border-style: solid; border-width: 11px 0 11px 19px; border-color: transparent transparent transparent #fff;
}
.hv-play:hover, .hv-play:focus-visible { background: #cc0000; }
.unmute {
  position: absolute; left: 10px; top: 10px;   /* top, so it is visible on the first screen even though the video is tall */
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 8px 16px 8px 12px;
  border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, .9);
  background: rgba(0, 0, 0, .72); color: #fff;
  font: 800 .95rem/1 var(--sans); letter-spacing: .01em;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
  animation: unmute-pulse 2.4s ease-in-out 1s 3;   /* gentle attention nudge, only a few times */
}
.unmute svg { width: 22px; height: 22px; flex: none; }
.unmute .ic-on { display: none; }
.unmute.on .ic-off { display: none; }
.unmute.on .ic-on { display: block; }
.unmute:hover, .unmute:focus-visible { background: rgba(0, 0, 0, .9); }
.unmute:focus-visible, .hv-play:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
@keyframes unmute-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .5); } 50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); } }
@media (prefers-reduced-motion: reduce) { .unmute { animation: none; } }
.video .play::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  margin: -11px 0 0 -8px;
  border-style: solid; border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}

.price-row {
  display: flex; justify-content: center; align-items: baseline; flex-wrap: wrap;
  gap: 4px 20px;
  margin: 22px 0 6px;
  font-family: var(--serif);
  font-weight: 700;
  font-variant-numeric: lining-nums;
}
.price-row .old { color: #e0115f; font-size: clamp(1.4rem, 6.4vw, 1.9rem); text-decoration: line-through; text-decoration-thickness: 2px; }
.price-row .new { color: var(--gold); font-size: clamp(1.6rem, 7.4vw, 2.2rem); }
.price-note { text-align: center; font-size: .95rem; color: #6d6046; margin-bottom: 6px; }

.photo-card { background: #fff; border-radius: 26px; padding: 16px; box-shadow: 0 2px 14px rgba(120, 90, 30, .1); }
.photo-card .in { background: var(--grey); border-radius: 16px; overflow: hidden; }

/* ---------- buttons ---------- */
.cta { text-align: center; padding: 22px 0 4px; }
.btn-red {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px;
  padding: 12px 32px;
  border-radius: 10px;
  border: 1px solid #b80000;
  background: linear-gradient(180deg, #e31b10 0%, #d40000 55%, #b80000 100%);
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 3px 10px rgba(200, 0, 0, .3);
  transition: transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-red:hover, .btn-red:focus-visible { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 6px 14px rgba(200, 0, 0, .4); }
.btn-red:active { transform: translateY(1px); }
.btn-red svg { width: 24px; height: 24px; flex: none; }
.btn-red.wide { padding-left: 26px; padding-right: 26px; }

/* ---------- diamonds divider ---------- */
.diamonds {
  width: 300px; max-width: 86%; height: 16px; margin: 6px auto 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 16'%3E%3Cpath d='M12.5 1L19 8l-6.5 7L6 8z' fill='%23f7dc8f'/%3E%3C/svg%3E") repeat-x left center / 25px 16px;
}

/* ---------- copy ---------- */
.copy p { margin-bottom: 1.1em; text-align: center; font-size: 1.1rem; }
.copy p:last-child { margin-bottom: 0; }
.black .copy p { color: #fff; }

/* ---------- checklists ---------- */
.checks { max-width: 480px; margin: 0 auto; }
.checks li {
  position: relative;
  padding: 15px 0 15px 46px;
  border-bottom: 1px solid var(--gold-line);
  font-size: 1.12rem;
  line-height: 1.5;
}
.checks li:last-child { border-bottom: 0; }
.checks li::before {
  content: "";
  position: absolute; left: 2px; top: 17px;
  width: 28px; height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%23c68a10' stroke-width='2'/%3E%3Cpath d='M7.5 12.4l3 3 6-6.6' fill='none' stroke='%23c68a10' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.checks b { font-weight: 800; }
.black .checks li { color: #fff; border-color: #c9720a; }
.black .checks li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%23f0a020' stroke-width='2'/%3E%3Cpath d='M7.5 12.4l3 3 6-6.6' fill='none' stroke='%23f0a020' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.fineprint { text-align: center; font-size: .9rem; color: #6a6a6a; margin-top: 18px; }
.black .fineprint { color: #a8a8a8; }

/* ---------- black framed product card (section 3) ---------- */
.frame-card { background: #fffaf2; border-radius: 30px; padding: 14px; }
.frame-black { background: #000; border-radius: 14px; padding: 18px; }
.frame-black img { width: 100%; border-radius: 4px; }
.frame-body { padding: 26px 8px 8px; color: var(--ink); }
/* the cream card sits inside a black band: keep its list in the light-section colours */
.frame-card .checks li { color: var(--ink); border-color: var(--gold-line); }
.frame-card .checks li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%23c68a10' stroke-width='2'/%3E%3Cpath d='M7.5 12.4l3 3 6-6.6' fill='none' stroke='%23c68a10' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ---------- full-width product images (edge to edge inside the content column) ---------- */
.full-img { display: block; width: 100%; height: auto; border-radius: 10px; background: #fff; }
.checks + .full-img { margin-top: 30px; }
.stack { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }   /* small gap between stacked infographics */
.stack .full-img { border-radius: 6px; }
.white-card { background: #fff; border-radius: 18px; padding: 8px; }
.h-serif + .fineprint { margin: -12px 0 20px; }

/* ---------- specs facts ---------- */
.spec-img { width: 100%; background: #fff; border-radius: 4px; }
.facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; }
.facts span { border: 2px solid var(--yellow); color: var(--yellow); border-radius: 999px; padding: 4px 16px; font-weight: 700; font-size: .98rem; }

/* ---------- bottom line ---------- */
.bottom-line {
  font-size: clamp(1.35rem, 6vw, 1.75rem);
  line-height: 1.4;
  text-align: center;
  color: #fff;
}
.bottom-line em { color: var(--yellow); font-family: var(--serif); font-weight: 700; }

/* ---------- bold lead-in paragraphs (section 10) ---------- */
.lead-paras p { text-align: center; font-size: 1.15rem; line-height: 1.7; margin-bottom: 1.5em; color: #fff; }
.lead-paras p b { font-weight: 800; }

/* ---------- reviews ---------- */
.reviews-head { font-family: var(--display); font-weight: 800; text-align: center; font-size: clamp(1.2rem, 5.4vw, 1.7rem); margin-top: 26px; }
.review {
  background: #fff; color: var(--ink);
  border-radius: 24px;
  padding: 28px 22px 30px;
  text-align: center;
  margin-bottom: 16px;          /* small gap between stacked cards */
}
.review:last-of-type { margin-bottom: 0; }

/* Customer photo: 120px circle with a grey border. Behind the photo sits a gold circle with the person's
   first initial, so if the photo file is missing (JS adds .no-photo) the initial shows instead. */
.avatar-wrap {
  position: relative; display: block;
  width: 120px; height: 120px; margin: 0 auto 14px;
  border-radius: 50%; overflow: hidden;
  border: 4px solid #7a7a7a;
  background: #f0b429;
}
.avatar-wrap::before {
  content: attr(data-initial);
  position: absolute; inset: 0; display: grid; place-items: center;
  font: 700 3.2rem/1 var(--serif); color: #3b2600;
}
.avatar-wrap .avatar {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; background: transparent;
}
.avatar-wrap.no-photo .avatar { display: none; }

.review .who { font-weight: 800; font-size: 1.2rem; line-height: 1.3; }
.rev-stars {
  margin: 8px 0 12px; line-height: 1;
  color: #f5a800; font-size: 1.7rem; letter-spacing: .1em;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols 2", Arial, sans-serif;
}
.review-text { font-size: 1.08rem; line-height: 1.6; }
.reviews-cta { text-align: center; padding-top: 26px; }
.reviews-cta .btn-wa { max-width: 100%; padding: 12px 20px; text-align: center; font-size: clamp(.98rem, 4.3vw, 1.1rem); }

/* ---------- promo + delivery ---------- */
.promo-h {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  color: #ff1a1a; text-align: center; line-height: 1.2;
  font-size: clamp(1.25rem, 5.6vw, 1.6rem);
}
.promo-sub { font-family: var(--display); font-weight: 800; color: #ff1a1a; text-align: center; line-height: 1.3; font-size: clamp(1.05rem, 4.8vw, 1.35rem); margin: 22px 0 8px; }
.promo-when { text-align: center; color: #d0d0d0; font-size: 1rem; }
.rider { width: min(78%, 340px); height: auto; margin: 10px auto 0; }

/* ---------- HURRY UP box ---------- */
.hurry { background: #c9c4bb; border: 3px dashed #f08a1c; border-radius: 28px; overflow: hidden; margin-top: 34px; padding-bottom: 28px; color: var(--ink); }
.hurry-head { background: #e10000; color: #fff; text-align: center; font-family: var(--display); font-weight: 800; letter-spacing: .02em; padding: 10px; font-size: 1.15rem; }
.hurry-body { padding: 24px 20px 0; text-align: center; }
.hurry .spec-img { border-radius: 12px; }
.massive { background: #f00; color: #fff; border-radius: 10px; padding: 38px 10px; margin: 22px 0 26px; font-weight: 800; font-size: 1.5rem; }
.hurry .offer { font-size: 1.15rem; line-height: 1.6; }
.hurry .offer s { color: #e5001e; font-weight: 800; }
.hurry .offer .now { color: #0a9d58; font-weight: 800; }
.hurry .only { font-weight: 800; font-size: 1.55rem; margin: 26px 0 16px; }
.hurry .short { font-weight: 800; font-size: 1.1rem; }

/* ---------- trust badges ---------- */
.trust { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 10px; max-width: 460px; margin: 0 auto; }
.trust li { display: flex; align-items: center; gap: 10px; }
.trust svg { width: 46px; height: 46px; flex: none; }
.trust b { display: block; font-size: .95rem; line-height: 1.2; }
.trust span { display: block; font-size: .9rem; color: #555; line-height: 1.25; }

/* ---------- pricing cards ---------- */
.pack-card {
  background: var(--rust);
  border-radius: 40px;
  padding: 44px 24px 42px;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}
.pack-card:last-child { margin-bottom: 0; }
.pack-title { color: var(--pack-yellow); font-weight: 800; font-size: 1.6rem; line-height: 1.2; }
.pack-sub { color: var(--pack-yellow); font-weight: 700; font-size: 1.2rem; }
.pack-price { display: block; font-weight: 800; font-size: clamp(2.6rem, 13vw, 3.4rem); letter-spacing: -.03em; line-height: 1.1; margin: 34px 0 10px; }
.pack-old { display: block; font-weight: 700; font-size: 1.4rem; text-decoration: line-through; text-decoration-thickness: 2px; margin-bottom: 14px; }
.pack-list { display: inline-block; text-align: left; margin-bottom: 26px; }
.pack-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 6px;
  border-bottom: 1.5px solid #fff;
  font-size: 1.15rem;
}
.pack-list li:last-child { border-bottom: 0; }
.pack-list li::before {
  content: ""; width: 22px; height: 22px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 12.5l6 6L21 6' fill='none' stroke='%23ffee00' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.btn-buy {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 230px; min-height: 60px; padding: 12px 34px;
  border-radius: 999px; border: 4px solid #fff;
  background: #e00000; color: #fff;
  font-weight: 800; font-size: 1.5rem; text-transform: uppercase; text-decoration: none;
}
.btn-buy:hover, .btn-buy:focus-visible { background: #f80c0c; }

/* ---------- order form ---------- */
.order { scroll-margin-top: 10px; }
.form-title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  color: var(--gold); text-align: center; line-height: 1.15;
  font-size: clamp(1.65rem, 8vw, 2.5rem); margin-bottom: 22px;
}
.notice {
  background: var(--red); color: #fff;
  border-radius: 10px; padding: 16px 16px;
  font-family: var(--serif); font-size: clamp(1.15rem, 5.2vw, 1.4rem); line-height: 1.4;
  text-align: center; margin-bottom: 26px;
}
.field { margin-bottom: 20px; }
.field > label, .field > .legend { display: block; font-weight: 700; font-size: .98rem; margin-bottom: 6px; }
.req { color: var(--red); }
.field input:not([type="radio"]), .field select {
  width: 100%; min-height: 52px; padding: 10px 16px;
  border: 3px solid #d2d2d2; border-radius: 12px;
  background: #fff; color: var(--ink);
  font: inherit; font-size: 1.05rem;
  appearance: none; -webkit-appearance: none;
}
.field select {
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 9l7 7 7-7' fill='none' stroke='%23111' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 22px;
}
.field input::placeholder { color: #9b9b9b; }
.field input:focus, .field select:focus { outline: 3px solid rgba(240, 73, 11, .25); border-color: var(--orange); }
.field input:user-invalid, .field select:user-invalid { border-color: var(--red); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--red); background-color: #fff7f7; }
.field-error { margin: 6px 0 0; color: #b00020; font-size: .95rem; font-weight: 700; line-height: 1.4; }
.field-error::before { content: "⚠ "; }
.field > .pack-pick + .field-error { margin-top: 2px; }
.field.ready select { border-color: #000; border-radius: 16px; text-transform: uppercase; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field > .pack-pick { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; font-weight: 400; font-size: 1rem; cursor: pointer; }
.pack-pick input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pack-pick .thumb { width: 86px; height: 86px; flex: none; border: 4px solid #777; object-fit: contain; background: #f1f1f1; }
.pack-pick .box {
  width: 28px; height: 28px; flex: none;
  border: 3px solid #777; border-radius: 4px; background: #fff;
}
.pack-pick .txt { font-size: 1.05rem; line-height: 1.35; }
.pack-pick input:checked ~ .thumb { border-color: #1785b8; }
.pack-pick input:checked ~ .box {
  border-color: #1785b8;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12.5l5.5 5.5L20 6.5' fill='none' stroke='%231785b8' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 20px;
}
.pack-pick input:focus-visible ~ .box { outline: 3px solid rgba(23, 133, 184, .4); }

.form-error {
  display: none; background: #fff1f1; border: 2px solid var(--red); color: #8a0f0f;
  border-radius: 10px; padding: 10px 14px; margin-bottom: 16px; font-weight: 600;
}
.form-error.show { display: block; }

.btn-submit {
  display: block; width: 100%; min-height: 58px; padding: 14px 10px;
  border: 0; border-radius: 6px; background: var(--red); color: #fff;
  font: inherit; font-size: 1.05rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  cursor: pointer;
}
.btn-submit:hover, .btn-submit:focus-visible { background: #d80000; }
.btn-submit[disabled] { opacity: .7; cursor: wait; }
.form-note { text-align: center; font-size: .92rem; color: #555; margin-top: 10px; }

/* ---------- Cognito Forms embed: match the page's fonts, rounded inputs, full-width red button.
   Cognito ships its own protected styles (class "cog-cognito--protect-css"), so these need !important
   to win reliably regardless of load order. Scoped to #cognito-order-form so nothing else is touched. ---------- */
#cognito-order-form { font-family: var(--sans) !important; margin-top: 6px; min-height: 80px; }
#cognito-order-form * { font-family: var(--sans) !important; }
#cognito-order-form .cog-field { margin-bottom: 4px; }

#cognito-order-form .el-input__inner,
#cognito-order-form textarea.el-textarea__inner {
  min-height: 50px !important;
  padding: 10px 14px !important;
  border: 3px solid #d2d2d2 !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--ink) !important;
  font-size: 1.05rem !important;
  box-shadow: none !important;
}
#cognito-order-form .el-input__inner:focus,
#cognito-order-form textarea.el-textarea__inner:focus {
  border-color: var(--orange) !important;
  outline: 3px solid rgba(240, 73, 11, .25) !important;
}

/* Radio / checkbox choice options (e.g. "Are you ready to pay on delivery?", and Package once added) */
#cognito-order-form .el-radio__inner,
#cognito-order-form .el-checkbox__inner { border: 2px solid #8a8a8a !important; }
#cognito-order-form .el-radio__input.is-checked .el-radio__inner,
#cognito-order-form .el-checkbox__input.is-checked .el-checkbox__inner { border-color: var(--orange) !important; background: var(--orange) !important; }
#cognito-order-form .el-radio__label,
#cognito-order-form .el-checkbox__label { font-size: 1.02rem !important; }

/* Full-width red submit button, matching .btn-submit used elsewhere on this page */
#cognito-order-form button.cog-button--submit {
  display: block !important;
  width: 100% !important;
  min-height: 58px !important;
  margin-top: 14px !important;
  padding: 14px 10px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: var(--red) !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: .03em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}
#cognito-order-form button.cog-button--submit:hover,
#cognito-order-form button.cog-button--submit:focus-visible { background: #d80000 !important; }

/* Cognito's own required-field asterisks and validation text: keep them the page's red, not their default */
#cognito-order-form .cog-required-mark,
#cognito-order-form .cog-error-message { color: var(--red) !important; }

/* ---------- help ---------- */
.help h2 { font-family: var(--serif); font-weight: 700; color: var(--gold); text-align: center; font-size: clamp(1.8rem, 8vw, 2.4rem); }
.help .tag { text-align: center; font-size: 1.15rem; margin: 10px 0 24px; }
.help-row { display: flex; align-items: center; justify-content: center; gap: 16px; text-decoration: none; margin-bottom: 18px; }
.help-ico { width: 54px; height: 54px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex: none; }
.help-ico svg { width: 32px; height: 32px; }
.help-ico.call { background: var(--gold); }
.help-ico.wa { background: #0b7f33; }
.help-num { font-family: var(--serif); font-weight: 700; font-variant-numeric: lining-nums; color: #2447c9; font-size: clamp(1.6rem, 7.6vw, 2.1rem); letter-spacing: .01em; }

/* ---------- footer ---------- */
.site-footer { background: #f5f3f3; color: #6d6868; text-align: center; padding: 34px 0 110px; font-size: .9rem; line-height: 1.65; }
.site-footer p + p { margin-top: 14px; }
.site-footer .copy-line { color: #555; font-weight: 600; }

/* ---------- floating contact bubble ---------- */
.chat-bubble {
  position: fixed; right: 14px; bottom: 18px; z-index: 50;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; -webkit-tap-highlight-color: transparent;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.form-in-view .chat-bubble { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(12px); }
/* after a few seconds the "Contact us" label folds away, leaving just the round icon, so the bubble covers as little as possible.
   It comes back when the visitor hovers over / focuses the bubble. */
.chat-bubble.compact .chat-label { display: none; }
.chat-bubble.compact:hover .chat-label, .chat-bubble.compact:focus-visible .chat-label { display: block; }
.chat-label {
  position: relative; background: #fff; color: #222;
  font-weight: 700; font-size: 1.02rem;
  padding: 10px 16px; border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
}
.chat-label::after {
  content: ""; position: absolute; right: -7px; top: 50%; margin-top: -8px;
  border-style: solid; border-width: 8px 0 8px 8px; border-color: transparent transparent transparent #fff;
}
.chat-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #2fa552; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .25);
}
.chat-btn svg { width: 30px; height: 30px; }

/* ---------- prices not filled in yet ---------- */
.price-unset {
  background: #fff3b0 !important; color: #5c4500 !important;
  outline: 2px dashed #b48a00; border-radius: 4px; padding: 0 .3em;
  text-decoration: none !important;
}

/* ---------- thank-you page ---------- */
.thanks { padding: 60px 0 40px; text-align: center; }
.thanks .tick { width: 88px; height: 88px; margin: 0 auto 20px; border-radius: 50%; background: #0b7f33; display: grid; place-items: center; }
.thanks .tick svg { width: 46px; height: 46px; }
.thanks h1 { font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: clamp(1.7rem, 7.6vw, 2.3rem); line-height: 1.2; margin-bottom: 16px; }
.thanks p { font-size: 1.15rem; margin-bottom: 1em; }
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 12px 28px; border-radius: 10px;
  background: #0b7f33; color: #fff; text-decoration: none;
  font-weight: 800; font-size: 1.1rem; box-shadow: 0 4px 12px rgba(18, 130, 60, .35);
}
.btn-wa svg { width: 26px; height: 26px; }
.back-link { display: inline-block; margin-top: 20px; color: #666; font-size: .98rem; }
.page-flex { min-height: 100vh; display: flex; flex-direction: column; }
.page-flex main { flex: 1; }
.page-flex .site-footer { padding-bottom: 34px; }
