/* ------------------------------------------------------------------
   Audience-specific homepage styling (new vs existing customers).
   July 2026 rebuild: static/video hero, browse-taxonomy cards,
   buy-again tiles, reviews band. Layered on top of the live site
   theme; buttons/cards reuse the existing .btn .hvr-hover,
   .products-box and .special-list styles so these pages stay
   visually consistent with the main site. Mobile-first.
   ------------------------------------------------------------------ */

/* Preview ribbon so staff know these are unlinked URL-only pages */
.aud-preview-note {
    background: #fffbeb;
    border-top: 1px solid #f59e0b;
    border-bottom: 1px solid #f59e0b;
    color: #7c2d12;
    font-size: 14px;
    padding: 9px 0;
    text-align: center;
}

/* Shared bits */
.aud-eyebrow {
    color: #2f6b2f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Existing-customer page: keep eyebrow/kicker copy in normal case */
.aud-hero--welcome .aud-eyebrow,
.aud-account-kicker,
.aud-support .aud-eyebrow,
.aud-story-copy .aud-eyebrow {
    text-transform: none;
    letter-spacing: 0.02em;
}

.aud-btn-ghost.btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* White secondary button (hero): dark brand-navy text on white */
.aud-btn-white.btn {
    background: #ffffff;
    color: #1F2140;
    font-weight: 600;
}

.aud-btn-white.btn:hover,
.aud-btn-white.btn:focus {
    background: #e8e9f4;
    color: #1F2140;
}

/* ==================================================================
   Hero (new customers): static image first, optional background
   video fades in behind the content once loaded.
   ================================================================== */
/* No overflow:hidden here - the media layer is contained by inset:0
   anyway, and the search autocomplete dropdown must be able to extend
   below the hero without being clipped. */
.aud-hero {
    position: relative;
    background: #1F2140; /* brand navy (matches .top-search) */
    color: #ffffff;
}

.aud-hero-media {
    position: absolute;
    inset: 0;
}

.aud-hero-media picture {
    display: block;
    position: absolute;
    inset: 0;
}

.aud-hero-media img,
.aud-hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.aud-hero-media video {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.aud-hero-media video.is-playing {
    opacity: 1;
}

/* Based on the live homepage slider overlay (.overlay-background in
   style.css, #333 at 0.2) but stepped up for text legibility over the
   hero photo. Tuning increments: 0.2 too light, trying 0.35. */
.aud-hero-overlay {
    position: absolute;
    inset: 0;
    background: #333;
    opacity: 0.35;
}

.aud-hero-content {
    position: relative;
    z-index: 2;
    padding: 64px 15px 56px;
    text-align: center;
}

.aud-hero-content h1 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.aud-hero-content .aud-eyebrow {
    color: #d5d6ee;
}

.aud-hero-lead {
    color: #eef4ee;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 auto 24px;
    max-width: 620px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.aud-hero .aud-hero-actions {
    justify-content: center;
    margin-bottom: 16px;
}

/* "Already shop with us?" login route under the hero buttons */
.aud-hero-login {
    color: #e8e9f4;
    font-size: 14px;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.aud-hero-login a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline !important;
}

.aud-hero-login a:hover,
.aud-hero-login a:focus {
    color: #d5d6ee;
}

/* Hero search box: sits near the base of the hero image */
.aud-hero-search-wrap {
    margin: 44px auto 0;
    max-width: 520px;
    position: relative;
}

.aud-hero-search {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* Autocomplete dropdown (shared site-search renderer, hero placement):
   overlays whatever sits under the hero instead of pushing it down. */
.aud-hero-search-results {
    border-radius: 8px;
    left: 0;
    margin-top: 6px;
    position: absolute;
    right: 0;
    text-align: left;
    top: 100%;
    z-index: 40;
}

.aud-hero-search input[type="search"] {
    border: 0;
    flex: 1 1 auto;
    font-size: 16px;
    min-width: 0;
    padding: 13px 16px;
}

.aud-hero-search input[type="search"]:focus {
    outline: 2px solid #7273b4;
    outline-offset: -2px;
}

.aud-hero-search button {
    background: #7273b4; /* brand purple (matches .hvr-hover) */
    border: 0;
    color: #ffffff;
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 20px;
    transition: background 0.18s ease;
}

.aud-hero-search button:hover,
.aud-hero-search button:focus {
    background: #9a97ca;
}

/* Pause/play control for the background video */
.aud-hero-video-toggle {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    margin-top: 18px;
    padding: 7px 16px;
}

.aud-hero-video-toggle:hover,
.aud-hero-video-toggle:focus {
    background: rgba(0, 0, 0, 0.65);
}

/* ==================================================================
   Welcome-back hero variant (existing customers, July 2026 v2):
   same navy/photo hero as the new-customer page but left-aligned,
   two columns - welcome copy left, white account card right.
   ================================================================== */
.aud-hero--welcome .aud-hero-content {
    text-align: left;
    padding: 48px 15px 44px;
}

.aud-hero--welcome .aud-hero-lead {
    margin: 0 0 24px;
    max-width: 560px;
}

.aud-hero--welcome .aud-hero-actions {
    justify-content: flex-start;
    margin-bottom: 0;
}

/* Hero search on the welcome variant: centered under the two columns */
.aud-hero--welcome .aud-hero-search-wrap {
    margin: 34px auto 0;
}

/* Account card content (hero right-hand column) */
.aud-account-card {
    text-align: left;
}

.aud-account-kicker {
    color: #7273b4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    text-transform: none;
}

.aud-account-link {
    align-items: center;
    border-bottom: 1px solid #eceef4;
    color: #1F2140;
    display: flex;
    gap: 14px;
    padding: 13px 2px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.aud-account-link:last-of-type {
    border-bottom: 0;
}

.aud-account-link:hover,
.aud-account-link:focus {
    background: #f5f5fb;
    text-decoration: none;
}

.aud-account-link > i:first-child {
    color: #7273b4;
    flex: 0 0 26px;
    font-size: 20px;
    text-align: center;
}

.aud-account-link span {
    flex: 1 1 auto;
}

.aud-account-link span strong {
    color: #1F2140;
    display: block;
    font-size: 15px;
}

.aud-account-link span small {
    color: #5a5f70;
    display: block;
    font-size: 12.5px;
}

.aud-account-chevron {
    color: #b9bad8;
    font-size: 12px;
}

.aud-account-checklist {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.aud-account-checklist li {
    color: #3d4254;
    font-size: 14px;
    margin-bottom: 7px;
}

.aud-account-checklist li i {
    color: #2f6b2f;
    margin-right: 8px;
}

.aud-account-forgotten {
    color: #5a5f70;
    display: block;
    font-size: 13px;
    text-align: center;
    text-decoration: underline !important;
}

.aud-account-forgotten:hover,
.aud-account-forgotten:focus {
    color: #1F2140;
}

/* ==================================================================
   Welcome-back hero (existing customers)
   ================================================================== */
.aud-welcome {
    background: linear-gradient(120deg, #f4f8f1 0%, #eaf2fb 100%);
    border-bottom: 1px solid #e2e8e0;
    padding: 32px 0 28px;
}

.aud-welcome h1 {
    color: #1f2d1f;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}

.aud-welcome p.aud-lead {
    color: #3f4a3f;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 640px;
}

.aud-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.aud-hero-actions .btn {
    font-weight: 600;
}

/* White summary card on the hero (existing customers) */
.aud-hero-card {
    background: #ffffff;
    border: 1px solid #dce6dc;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(31, 45, 31, 0.10);
    margin-top: 18px;
    padding: 22px;
}

.aud-hero-card h2 {
    font-size: 19px;
    margin-bottom: 6px;
    color: #1f2d1f;
}

.aud-hero-card h2 i {
    color: #2f6b2f;
    margin-right: 6px;
}

.aud-hero-card p {
    color: #4b554b;
    font-size: 14px;
    margin-bottom: 14px;
}

.aud-hero-card .btn {
    width: 100%;
    margin-bottom: 8px;
}

.aud-hero-card .aud-btn-ghost.btn {
    background: transparent;
    border: 2px solid #2f6b2f;
    color: #2f6b2f;
}

/* Basket-resume variant of the hero card */
.aud-basket-card {
    border-color: #2f6b2f;
    box-shadow: 0 10px 26px rgba(47, 107, 47, 0.18);
}

.aud-basket-card p strong {
    color: #1f2d1f;
}

/* ==================================================================
   Browse taxonomy cards (both variants)
   ================================================================== */
.aud-browse {
    background: #f7f9f6;
    border-top: 1px solid #e9eee7;
    border-bottom: 1px solid #e9eee7;
    padding: 44px 0 26px;
}

.aud-browse .title-all p {
    color: #5a655a;
}

.aud-browse-card {
    display: flex;
    flex-direction: column;
    height: calc(100% - 22px);
    background: #ffffff;
    border: 1px solid #e2e8e0;
    border-radius: 12px;
    overflow: hidden;
    padding: 24px 20px;
    margin-bottom: 22px;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.aud-browse-card:hover,
.aud-browse-card:focus {
    border-color: #7273b4;
    box-shadow: 0 10px 22px rgba(31, 33, 64, 0.14);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Flat cards (existing-customer page): icon above the heading */
.aud-browse-card > i {
    color: #7273b4;
    font-size: 30px;
    margin-bottom: 14px;
    display: block;
}

/* Photo cards (new-customer page): existing category images bleed to
   the card edges; the negative margins cancel the card padding so the
   flat icon cards above keep working from the same class. */
.aud-browse-img,
.aud-browse-imgless {
    display: block;
    width: calc(100% + 40px);
    height: 170px;
    margin: -24px -20px 0;
    max-width: none;
}

.aud-browse-img {
    object-fit: cover;
    object-position: center;
}

/* Icon stand-in for cards without a photo, same footprint */
.aud-browse-imgless {
    align-items: center;
    background: #edeef7;
    display: flex;
    justify-content: center;
}

.aud-browse-imgless i {
    color: #7273b4;
    font-size: 44px;
}

.aud-browse-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding-top: 18px;
}

.aud-browse-card h3 {
    color: #1F2140;
    font-size: 19px;
    margin-bottom: 6px;
}

.aud-browse-card p {
    color: #5a5f70;
    font-size: 14px;
    margin: 0 0 12px;
}

.aud-browse-more {
    color: #7273b4;
    font-size: 13px;
    font-weight: 700;
    margin-top: auto;
}

.aud-browse-more i {
    display: inline;
    font-size: 12px;
    margin: 0 0 0 4px;
}

/* ==================================================================
   Quick action cards (existing customers)
   ================================================================== */
.aud-quick {
    padding: 44px 0 26px;
}

.aud-quick-card {
    display: block;
    height: calc(100% - 22px);
    background: #ffffff;
    border: 1px solid #e2e8e0;
    border-radius: 12px;
    padding: 22px 20px;
    margin-bottom: 22px;
    text-decoration: none;
    transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.aud-quick-card:hover {
    border-color: #2f6b2f;
    box-shadow: 0 10px 22px rgba(31, 45, 31, 0.12);
    transform: translateY(-3px);
    text-decoration: none;
}

.aud-quick-card i {
    color: #2f6b2f;
    font-size: 26px;
    margin-bottom: 12px;
    display: block;
}

.aud-quick-card h3 {
    color: #1f2d1f;
    font-size: 19px;
    margin-bottom: 6px;
}

.aud-quick-card p {
    color: #5a655a;
    font-size: 14px;
    margin: 0;
}

/* ==================================================================
   USP / trust strip (new customers)
   ================================================================== */
.aud-usp {
    background: #1f2d1f;
    color: #ffffff;
    padding: 30px 0 16px;
}

.aud-usp-item {
    margin-bottom: 16px;
    text-align: center;
}

.aud-usp-item i {
    font-size: 26px;
    color: #bfe0bf;
    margin-bottom: 10px;
    display: block;
}

.aud-usp-item span {
    display: block;
    font-size: 17px;
    font-weight: 700;
}

.aud-usp-item p {
    color: #d4ddd4;
    font-size: 13px;
    margin: 2px 0 0;
}

/* ==================================================================
   Key ingredients strip (new customers): four SSIcons plant glyphs,
   shortened from /about/keyingredients.asp. Same 4-up layout as the
   USP strip but on a light background so the brand plant colours read.
   ================================================================== */
.aud-ingredients {
    background: #e7e6f4; /* soft brand lilac to break up the page */
    padding: 30px 0 12px;
}

.aud-ing-item {
    display: block;
    margin-bottom: 18px;
    text-align: center;
    text-decoration: none;
}

/* SSIcons glyph font (as used on /about/keyingredients.asp). No
   negative-margin trick here: the glyph gets a fixed-height box so
   the artwork can never crop or overlap the name below it. */
.aud-ing-icon {
    align-items: center;
    display: flex;
    font-family: 'SSIcons';
    font-weight: 100;
    font-size: 78px;
    height: 108px;
    justify-content: center;
    letter-spacing: -3px;
    line-height: 1;
    margin: 0 auto 6px;
    overflow: visible;
    transition: transform 0.18s ease;
}

.aud-ing-item:hover .aud-ing-icon,
.aud-ing-item:focus .aud-ing-icon {
    transform: translateY(-3px);
}

.aud-ing-name {
    color: #1F2140;
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.aud-ing-item p {
    color: #5d6072;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 230px;
}

/* ==================================================================
   Product tile sections (customer favourites / buy again)
   ================================================================== */
.aud-products {
    padding-top: 44px;
}

.aud-products .title-all p {
    color: #5a655a;
}

.aud-buyagain {
    background: #ffffff;
}

/* Customer Favourites carousel (owl: 4-up desktop, theme init in
   custom.js targets .featured-products-box) */
.aud-fav-carousel {
    margin-bottom: 6px;
}

.aud-fav-carousel .item {
    padding: 2px;
}

.aud-fav-carousel .products-single {
    margin-bottom: 0;
}

/* Static variant of the usual-feeds row (four or fewer products):
   the tiles keep the carousel footprint (4-up desktop) but sit
   centered with blank space instead of being cloned or stretched. */
.aud-usual-static {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.aud-usual-static .item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
    padding: 2px 8px;
}

@media (min-width: 600px) {
    .aud-usual-static .item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (min-width: 1000px) {
    .aud-usual-static .item {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* ==================================================================
   Reviews / trust band (new customers)
   ================================================================== */
.aud-reviews {
    background: #f7f9f6;
    border-top: 1px solid #e9eee7;
    border-bottom: 1px solid #e9eee7;
    padding: 44px 0 36px;
}

.aud-reviews .review-stars {
    color: #f5a623;
    margin-right: 6px;
}

.aud-reviews .title-all p {
    color: #3f4a3f;
    font-size: 16px;
}

.aud-review-card {
    background: #ffffff;
    border: 1px solid #e2e8e0;
    border-radius: 12px;
    height: calc(100% - 22px);
    margin-bottom: 22px;
    padding: 22px 20px;
}

.aud-review-card .review-stars {
    display: block;
    margin-bottom: 10px;
}

.aud-review-text {
    color: #3f4a3f;
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 10px;
}

.aud-review-meta {
    color: #5a655a;
    font-size: 13px;
    margin: 0;
}

.aud-review-meta a {
    color: #2f6b2f;
    font-weight: 600;
}

/* ==================================================================
   Brand story band (new customers, ported from the GPT56 concept):
   full-bleed photo on the left, thirty-years copy on the right.
   ================================================================== */
.aud-story {
    background: #e7e6f4; /* soft brand lilac (palette) - was off-palette cream */
    overflow: hidden;
    padding: 0;
}

.aud-story .row {
    min-height: 460px;
}

.aud-story-image {
    background: url("/images/about-main.jpg") center / cover no-repeat;
    border-radius: 0 6px 6px 0;
    height: 460px;
    margin-left: calc((100vw - 1140px) / -2);
}

.aud-story-copy {
    padding: 50px 0 50px 40px;
}

.aud-story-copy .aud-eyebrow {
    color: #7273b4;
}

.aud-story-copy h2 {
    color: #1F2140;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}

.aud-story-copy p {
    color: #5d6072;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.aud-story-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* On the lilac story band the white button needs an edge to hold its
   shape (in the navy hero the contrast does that job by itself). */
.aud-story-actions .aud-btn-white.btn {
    border: 1px solid #dcdbea;
}

.aud-inline-link {
    color: #7273b4;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline !important;
}

.aud-inline-link:hover,
.aud-inline-link:focus {
    color: #1F2140;
}

@media (max-width: 1199px) {
    .aud-story-image {
        margin-left: calc((100vw - 960px) / -2);
    }
}

@media (max-width: 991px) {
    .aud-story .row {
        min-height: 0;
    }

    .aud-story-image {
        border-radius: 0;
        height: 360px;
        margin: 0 calc((100vw - 720px) / -2);
    }

    .aud-story-copy {
        padding: 38px 0 46px;
    }
}

@media (max-width: 767px) {
    .aud-story-image {
        height: 280px;
        margin: 0 -15px;
    }
}

/* Alternate story band (existing customers): image bleeds to the
   RIGHT edge instead, so stacked story bands alternate sides. */
.aud-story--alt .aud-story-image {
    border-radius: 6px 0 0 6px;
    margin-left: 0;
    margin-right: calc((100vw - 1140px) / -2);
}

.aud-story--alt .aud-story-copy {
    padding: 50px 40px 50px 0;
}

@media (max-width: 1199px) {
    .aud-story--alt .aud-story-image {
        margin-left: 0;
        margin-right: calc((100vw - 960px) / -2);
    }
}

@media (max-width: 991px) {
    .aud-story--alt .aud-story-image {
        border-radius: 0;
        margin: 0 calc((100vw - 720px) / -2);
    }

    .aud-story--alt .aud-story-copy {
        padding: 38px 0 46px;
    }
}

@media (max-width: 767px) {
    .aud-story--alt .aud-story-image {
        margin: 0 -15px;
    }
}

/* ==================================================================
   "Has something changed?" support band (existing customers):
   slim two-column band - copy left, action buttons right.
   ================================================================== */
.aud-support {
    background: #ffffff;
    border-top: 1px solid #e9eee7;
    border-bottom: 1px solid #e9eee7;
    padding: 36px 0 30px;
}

.aud-support h2 {
    color: #1F2140;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.aud-support p {
    color: #5a5f70;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 560px;
}

.aud-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

/* The white secondary button needs an edge on the white band */
.aud-support-actions .aud-btn-white.btn {
    border: 1px solid #dcdbea;
}

@media (min-width: 992px) {
    .aud-support p {
        margin-bottom: 0;
    }

    .aud-support-actions {
        justify-content: flex-end;
    }
}

/* ==================================================================
   The Scoop (existing customers, opted-in only): bordered card with
   the full magazine cover contained on a light panel - no cropping.
   ================================================================== */
.aud-scoop {
    background: #ffffff;
    padding: 44px 0;
}

.aud-scoop-inner {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e4e4ee;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(31, 33, 64, 0.06);
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 26px;
}

.aud-scoop-media {
    align-items: center;
    background: #f2f2f7;
    border-radius: 8px;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    padding: 22px 34px;
}

.aud-scoop-media img {
    display: block;
    height: auto;
    max-height: 290px;
    width: auto;
    max-width: 100%;
    box-shadow: 0 6px 16px rgba(31, 33, 64, 0.18);
}

.aud-scoop-copy .aud-eyebrow {
    color: #7273b4;
}

.aud-scoop-copy h2 {
    color: #1F2140;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.aud-scoop-copy p {
    color: #5a5f70;
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 560px;
}

@media (min-width: 768px) {
    .aud-scoop-inner {
        flex-direction: row;
        gap: 36px;
        padding: 30px 34px;
    }

    .aud-scoop-media {
        flex: 0 0 300px;
    }
}

/* ==================================================================
   Find-a-stockist band (existing customers): navy band with an
   inline postcode form, pre-filled from the account address.
   ================================================================== */
.aud-stockist-band {
    background: #1F2140;
    color: #ffffff;
    padding: 40px 0 34px;
}

.aud-stockist-band .aud-eyebrow {
    color: #d5d6ee;
}

.aud-stockist-band h2 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.aud-stockist-band p {
    color: #c9cade;
    font-size: 15px;
    margin-bottom: 0;
}

.aud-stockist-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
    margin-top: 22px;
}

.aud-stockist-form input[type="text"] {
    border: 0;
    flex: 1 1 auto;
    font-size: 16px;
    min-width: 0;
    padding: 13px 16px;
}

.aud-stockist-form input[type="text"]:focus {
    outline: 2px solid #7273b4;
    outline-offset: -2px;
}

.aud-stockist-form button {
    background: #7273b4;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 20px;
    transition: background 0.18s ease;
    white-space: nowrap;
}

.aud-stockist-form button:hover,
.aud-stockist-form button:focus {
    background: #9a97ca;
}

@media (min-width: 992px) {
    .aud-stockist-form {
        margin-top: 0;
    }
}

/* ==================================================================
   Conversion / call-to-action band (existing-customer variant)
   ================================================================== */
.aud-cta {
    background: linear-gradient(120deg, #eaf2fb 0%, #f4f8f1 100%);
    border-top: 1px solid #e2e8e0;
    border-bottom: 1px solid #e2e8e0;
    padding: 40px 0;
    text-align: center;
}

.aud-cta h2 {
    color: #1f2d1f;
    font-size: 24px;
    margin-bottom: 10px;
}

.aud-cta p {
    color: #455045;
    font-size: 16px;
    margin-bottom: 22px;
}

.aud-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.aud-review-cta {
    background: #ffffff;
    border-top: 0;
}

/* ==================================================================
   Larger screens
   ================================================================== */
@media (min-width: 768px) {
    .aud-welcome { padding: 46px 0 40px; }
    .aud-welcome h1 { font-size: 30px; }
    .aud-welcome p.aud-lead { font-size: 17px; }
    .aud-hero-content { padding: 90px 15px 80px; }
    .aud-hero-content h1 { font-size: 40px; }
    .aud-hero-lead { font-size: 19px; }
    .aud-cta h2 { font-size: 28px; }
    .aud-cta p { font-size: 17px; }
}

@media (min-width: 992px) {
    .aud-welcome h1 { font-size: 36px; }
    .aud-hero-card { margin-top: 0; }
    .aud-hero-content { padding: 110px 15px 96px; }
    .aud-hero-content h1 { font-size: 46px; }
}

/* Welcome hero: shallower than the new-customer hero and with a more
   modest heading, since it shares the band with the account card. */
@media (min-width: 768px) {
    .aud-hero--welcome .aud-hero-content { padding: 64px 15px 58px; }
    .aud-hero--welcome .aud-hero-content h1 { font-size: 34px; }
}

@media (min-width: 992px) {
    .aud-hero--welcome .aud-hero-content { padding: 72px 15px 66px; }
    .aud-hero--welcome .aud-hero-content h1 { font-size: 38px; }
}

/* ==================================================================
   Mobile: centre the welcome hero copy, the support band and the
   stockist band (single-column layouts read better centred).
   ================================================================== */
@media (max-width: 767px) {
    .aud-hero--welcome .aud-hero-content h1,
    .aud-hero--welcome .aud-hero-content .aud-hero-lead {
        text-align: center;
    }

    .aud-hero--welcome .aud-hero-actions {
        justify-content: center;
    }

    .aud-support .row > div,
    .aud-stockist-band .row > div {
        text-align: center;
    }

    .aud-support-actions {
        justify-content: center;
    }
}
