.hero-best-prices {
    position: relative;
    width: 100%;
    height: 82vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-bp-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-bp-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-bp-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: none;
    z-index: 2;
}

.hero-bp-content-wrapper {
    width: 100%;
    position: relative;
    z-index: 3;
}

@media (min-width: 769px) {
    .hero-bp-content-wrapper {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .hero-bp-content {
        max-width: 500px;
    }

    .hero-bp-headline {
        font-size: clamp(4rem, 7vw, 7.5rem);
        max-width: 4em;
    }
}

.hero-bp-content {
    max-width: 560px;
    color: white;
}

.hero-bp-headline {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
}

.hero-bp-headline-line {
    display: block;
}

.bp-image-section {
    padding: 60px 20px;
    background: #ffffff;
}

.bp-image-section-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.bp-image-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.bp-image-container picture,
.bp-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bp-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.bp-image-heading-overlay {
    position: absolute;
    bottom: 15%;
    left: 0;
    padding: 40px 48px;
    max-width: 75%;
    z-index: 2;
}

.bp-image-heading {
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    margin: 0;
}

.bp-image-heading-line {
    display: block;
    padding-bottom: 0.3em;
}

.bp-image-subtext {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #555555;
    line-height: 1.7;
    margin: 32px 0 0;
    max-width: 780px;
}

@media (max-width: 768px) {
    .bp-image-section {
        padding: 40px 20px;
    }

    .bp-image-section-wrapper {
        padding: 0;
    }

    .bp-image-container {
        aspect-ratio: 1 / 1;
        border-radius: 12px;
    }

    .bp-image-heading-overlay {
        padding: 24px 28px;
        left: 0;
        right: auto;
        max-width: 100%;
        text-align: left;
        bottom: 1.5%;
    }

    .bp-image-heading {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .bp-image-subtext {
        margin: 24px 0 0;
        padding: 0 4px;
        text-align: left;
    }
}

.bp-tagline-section {
    background-color: #d6e8f7;
    padding: 60px 20px;
}

.bp-tagline-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.bp-tagline-text {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
    color: #1C48AA;
}

.bp-tagline-text strong {
    font-weight: 800;
}

.bp-tagline-text p {
    margin: 0;
}

@media (max-width: 768px) {
    .bp-tagline-section {
        padding: 40px 20px;
    }

    .bp-tagline-text {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

/* ── How it Works section ── */
.bp-hiw-section {
    background: #f5f5f5;
    padding: 72px 20px;
}

.bp-hiw-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.bp-hiw-heading {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #1C48AA;
    margin: 0 0 20px;
    text-align: center;
}

.bp-hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 300px));
    gap: 100px;
    justify-content: start;
}

.bp-hiw-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 28px 22px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bp-hiw-card__icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    align-self: center;
}

.bp-hiw-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.bp-hiw-card__heading {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 700;
    color: #1C48AA;
    margin: 0;
}

.bp-hiw-card__content {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
    text-wrap: pretty;
}

.bp-hiw-card__content p {
    margin: 0;
}

