/* =========================================================
   Health Package — Product Page + Cart Drawer + Checkout
   Loaded alongside style.css. Namespace: .hp-*
   Brand: Royal Blue (#1e2a78) + White + soft lavender (#f4f5fb)
   STRICT brand-color policy — NEVER use gold, yellow, or amber tones.
   All accents must use navy / lavender / white. The --hp-gold variable
   below is retained only as a safety fallback (points at primary).
   Fonts: Montserrat for ALL headings/values; Playfair Display reserved
   ONLY for the product H1 (.hp-hero-title). Inter for body copy. All
   loaded globally via includes/header.php.
   ========================================================= */

:root {
    --hp-primary: #1e2a78;
    --hp-primary-dark: #161f5a;
    --hp-primary-soft: #eef0ff;
    --hp-bg: #f4f5fb;
    --hp-text: #1f2937;
    --hp-muted: #6b7280;
    --hp-border: #e5e7eb;
    --hp-success: #10b981;
    --hp-success-soft: #d1fae5;
    --hp-gold: var(--hp-primary); /* Brand policy: no gold. Variable kept as a navy alias. */
    --hp-shadow-sm: 0 1px 3px rgba(15, 23, 42, .06);
    --hp-shadow: 0 10px 30px rgba(15, 23, 42, .07);
    --hp-shadow-lg: 0 18px 50px rgba(15, 23, 42, .10);
    --hp-radius: 16px;
    --hp-radius-lg: 24px;
}

.hp-wrap { background: white; color: var(--hp-text); }
.hp-wrap .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hp-wrap h1, .hp-wrap h2, .hp-wrap h3, .hp-wrap h4 { color: var(--hp-primary); margin: 0; }

.hp-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--hp-primary);
    margin-bottom: 14px;
}

/* ============================ HERO ============================ */
.hp-hero {
    background: var(--hp-bg);
    padding: 22px 0 60px;
    position: relative;
    overflow: hidden;
}
.hp-hero::before {
    content: '';
    position: absolute;
    top: 80px; right: 40px;
    width: 140px; height: 110px;
    background-image: radial-gradient(circle, rgba(30, 42, 120, .15) 1.5px, transparent 2px);
    background-size: 16px 16px;
    pointer-events: none;
}
.hp-crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--hp-muted);
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.hp-crumbs a { color: var(--hp-muted); text-decoration: none; transition: color .15s; }
.hp-crumbs a:hover { color: var(--hp-primary); }
.hp-crumbs i { font-size: 9px; opacity: .6; }
.hp-crumbs [aria-current] { color: var(--hp-primary); font-weight: 600; }

.hp-hero-grid {
    display: grid;
    /* Image column (left, narrower) | Content column (right, wider) — Amazon-style.
       HTML order keeps content first for SEO/screen readers; CSS `order` flips visuals. */
    grid-template-columns: 0.88fr 1.12fr;
    gap: 50px;
    align-items: start;
    position: relative;
}
.hp-hero-content { order: 2; }
.hp-hero-media   { order: 1; }
.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: 30px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--hp-primary);
    margin-bottom: 18px;
    box-shadow: var(--hp-shadow-sm);
}
.hp-hero-badge i { color: var(--hp-primary); }
.hp-hero-title {
    /* Cursive/serif retained ONLY for the H1 product title — every other heading
       on the health-package pages uses Montserrat per brand decision. */
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}
.hp-hero-title-accent {
    font-style: italic;
    color: #5b6bb8;
    font-weight: 500;
}
.hp-hero-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--hp-text);
    max-width: 480px;
    margin: 0 0 24px;
}
/* ---- Hero inline price block (slim) ---- */
.hp-hero-price {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 16px;
    padding: 10px 16px;
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: 12px;
    box-shadow: var(--hp-shadow-sm);
    width: fit-content;
}
.hp-hero-price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}
.hp-hero-price-currency {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--hp-primary);
    position: relative;
    top: -7px;
}
.hp-hero-price-amount {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--hp-primary);
    line-height: 1;
    letter-spacing: -0.5px;
}
.hp-hero-price-side {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 14px;
    border-left: 1px solid var(--hp-border);
}
.hp-hero-price-was {
    font-size: 12px;
    color: var(--hp-muted);
    font-weight: 500;
}
.hp-hero-price-was s {
    color: var(--hp-muted);
    text-decoration-thickness: 1.5px;
    margin-left: 2px;
}
.hp-hero-price-save {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--hp-success-soft);
    color: #047857;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2px;
    white-space: nowrap;
    align-self: flex-start;
}
.hp-hero-price-save i { font-size: 9px; }

/* ---- Hero CTA actions ---- */
.hp-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.hp-hero-secure {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--hp-muted);
    font-size: 12.5px;
    margin-bottom: 32px;
}
.hp-hero-secure span { display: inline-flex; align-items: center; gap: 7px; }
.hp-hero-secure i { color: var(--hp-primary); font-size: 12px; }

/* ---- Trust strip (refined, smaller) ---- */
.hp-hero-trust {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--hp-border);
    max-width: 560px;
}
/* Two copies in markup: one under the image (desktop), one after Tabby (mobile).
   Default = mobile-first: show the mobile copy, hide desktop copy. */
.hp-hero-trust-desktop { display: none; }
@media (min-width: 1081px) {
    .hp-hero-trust-desktop {
        display: grid;
        margin-top: 22px;
        padding-top: 22px;
        gap: 18px;
        max-width: 100%;
    }
    .hp-hero-trust-mobile { display: none; }
}
.hp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hp-hero-trust-icon {
    width: 38px; height: 38px;
    background: var(--hp-primary-soft);
    border-radius: 11px;
    display: grid; place-items: center;
    color: var(--hp-primary);
    font-size: 14px;
    flex-shrink: 0;
}
.hp-hero-trust-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--hp-text);
    line-height: 1.35;
    white-space: nowrap;
}

