body {
      font-family: var(--font-sans) !important;
      background-color: var(--cream) !important;
      color: var(--text) !important;
      line-height: 1.6 !important;
      margin: 0;
      padding: 0;
    }
    h1, h2, h3, h4, h5, h6, p {
      margin-bottom: 0; /* Keep original spacing */
    }
    h1, h2, h3, .brand-name {
      font-family: var(--font-serif) !important;
      font-weight: 700 !important;
    }
    button {
      border: none;
      cursor: pointer;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    *, *::before, *::after {
      box-sizing: border-box;
    }
    /* ------------------------------------------- */

    :root {
      /* Refined Professional Palette */
      --green: #1B3022;
      /* Deeper "British Racing Green" */
      --green-dk: #0D1A12;
      --gold: #A67C37;
      /* Muted, less "yellow" gold */
      --cream: #FDFCF8;
      /* Paper-like finish */
      --text: #222222;

      /* Modern Sans for UI/Buttons */
      --font-sans: 'Poppins', 'Inter', -apple-system, sans-serif;
      /* Old School Serif for Headings */
      --font-serif: 'Libre Baskerville', 'Times New Roman', serif;
    }

    body {
      font-family: var(--font-sans);
      background-color: var(--cream);
      line-height: 1.6;
    }

    h1,
    h2,
    h3,
    .brand-name {
      font-family: var(--font-serif);
      font-weight: 700;
      letter-spacing: -0.02em;
      /* Tighter tracking for elegance */
    }

    .label,
    .nav-link,
    button {
      font-family: var(--font-sans);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      /* Spaced out for modern clarity */
    }

    /* ── PROGRESS BAR ── */
    .progress-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: rgba(27, 94, 48, .2);
      z-index: 9998;
    }

    .progress-fill {
      height: 100%;
      background: var(--green);
      width: 0%;
    }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--green);
      color: #fff;
      text-align: center;
      padding: 9px 16px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .3px;
    }

    .topbar span {
      color: var(--gold2);
    }

    /* ── HEADER ── */
    .header {
      background: #fff;
      padding: 13px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      border-bottom: 3px solid var(--green);
      box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
      flex-wrap: wrap;
      position: sticky;
      top: 0;
      z-index: 200;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 27px;
      font-weight: 800;
      color: var(--green);
      letter-spacing: -1px;
    }

    .logo span {
      color: var(--gold);
    }

    .logo small {
      font-size: 12px;
      color: var(--muted);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      margin-left: 4px;
    }

    .hbadges {
      display: flex;
      gap: 7px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hbadge {
      background: var(--green);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: .4px;
    }

    .hbadge.g {
      background: var(--gold);
    }

    /* ── HERO SLIDER ── */
    .hero-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      cursor: pointer;
    }

    .hero-track {
      display: flex;
      transition: transform .6s ease;
    }

    .hero-slide {
      min-width: 100%;
      position: relative;
    }

    .hero-slide img {
      width: 100%;
      display: block;
      max-height: 520px;
      object-fit: cover;
      object-position: center top;
    }

    .hero-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, .60));
      padding: 24px 20px;
      color: #fff;
    }

    .hero-overlay h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(18px, 4.5vw, 30px);
      font-weight: 800;
      margin-bottom: 5px;
      line-height: 1.2;
    }

    .hero-overlay p {
      font-size: 13px;
      opacity: .9;
      margin-bottom: 10px;
    }

    .hero-cta {
      display: inline-block;
      background: var(--gold);
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      padding: 10px 26px;
      border-radius: 50px;
      cursor: pointer;
      border: none;
      font-family: 'DM Sans', sans-serif;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 10px;
      background: #fff;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: all .3s;
    }

    .dot.active {
      background: var(--green);
      width: 24px;
      border-radius: 4px;
    }

    /* ── OFFER BOX ── */
    .offer-box {
      background: linear-gradient(135deg, var(--green), #1A4A28);
      color: #fff;
      text-align: center;
      padding: 22px 20px;
    }

    .offer-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 5vw, 30px);
      font-weight: 800;
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .offer-title span {
      color: var(--gold2);
    }

    .offer-sub {
      font-size: 14px;
      opacity: .85;
      margin-bottom: 14px;
    }

    .offer-pills {
      display: flex;
      justify-content: center;
      gap: 9px;
      flex-wrap: wrap;
    }

    .offer-pill {
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 600;
    }

    /* ── PRODUCT SECTION ── */
    .product-section {
      /* display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      max-width: 820px; */
      margin: 0 auto;
      padding: 30px 20px;
      align-items: center;
    }

    .product-img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, .13);
    }

    .product-info h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(19px, 3.5vw, 26px);
      font-weight: 800;
      color: var(--green);
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .product-info p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 12px;
    }

    .price-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .price-now {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      font-weight: 800;
      color: var(--green);
    }

    .price-was {
      font-size: 16px;
      text-decoration: line-through;
      color: #aaa;
    }

    .price-save {
      background: #E8F5E9;
      color: var(--green);
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 10px;
      border: 1px solid #A5D6A7;
    }

    .mini-checks {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }

    .mc {
      font-size: 13px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .mc::before {
      content: '✓';
      color: var(--green);
      font-weight: 800;
      font-size: 15px;
    }

    .order-now-btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--green), var(--green-dk));
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      padding: 11px 22px;
      border-radius: 50px;
      cursor: pointer;
      border: none;
      font-family: 'DM Sans', sans-serif;
      box-shadow: 0 6px 20px rgba(27, 94, 48, .35);
      animation: pulse 2.5s ease-in-out infinite;
    }

    /* ── FULL-WIDTH IMAGE SECTIONS ── */
    .img-section {
      padding: 0;
    }

    .img-section img {
      width: 100%;
      display: block;
      max-width: 700px;
      margin: 0 auto;
    }

    .img-section.padded {
      padding: 20px 16px;
      background: #fff;
    }

    .img-section.padded img {
      border-radius: 16px;
      box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
    }

    /* ── TRUST ROW ── */
    .trust-row {
      background: var(--green);
      padding: 16px 20px;
      display: flex;
      justify-content: space-around;
      gap: 24px;
      flex-wrap: wrap;
    }

    .trust-item {
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .trust-icon {
      font-size: 17px;
    }

    /* ── URGENCY ── */
    .urgency {
      background: linear-gradient(90deg, #B71C1C, var(--red));
      color: #fff;
      text-align: center;
      padding: 13px 20px;
      font-size: 14px;
      font-weight: 700;
    }

    .urgency span {
      color: #FFD54F;
    }

    /* ── COUNTDOWN STRIP ── */
    .countdown-strip {
      background: var(--green-dk);
      color: #fff;
      text-align: center;
      padding: 14px 20px;
    }

    .cd-label {
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold2);
      margin-bottom: 8px;
      font-weight: 700;
    }

    .cd-row {
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }

    .cd-box {
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 8px;
      padding: 6px 12px;
      min-width: 52px;
      text-align: center;
    }

    .cd-num {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--gold2);
      line-height: 1;
      display: block;
    }

    .cd-lbl {
      font-size: 9px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-top: 2px;
      display: block;
    }

    .cd-sep {
      font-size: 24px;
      font-weight: 800;
      color: var(--gold2);
      align-self: center;
      margin-bottom: 4px;
    }

    /* ── REVIEWS ── */
    .reviews-section {
      padding: 36px 20px;
      background: #fff;
    }

    .sec-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 4vw, 26px);
      font-weight: 800;
      color: var(--green);
      margin-bottom: 20px;
      text-align: center;
    }

    .sec-title span {
      color: var(--gold);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      max-width: 900px;
      margin: 0 auto;
    }

    .review-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 20px;
      border: 1px solid #D4E8D8;
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 300px;
    }

    .review-stars {
      color: var(--gold);
      font-size: 15px;
      margin-bottom: 8px;
    }

    .review-text {
      font-size: 13px;
      color: var(--text);
      line-height: 1.65;
      margin-bottom: 12px;
      font-style: italic;
      flex: 1;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 4;
      overflow: hidden;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .reviewer-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 14px;
      flex-shrink: 0;
    }

    .reviewer-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--green);
    }

    .reviewer-loc {
      font-size: 11px;
      color: var(--muted);
    }

    .verified {
      position: absolute;
      top: 14px;
      right: 14px;
      background: #E8F5E9;
      color: var(--green);
      font-size: 9px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 10px;
      border: 1px solid #A5D6A7;
    }

    /* ── FAQ ── */
    .faq-outer {
      background: var(--cream2);
      padding: 36px 20px;
    }

    .faq-wrap {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: #fff;
      border-radius: 12px;
      margin-bottom: 10px;
      border: 1px solid #D4E8D8;
      overflow: hidden;
    }

    .faq-q {
      padding: 16px 20px;
      font-size: 14px;
      font-weight: 700;
      color: var(--green);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      background: none;
      border: none;
      font-family: 'DM Sans', sans-serif;
      text-align: left;
    }

    .faq-q::after {
      content: '▼';
      font-size: 11px;
      transition: transform .3s;
      flex-shrink: 0;
      margin-left: 10px;
    }

    .faq-item.open .faq-q::after {
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
      padding: 0 20px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
    }

    .faq-item.open .faq-a {
      max-height: 220px;
      padding: 0 20px 16px;
    }

    /* ── ORDER FORM ── */
    .form-section {
      padding: 40px 20px;
      background: linear-gradient(180deg, #eef5ec, var(--cream));
    }

    .form-head {
      text-align: center;
      margin-bottom: 22px;
    }

    .form-head h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 4.5vw, 30px);
      font-weight: 800;
      color: var(--green);
      margin-bottom: 6px;
    }

    .form-head p {
      font-size: 14px;
      color: var(--muted);
    }

    .form-product-wrap {
      position: relative;
      margin-bottom: 24px;
      border-radius: 20px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--green-dk), var(--green), var(--green-dk));
      padding: 22px;
      text-align: center;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 24px;
    }

    .form-product-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(201, 147, 58, .18) 0%, transparent 70%);
    }

    .form-product-img {
      width: 100%;
      /* max-width: 360px; */
      display: block;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .form-product-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--gold);
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 20px;
      z-index: 2;
    }

    .form-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      box-shadow: 0 8px 35px rgba(0, 0, 0, .1);
      border: 2px solid rgba(27, 94, 48, .12);
      max-width: 560px;
      margin: 0 auto;
    }

    .timer-box {
      background: #fff;
      border: 2px dashed var(--gold);
      border-radius: 12px;
      padding: 10px 16px;
      text-align: center;
      margin-bottom: 18px;
    }

    .timer-box p {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 5px;
      font-weight: 600;
    }

    .timer-digits {
      display: flex;
      justify-content: center;
      gap: 8px;
      align-items: flex-start;
    }

    .td-wrap {
      display: flex;
      flex-direction: column;
    }

    .td {
      background: var(--green);
      color: #fff;
      border-radius: 8px;
      padding: 6px 10px;
      font-size: 20px;
      font-weight: 800;
      font-family: 'Playfair Display', serif;
      min-width: 42px;
      text-align: center;
      display: block;
    }

    .td-label {
      font-size: 9px;
      color: var(--muted);
      text-align: center;
      font-weight: 600;
      margin-top: 3px;
      letter-spacing: .5px;
      display: block;
    }

    .timer-sep {
      font-size: 22px;
      font-weight: 800;
      color: var(--green);
      align-self: center;
      padding-bottom: 14px;
    }

    .pkg-pick {
  display: grid;
  /* Change from 1fr 1fr 1fr to just 1fr */
  grid-template-columns: 1fr; 
  margin-bottom: 20px;
  
  /* This centers the item horizontally */
  justify-items: center; 
}