@media (max-width: 900px) {
    .bp-hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bp-hiw-section {
        padding: 40px 16px;
    }

    .bp-hiw-heading {
        text-align: center;
    }

    .bp-hiw-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bp-hiw-card {
        padding: 20px 16px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-best-prices {
        padding: 40px 24px 60px;
        min-height: 520px;
        align-items: center;
    }

    .hero-bp-overlay {
        background: none;
    }

    .hero-bp-headline {
        font-size: clamp(3rem, 14vw, 5rem);
        white-space: normal;
    }
}

/* ── Visual Callout section ── */
.bp-vc-section {
    background: #f5f5f5;
    padding: 20px 20px 60px;
}

.bp-vc-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Mobile heading — hidden on desktop */
.bp-vc-heading--mobile {
    display: none;
}

.bp-vc-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* ── Image ── */
.bp-vc-image-container {
    width: 100%;
    aspect-ratio: 16 / 7;
}

.bp-vc-image-container picture,
.bp-vc-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Card overlay (desktop) ── */
.bp-vc-card {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
    font-family: 'Work Sans', sans-serif;
}

.bp-vc-card__heading {
    font-size: clamp(1.6rem, 2.8vw, 2.25rem);
    font-weight: 800;
    color: #1C48AA;
    margin: 0;
    padding: 28px 36px 24px;
    border-bottom: 1px solid #d1d5db;
}

.bp-vc-card__rows {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bp-vc-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    border-top: 1px solid #e5e7eb;
}

.bp-vc-card__row:first-child {
    border-top: none;
}

.bp-vc-card__row-label {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: #6b7280;
}

.bp-vc-card__row-amount {
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

/* Small superscript-style currency symbol */
.bp-vc-currency {
    font-size: 0.52em;
    font-weight: 700;
    vertical-align: super;
    line-height: 0;
}

/* Last repeater row — green label and amount */
.bp-vc-card__row--highlight .bp-vc-card__row-label,
.bp-vc-card__row--highlight .bp-vc-card__row-amount {
    color: #16a34a;
    font-weight: 700;
}

.bp-vc-card__footer {
    background: rgba(0, 70, 190, 0.88);
    padding: 20px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.bp-vc-card__footer-label {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #ffffff;
}

.bp-vc-card__footer-amount {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .bp-vc-section {
        padding: 40px 16px;
    }

    .bp-vc-wrapper {
        padding: 0 16px;
    }

    .bp-vc-heading--mobile {
        display: block;
        font-family: 'Work Sans', sans-serif;
        font-size: clamp(2rem, 3.5vw, 2.75rem);
        font-weight: 800;
        color: #1C48AA;
        margin: 0 0 16px;
        padding: 0 4px;
        text-align: center;
    }

    .bp-vc-heading--desktop {
        display: none;
    }

    .bp-vc-inner {
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
        background: #ffffff;
    }

    .bp-vc-image-container {
        aspect-ratio: 4 / 3;
        width: 100%;
        flex-shrink: 0;
    }

    .bp-vc-card {
        position: static;
        width: 100%;
        background: #ffffff;
    }

    .bp-vc-card__heading {
        padding: 20px 24px 16px;
    }

    .bp-vc-card__row {
        padding: 12px 24px;
    }

    .bp-vc-card__footer {
        padding: 12px 24px;
    }
}

/* ── FAQ section ── */
.bp-faq-section {
    background: #d6e8f7;
    padding: 72px 20px;
}

.bp-faq-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.bp-faq-heading {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #1C48AA;
    margin: 0 0 40px;
}

.bp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bp-faq-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.bp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3340;
    text-align: left;
    line-height: 1.4;
}

.bp-faq-question:hover {
    background: rgba(0, 0, 0, 0.03);
}

.bp-faq-question-text {
    flex: 1;
}

.bp-faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.bp-faq-chevron::before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    margin-top: -4px;
}

.bp-faq-item.is-open .bp-faq-chevron {
    transform: rotate(180deg);
}

.bp-faq-item.is-open .bp-faq-chevron::before {
    margin-top: 4px;
}

.bp-faq-answer {
    border-top: 1px solid #e5e7eb;
}

.bp-faq-answer-inner {
    padding: 18px 24px 22px;
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.7;
}

.bp-faq-answer-inner p {
    margin: 0 0 0.75em;
}

.bp-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .bp-faq-section {
        padding: 48px 20px;
    }

    .bp-faq-wrapper {
        padding: 0;
    }

    .bp-faq-heading {
        text-align: center;
    }

    .bp-faq-question {
        padding: 18px 20px;
        font-size: 0.9375rem;
    }

    .bp-faq-answer-inner {
        padding: 14px 20px 18px;
    }
}


/* ═══════════════════════════════════════════════════════════
   FIND MY STORE CTA
═══════════════════════════════════════════════════════════ */

.section-category-cta {
    padding: 24px 20px;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
}

.btn-category-cta {
    display: inline-block;
    background-color: #1C48AA;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 18px 50px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-category-cta:hover,
.btn-category-cta:focus {
    background-color: #1C48AA;
    color: #ffffff;
}

.btn-category-cta:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .btn-category-cta {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .btn-category-cta {
        padding: 14px 20px;
    }
}