.hp-hero-media {
    position: relative;
    align-self: start;
    width: 100%;
    margin: 0;
    /* Note: sticky was previously enabled (`position: sticky; top: 100px`)
       so the image stayed visible while scrolling. That caused Chromium to
       reserve ~100px of space above the element even at scroll=0, pushing
       the image visually below the breadcrumbs row. Reverted to relative so
       the image now aligns flush with the top of the grid row. */
}
.hp-hero-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.05;
    border-radius: var(--hp-radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--hp-shadow-lg);
}
.hp-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hp-hero-reports {
    position: absolute;
    right: 22px;
    bottom: 28px;
    background: var(--hp-primary);
    color: white;
    padding: 14px 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--hp-shadow);
    z-index: 2;
}
.hp-hero-reports-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: grid; place-items: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}
.hp-hero-reports-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    opacity: .85;
    line-height: 1;
    margin-bottom: 4px;
}
.hp-hero-reports-value {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

/* ============================ Buttons ============================ */
.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    line-height: 1;
    transition: background .15s, border-color .15s, transform .12s, box-shadow .15s;
    font-family: inherit;
}
.hp-btn:hover { transform: translateY(-1px); text-decoration: none; }
.hp-btn-primary {
    background: var(--hp-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(30,42,120,.25);
}
.hp-btn-primary:hover { background: var(--hp-primary-dark); color: white; box-shadow: 0 6px 20px rgba(30,42,120,.32); }
.hp-btn-outline {
    background: white;
    color: var(--hp-primary);
    border-color: var(--hp-border);
}
.hp-btn-outline:hover { background: var(--hp-primary-soft); color: var(--hp-primary); border-color: var(--hp-primary-soft); }
.hp-btn-lg { padding: 16px 34px; font-size: 16px; }
.hp-btn-block { width: 100%; justify-content: center; }

/* ============================ Section general ============================ */
.hp-section { padding: 70px 0; }
.hp-section-head {
    text-align: center;
    margin-bottom: 44px;
}
.hp-section-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    color: var(--hp-primary);
    line-height: 1.2;
    margin: 0 0 14px;
}
.hp-section-sub {
    font-size: 15px;
    color: var(--hp-muted);
    margin: 0 auto;
    max-width: 620px;
    line-height: 1.7;
}

/* ============================ FEATURES (Why Choose) ============================ */
.hp-features-section { background: white; }
.hp-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.hp-feature {
    text-align: center;
    padding: 28px 22px 24px;
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s;
}
.hp-feature:hover {
    box-shadow: var(--hp-shadow);
    transform: translateY(-4px);
    border-color: var(--hp-primary-soft);
}
.hp-feature-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: grid; place-items: center;
    margin: 0 auto 18px;
    font-size: 26px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    position: relative;
}
.hp-feature-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 3px;
    border-radius: 2px;
    background: var(--hp-primary);
}
.hp-feature-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--hp-primary);
    margin: 14px 0 10px;
}
.hp-feature-desc {
    font-size: 14px;
    color: var(--hp-text);
    line-height: 1.65;
    margin: 0;
}

/* ============================ PARAMETERS LIST ============================ */
.hp-params-section { background: var(--hp-bg); }
.hp-params-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}
.hp-params-card {
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 36px;
    box-shadow: var(--hp-shadow-sm);
}
.hp-params-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp-param {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--hp-text);
    font-weight: 600;
}
.hp-param i {
    color: var(--hp-success);
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 1px;
}
.hp-param-group { grid-column: 1 / -1; margin-top: 6px; }
.hp-param-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-primary);
    margin-bottom: 8px;
}
.hp-param-group-title i { color: var(--hp-success); font-size: 17px; }
.hp-param-sub {
    list-style: none;
    padding: 0;
    margin: 0 0 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 20px;
}
.hp-param-sub li {
    position: relative;
    padding-left: 18px;
    font-size: 13.5px;
    color: var(--hp-text);
    line-height: 1.55;
}
.hp-param-sub li::before {
    content: '';
    position: absolute;
    left: 4px; top: 9px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--hp-primary);
    opacity: .55;
}

.hp-params-aside {
    background: linear-gradient(150deg, white, var(--hp-primary-soft));
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 36px 32px;
    text-align: center;
}
.hp-params-aside-icon {
    width: 96px; height: 96px;
    background: white;
    border-radius: 50%;
    display: grid; place-items: center;
    margin: 0 auto 20px;
    color: var(--hp-primary);
    font-size: 42px;
    box-shadow: var(--hp-shadow);
    position: relative;
}
.hp-params-aside-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed var(--hp-primary-soft);
    border-radius: 50%;
    opacity: .6;
}
.hp-params-aside-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 24px;
    color: var(--hp-primary);
    margin: 0 0 12px;
    line-height: 1.2;
}
.hp-params-aside-desc {
    font-size: 14px;
    color: var(--hp-text);
    line-height: 1.7;
    margin: 0 0 24px;
}

/* ============================ INFO STRIP ============================ */
.hp-info-strip {
    background: white;
    border-top: 1px solid var(--hp-border);
    border-bottom: 1px solid var(--hp-border);
    padding: 36px 0;
}
.hp-info-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}
.hp-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.hp-info-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    display: grid; place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}
.hp-info-text {}
.hp-info-label {
    font-size: 12px;
    color: var(--hp-muted);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 2px;
}
.hp-info-value {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--hp-primary);
    line-height: 1.2;
}

