/**
 * Healthy & Tasty Checkout — front-end (checkout + thank-you shortcodes only).
 * Admin: assets/css/admin.css
 */
:root {
    --green: #5f3089;
    --green-light: #7d45ab;
    --green-dark: #3d1a6e;
    --yellow: #ffd04d;
    --yellow-light: #fff8e1;
    --cream: #fdf9ff;
    --cream-dark: #ede0f5;
    --text: #1a0a2e;
    --text-light: #6b5a80;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(74,124,89,0.12);
    --radius: 16px;
    --ht-content-max: 1200px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Cairo', sans-serif; }

  body {
    background: var(--cream);
    color: var(--text);
    direction: rtl;
  }

  /* Keep checkout surfaces stable across theme/user dark-mode overrides. */
  .ht-checkout-page {
    color-scheme: light;
    background: var(--cream);
    color: var(--text);
  }
  .ht-checkout-page #mainCheckout,
  .ht-checkout-page .progress-wrap,
  .ht-checkout-page .container,
  .ht-checkout-page .brand-hero,
  .ht-checkout-page .why-section,
  .ht-checkout-page .faq-section,
  .ht-checkout-page .reviews-section,
  .ht-checkout-page .ty-steps,
  .ht-checkout-page .ty-order,
  .ht-checkout-page .ty-order-card,
  .ht-checkout-page .selected-sauces-summary,
  .ht-checkout-page .form-card,
  .ht-checkout-page .offer-card,
  .ht-checkout-page .sauce-grid,
  .ht-checkout-page .faq-item {
    color-scheme: light;
  }

  #mainCheckout {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* layout: boxed (max 1200) vs full-bleed (marquees) */
  .ht-section-boxed {
    max-width: var(--ht-content-max);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .ht-section-full {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  /* ===== SHIPPING TICKER ===== */
  @keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .shipping-ticker.ht-section-full {
    width: 100%;
  }
  .shipping-ticker {
    background: var(--green-dark);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    direction: ltr;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .shipping-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 48px;
    min-width: max-content;
    padding: 10px 0;
    animation: tickerScroll 18s linear infinite;
    will-change: transform;
  }
  .shipping-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.95;
  }
  @media (prefers-reduced-motion: reduce) {
    .shipping-ticker-track { animation: none; }
  }

  /* ===== FEATURES IMAGE MARQUEE ===== */
  @keyframes fmarqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .fmarquee-section {
    overflow: hidden;
    background: #faf5ff;
    border-top: 2px solid #e9d5ff;
    border-bottom: 2px solid #e9d5ff;
    padding: 0;
  }
  .fmarquee-track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    min-width: max-content;
    padding: 16px 0;
    animation: fmarqueeScroll 30s linear infinite;
    will-change: transform;
  }
  .fmarquee-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }
  .fmarquee-section .fmarquee-item img {
    height: 80px;
    width: auto;
    max-width: 100px;
    display: block;
    border-radius: 10px;
    object-fit: cover;
  }
  .fmarquee-section .fmarquee-butterfly img {
    border-radius: 0;
    opacity: 0.75;
  }
  @media (prefers-reduced-motion: reduce) {
    .fmarquee-track { animation: none; }
  }

  /* ===== BENEFITS MARQUEE (under section 1 images / GIF) ===== */
  .ht-benefits-ticker.ht-section-full {
    width: 100%;
  }
  .ht-benefits-ticker {
    background: var(--green-dark);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    direction: ltr;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 10px 0 0;
    border-radius: 0;
  }
  .ht-benefits-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    min-width: max-content;
    padding: 10px 0;
    animation: tickerScroll 28s linear infinite;
    will-change: transform;
  }
  .ht-benefits-ticker-item {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.95;
  }
  .ht-benefits-ticker-icon {
    display: inline-flex;
    flex-shrink: 0;
    font-size: 1.15em;
    line-height: 1;
  }
  @media (prefers-reduced-motion: reduce) {
    .ht-benefits-ticker-track { animation: none; }
  }

  /* ===== HEADER ===== */
  /* ===== PROGRESS BAR ===== */
  .progress-wrap {
    background: var(--white);
    max-width: var(--ht-content-max);
    width: 100%;
    margin: 0 auto;
    padding: 20px 16px 0;
    border-bottom: 1px solid #e8f0ea;
  }
  .progress-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 540px;
    margin: 0 auto 0;
  }
  .step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 16px;
  }
  .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 50%;
    margin-right: 50%;
    margin-left: -50%;
    left: -50%;
    width: 100%;
    height: 2px;
    background: #d4e8d8;
    z-index: 0;
  }
  .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4e8d8;
    z-index: 0;
    left: -50%;
    transform: none;
  }
  /* connector lines */
  .steps-connector {
    display: flex;
    align-items: center;
    max-width: 540px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 0;
    position: absolute;
    width: 100%;
    top: 18px;
  }
  .step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 15px;
    background: #d4e8d8;
    color: var(--text-light);
    z-index: 1;
    transition: all .3s;
    position: relative;
    border: 3px solid #d4e8d8;
  }
  .step-item.active .step-num {
    background: var(--green);
    color: white;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(95,48,137,0.2);
  }
  .step-item.done .step-num {
    background: var(--green-light);
    color: white;
    border-color: var(--green-light);
  }
  .step-label {
    font-size: 11px;
    margin-top: 6px;
    color: var(--text-light);
    font-weight: 600;
    white-space: nowrap;
  }
  .step-item.active .step-label { color: var(--green); }
  .step-item.done .step-label { color: var(--green-light); }

  /* connector line between steps */
  .step-line {
    flex: 1;
    height: 2px;
    background: #d4e8d8;
    margin-top: -20px;
    transition: background .3s;
  }
  .step-line.done { background: var(--green-light); }

  .progress-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 540px;
    margin: 0 auto;
    padding-bottom: 0;
  }
  .progress-row .step-item { flex: 1; }
  .progress-row .line-wrap {
    flex: 1;
    padding-top: 18px;
  }
  .progress-row .line-wrap .line {
    height: 2px;
    background: #d4e8d8;
    transition: background .4s;
  }
  .progress-row .line-wrap .line.done { background: var(--green-light); }

  /* ===== MAIN CONTENT ===== */
  .container {
    max-width: var(--ht-content-max);
    width: 100%;
    margin: 0 auto;
    padding: 24px 16px 80px;
  }

  /* ===== STEP PANELS ===== */
  .step-panel { display: none; animation: fadeIn .35s ease; }
  .step-panel.active { display: block; }
  @keyframes fadeIn { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform:none; } }

  /* ===== OFFER CARDS ===== */
  .section-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 6px;
    text-align: center;
  }
  .section-sub {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
  }

  .offer-cards { display: flex; flex-direction: column; gap: 14px; }
  .offer-card {
    background: white;
    border-radius: var(--radius);
    padding: 14px 16px;
    border: 2px solid #d4e8d8;
    cursor: pointer;
    transition: all .25s;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .offer-card:hover { border-color: var(--green-light); transform: translateY(-2px); }
  .offer-card.selected { border-color: var(--green); background: #f0f8f2; }
  .offer-card.selected::after {
    content: '✓';
    position: absolute;
    right: -12px; top: -12px;
    background: var(--green);
    color: white;
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 2px solid white;
  }
  .offer-icon { font-size: 36px; flex-shrink: 0; }
  .offer-info { flex: 1; }
  .offer-name { font-size: 17px; font-weight: 900; color: var(--green-dark); margin-bottom: 3px; text-align: right; }
  .offer-desc { font-size: 13px; color: var(--text-light); margin-bottom: 6px; text-align: right; }
  .offer-perk { font-size: 12px; color: var(--green-dark); margin-bottom: 8px; text-align: right; line-height: 1.5; opacity: 0.9; }
  .offer-pricing { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .offer-price { font-size: 19px; font-weight: 900; color: var(--green); }
  .offer-old { font-size: 14px; color: #aaa; text-decoration: line-through; }
  .offer-save {
    background: var(--yellow);
    color: var(--text);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
  }
  .offer-img-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    order: 1;
    margin-right: auto;
  }
  .offer-img {
    width: 120px;
    height: 100px;
    object-fit: contain;
    transition: transform .3s;
    display: block;
  }
  .offer-card:hover .offer-img { transform: scale(1.06); }
  .offer-card.selected .offer-img { transform: scale(1.04); }
  .offer-badge {
    position: absolute;
    top: -10px; right: 16px;
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 2;
  }

  /* ===== SAUCE SELECTION ===== */
  .sauce-header {
    background: var(--green-dark);
    color: white;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sauce-header-title { font-size: 16px; font-weight: 700; }
  .sauce-counter {
    background: var(--yellow);
    color: var(--text);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
  }
  .sauce-counter.done { background: #a8e6c0; color: #1a5c2e; }
  .sauce-grid {
    background: white;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    box-shadow: var(--shadow);
  }
  .sauce-chip {
    padding: 0;
    border: 2.5px solid #e0ece2;
    border-radius: 14px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    background: white;
    user-select: none;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .sauce-chip:hover { border-color: var(--green-light); background: #f5fbf6; }
  .sauce-chip.selected { border-color: var(--green); background: #edf7ef; color: var(--green-dark); }
  .sauce-img { 
    width: 100%;
    height: 110px;
    object-fit: contain;
    object-position: center;
    transition: transform .25s;
    flex-shrink: 0;
    padding: 6px 4px 0;
    background: white;
  }
  .sauce-chip:hover .sauce-img { transform: scale(1.06); }
  .sauce-chip.selected .sauce-img { transform: scale(1.04); }
  .sauce-label {
    width: 100%;
    padding: 6px 6px 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    background: white;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sauce-chip.selected .sauce-label {
    color: var(--green-dark);
  }

  .sauce-chip.sauce-chip--oos {
    cursor: not-allowed;
    opacity: 0.55;
    background: #f5f5f7;
  }
  .sauce-chip.sauce-chip--oos .sauce-img {
    filter: grayscale(0.85);
  }
  .sauce-chip.sauce-chip--oos:hover {
    border-color: #e0ece2;
    background: #f5f5f7;
  }
  .sauce-chip.sauce-chip--oos:hover .sauce-img {
    transform: none;
  }
  .sauce-oos-badge {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    font-size: 10px;
    font-weight: 800;
    color: #7a1541;
    background: rgba(255,230,239,0.95);
    border: 1px solid #eab6c9;
    border-radius: 8px;
    padding: 3px 8px;
    line-height: 1.2;
    white-space: nowrap;
    pointer-events: none;
  }
  .sauce-check {
    position: absolute;
    top: 8px; left: 8px;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid #e0ece2;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 700;
    transition: all .2s;
    flex-shrink: 0;
    background: white;
    z-index: 3;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    color: transparent;
  }
  .sauce-chip.selected .sauce-check {
    background: white;
    border-color: var(--green);
    color: var(--green);
  }
  .sauce-chip.selected {
    border-color: var(--green) !important;
    background: #f5f0ff;
  }
  .sauce-qty-controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 8px 10px;
    border-top: 1px solid #f0e7fb;
    background: #fff;
  }
  .sauce-qty-btn {
    width: 28px !important;
    height: 28px !important;
    border: 1px solid #d4c2eb !important;
    border-radius: 50% !important;
    background: #f8f3ff !important;
    color: var(--green-dark) !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .sauce-qty-btn:hover {
    background: #efe4ff;
    border-color: var(--green-light);
  }
  .sauce-qty-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }
  .sauce-qty-value {
    min-width: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--green-dark);
  }

  .sauce-note {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
    background: var(--yellow-light);
    padding: 10px;
    border-radius: 10px;
  }

  /* ===== FORM ===== */
  .form-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
  }
  .form-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream-dark);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .field-group { margin-bottom: 14px; }
  .field-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    display: block;
  }
  .field-label .req { color: #e05050; }
  .field-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0ece2;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text);
    background: #fafff9;
    transition: border .2s;
    outline: none;
  }
  .field-input:focus { border-color: var(--green); background: white; }
  .field-input::placeholder { color: #b0c4b8; }
  textarea.field-input { resize: vertical; min-height: 80px; }

  .phone-wrap { display: flex; flex-direction: row-reverse; gap: 8px; align-items: center; }
  .phone-flag {
    background: #f0f8f2;
    border: 2px solid #e0ece2;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex; align-items: center; gap: 4px;
  }
  .phone-flag span { font-size: 12px; color: var(--text-light); }

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

  /* ===== ORDER SUMMARY ===== */
  .summary-box {
    background: var(--green-dark);
    color: white;
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
  }
  .summary-title { font-size: 16px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
  .summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
  .summary-row .val { font-weight: 700; }
  .summary-divider { border: none; border-top: 1px solid rgba(255,255,255,0.2); margin: 12px 0; }
  .summary-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: 900; }
  .summary-save { color: var(--yellow); font-weight: 700; font-size: 14px; text-align: center; margin-top: 10px; }
  .summary-shipping { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 8px; }

  .selected-sauces-summary {
    background: white;
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
  }
  .selected-sauces-title { font-size: 14px; font-weight: 700; color: var(--green-dark); margin-bottom: 12px; }
  .sauce-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .sauce-tag {
    background: #edf7ef;
    border: 1.5px solid var(--green-light);
    color: var(--green-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
  }
  .sauce-tag-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 4px;
  }

  /* ===== BUTTONS ===== */
  .btn-wrap { margin-top: 24px; }
  .btn-primary {
    width: 100%;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 4px 16px rgba(95,48,137,0.3);
  }
  .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(95,48,137,0.4); }
  .btn-primary:active { transform: none; }
  .btn-primary:disabled { background: #aaa; cursor: not-allowed; transform: none; box-shadow: none; }

  .btn-back {
    width: 100%;
    background: transparent;
    color: var(--text-light);
    border: 2px solid #d4e8d8;
    border-radius: 14px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all .2s;
  }
  .btn-back:hover { border-color: var(--green-light); color: var(--green); }

  /* ===== SUCCESS ===== */
  .success-wrap { text-align: center; padding: 40px 20px; }
  .success-icon { font-size: 72px; margin-bottom: 16px; }
  .success-title { font-size: 26px; font-weight: 900; color: var(--green-dark); margin-bottom: 8px; }
  .success-sub { font-size: 15px; color: var(--text-light); line-height: 1.8; }
  .success-order { background: white; border-radius: var(--radius); padding: 20px; margin: 24px 0; box-shadow: var(--shadow); text-align: right; }
  .success-order-title { font-size: 14px; font-weight: 700; color: var(--text-light); margin-bottom: 12px; }

  /* ===== TRUST BAR ===== */
  .trust-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text-light); font-weight: 600;
  }
  .trust-item span { font-size: 16px; }

  /* ===== VALIDATION ===== */
  .field-error { color: #e05050; font-size: 12px; margin-top: 4px; display: none; }
  .field-input.error { border-color: #e05050; }

  /* ===== STICKY FOOTER ===== */
  .sticky-footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: white;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: none;
  }
  .sticky-footer.visible { display: block; }
  .sticky-footer .btn-primary { padding: 14px; font-size: 15px; }

  /* mobile tweaks */
  @media (max-width: 400px) {
    .sauce-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .sauce-chip { font-size: 13px; padding: 10px 10px; }
    .two-col { grid-template-columns: 1fr; }
  }

  /* ===== BRAND HERO ===== */
  .brand-hero {
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 32px 0 0;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .brand-hero-inner {
    width: 100%;
  }
  .section1-images-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0 auto 20px;
  }
  .section1-row-full {
    width: 100%;
  }
  .section1-row-full .section1-img-1 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
  }
  .section1-row-split {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .section1-split-col {
    flex: 1 1 0;
    min-width: 0;
  }
  .section1-img-2,
  .section1-gif {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
  }
  @media (max-width: 400px) {
    .section1-images-wrap,
    .section1-row-split { gap: 8px; }
  }




  /* ===== SHARED SECTION STYLES ===== */
  .section-header { text-align: center; margin-bottom: 28px; }
  .section-tag {
    display: inline-block;
    background: var(--yellow-light);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid #e8d88a;
  }

  /* ===== WHY SECTION ===== */
  .why-section {
    background: var(--white);
    padding: 48px 16px;
    border-top: 3px solid var(--cream-dark);
  }
  .why-inner { max-width: var(--ht-content-max); width: 100%; margin: 0 auto; }
  .why-title { font-size: 22px; font-weight: 900; color: var(--green-dark); margin-bottom: 6px; }
  .why-sub { font-size: 14px; color: var(--text-light); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
  }
  .why-card {
    background: var(--cream);
    border: 1.5px solid var(--cream-dark);
    border-radius: 14px;
    padding: 16px;
    transition: transform .2s, box-shadow .2s;
  }
  .why-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(95,48,137,0.1); }
  .why-icon { font-size: 24px; margin-bottom: 8px; }
  .why-card-title { font-size: 14px; font-weight: 800; color: var(--green-dark); margin-bottom: 5px; }
  .why-card-desc { font-size: 12px; color: var(--text-light); line-height: 1.7; }
  .badges-row {
    display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
    margin-top: 8px;
  }
  .badge-pill {
    background: var(--green-dark);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
  }

  /* ===== FAQ SECTION ===== */
  .faq-section {
    background: var(--cream);
    padding: 48px 16px;
    border-top: 3px solid var(--cream-dark);
  }
  .faq-inner { max-width: var(--ht-content-max); width: 100%; margin: 0 auto; }
  .faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: start; }
  @media (max-width: 768px) {
    .faq-list { grid-template-columns: 1fr; }
  }
  .faq-item {
    background: white;
    border-radius: 12px;
    border: 1.5px solid #e0ece2;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s;
  }
  .faq-item:hover { border-color: var(--green-light); }
  .faq-item.open { border-color: var(--green); }
  .faq-q {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    user-select: none;
  }
  .faq-arrow { color: var(--green); font-size: 16px; transition: transform .25s; flex-shrink: 0; }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-a {
    display: none;
    padding: 0 16px 14px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    border-top: 1px solid #edf7ef;
  }
  .faq-item.open .faq-a { display: block; }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, #2a0a4e 100%);
    padding: 48px 16px;
  }
  .contact-inner { max-width: var(--ht-content-max); width: 100%; margin: 0 auto; }
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .contact-card {
    background: rgba(255,255,255,0.4);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
  }
  .contact-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
  .contact-card.whatsapp:hover { background: rgba(37,211,102,0.3); border-color: #25D366; }
  .contact-icon { font-size: 28px; }
  .contact-label { font-size: 13px; font-weight: 700; opacity: 0.85; }
  .contact-val { font-size: 12px; opacity: 0.65; word-break: break-all; }

  /* ===== FOOTER ===== */
  .site-footer {
    background: #0f0520;
    padding: 24px 0;
    text-align: center;
  }
  .footer-links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
  .footer-links a { color: #aaa; font-size: 14px; text-decoration: none; }
  .footer-links a:hover { color: white; }
  .footer-links span { color: #444; }
  .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 12px; }
  .footer-social a {
    color: #9b6fd4; font-size: 15px; font-weight: 600; text-decoration: none;
    display: flex; align-items: center; gap: 7px;
    transition: color .2s;
  }
  .footer-social a:hover { color: #c49ef0; }
  .footer-social a svg { flex-shrink: 0; }
  .footer-copy { font-size: 13px; color: #666; }

  @media (max-width: 400px) {
    .why-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
  }


  /* ===== REVIEWS SECTION ===== */
  .reviews-section {
    background: linear-gradient(160deg, #f3e8ff 0%, #e0c8ff 100%);
    padding: 48px 16px;
    border-top: 3px solid #c4a0e8;
  }
  .reviews-inner { max-width: var(--ht-content-max); width: 100%; margin: 0 auto; }
  .reviews-slider {
    max-width: 100%;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
  }
  .swiper-slide { direction: ltr; }
  .review-thumb {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2.5px solid rgba(255,255,255,0.6);
  }
  .review-thumb img { width: 100%; height: auto; display: block; transition: transform .3s; }
  .review-thumb:hover img { transform: scale(1.03); }
  .review-overlay {
    position: absolute; inset: 0;
    background: rgba(95,48,137,0.0);
    display: flex; align-items: center; justify-content: center;
    transition: background .25s;
  }
  .review-thumb:hover .review-overlay { background: rgba(95,48,137,0.28); }
  .review-overlay span {
    color: white; font-size: 14px; font-weight: 700;
    opacity: 0; transition: opacity .25s;
    background: rgba(0,0,0,0.4); padding: 6px 14px; border-radius: 20px;
  }
  .review-thumb:hover .review-overlay span { opacity: 1; }
  .reviews-hint { text-align: center; font-size: 13px; color: #5f3089; font-weight: 600; margin-top: 8px; }
  /* Swiper theme overrides */
  .reviews-slider .swiper-button-prev,
  .reviews-slider .swiper-button-next {
    color: #5f3089;
    background: rgba(255,255,255,0.75);
    width: 32px; height: 32px;
    border-radius: 50%;
    top: 50%;
  }
  .reviews-slider .swiper-button-prev::after,
  .reviews-slider .swiper-button-next::after { font-size: 14px; font-weight: 700; }

  /* ===== LIGHTBOX ===== */
  .lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.88);
    align-items: center; justify-content: center;
    padding: 20px;
    cursor: pointer;
    animation: fadeIn .2s ease;
  }
  .lightbox.open { display: flex; }
  .lightbox img {
    width: 92vw;
    max-width: 600px;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    cursor: default;
    animation: scaleIn .25s ease;
  }
  .lightbox-close {
    position: absolute; top: 20px; left: 20px;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 18px; cursor: pointer;
    transition: background .2s;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.3); }
  @keyframes scaleIn { from { transform: scale(0.88); opacity:0; } to { transform: scale(1); opacity:1; } }


  /* ===== THANK YOU PAGE ([healthyandtasty_thankyou]) ===== */
  .thankyou-wrap {
    padding: 8px 0 60px;
    text-align: center;
  }
  .ht-ty-content.ht-section-boxed {
    padding-top: 24px;
    padding-bottom: 60px;
  }
  .ty-hero {
    background: linear-gradient(160deg, #f3e8ff 0%, #ede0f5 100%);
    border-radius: var(--radius);
    padding: 36px 24px 28px;
    margin-bottom: 20px;
    text-align: center;
    border: 2px solid #d4b8f0;
    position: relative;
    overflow: hidden;
  }
  .ty-confetti {
    font-size: 52px;
    margin-bottom: 12px;
    display: block;
    animation: tyBounce 1.2s ease infinite alternate;
  }
  @keyframes tyBounce {
    from { transform: translateY(0) rotate(-5deg); }
    to { transform: translateY(-10px) rotate(5deg); }
  }
  .ty-logo {
    height: 56px;
    margin: 0 auto 16px;
    display: block;
  }
  .ty-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .ty-sub {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
  }

  .ty-steps {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
  }
  .ty-steps-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream-dark);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .ty-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: right;
  }
  .ty-step-num {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 16px;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(95,48,137,0.3);
  }
  .ty-step-text { flex: 1; padding-top: 6px; }
  .ty-step-title { font-size: 15px; font-weight: 800; color: var(--green-dark); margin-bottom: 3px; }
  .ty-step-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; }
  .ty-step-connector {
    display: flex;
    padding-right: 18px;
    margin: 4px 0;
  }
  .ty-step-line {
    width: 2px;
    height: 22px;
    background: var(--cream-dark);
    border-radius: 2px;
  }

  .ty-order {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    text-align: right;
  }
  .ty-order-card {
    background: white;
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    text-align: right;
  }
  .ty-order-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream-dark);
  }
  .ty-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid #f5f0fa;
  }
  .ty-order-row:last-child { border-bottom: none; }
  .ty-order-row .label { color: var(--text-light); }
  .ty-order-row .val { font-weight: 700; color: var(--text); }
  .ty-order-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 900;
    color: var(--green-dark);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid var(--cream-dark);
  }
  .ty-order-save {
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    margin-top: 6px;
    text-align: center;
  }

  .ty-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .ty-badge {
    display: flex; align-items: center; gap: 6px;
    background: #f3e8ff;
    border: 1.5px solid #d4b8f0;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #3d1a6e;
  }

  .ty-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 16px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    margin-bottom: 12px;
    transition: all .2s;
  }
  .ty-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
  .ty-whatsapp-icon { font-size: 22px; }

  .ty-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
  }

  .ty-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--cream-dark);
    font-size: 12px;
    color: #aaa;
  }
  .ty-footer a { color: var(--green-light); text-decoration: none; margin: 0 6px; }

  /* checkout layout utilities */
  .u-hidden { display: none !important; }
  .ht-section-title--mt { margin-top: 8px; }
  .ht-field-optional { color: #aaa; font-weight: 400; }
  .ht-phone-input-flex { flex: 1; }
  .ht-field-group--tight { margin-bottom: 0; }
  .ht-section-tag--reviews {
    background: #ede0f5;
    color: #5f3089;
    border: 1px solid #c4a0e8;
  }
  .ht-contact-why-title { color: #fff; }
  .ht-contact-why-sub { color: rgba(255, 255, 255, 0.75); }