.pkg-opt {
  /* Give it a specific width or max-width so it doesn't stretch full width */
  width: fit-content;
  min-width: 200px;
  
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 15px 30px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}

    .pkg-opt:hover {
      border-color: var(--green);
    }

    .pkg-opt.active {
      border-color: var(--green);
      background: #F1F8F4;
    }

    .pkg-opt .bottles {
      font-size: 22px;
    }

    .pkg-opt .pname {
      font-size: 11px;
      font-weight: 700;
      color: var(--green);
      margin-top: 4px;
    }

    .pkg-opt .pprice {
      font-size: 26px;
      font-weight: 800;
      color: var(--text);
    }

    .pkg-opt .pwas {
      font-size: 14px;
      color: #aaa;
      text-decoration: line-through;
    }

    .pkg-opt .psave {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      padding: 2px 8px;
      border-radius: 10px;
      white-space: nowrap;
      letter-spacing: .3px;
    }

    .fl {
      margin-bottom: 14px;
    }

    .fl label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 5px;
      letter-spacing: .3px;
      text-transform: uppercase;
    }

    .fl input,
    .fl select,
    .fl textarea {
      width: 100%;
      padding: 12px 14px;
      border: 2px solid #E0EDE4;
      border-radius: 10px;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: #FAFFF8;
      outline: none;
      transition: border-color .2s;
    }

    .fl input:focus,
    .fl select:focus,
    .fl textarea:focus {
      border-color: var(--green);
      background: #fff;
    }

    .fl textarea {
      resize: vertical;
      min-height: 72px;
    }

    .fl-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .cod-badge {
      background: #E8F5E9;
      border: 1px solid #A5D6A7;
      color: var(--green);
      border-radius: 10px;
      padding: 9px 16px;
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      margin: 12px 0;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, var(--green), var(--green-dk));
      color: #fff;
      border: none;
      border-radius: 50px;
      font-size: 17px;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(27, 94, 48, .35);
      font-family: 'DM Sans', sans-serif;
      letter-spacing: .3px;
      transition: all .3s;
      margin-top: 6px;
      animation: pulse 2.5s ease-in-out infinite;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(27, 94, 48, .45);
    }

    .form-footer {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-top: 12px;
      flex-wrap: wrap;
    }

    .ff-item {
      font-size: 11px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ── SUCCESS BOX ── */
    .success-box {
      display: none;
      background: linear-gradient(135deg, #E8F5E9, #F1F8F4);
      border: 2px solid var(--green);
      border-radius: 16px;
      padding: 36px 24px;
      text-align: center;
      max-width: 560px;
      margin: 0 auto;
    }

    .success-box.show {
      display: block;
    }

    .success-box .si {
      font-size: 58px;
    }

    .success-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--green);
      margin: 12px 0 8px;
    }

    .success-box p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ── STICKY MOBILE CTA ── */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 300;
      padding: 10px 14px;
      background: #fff;
      border-top: 2px solid #D4E8D8;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
    }

    .sticky-cta button {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--green), var(--green-dk));
      color: #fff;
      font-weight: 800;
      font-size: 15px;
      border: none;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      animation: pulse 2.5s ease-in-out infinite;
    }

    /* ── POPUP ── */
    .popup-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .68);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }

    .popup-overlay.show {
      display: flex;
    }

    .popup-box {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      max-width: 420px;
      width: 100%;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .32);
      border-top: 5px solid var(--green);
      animation: popIn .4s cubic-bezier(.34, 1.56, .64, 1);
      max-height: 90vh;
      overflow-y: auto;
    }

    @keyframes popIn {
      from {
        transform: scale(.82);
        opacity: 0
      }

      to {
        transform: scale(1);
        opacity: 1
      }
    }

    .popup-close {
      position: absolute;
      top: 12px;
      right: 14px;
      background: none;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: var(--muted);
      line-height: 1;
    }

    .popup-head {
      text-align: center;
      margin-bottom: 16px;
    }

    .popup-icon {
      font-size: 38px;
      margin-bottom: 6px;
    }

    .popup-head h3 {
      font-family: 'Playfair Display', serif;
      font-size: 21px;
      font-weight: 800;
      color: var(--green);
      margin-bottom: 4px;
    }

    .popup-head p {
      font-size: 12px;
      color: var(--muted);
    }

    .popup-timer {
      background: linear-gradient(135deg, var(--green), var(--green-dk));
      color: #fff;
      border-radius: 10px;
      padding: 8px 14px;
      text-align: center;
      margin-bottom: 14px;
      font-size: 12px;
      font-weight: 700;
    }

    .popup-timer span {
      color: var(--gold2);
      font-size: 16px;
      font-weight: 800;
    }

    .popup-pkg {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 14px;
    }

    .pop-pkg-opt {
      border: 2px solid #ddd;
      border-radius: 10px;
      padding: 10px 7px;
      text-align: center;
      cursor: pointer;
      transition: all .2s;
      position: relative;
    }

    .pop-pkg-opt.active {
      border-color: var(--green);
      background: #F1F8F4;
    }

    .pop-pkg-opt .pp-icon {
      font-size: 18px;
    }

    .pop-pkg-opt .pp-name {
      font-size: 10px;
      font-weight: 700;
      color: var(--green);
      margin-top: 3px;
    }

    .pop-pkg-opt .pp-price {
      font-size: 14px;
      font-weight: 800;
      color: var(--text);
    }

    .pop-pkg-opt .pp-was {
      font-size: 10px;
      color: #aaa;
      text-decoration: line-through;
    }

    .pop-pkg-opt .pp-save {
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: #fff;
      font-size: 8px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 8px;
      white-space: nowrap;
    }

    .popup-submit {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--green), var(--green-dk));
      color: #fff;
      border: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 800;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      margin-top: 8px;
      animation: pulse 2.5s ease-in-out infinite;
    }

    .popup-skip {
      text-align: center;
      margin-top: 10px;
      font-size: 12px;
      color: var(--muted);
      cursor: pointer;
      text-decoration: underline;
    }

    .popup-footer-trust {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .pft {
      font-size: 11px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 3px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--green);
      color: rgba(255, 255, 255, .72);
      text-align: center;
      padding: 26px 20px;
      font-size: 12px;
      line-height: 1.75;
    }

    .flogo {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .flogo span {
      color: var(--gold2);
    }

    .disclaimer {
      font-size: 11px;
      color: var(--muted);
      text-align: center;
      padding: 12px 20px;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 6px 20px rgba(27, 94, 48, .35)
      }

      50% {
        box-shadow: 0 6px 35px rgba(27, 94, 48, .6)
      }
    }

    @media(max-width:600px) {
      .product-section {
        grid-template-columns: 1fr;
      }

      .fl-row {
        grid-template-columns: 1fr;
      }

      .feat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .trust-row {
        gap: 13px;
      }

      .sticky-cta {
        display: block;
      }

      body {
        padding-bottom: 70px;
      }
    }

    @media(min-width:601px) {
      .header {
        justify-content: space-between;
        padding: 13px 28px;
      }
    }

    /* ── SWIPER CAROUSELS ── */
    .img-carousel-section {
      padding: 20px 0;
      max-width: 900px;
      margin: 0 auto;
    }

    .img-carousel-section .swiper-slide img {
      width: 100%;
      display: block;
      max-width: 700px;
      margin: 0 auto;
      border-radius: 12px;
    }

    .img-carousel-section .swiper-pagination-bullet {
      background: var(--green);
    }

    .product-section .swiper,
    .img-carousel-section .swiper {
      position: relative;
    }

    .product-section .swiper-button-next,
    .product-section .swiper-button-prev,
    .img-carousel-section .swiper-button-next,
    .img-carousel-section .swiper-button-prev {
      top: 50%;
      width: 34px;
      height: 34px;
      margin-top: 0;
      transform: translateY(-50%);
      color: var(--green);
      background: rgba(253, 252, 248, .88);
      border: 1px solid rgba(27, 48, 34, .12);
      border-radius: 999px;
      box-shadow: 0 10px 20px rgba(13, 26, 18, .14);
      backdrop-filter: blur(6px);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .product-section .swiper-button-next:hover,
    .product-section .swiper-button-prev:hover,
    .img-carousel-section .swiper-button-next:hover,
    .img-carousel-section .swiper-button-prev:hover {
      background: rgba(255, 255, 255, .98);
      box-shadow: 0 12px 24px rgba(13, 26, 18, .18);
      transform: translateY(-50%) scale(1.04);
    }

    .product-section .swiper-button-next::after,
    .product-section .swiper-button-prev::after,
    .img-carousel-section .swiper-button-next::after,
    .img-carousel-section .swiper-button-prev::after {
      font-size: 14px;
      font-weight: 700;
    }

    .reviews-carousel {
      max-width: 900px;
      margin: 0 auto;
      padding-bottom: 40px;
    }

    .reviews-carousel .swiper-wrapper {
      align-items: stretch;
    }

    .reviews-carousel .swiper-slide {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .reviews-carousel .swiper-slide .review-card {
      margin-bottom: 0;
    }

    .reviews-carousel .swiper-pagination-bullet-active {
      background: var(--green);
    }

    .reviews-carousel .swiper-button-next,
    .reviews-carousel .swiper-button-prev {
      color: var(--green);
      top: 45%;
    }

    @media(max-width:600px) {

      .img-carousel-section .swiper-button-next,
      .img-carousel-section .swiper-button-prev,
      .reviews-carousel .swiper-button-next,
      .reviews-carousel .swiper-button-prev {
        display: none;
      }
    }

    /* VIDEO PLACEHOLDER */
    .video-section {
      padding: 12px 16px;
    }

    .video-placeholder {
      position: relative;
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
      aspect-ratio: 9/16;
      background: linear-gradient(135deg, var(--green-dk), var(--green));
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    }

    .video-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    }

    .video-placeholder .play-icon {
      width: 72px;
      height: 72px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
      border: 2px solid rgba(255, 255, 255, 0.3);
      z-index: 2;
    }

    .video-placeholder .play-icon svg {
      width: 32px;
      height: 32px;
      fill: #fff;
    }

    .video-placeholder .video-label {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.85);
      font-size: 13px;
      font-weight: 500;
      z-index: 2;
      white-space: nowrap;
    }

    .video-placeholder video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 18px;
    }

    @media(min-width:768px) {
      body {
        font-size: 17px;
      }

      .topbar {
        font-size: 15px;
        padding: 11px 24px;
      }

      .header {
        padding: 16px 32px;
        gap: 18px;
      }

      .logo {
        font-size: 32px;
      }

      .hbadge {
        font-size: 13px;
        padding: 5px 12px;
      }

      .hero-slide img {
        object-fit: cover;
        width: 100%;
        max-height: 520px;
      }

      .hero-overlay h2 {
        font-size: 2rem;
      }

      .hero-cta {
        font-size: 1.1rem;
        padding: 14px 36px;
      }

      .padded {
        padding: 20px 32px;
      }
      .padded-s {
        padding: 10px 16px;
      }
      .padded-m {
        padding: 15px 24px;
      }

      .sec-title {
        font-size: 1.7rem;
      }

      .trust-row {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: space-around;
      }

      .order-section {
        padding: 28px 40px;
      }

      .order-form {
        max-width: 520px;
        margin: 0 auto;
      }

      .order-now-btn {
        font-size: 1.15rem;
        /* padding: 16px 40px; */
        /* padding: 13px 26px; */
      }

      .reviews-carousel {
        max-width: 1000px;
      }

      .faq-outer {
        max-width: 720px;
        margin: 0 auto;
        padding: 20px 32px;
      }

      .img-carousel-section {
        max-width: 780px;
        margin: 0 auto;
      }

      .video-placeholder {
        max-width: 320px;
      }
    }

    @media(min-width:1024px) {
      body {
        font-size: 18px;
      }

      .header {
        padding: 18px 48px;
      }

      .logo {
        font-size: 36px;
      }

      .hero-slide img {
        max-height: 600px;
      }

      .hero-overlay h2 {
        font-size: 2.5rem;
      }

      .padded {
        padding: 28px 48px;
      }
      .padded-s {
        padding: 14px 24px;
      }
      .padded-m {
        padding: 21px 36px;
      }

      .sec-title {
        font-size: 2rem;
      }

      .order-section {
        padding: 36px 64px;
      }

      .order-form {
        max-width: 600px;
      }

      .reviews-carousel {
        max-width: 1100px;
      }

      .faq-outer {
        max-width: 820px;
      }

      .img-carousel-section {
        max-width: 900px;
      }

      .video-placeholder {
        max-width: 375px;
      }
    }

    @media(min-width:1280px) {
      .hero-slide img {
        max-height: 680px;
      }

      .padded {
        padding: 32px 80px;
      }
      .padded-s {
        padding: 16px 40px;
      }
      .padded-m {
        padding: 24px 60px;
      }

      .order-section {
        max-width: 1100px;
        margin: 0 auto;
      }

      .img-carousel-section {
        max-width: 1000px;
      }
    }
@media screen and (max-width: 767px) {
    .hbadges {
        display: none !important;
    }
}
.hbadges .hbadge{
    font-family: auto;
}
.product-section .card .swiper-slide{
    align-self: center;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide img, 
.swiper-slide video {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-slide .review-card {
  margin-bottom: 20px;
}

/* image {
object-fit: contain;
} */
/* Hides the seek bar, time display, and full-screen button */
  .custom-player::-webkit-media-controls-timeline,
  .custom-player::-webkit-media-controls-current-time-display,
  .custom-player::-webkit-media-controls-time-remaining-display,
  .custom-player::-webkit-media-controls-fullscreen-button {
    display: none;
  }
  /* Removes the triple dot "Settings" / Download menu */
video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

video::-webkit-media-controls-panel {
  width: calc(100% + 30px); /* Pushes the menu button outside the viewable area */
}