/* ============================ WHO SHOULD TAKE ============================ */
.hp-audience-section { background: white; }
.hp-audience {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.hp-audience-card {
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 26px 18px 22px;
    text-align: center;
    transition: transform .15s, box-shadow .2s, border-color .2s;
}
.hp-audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow);
    border-color: var(--hp-primary-soft);
}
.hp-audience-icon {
    width: 56px; height: 56px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border-radius: 14px;
    display: grid; place-items: center;
    margin: 0 auto 14px;
    font-size: 22px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.hp-audience-card:hover .hp-audience-icon {
    background: var(--hp-primary);
    color: white;
    transform: scale(1.05);
}
.hp-audience-text {
    font-size: 14px;
    color: var(--hp-text);
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}

/* ============================ HOW IT WORKS ============================ */
.hp-steps-section { background: var(--hp-bg); }
.hp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}
.hp-steps::before {
    content: '';
    position: absolute;
    top: 38px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--hp-primary-soft) 12%, var(--hp-primary-soft) 88%, transparent 100%);
    z-index: 0;
}
.hp-step {
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 28px 22px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: box-shadow .2s, transform .15s;
}
.hp-step:hover { box-shadow: var(--hp-shadow); transform: translateY(-3px); }
.hp-step-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--hp-primary);
    color: white;
    display: grid; place-items: center;
    margin: 0 auto 14px;
    font-size: 22px;
    box-shadow: 0 0 0 6px var(--hp-bg), 0 0 0 7px var(--hp-primary-soft);
}
.hp-step-num {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 11px;
    color: var(--hp-muted);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
    margin-bottom: 6px;
}
.hp-step-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 17px;
    color: var(--hp-primary);
    font-weight: 700;
    margin: 0 0 8px;
}
.hp-step-desc {
    font-size: 13px;
    color: var(--hp-text);
    line-height: 1.55;
    margin: 0;
}

/* ============================ FAQ ============================ */
.hp-faq-section { background: white; }
.hp-faq-list {
    display: grid;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}
.hp-faq-item {
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 20px 24px;
    box-shadow: var(--hp-shadow-sm);
    transition: box-shadow .2s, border-color .2s;
}
.hp-faq-item[open] {
    box-shadow: var(--hp-shadow);
    border-color: var(--hp-primary-soft);
}
.hp-faq-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    outline: none;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--hp-primary);
    line-height: 1.4;
}
.hp-faq-summary::-webkit-details-marker { display: none; }
.hp-faq-summary::marker { content: ''; display: none; }
.hp-faq-num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
.hp-faq-q { flex: 1; }
.hp-faq-chevron {
    margin-left: auto;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--hp-primary);
    background: var(--hp-primary-soft);
    font-size: 12px;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.hp-faq-item[open] .hp-faq-chevron { transform: rotate(180deg); }
.hp-faq-body {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--hp-border);
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--hp-text);
}

/* ============================ BIG CTA BANNER ============================ */
.hp-cta-section { padding: 70px 0 90px; background: white; }
.hp-cta-banner {
    background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
    border-radius: var(--hp-radius-lg);
    padding: 48px 56px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--hp-shadow-lg);
}
.hp-cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hp-cta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hp-cta-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: .85;
    margin-bottom: 12px;
    font-weight: 600;
}
/* `.hp-wrap h2 { color: var(--hp-primary) }` has higher specificity (0,1,1)
   than a single class — bump our selector with the parent so white wins. */
.hp-cta-banner .hp-cta-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(26px, 2.8vw, 36px);
    line-height: 1.2;
    color: white;
    margin: 0 0 22px;
}
.hp-cta-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13.5px;
    opacity: .9;
}
.hp-cta-trust span { display: inline-flex; align-items: center; gap: 8px; }

.hp-cta-card {
    background: white;
    border-radius: var(--hp-radius);
    padding: 28px;
    text-align: center;
    color: var(--hp-text);
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.hp-cta-card-label {
    font-size: 11px;
    color: var(--hp-muted);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 6px;
    font-weight: 600;
}
.hp-cta-card-price {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--hp-primary);
    margin-bottom: 18px;
    line-height: 1;
}

/* ============================ BOTTOM TRUST STRIP ============================ */
.hp-trust-bottom {
    background: var(--hp-bg);
    padding: 36px 0 40px;
}
.hp-trust-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}
.hp-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hp-trust-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: white;
    color: var(--hp-success);
    display: grid; place-items: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--hp-shadow-sm);
}
.hp-trust-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--hp-primary);
    margin: 0 0 3px;
}
.hp-trust-desc {
    font-size: 13px;
    color: var(--hp-muted);
    line-height: 1.5;
    margin: 0;
}

/* ============================ CART DRAWER ============================ */
.hp-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.hp-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.hp-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 460px;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh; /* iOS Safari: dynamic viewport so the footer isn't pushed under the toolbar */
    background: white;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,.18);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.32, .72, 0, 1);
}
.hp-drawer.is-open { transform: translateX(0); }

.hp-drawer-head {
    padding: 22px 26px;
    border-bottom: 1px solid var(--hp-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.hp-drawer-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--hp-primary);
    margin: 0;
}
.hp-drawer-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border: 0;
    cursor: pointer;
    font-size: 14px;
    display: grid; place-items: center;
    transition: background .15s;
}
.hp-drawer-close:hover { background: #dbe0ff; }

.hp-drawer-steps {
    padding: 16px 26px;
    display: flex;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid var(--hp-border);
    background: var(--hp-bg);
}
.hp-drawer-step {
    flex: 1;
    text-align: center;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--hp-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 4px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--hp-border);
}
.hp-drawer-step.is-active { background: var(--hp-primary); color: white; border-color: var(--hp-primary); }
.hp-drawer-step.is-done { background: var(--hp-primary-soft); color: var(--hp-primary); border-color: var(--hp-primary-soft); }

.hp-drawer-body {
    flex: 1;
    min-height: 0; /* allow the body to shrink/scroll so the footer stays pinned (flexbox) */
    overflow-y: auto;
    padding: 22px 26px;
}

/* Package summary in drawer */
.hp-drawer-pkg {
    display: flex;
    gap: 14px;
    background: var(--hp-bg);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 22px;
}
.hp-drawer-pkg-img {
    width: 64px; height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: white;
}
.hp-drawer-pkg-info { flex: 1; min-width: 0; }
.hp-drawer-pkg-name {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-primary);
    margin: 0 0 4px;
    line-height: 1.3;
}
.hp-drawer-pkg-price {
    font-size: 14px;
    color: var(--hp-text);
    font-weight: 600;
}
.hp-drawer-pkg-price-old { color: var(--hp-muted); text-decoration: line-through; margin-right: 8px; font-weight: 500; font-size: 13px; }

/* Drawer section headers */
.hp-drawer-section { margin-bottom: 26px; }
.hp-drawer-section-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 16px;
    color: var(--hp-primary);
    font-weight: 700;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hp-drawer-section-title i { font-size: 14px; color: var(--hp-primary); }
.hp-drawer-section-note {
    font-size: 12px;
    color: var(--hp-muted);
    margin: 8px 0 0;
    line-height: 1.5;
}

/* ---- Collection method segmented control (clinic vs home) ---- */
.hp-collection-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.hp-collection-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1.5px solid var(--hp-border);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
    position: relative;
}
.hp-collection-opt:hover { border-color: #c7cbe6; }
.hp-collection-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.hp-collection-opt-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    display: grid;
    place-items: center;
    font-size: 15px;
    flex-shrink: 0;
}
.hp-collection-opt-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.hp-collection-opt-title {
    font-weight: 700;
    color: var(--hp-text);
    font-size: 14px;
    line-height: 1.2;
}
.hp-collection-opt-sub {
    font-size: 11.5px;
    color: var(--hp-muted);
    line-height: 1.3;
}
.hp-collection-opt.is-selected {
    border-color: var(--hp-primary);
    background: var(--hp-primary-soft);
    box-shadow: 0 0 0 3px rgba(30, 42, 120, .08);
}
.hp-collection-opt.is-selected .hp-collection-opt-icon {
    background: var(--hp-primary);
    color: white;
}
.hp-collection-opt.is-selected .hp-collection-opt-title { color: var(--hp-primary); }
@media (max-width: 420px) {
    .hp-collection-toggle { grid-template-columns: 1fr; }
}

/* Date picker */
.hp-drawer-dates {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 14px;
    scrollbar-width: thin;
}
.hp-drawer-dates::-webkit-scrollbar { height: 4px; }
.hp-drawer-dates::-webkit-scrollbar-thumb { background: var(--hp-primary-soft); border-radius: 4px; }
.hp-drawer-date {
    flex-shrink: 0;
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
    cursor: pointer;
    min-width: 64px;
    transition: all .15s;
    color: var(--hp-text);
}
.hp-drawer-date:hover { border-color: var(--hp-primary); }
.hp-drawer-date.is-selected {
    background: var(--hp-primary);
    color: white;
    border-color: var(--hp-primary);
}
.hp-drawer-date-day {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .8;
    margin-bottom: 4px;
}
.hp-drawer-date-num {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.hp-drawer-date-month {
    font-size: 10.5px;
    margin-top: 2px;
    opacity: .85;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hp-drawer-date-tag {
    display: block;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--hp-primary);
    font-weight: 700;
    margin-top: 4px;
}
.hp-drawer-date.is-selected .hp-drawer-date-tag { color: rgba(255,255,255,.85); }

/* Time slots */
.hp-drawer-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.hp-drawer-slot {
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--hp-text);
    transition: all .15s;
}
.hp-drawer-slot:hover:not(.is-unavailable) { border-color: var(--hp-primary); color: var(--hp-primary); }
.hp-drawer-slot.is-selected {
    background: var(--hp-primary);
    color: white;
    border-color: var(--hp-primary);
}
.hp-drawer-slot.is-unavailable {
    color: var(--hp-muted);
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: .6;
    background: #f9fafb;
}

/* Add-ons */
.hp-drawer-addons {
    display: grid;
    gap: 10px;
}
.hp-drawer-addon {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.hp-drawer-addon:hover { border-color: var(--hp-primary-soft); background: #fafbff; }
.hp-drawer-addon-check {
    width: 22px; height: 22px;
    border-radius: 6px;
    border: 2px solid var(--hp-border);
    display: grid; place-items: center;
    flex-shrink: 0;
    background: white;
    color: white;
    transition: all .15s;
}
.hp-drawer-addon-check i { font-size: 11px; opacity: 0; transition: opacity .15s; }
.hp-drawer-addon input { display: none; }
.hp-drawer-addon input:checked ~ .hp-drawer-addon-check {
    background: var(--hp-primary);
    border-color: var(--hp-primary);
}
.hp-drawer-addon input:checked ~ .hp-drawer-addon-check i { opacity: 1; }
.hp-drawer-addon input:checked + .hp-drawer-addon-body .hp-drawer-addon-name { color: var(--hp-primary); }
.hp-drawer-addon-icon {
    width: 38px; height: 38px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 15px;
    flex-shrink: 0;
}
.hp-drawer-addon-body { flex: 1; min-width: 0; }
.hp-drawer-addon-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--hp-text);
    margin: 0 0 2px;
    line-height: 1.3;
}
.hp-drawer-addon-desc {
    font-size: 12px;
    color: var(--hp-muted);
    line-height: 1.4;
    margin: 0;
}
.hp-drawer-addon-price {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-primary);
    flex-shrink: 0;
    white-space: nowrap;
}

/* Drawer footer */
.hp-drawer-foot {
    border-top: 1px solid var(--hp-border);
    padding: 18px 26px 22px;
    padding-bottom: max(22px, env(safe-area-inset-bottom)); /* clear the iOS home indicator */
    background: white;
    flex-shrink: 0;
}
.hp-drawer-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
}
.hp-drawer-total-rows {
    margin-bottom: 12px;
}
.hp-drawer-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--hp-text);
    margin-bottom: 5px;
}
.hp-drawer-total-row-discount { color: var(--hp-success); }
.hp-drawer-total-label {
    font-size: 13px;
    color: var(--hp-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}
.hp-drawer-total-value {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--hp-primary);
}
.hp-drawer-cta {
    width: 100%;
    justify-content: center;
}
.hp-drawer-cta[disabled] {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--hp-muted);
    box-shadow: none;
}

/* ============================ CHECKOUT PAGE ============================ */
.hp-checkout-wrap {
    background: var(--hp-bg);
    min-height: 100vh;
    padding: 50px 0 80px;
}
.hp-checkout-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 36px;
    align-items: start;
}
.hp-checkout-cards { display: grid; gap: 18px; }
.hp-checkout-card {
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 28px 30px;
    box-shadow: var(--hp-shadow-sm);
}
.hp-checkout-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.hp-checkout-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    display: grid; place-items: center;
    font-size: 18px;
}
.hp-checkout-card-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 19px;
    color: var(--hp-primary);
    font-weight: 700;
    margin: 0;
}
.hp-checkout-card-sub {
    font-size: 12px;
    color: var(--hp-muted);
    margin: 2px 0 0;
}

.hp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.hp-form-group { display: flex; flex-direction: column; }
.hp-form-group-full { grid-column: 1 / -1; }
.hp-form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--hp-text);
    margin-bottom: 6px;
}
.hp-form-group input,
.hp-form-group select,
.hp-form-group textarea {
    padding: 11px 14px;
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    color: var(--hp-text);
}
.hp-form-group input:focus,
.hp-form-group select:focus,
.hp-form-group textarea:focus {
    outline: none;
    border-color: var(--hp-primary);
    box-shadow: 0 0 0 3px rgba(30,42,120,.1);
}
.hp-form-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--hp-text);
    cursor: pointer;
    margin-top: 4px;
}
.hp-form-toggle input { width: 16px; height: 16px; accent-color: var(--hp-primary); }

/* Payment methods */
.hp-pay-methods { display: grid; gap: 10px; }
.hp-pay-method {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--hp-border);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    background: white;
}
.hp-pay-method:hover { border-color: var(--hp-primary-soft); background: #fafbff; }
.hp-pay-method.is-selected {
    border-color: var(--hp-primary);
    background: #fafbff;
}
.hp-pay-method input { display: none; }
.hp-pay-method-radio {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid var(--hp-border);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.hp-pay-method-radio::after {
    content: '';
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--hp-primary);
    opacity: 0;
    transition: opacity .15s;
}
.hp-pay-method.is-selected .hp-pay-method-radio { border-color: var(--hp-primary); }
.hp-pay-method.is-selected .hp-pay-method-radio::after { opacity: 1; }
.hp-pay-method-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    display: grid; place-items: center;
    font-size: 17px;
    flex-shrink: 0;
}
.hp-pay-method-body { flex: 1; }
.hp-pay-method-name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--hp-text);
    line-height: 1.2;
}
.hp-pay-method-desc {
    font-size: 12px;
    color: var(--hp-muted);
    margin-top: 2px;
}
.hp-pay-method-demo {
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    margin-left: auto;
    letter-spacing: .8px;
}

.hp-pay-card-fields {
    margin-top: 14px;
    padding: 18px;
    background: var(--hp-bg);
    border-radius: 12px;
    display: none;
}
.hp-pay-card-fields.is-visible { display: block; }
.hp-pay-card-demo-note {
    font-size: 12px;
    color: var(--hp-muted);
    margin: 14px 0 0;
    text-align: center;
    font-style: italic;
}

/* Order Summary (right column) */
.hp-summary {
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 26px 28px;
    box-shadow: var(--hp-shadow-sm);
    position: sticky;
    top: 24px;
}
.hp-summary-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 20px;
    color: var(--hp-primary);
    font-weight: 700;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--hp-border);
}
.hp-summary-pkg {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}
.hp-summary-pkg-img {
    width: 60px; height: 60px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--hp-bg);
    flex-shrink: 0;
}
.hp-summary-pkg-name {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 15px;
    color: var(--hp-primary);
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}
.hp-summary-pkg-price { font-size: 14px; color: var(--hp-text); font-weight: 600; }
.hp-summary-pkg-old { color: var(--hp-muted); text-decoration: line-through; font-weight: 500; font-size: 13px; margin-right: 8px; }

.hp-summary-meta {
    background: var(--hp-bg);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
    display: grid;
    gap: 8px;
}
.hp-summary-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.hp-summary-meta-label { color: var(--hp-muted); display: flex; align-items: center; gap: 8px; }
.hp-summary-meta-label i { color: var(--hp-primary); }
.hp-summary-meta-value { font-weight: 600; color: var(--hp-primary); }

.hp-summary-addons {
    margin-bottom: 18px;
}
.hp-summary-addon {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--hp-text);
    margin-bottom: 6px;
}
.hp-summary-addon-name { display: flex; align-items: center; gap: 8px; }
.hp-summary-addon-name i { color: var(--hp-success); font-size: 11px; }

.hp-summary-promo-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    color: var(--hp-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 0;
    cursor: pointer;
    margin-bottom: 14px;
}
.hp-summary-promo {
    display: none;
    margin-bottom: 14px;
    gap: 8px;
}
.hp-summary-promo.is-visible { display: flex; }
.hp-summary-promo input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--hp-border);
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
}
.hp-summary-promo button {
    padding: 10px 16px;
    background: var(--hp-primary);
    color: white;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

.hp-summary-totals {
    padding-top: 14px;
    border-top: 1px solid var(--hp-border);
    margin-bottom: 18px;
}
.hp-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--hp-text);
}
.hp-summary-row-discount { color: var(--hp-success); }
.hp-summary-row-total {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--hp-primary);
    padding-top: 12px;
    border-top: 1px solid var(--hp-border);
    margin-top: 8px;
}
.hp-summary-row-total .hp-summary-row-label { font-size: 14px; color: var(--hp-text); font-family: 'Inter', sans-serif; font-weight: 600; }

.hp-summary-cta { width: 100%; justify-content: center; margin-top: 6px; }
.hp-summary-trust {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: var(--hp-muted);
}
.hp-summary-trust span { display: flex; align-items: center; gap: 8px; }
.hp-summary-trust i { color: var(--hp-primary); }

/* ============================ SUCCESS MODAL ============================ */
.hp-success-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(2px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.hp-success-modal.is-open { display: flex; }
.hp-success-card {
    background: white;
    border-radius: var(--hp-radius-lg);
    max-width: 480px;
    width: 100%;
    padding: 40px 36px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
    animation: hp-pop .35s ease-out;
}
@keyframes hp-pop {
    from { transform: translateY(20px) scale(.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.hp-success-check {
    width: 90px; height: 90px;
    background: var(--hp-success-soft);
    color: var(--hp-success);
    border-radius: 50%;
    display: grid; place-items: center;
    margin: 0 auto 22px;
    font-size: 38px;
    animation: hp-check .5s ease-out .15s both;
}
@keyframes hp-check {
    from { transform: scale(0); }
    50% { transform: scale(1.15); }
    to { transform: scale(1); }
}
.hp-success-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 28px;
    color: var(--hp-primary);
    margin: 0 0 10px;
}
.hp-success-sub {
    font-size: 15px;
    color: var(--hp-text);
    line-height: 1.6;
    margin: 0 0 18px;
}
.hp-success-id {
    background: var(--hp-bg);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 22px;
    font-size: 13px;
    color: var(--hp-muted);
}
.hp-success-id strong {
    display: block;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 18px;
    color: var(--hp-primary);
    margin-top: 4px;
}
.hp-success-next {
    text-align: left;
    background: var(--hp-bg);
    border: 1px solid var(--hp-primary-soft);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--hp-text);
    line-height: 1.6;
}
.hp-success-next strong { display: block; margin-bottom: 6px; color: var(--hp-primary); }
.hp-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================ Responsive ============================ */
@media (max-width: 1080px) {
    .hp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hp-hero-media { max-width: 480px; margin: 0 auto; position: static; top: auto; }
    .hp-params-grid { grid-template-columns: 1fr; }
    .hp-checkout-grid { grid-template-columns: 1fr; }
    .hp-summary { position: static; }
}
@media (max-width: 960px) {
    .hp-features { grid-template-columns: repeat(2, 1fr); }
    .hp-audience { grid-template-columns: repeat(2, 1fr); }
    .hp-info-strip-grid { grid-template-columns: 1fr; }
    .hp-steps { grid-template-columns: repeat(2, 1fr); }
    .hp-steps::before { display: none; }
    .hp-cta-grid { grid-template-columns: 1fr; gap: 30px; }
    .hp-cta-banner { padding: 36px 30px; }
    .hp-trust-bottom-grid { grid-template-columns: 1fr; }
    .hp-params-list { grid-template-columns: 1fr; }
    .hp-param-sub { grid-template-columns: 1fr; }
    .hp-hero-trust { grid-template-columns: repeat(2, auto); justify-content: start; }
}
@media (max-width: 600px) {
    .hp-hero { padding: 18px 0 48px; }
    .hp-hero-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 22px;
    }
    .hp-hero-price-side {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid var(--hp-border);
        padding-top: 14px;
        width: 100%;
    }
    .hp-hero-price-amount { font-size: 44px; }
    .hp-hero-actions { width: 100%; }
    .hp-hero-actions .hp-btn { width: 100%; justify-content: center; }
    .hp-features { grid-template-columns: 1fr; }
    .hp-audience { grid-template-columns: 1fr; }
    .hp-steps { grid-template-columns: 1fr; }
    .hp-drawer { width: 100vw; }
    .hp-drawer-head, .hp-drawer-body, .hp-drawer-foot { padding-left: 18px; padding-right: 18px; }
    .hp-drawer-slots { grid-template-columns: repeat(2, 1fr); }
    .hp-form-row { grid-template-columns: 1fr; }
    .hp-cta-banner { padding: 30px 22px; }
}

/* =============================================================
   VALEO-COMPETITIVE UPGRADES (Blocks A–F)
   ============================================================= */

/* ---------- BLOCK A: Hero feature bullets ---------- */
.hp-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    max-width: 520px;
}
/* Default visible count = 5; the rest are hidden until expanded. */
.hp-hero-bullets.is-collapsed > .hp-hero-bullet:nth-child(n+6) {
    display: none;
}
.hp-hero-bullets-toggle {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    padding: 6px 0;
    margin: 0 0 18px;
    color: var(--hp-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: gap 0.15s;
}
.hp-hero-bullets-toggle:hover { gap: 9px; color: var(--hp-primary-dark); }
.hp-hero-bullets-toggle i { font-size: 11px; transition: transform 0.2s; }
.hp-hero-bullets-toggle.is-expanded i { transform: rotate(180deg); }
.hp-hero-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--hp-text);
}
.hp-hero-bullet strong { color: var(--hp-primary); font-weight: 700; }
.hp-hero-bullet-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    display: grid;
    place-items: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
}
.hp-hero-bullet-icon::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid rgba(30, 42, 120, 0.08);
    pointer-events: none;
}

/* ---------- BLOCK A: Qty stepper + CTA row ---------- */
.hp-cta-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.hp-qty {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--hp-shadow-sm);
    flex-shrink: 0;
}
.hp-qty-btn {
    width: 36px;
    height: 44px;
    background: white;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--hp-primary);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}
.hp-qty-btn:hover:not(:disabled) { background: var(--hp-primary-soft); }
.hp-qty-btn:disabled { color: #cbd5e1; cursor: not-allowed; }
.hp-qty-value {
    width: 34px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--hp-primary);
    user-select: none;
}
/* Add to cart — sized to content, not full-width */
.hp-cta-add {
    flex: 0 0 auto;
    justify-content: center;
    padding: 10px 22px;
    font-size: 14px;
}
.hp-cta-add span { font-weight: 700; }

.hp-save-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 0;
    padding: 8px 2px;
    color: var(--hp-muted);
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 22px;
    font-family: inherit;
    transition: color 0.15s;
}
.hp-save-link:hover { color: var(--hp-primary); }
.hp-save-link i { color: var(--hp-primary); }

/* ---------- BLOCK A: Promo code strip ---------- */
.hp-promo-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--hp-primary-soft);
    border: 1px dashed var(--hp-primary);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: var(--hp-text);
}
.hp-promo-strip-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--hp-primary);
    color: white;
    display: grid; place-items: center;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(30, 42, 120, .25);
}
.hp-promo-strip-body { line-height: 1.5; }
.hp-promo-strip-body strong { color: var(--hp-primary); font-weight: 700; }
.hp-promo-strip code {
    background: white;
    color: var(--hp-primary);
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.6px;
    border: 1px solid var(--hp-primary-soft);
}

/* ---------- BLOCK A: Tabby BNPL strip ---------- */
.hp-bnpl-tabby {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 26px;
    font-size: 13px;
    color: var(--hp-text);
    line-height: 1.5;
    box-shadow: var(--hp-shadow-sm);
}
.hp-bnpl-tabby-body { flex: 1 1 auto; }
.hp-bnpl-tabby-body strong { color: var(--hp-text); font-weight: 700; }
.hp-bnpl-tabby-more {
    color: var(--hp-primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 2px;
    white-space: nowrap;
    transition: color 0.15s;
}
.hp-bnpl-tabby-more:hover { color: var(--hp-primary-dark); text-decoration: underline; }
.hp-bnpl-tabby-logo {
    flex-shrink: 0;
    display: inline-block;
    line-height: 0;
}
.hp-bnpl-tabby-logo img {
    height: 28px;
    width: auto;
    display: block;
}
@media (max-width: 600px) {
    .hp-bnpl-tabby-logo img { height: 26px; }
}

/* ---------- BLOCK B: Tabs (What's Measured / What's Included) ---------- */
.hp-tabs-section {
    background: white;
    padding: 40px 0 0;
}
.hp-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--hp-border);
    margin-bottom: 28px;
}
.hp-tab {
    background: transparent;
    border: 0;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--hp-muted);
    cursor: pointer;
    position: relative;
    font-family: inherit;
    transition: color 0.15s;
}
.hp-tab:hover { color: var(--hp-primary); }
.hp-tab.is-active { color: var(--hp-primary); }
.hp-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--hp-primary);
    border-radius: 2px 2px 0 0;
}

.hp-tab-panel {
    padding: 0 4px 30px;
}
.hp-tab-panel[hidden] { display: none; }
.hp-tab-panel-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--hp-primary);
    margin: 0 0 12px;
}
.hp-tab-panel-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--hp-text);
    margin: 0 0 18px;
    max-width: 760px;
}
.hp-tab-panel-text strong { color: var(--hp-primary); }
.hp-tab-panel-anchor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hp-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 0;
    transition: gap 0.15s;
}
.hp-tab-panel-anchor:hover { gap: 12px; color: var(--hp-primary-dark); }

.hp-tab-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.hp-tab-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--hp-bg);
    border-radius: 12px;
    border: 1px solid var(--hp-border);
}
.hp-tab-check {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--hp-primary);
    color: white;
    display: grid; place-items: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}
.hp-tab-checklist li strong {
    display: block;
    color: var(--hp-primary);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 15px;
}
.hp-tab-checklist li span {
    font-size: 13.5px;
    color: var(--hp-muted);
    line-height: 1.55;
}

/* ---------- BLOCK C: Why Chughtai ---------- */
.hp-why-chughtai-section { background: var(--hp-bg); }
.hp-why-chughtai {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.hp-why-chughtai-card {
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 32px 26px;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.hp-why-chughtai-card:hover {
    box-shadow: var(--hp-shadow);
    transform: translateY(-4px);
    border-color: var(--hp-primary-soft);
}
.hp-why-chughtai-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    margin: 0 auto 18px;
    display: grid; place-items: center;
    background: var(--hp-primary);
    color: white;
    font-size: 24px;
    position: relative;
}
.hp-why-chughtai-icon::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 3px;
    background: var(--hp-primary);
    border-radius: 2px;
}
.hp-why-chughtai-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--hp-primary);
    margin: 14px 0 10px;
}
.hp-why-chughtai-desc {
    font-size: 14px;
    color: var(--hp-text);
    line-height: 1.65;
    margin: 0;
}

/* ---------- BLOCK D: Cart drawer upgrades ---------- */
.hp-drawer-date-slots {
    margin-top: 6px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--hp-success);
    background: var(--hp-success-soft);
    padding: 2px 7px;
    border-radius: 99px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.2px;
}
.hp-drawer-date-slots.is-low { color: var(--hp-primary); background: var(--hp-primary-soft); }
.hp-drawer-date.is-selected .hp-drawer-date-slots {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.hp-drawer-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    margin-top: 16px;
    text-decoration: none;
    color: #14532d;
    font-size: 13.5px;
    transition: background 0.15s, border-color 0.15s;
}
.hp-drawer-whatsapp:hover { background: #dcfce7; border-color: #86efac; text-decoration: none; color: #14532d; }
.hp-drawer-whatsapp-icon {
    width: 32px; height: 32px;
    background: #25d366;
    border-radius: 50%;
    display: grid; place-items: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}
.hp-drawer-whatsapp-arrow { margin-left: auto; color: #16a34a; font-size: 12px; }
.hp-drawer-whatsapp strong { color: var(--hp-primary); font-weight: 700; }

.hp-drawer-someone-else {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: var(--hp-text);
    font-weight: 500;
}
.hp-drawer-someone-else input { position: absolute; opacity: 0; pointer-events: none; }
.hp-drawer-someone-check {
    width: 22px; height: 22px;
    border: 1.5px solid var(--hp-border);
    border-radius: 6px;
    display: grid; place-items: center;
    color: white;
    background: white;
    font-size: 11px;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}
.hp-drawer-someone-check i { opacity: 0; transition: opacity 0.15s; }
.hp-drawer-someone-else input:checked ~ .hp-drawer-someone-check {
    background: var(--hp-primary);
    border-color: var(--hp-primary);
}
.hp-drawer-someone-else input:checked ~ .hp-drawer-someone-check i { opacity: 1; }

.hp-drawer-someone-field {
    margin-top: 12px;
    padding: 14px;
    background: var(--hp-bg);
    border-radius: 10px;
    border: 1px solid var(--hp-border);
}
.hp-drawer-someone-field[hidden] { display: none; }
.hp-drawer-someone-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--hp-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.hp-drawer-someone-field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--hp-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    color: var(--hp-text);
}
.hp-drawer-someone-field input:focus { outline: none; border-color: var(--hp-primary); box-shadow: 0 0 0 3px rgba(30, 42, 120, 0.08); }

.hp-drawer-add-person {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    background: transparent;
    border: 1.5px dashed var(--hp-border);
    border-radius: 10px;
    padding: 12px;
    margin-top: 12px;
    color: var(--hp-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
}
.hp-drawer-add-person:hover {
    border-color: var(--hp-primary);
    background: var(--hp-primary-soft);
}

/* ---------- BLOCK D: Add-person modal ---------- */
.hp-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s;
}
.hp-modal.is-open { display: flex; opacity: 1; }
.hp-modal-card {
    background: white;
    border-radius: var(--hp-radius-lg);
    padding: 36px 32px 30px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
.hp-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: 0;
    color: var(--hp-muted);
    font-size: 20px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.hp-modal-close:hover { background: var(--hp-bg); color: var(--hp-primary); }
.hp-modal-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    display: grid; place-items: center;
    font-size: 28px;
}
.hp-modal-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--hp-primary);
    margin: 0 0 10px;
}
.hp-modal-desc {
    font-size: 14px;
    color: var(--hp-text);
    line-height: 1.65;
    margin: 0 0 22px;
}
.hp-modal-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hp-muted);
    font-size: 13px;
    margin-top: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.hp-modal-secondary:hover { color: var(--hp-primary); }
.hp-modal-secondary i { color: #25d366; }

/* ---------- BLOCK E: Checkout sign-in card ---------- */
.hp-signin {
    background: white;
    border: 1px solid var(--hp-primary-soft);
    border-radius: var(--hp-radius);
    padding: 28px;
    box-shadow: var(--hp-shadow-sm);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.hp-signin::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-primary) 0%, var(--hp-primary) 100%);
}
.hp-signin.is-collapsed {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    opacity: 0;
    border: 0;
}
.hp-signin-head { margin-bottom: 18px; }
.hp-signin-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--hp-primary);
    margin: 0 0 4px;
}
.hp-signin-sub {
    font-size: 13px;
    color: var(--hp-muted);
    margin: 0;
}
.hp-signin-form .hp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}
.hp-signin-password-group { position: relative; }
.hp-signin-pwd-toggle {
    position: absolute;
    right: 10px;
    top: 32px;
    background: transparent;
    border: 0;
    color: var(--hp-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: color 0.15s;
}
.hp-signin-pwd-toggle:hover { color: var(--hp-primary); }
.hp-signin-submit-group { align-self: end; }
.hp-signin-submit { height: 44px; padding: 0 24px; white-space: nowrap; }

.hp-signin-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0 14px;
    color: var(--hp-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hp-signin-divider::before,
.hp-signin-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: var(--hp-border);
}

.hp-signin-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.hp-signin-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    background: white;
    font-size: 14px;
    font-weight: 600;
    color: var(--hp-text);
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s, transform 0.12s;
}
.hp-signin-social-btn:hover { border-color: var(--hp-primary); background: var(--hp-primary-soft); transform: translateY(-1px); }
.hp-signin-social-icon { display: inline-flex; align-items: center; justify-content: center; }
.hp-signin-social-apple { color: #111; font-size: 17px; }

.hp-signin-skip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 14px 12px 4px;
    margin-top: 6px;
    color: var(--hp-muted);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.15s, gap 0.15s;
}
.hp-signin-skip:hover { color: var(--hp-primary); gap: 12px; }

/* ---------- BLOCK F: Compliance footer ---------- */
.hp-compliance {
    background: var(--hp-bg);
    padding: 36px 0 30px;
    border-top: 1px solid var(--hp-border);
}
.hp-compliance .container { text-align: center; }
.hp-compliance-certs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 22px;
}
.hp-compliance-cert {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: var(--hp-shadow-sm);
}
.hp-compliance-cert-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    display: grid; place-items: center;
    font-size: 14px;
    flex-shrink: 0;
}
.hp-compliance-cert-text { text-align: left; }
.hp-compliance-cert-title {
    font-weight: 700;
    color: var(--hp-primary);
    font-size: 13px;
    line-height: 1.2;
}
.hp-compliance-cert-sub {
    font-size: 11.5px;
    color: var(--hp-muted);
    line-height: 1.3;
    margin-top: 2px;
}

.hp-compliance-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.hp-compliance-payments-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--hp-muted);
    font-weight: 600;
}
.hp-compliance-payments-list {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.hp-compliance-pay {
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: 8px;
    padding: 8px 14px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    color: var(--hp-text);
    font-size: 22px;
    line-height: 1;
    box-shadow: var(--hp-shadow-sm);
}
.hp-compliance-pay-visa i { color: #1a1f71; }
.hp-compliance-pay-mc i { color: #eb001b; }
.hp-compliance-pay-amex i { color: #2e77bb; }
.hp-compliance-pay-tabby {
    background: #3bd4ae;
    color: #0a1a36;
    border-color: #3bd4ae;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.4px;
    font-family: 'Inter', sans-serif;
}
.hp-compliance-microcopy {
    font-size: 12.5px;
    color: var(--hp-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---------- BLOCK A/F Responsive ---------- */
@media (max-width: 1080px) {
    .hp-hero-bullets { max-width: 100%; }
    .hp-tab-checklist { grid-template-columns: 1fr; }
    .hp-why-chughtai { grid-template-columns: 1fr; }
    .hp-signin-form .hp-form-row { grid-template-columns: 1fr 1fr; }
    .hp-signin-submit-group { grid-column: 1 / -1; }
    .hp-signin-submit { width: 100%; }
}
@media (max-width: 600px) {
    .hp-cta-row { flex-direction: column; align-items: stretch; }
    .hp-qty { align-self: flex-start; }
    .hp-cta-add { width: 100%; }
    .hp-promo-strip, .hp-bnpl-tabby { flex-wrap: wrap; }
    .hp-tab { padding: 14px 16px; font-size: 14px; }
    .hp-signin-form .hp-form-row { grid-template-columns: 1fr; }
    .hp-signin-submit-group { grid-column: auto; }
    .hp-signin-social { grid-template-columns: 1fr; }
    .hp-compliance-payments { flex-direction: column; gap: 10px; }
}

