/* ── PUBLIC CSS ─────────────────────────────────── */
/* File: /css/public.css                              */
/* Consumer facing pages. Completely separate from     */
/* admin.css. All classes prefixed hll- per spec.      */
/* MOBILE FIRST.                                       */

/* ── Variables ──────────────────────────────────── */

:root {
    --hll-bg:          #FAFAFA;
    --hll-bg-white:    #FFFFFF;
    --hll-bg-gray:     #F5F5F5;
    --hll-bg-dark:     #1B3A2D;
    --hll-bg-dark-alt: #162F24;
    --hll-text:        #1A1A1A;
    --hll-text-light:  #5A5A6E;
    --hll-text-muted:  #8E8E9E;
    --hll-accent:      #D4A843;
    --hll-accent-dark: #9E6E1A;
    --hll-accent-hover:#C49530;
    --hll-green:       #2D7A4E;
    --hll-border:      #E2E2E8;
    --hll-font:        'Inter', system-ui, sans-serif;
    --hll-radius:      8px;
    --hll-radius-lg:   12px;
    --hll-space-xs:    0.25rem;
    --hll-space-sm:    0.5rem;
    --hll-space-md:    1rem;
    --hll-space-lg:    1.5rem;
    --hll-space-xl:    2rem;
    --hll-space-2xl:   3rem;
    --hll-space-3xl:   4rem;
    --hll-max-width:   1080px;
}

/* ── Reset ──────────────────────────────────────── */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── HTML / Body ─────────────────────────────────── */

html {
    overflow-x: hidden;
}

.hll-body {
    background: var(--hll-bg);
    color: var(--hll-text);
    font-family: var(--hll-font);
    font-size: 1rem;
    line-height: 1.6;
    min-height: 100vh;
}

/* ── Push Nav Panel ──────────────────────────────── */

[x-cloak] {
    display: none !important;
}

.hll-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #142C22;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 300ms ease;
    padding-top: 60px;
    overflow-y: auto;
}

.hll-nav--open {
    transform: translateX(0);
}

.hll-nav__link {
    display: block;
    padding: var(--hll-space-sm) var(--hll-space-xl);
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.15s, background 0.15s;
}

.hll-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.hll-nav__link--discreet {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--hll-space-md);
    padding-top: var(--hll-space-md);
}

.hll-nav__link--discreet:hover {
    color: rgba(255, 255, 255, 0.6);
    background: none;
}
.hll-nav__link--highlight {
    color: #D4A843;
    font-weight: 700;
}

.hll-nav__link--highlight:hover {
    color: #E8C065;
    background: rgba(212, 168, 67, 0.08);
}

.hll-nav__link--footer {
    margin-top: 22px;
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



/* ── Nav icon row ───────────────────────────────── */

.hll-nav__icon-row {
    display: flex;
    gap: var(--hll-space-sm);
    padding: var(--hll-space-md) var(--hll-space-xl);
}

.hll-nav__icon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}

.hll-nav__icon-link:hover {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.07);
}

.hll-nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
}

/* ── Header ─────────────────────────────────────── */

.hll-header {
    background: var(--hll-bg-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.hll-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
    max-width: var(--hll-max-width);
    margin: 0 auto;
    padding: 0 var(--hll-space-md);
}

.hll-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    flex-shrink: 0;
}

.hll-header__burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

.hll-header__brand {
    margin-left: 10px;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.375rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.hll-header__brand-light {
    font-weight: 400;
}

.hll-header__brand-bold {
    font-weight: 800;
}

/* ── Hero ──────────────────────────────────────── */

.hll-hero {
    position: relative;
    height: 350px;
    background-image: url('/uploads/hero%20background.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.hll-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    z-index: 1;
}

.hll-hero__content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: var(--hll-max-width);
    margin: 0 auto;
    padding: 0 var(--hll-space-xl);
}

.hll-hero__left {
    position: relative;
    flex: 1;
    text-align: left;
    padding-right: var(--hll-space-md);
    z-index: 3;
}

.hll-hero__right {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    z-index: 2;
}

.hll-hero__right-img {
    width: auto;
    height: 100%;
    display: block;
}

.hll-hero__pretitle {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.62px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hll-hero__days-wrap {
    margin-bottom: var(--hll-space-sm);
    line-height: 1;
}

.hll-hero__days {
    white-space: nowrap;
    display: inline;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hll-hero__tagline {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--hll-space-lg);
    line-height: 1.5;
}

.hll-hero__cta {
    display: inline-block;
    background: var(--hll-accent);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 6px;
    transition: background 0.15s;
}

.hll-hero__cta:hover {
    background: var(--hll-accent-hover);
}

@media (min-width: 768px) {
    .hll-hero {
        height: 500px;
    }

    .hll-hero__left {
        flex: 0 0 55%;
        text-align: left;
        padding-right: var(--hll-space-xl);
    }

    .hll-hero__days {
        font-size: 5rem;
    }
}

/* ── Stats Pills ───────────────────────────────── */

.hll-stats {
    position: relative;
    z-index: 3;
    margin-top: -25px;
    padding: 0 var(--hll-space-md) var(--hll-space-xl);
}

.hll-stats__inner {
    max-width: var(--hll-max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
}

.hll-stats__pill {
    flex: 1;
    min-width: 0;
    background: var(--hll-bg-white);
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 3px solid #1B3A2D;
}

.hll-stats__value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: #1B3A2D;
    line-height: 1.1;
}

.hll-stats__label {
    display: block;
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1B3A2D;
    margin-top: 2px;
}

@media (min-width: 600px) {
    .hll-stats__inner {
        gap: 12px;
    }

    .hll-stats__pill {
        padding: var(--hll-space-lg) var(--hll-space-md);
    }

    .hll-stats__value {
        font-size: 2.75rem;
    }

    .hll-stats__label {
        font-size: 0.875rem;
    }
}

/* ── Section Titles ────────────────────────────── */

.hll-section__title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--hll-space-md);
    color: #1B3A2D;
    letter-spacing: -0.62px;
    line-height: 1.09;
    text-transform: uppercase;
}

/* ── How It Works ──────────────────────────────── */

.hll-how {
    padding: var(--hll-space-md) var(--hll-space-md) var(--hll-space-2xl);
    background: var(--hll-bg-white);
}

.hll-how__inner {
    max-width: var(--hll-max-width);
    margin: 0 auto;
}

.hll-how__steps {
    display: flex;
    flex-direction: row;
    gap: 12px;
    text-align: center;
    margin-top: var(--hll-space-xl);
    justify-content: center;
}

.hll-how__step {
    flex: 1;
    max-width: 200px;
}

.hll-how__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--hll-accent);
    color: #1B3A2D;
    font-family: 'Ubuntu', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: var(--hll-space-md);
}

.hll-how__step-text {
    font-size: 1rem;
    font-weight: 700;
    color: #555;
    max-width: 120px;
    margin: 0 auto;
    line-height: 1.4;
}

@media (min-width: 600px) {
    .hll-how__steps {
        gap: 24px;
    }

    .hll-how__step-num {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .hll-how__step-text {
        font-size: 1rem;
        max-width: 160px;
    }

    .hll-section__title {
        font-size: 2.25rem;
    }
}

/* ── Local Commitment ──────────────────────────── */

.hll-commitment {
    padding: var(--hll-space-xl) var(--hll-space-md) var(--hll-space-md);
    background: var(--hll-bg-white);
}

.hll-commitment__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.hll-commitment__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--hll-text-light);
}

/* ── Draw Results ──────────────────────────────── */

/* ── Draw Results Page ──────────────────────────── */

.hll-draw-results {
    background: var(--hll-bg-dark);
    padding: var(--hll-space-2xl) var(--hll-space-md) var(--hll-space-3xl);
}

.hll-draw-results__inner {
    max-width: var(--hll-max-width);
    margin: 0 auto;
}

.hll-draw-results__empty {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: var(--hll-space-2xl) 0;
    font-size: 1.125rem;
}

.hll-draw-results__draw {
    margin-bottom: var(--hll-space-3xl);
}

.hll-draw-results__draw:last-child {
    margin-bottom: 0;
}

.hll-draw-results__draw-meta {
    margin-bottom: var(--hll-space-xl);
}

.hll-draw-results__draw-month {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 var(--hll-space-xs);
    line-height: 1.1;
}

.hll-draw-results__draw-date {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 var(--hll-space-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hll-draw-results__draw-fund {
    display: inline-block;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #D4A843;
    margin: 0;
}

.hll-draw-results__tickets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hll-space-md);
}

@media (min-width: 640px) {
    .hll-draw-results__tickets {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hll-draw-results__tickets {
        grid-template-columns: repeat(5, 1fr);
    }
}

.hll-draw-results__ticket {
    background: linear-gradient(145deg, #E8C065 0%, #D4A843 100%);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: var(--hll-space-md) var(--hll-space-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 150px;
}

.hll-draw-results__ticket-pos {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 34px;
    height: 34px;
    background: #fff;
    color: var(--hll-bg-dark);
    border-radius: 50%;
    font-size: 0.625rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hll-draw-results__ticket-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--hll-bg-dark);
    line-height: 1;
    margin-top: var(--hll-space-md);
    margin-bottom: var(--hll-space-xs);
    letter-spacing: -0.02em;
}

.hll-draw-results__ticket-prize {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--hll-bg-dark);
    margin-bottom: var(--hll-space-xs);
}

.hll-draw-results__ticket-retailer {
    font-size: 0.6875rem;
    color: var(--hll-bg-dark);
    opacity: 0.75;
    margin-top: auto;
    line-height: 1.3;
    padding-top: var(--hll-space-xs);
}


/* ── Previous Winners ──────────────────────────── */

.hll-winners {
    padding: var(--hll-space-3xl) 0 var(--hll-space-md);
    background: #F5F0E8;
}

.hll-winners__inner {
    max-width: var(--hll-max-width);
    margin: 0 auto;
    padding: 0 var(--hll-space-md);
}

.hll-winners__scroll {
    display: flex;
    gap: var(--hll-space-sm);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--hll-space-sm);
    scrollbar-width: none;
    margin-top: var(--hll-space-lg);
}

.hll-winners__scroll::-webkit-scrollbar {
    display: none;
}

.hll-winners__card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-radius: var(--hll-radius);
    overflow: hidden;
    position: relative;
    border: none;
}



.hll-winners__img {
    width: 100%;
    height: auto;
    display: block;
}

.hll-winners__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #D4A843;
    color: #1B3A2D;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (min-width: 600px) {
    .hll-winners__img {
        height: auto;
    }
}

/* ── Where to Buy Map ──────────────────────────── */

.hll-map {
    background: #F5F0E8;
}

.hll-map__heading {
    padding: var(--hll-space-md) var(--hll-space-md) var(--hll-space-lg);
    text-align: center;
}

.hll-map__canvas {
    height: 680px;
    width: 100%;
    display: block;
}

.hll-map__marker {
    width: 16px !important;
    height: 16px !important;
    background: #1B3A2D;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hll-retailer-map__marker {
    width: 32px !important;
    height: 32px !important;
    background: #D4A843;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

@media (min-width: 600px) {
    .hll-map__canvas {
        height: 840px;
    }
}

/* ── Sponsors Grid ─────────────────────────────── */

.hll-sponsors {
    padding: var(--hll-space-2xl) var(--hll-space-md);
    background: #F5F0E8;
}

.hll-sponsors__inner {
    max-width: var(--hll-max-width);
    margin: 0 auto;
}

.hll-sponsors__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hll-space-sm);
}

@media (min-width: 768px) {
    .hll-sponsors__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--hll-space-md);
    }
}

.hll-sponsors__card {
    position: relative;
    border-radius: var(--hll-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hll-sponsors__img-wrap {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: var(--hll-border);
}

.hll-sponsors__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hll-sponsors__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hll-bg-dark);
}

.hll-sponsors__placeholder-initial {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
}

.hll-sponsors__name {
    display: block;
    background: #D4A843;
    color: #1B3A2D;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Footer ────────────────────────────────────── */

.hll-footer {
    background: var(--hll-bg-dark-alt);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--hll-space-2xl) var(--hll-space-md) var(--hll-space-lg);
}

.hll-footer__inner {
    max-width: var(--hll-max-width);
    margin: 0 auto;
}

.hll-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--hll-space-xl);
    margin-bottom: var(--hll-space-xl);
}

@media (min-width: 600px) {
    .hll-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.hll-footer__heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--hll-space-sm);
}

.hll-footer__heading--mt {
    margin-top: var(--hll-space-lg);
}

.hll-footer__subtext {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--hll-space-sm);
}

.hll-footer__search {
    display: flex;
    gap: 0;
}

.hll-footer__search-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    border-radius: var(--hll-radius) 0 0 var(--hll-radius);
    padding: 0.5rem 0.75rem;
    color: #fff;
    font-size: 0.8125rem;
    font-family: var(--hll-font);
    outline: none;
}

.hll-footer__search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.hll-footer__search-btn {
    background: var(--hll-accent);
    border: none;
    border-radius: 0 var(--hll-radius) var(--hll-radius) 0;
    padding: 0.5rem 0.75rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.hll-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--hll-space-xs);
}

.hll-footer__link {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s;
}

.hll-footer__link:hover {
    color: #fff;
}

.hll-footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--hll-space-sm);
}

.hll-footer__input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--hll-radius);
    padding: 0.5rem 0.75rem;
    color: #fff;
    font-size: 0.8125rem;
    font-family: var(--hll-font);
    outline: none;
    resize: vertical;
}

.hll-footer__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.hll-footer__textarea {
    min-height: 60px;
}

.hll-footer__submit {
    background: var(--hll-accent);
    color: #fff;
    border: none;
    border-radius: var(--hll-radius);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--hll-font);
    letter-spacing: 0.1em;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.15s;
}

.hll-footer__submit:hover {
    background: var(--hll-accent-hover);
}

.hll-footer__social {
    display: flex;
    gap: var(--hll-space-md);
    margin-bottom: var(--hll-space-lg);
}

.hll-footer__social-link {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.15s;
}

.hll-footer__social-link:hover {
    color: #fff;
}

.hll-footer__col--right {
    text-align: left;
}

.hll-footer__badges {
    display: flex;
    gap: var(--hll-space-sm);
    margin-top: var(--hll-space-lg);
}

.hll-footer__badge {
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
}

.hll-footer__legal {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    padding-top: var(--hll-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hll-footer__legal-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.hll-footer__legal-link:hover {
    opacity: 0.75;
}
.hll-footer__credit {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-top: 0.75rem;
}
.hll-footer__credit-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.hll-footer__credit-link:hover {
    color: rgba(255, 255, 255, 0.65);
}
.hll-footer__credit-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ── Page Hero (text pages) ────────────────────── */

.hll-page-hero {
    background: #F5F0E8;
    color: #1B3A2D;
    padding: var(--hll-space-2xl) var(--hll-space-md) var(--hll-space-xl);
    text-align: center;
}

.hll-page-hero__inner {
    max-width: 640px;
    margin: 0 auto;
}

.hll-page-hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--hll-space-xs);
    letter-spacing: -0.02em;
}

@media (min-width: 600px) {
    .hll-page-hero__title {
        font-size: 2.25rem;
    }
}

.hll-page-hero__subtitle {
    font-size: 1rem;
    color: rgba(27, 58, 45, 0.65);
}

/* ── Prose (article pages) ─────────────────────── */

.hll-prose {
    padding: var(--hll-space-2xl) var(--hll-space-md) var(--hll-space-3xl);
}

.hll-prose__inner {
    max-width: 720px;
    margin: 0 auto;
}

.hll-prose__updated {
    font-size: 0.8125rem;
    color: var(--hll-text-muted);
    margin-bottom: var(--hll-space-xl);
}

.hll-prose h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hll-text);
    margin-top: var(--hll-space-2xl);
    margin-bottom: var(--hll-space-sm);
}

.hll-prose h2:first-child,
.hll-prose__updated + h2 {
    margin-top: 0;
}

.hll-prose p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--hll-text-light);
    margin-bottom: var(--hll-space-md);
}

.hll-prose p:last-child {
    margin-bottom: 0;
}

.hll-prose a {
    color: var(--hll-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hll-prose a:hover {
    color: var(--hll-bg-dark);
}

.hll-prose strong {
    color: var(--hll-text);
    font-weight: 600;
}

/* ── Prose Table ───────────────────────────────── */

.hll-prose__table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--hll-space-lg) 0;
    font-size: 0.875rem;
}

.hll-prose__table th,
.hll-prose__table td {
    text-align: left;
    padding: var(--hll-space-sm) var(--hll-space-md);
    border-bottom: 1px solid var(--hll-border);
}

.hll-prose__table th {
    font-weight: 600;
    color: var(--hll-text);
    background: var(--hll-bg);
}

.hll-prose__table td {
    color: var(--hll-text-light);
}

/* ── Retailer Detail ────────────────────────────────────── */

.hll-retailer__hero {
    text-align: left;
    padding: var(--hll-space-xl) var(--hll-space-md);
}

.hll-retailer__hero-inner {
    max-width: var(--hll-max-width);
    margin: 0 auto;
}

.hll-retailer__back {
    display: inline-block;
    color: rgba(27, 58, 45, 0.65);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--hll-space-md);
    transition: color 0.15s;
}

.hll-retailer__back:hover {
    color: #1B3A2D;
}

.hll-retailer__name {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: var(--hll-space-md);
}

.hll-retailer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--hll-space-sm);
    margin-bottom: var(--hll-space-md);
}

.hll-retailer__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.hll-retailer__badge--buy {
    background: var(--hll-accent);
    color: #1B3A2D;
}

.hll-retailer__badge--spend {
    background: var(--hll-accent);
    color: #1B3A2D;
}

.hll-retailer__badge--sponsor {
    background: #1B3A2D;
    color: #fff;
}

.hll-retailer__badge--disabled {
    text-decoration: line-through;
    opacity: 0.45;
}

.hll-retailer__notices {
    margin-top: var(--hll-space-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hll-retailer__notice {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--hll-accent);
    padding: 6px 12px;
    background: rgba(212, 168, 67, 0.15);
    border-left: 3px solid var(--hll-accent);
    border-radius: 4px;
}

.hll-retailer__address {
    font-style: normal;
    color: rgba(27, 58, 45, 0.70);
    font-size: 0.9375rem;
}

.hll-retailer-body {
    padding: var(--hll-space-2xl) var(--hll-space-md);
    background: var(--hll-bg-white);
}

.hll-retailer-body__inner {
    max-width: var(--hll-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--hll-space-xl);
}

@media (min-width: 768px) {
    .hll-retailer__name {
        font-size: 3rem;
    }

    .hll-retailer-body__inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.hll-retailer-body__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--hll-radius-lg);
    display: block;
    margin-bottom: var(--hll-space-xl);
}

.hll-retailer-body__img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--hll-bg-dark);
    border-radius: var(--hll-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--hll-space-xl);
}

.hll-retailer-body__img-initial {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
}

.hll-retailer-body__section-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--hll-text-muted);
    margin-bottom: var(--hll-space-sm);
}

.hll-retailer-body__desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--hll-text-light);
    margin-bottom: var(--hll-space-xl);
}

.hll-retailer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--hll-space-sm);
}

.hll-retailer-contact__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--hll-text);
    text-decoration: none;
    word-break: break-all;
}

.hll-retailer-contact__item:hover {
    color: var(--hll-bg-dark);
}

.hll-retailer-contact__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #1B3A2D;
}

.hll-retailer-map {
    background: var(--hll-bg-gray);
    width: 100%;
    padding: 0;
    margin: 0;
}

.hll-retailer-map__canvas {
    height: 500px;
    width: 100%;
    display: block;
}

@media (min-width: 600px) {
    .hll-retailer-map__canvas {
        height: 520px;
    }
}

.hll-retailer-gallery {
    padding: var(--hll-space-2xl) var(--hll-space-md);
    background: var(--hll-bg);
}

.hll-retailer-gallery__inner {
    max-width: var(--hll-max-width);
    margin: 0 auto;
}

.hll-retailer-gallery__carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--hll-space-sm);
    scrollbar-width: none;
    margin-top: var(--hll-space-xl);
}

.hll-retailer-gallery__carousel::-webkit-scrollbar {
    display: none;
}

.hll-retailer-gallery__slide {
    flex: 0 0 82%;
    scroll-snap-align: start;
    max-width: 400px;
}

@media (min-width: 600px) {
    .hll-retailer-gallery__slide {
        flex: 0 0 45%;
    }
}

@media (min-width: 900px) {
    .hll-retailer-gallery__slide {
        flex: 0 0 30%;
    }
}

.hll-retailer-gallery__img,
.hll-retailer-gallery__video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--hll-radius);
    display: block;
}

.hll-retailer-cta {
    background: var(--hll-bg-dark);
    padding: var(--hll-space-2xl) var(--hll-space-md);
    text-align: center;
}

.hll-retailer-cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.hll-retailer-cta__title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--hll-space-md);
    line-height: 1.2;
}

.hll-retailer-cta__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: var(--hll-space-xl);
}

.hll-retailer-cta__btn {
    display: inline-block;
    background: var(--hll-accent);
    color: #1B3A2D;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
}

.hll-retailer-cta__btn:hover {
    background: var(--hll-accent-hover);
}

a.hll-sponsors__card {
    text-decoration: none;
    cursor: pointer;
}

a.hll-sponsors__card:hover .hll-sponsors__name {
    background: var(--hll-accent-dark);
}

.hll-retailer-social {
    display: flex;
    gap: var(--hll-space-sm);
    flex-wrap: wrap;
}

.hll-retailer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hll-bg-gray);
    color: #1B3A2D;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.hll-retailer-social__link:hover {
    background: #1B3A2D;
    color: #fff;
}

.hll-retailer-social__link svg {
    width: 20px;
    height: 20px;
}

.hll-retailer__hero .hll-retailer-social {
    margin-top: var(--hll-space-md);
}

.hll-retailer__hero .hll-retailer-social__link {
    background: rgba(27, 58, 45, 0.1);
    color: #1B3A2D;
    border: 1px solid rgba(27, 58, 45, 0.2);
}

.hll-retailer__hero .hll-retailer-social__link:hover {
    background: rgba(27, 58, 45, 0.2);
    color: #1B3A2D;
}

.hll-retailer-cta__form {
    display: flex;
    flex-direction: column;
    gap: var(--hll-space-sm);
    margin-top: var(--hll-space-xl);
}

.hll-retailer-cta__fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--hll-space-sm);
}

@media (min-width: 600px) {
    .hll-retailer-cta__fields {
        grid-template-columns: 1fr 1fr;
    }
}

.hll-retailer-cta__input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--hll-radius);
    padding: 0.625rem 0.875rem;
    color: #fff;
    font-size: 0.9375rem;
    font-family: var(--hll-font);
    outline: none;
    transition: border-color 0.15s;
}

.hll-retailer-cta__input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.hll-retailer-cta__input:focus {
    border-color: var(--hll-accent);
}

.hll-retailer-cta__textarea {
    resize: vertical;
    min-height: 80px;
}

.hll-retailer-cta__success {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--hll-radius);
    padding: var(--hll-space-md) var(--hll-space-lg);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    margin-top: var(--hll-space-lg);
}

.hll-retailer-cta__error {
    background: rgba(220, 60, 60, 0.2);
    border: 1px solid rgba(220, 60, 60, 0.5);
    border-radius: var(--hll-radius);
    padding: var(--hll-space-md) var(--hll-space-lg);
    color: #ffcccc;
    font-size: 0.9375rem;
    margin-top: var(--hll-space-lg);
}

.hll-sponsors--page {
    padding: var(--hll-space-2xl) var(--hll-space-md);
}

.hll-sponsors--page .hll-sponsors__grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
    .hll-sponsors--page .hll-sponsors__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .hll-sponsors--page .hll-sponsors__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hll-sponsors__viewall-wrap {
    text-align: center;
    margin-top: var(--hll-space-2xl);
    margin-bottom: var(--hll-space-2xl);
}

.hll-winners .hll-sponsors__viewall-wrap {
    margin-bottom: 0;
}

.hll-sponsors__viewall {
    display: inline-block;
    background: #1B3A2D;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
}

.hll-sponsors__viewall:hover {
    background: #162F24;
}

.hll-sponsors__empty {
    text-align: center;
    color: var(--hll-text-muted);
    font-size: 0.9375rem;
    padding: var(--hll-space-2xl) 0;
}

/* ── Winners page grid ─────────────────────────── */

.hll-winners--page .hll-winners__scroll {
    display: none;
}

.hll-winners__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hll-space-sm);
    margin-top: var(--hll-space-lg);
}

@media (min-width: 600px) {
    .hll-winners__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 960px) {
    .hll-winners__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hll-winners--page .hll-winners__card {
    flex: none;
    width: auto;
    scroll-snap-align: none;
}



.hll-winners__empty {
    text-align: center;
    color: var(--hll-text-light);
    padding: var(--hll-space-2xl) 0;
    font-size: 1rem;
}

/* ── AI enrichment indicators ──────────────────── */

.hll-ai-tag {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.1rem 0.35rem;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    vertical-align: middle;
    opacity: 0.75;
}

.hll-retailer-body__desc--ai {
    opacity: 0.85;
}

.hll-ai-note {
    font-size: 0.75rem;
    color: var(--hll-text-muted);
    margin-top: 0.5rem;
}

/* ── Subscribe pages ────────────────────────────── */

.hll-subscribe__hero {
    background: var(--hll-bg-dark);
    padding: var(--hll-space-2xl) var(--hll-space-xl);
    text-align: center;
}

.hll-subscribe__hero-inner {
    max-width: 560px;
    margin: 0 auto;
}

.hll-subscribe__hero-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--hll-accent);
    margin: 0 0 var(--hll-space-sm);
}

.hll-subscribe__hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin: 0;
}

.hll-subscribe__wrap {
    max-width: 480px;
    margin: var(--hll-space-2xl) auto;
    padding: 0 var(--hll-space-md);
}

.hll-subscribe__wrap--wide {
    max-width: 720px;
}

.hll-subscribe__alert {
    padding: var(--hll-space-md);
    border-radius: var(--hll-radius);
    margin-bottom: var(--hll-space-lg);
    font-size: 0.9375rem;
}

.hll-subscribe__alert--success { background: #d1f0e0; color: #0f7b3f; }
.hll-subscribe__alert--error   { background: #fde8e8; color: #b91c1c; }
.hll-subscribe__alert--info    { background: #dbeafe; color: #1d4ed8; }

.hll-subscribe__card {
    background: var(--hll-bg-white);
    border-radius: var(--hll-radius-lg);
    border: 1px solid var(--hll-border);
    padding: var(--hll-space-xl);
}

.hll-subscribe__card-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hll-bg-dark);
    margin: 0 0 var(--hll-space-sm);
}

.hll-subscribe__card-text {
    color: var(--hll-text-light);
    font-size: 0.9375rem;
    margin: 0 0 var(--hll-space-lg);
}

.hll-subscribe__form {
    display: flex;
    flex-direction: column;
    gap: var(--hll-space-md);
}

.hll-subscribe__field {
    display: flex;
    flex-direction: column;
    gap: var(--hll-space-xs);
}

.hll-subscribe__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hll-text);
}

.hll-subscribe__input {
    padding: 0.75rem var(--hll-space-md);
    border: 1px solid var(--hll-border);
    border-radius: var(--hll-radius);
    font-size: 1rem;
    font-family: var(--hll-font);
    color: var(--hll-text);
    background: var(--hll-bg);
    transition: border-color 0.15s;
}

.hll-subscribe__input:focus {
    outline: none;
    border-color: var(--hll-accent);
}

.hll-subscribe__input--otp,
.hll-subscribe__input--pin {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    text-align: center;
    max-width: 200px;
}

.hll-subscribe__btn {
    padding: 0.8rem var(--hll-space-xl);
    background: var(--hll-accent);
    color: var(--hll-bg-dark);
    font-family: var(--hll-font);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--hll-radius);
    cursor: pointer;
    transition: background 0.15s;
}

.hll-subscribe__btn:hover {
    background: var(--hll-accent-hover);
}

.hll-subscribe__btn--ghost {
    background: transparent;
    border: 1px solid var(--hll-border);
    color: var(--hll-text);
}

.hll-subscribe__btn--ghost:hover {
    background: var(--hll-bg-gray);
}

.hll-subscribe__btn--danger {
    background: #b91c1c;
    color: #fff;
}

.hll-subscribe__btn--danger:hover {
    background: #991b1b;
}

.hll-subscribe__login-link {
    margin-top: var(--hll-space-md);
    font-size: 0.875rem;
    color: var(--hll-text-light);
    text-align: center;
}

.hll-subscribe__login-link a {
    color: var(--hll-accent-dark);
    text-decoration: none;
    font-weight: 600;
}

.hll-subscribe__login-link a:hover {
    text-decoration: underline;
}

/* Dashboard */

.hll-subscribe__status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--hll-space-md);
    flex-wrap: wrap;
    margin-bottom: var(--hll-space-xl);
}

.hll-subscribe__status-card {
    display: flex;
    align-items: center;
    gap: var(--hll-space-sm);
}

.hll-subscribe__status-label {
    font-weight: 600;
    font-size: 0.9375rem;
}

.hll-subscribe__status-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.hll-subscribe__status-badge--active   { background: #d1f0e0; color: #0f7b3f; }
.hll-subscribe__status-badge--inactive { background: #f5e6e6; color: #b91c1c; }

.hll-subscribe__actions {
    display: flex;
    gap: var(--hll-space-sm);
}

.hll-subscribe__results {
    background: var(--hll-bg-white);
    border-radius: var(--hll-radius-lg);
    border: 1px solid var(--hll-border);
    padding: var(--hll-space-xl);
}

.hll-subscribe__results-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hll-bg-dark);
    margin: 0 0 var(--hll-space-lg);
}

.hll-subscribe__draw-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--hll-text);
    margin: var(--hll-space-lg) 0 var(--hll-space-sm);
    display: flex;
    align-items: baseline;
    gap: var(--hll-space-sm);
    border-bottom: 1px solid var(--hll-border);
    padding-bottom: var(--hll-space-xs);
}

.hll-subscribe__draw-date {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--hll-text-muted);
}

.hll-subscribe__result-row {
    display: flex;
    gap: var(--hll-space-md);
    align-items: center;
    padding: var(--hll-space-sm) 0;
    border-bottom: 1px solid var(--hll-bg-gray);
    font-size: 0.9375rem;
    flex-wrap: wrap;
}

.hll-subscribe__result-pos {
    font-size: 0.8125rem;
    color: var(--hll-text-muted);
    min-width: 70px;
}

.hll-subscribe__result-ticket { font-weight: 700; color: var(--hll-bg-dark); }
.hll-subscribe__result-prize  { color: var(--hll-accent-dark); font-weight: 600; }
.hll-subscribe__result-retailer { color: var(--hll-text-light); font-size: 0.875rem; }

.hll-subscribe__empty {
    color: var(--hll-text-muted);
    font-size: 0.9375rem;
}

/* ── Homepage draw results ──────────────────────── */

.hll-results {
    background: var(--hll-bg-dark);
    padding: var(--hll-space-2xl) var(--hll-space-md);
    text-align: center;
}

.hll-results__inner {
    max-width: var(--hll-max-width);
    margin: 0 auto;
}

.hll-results__header {
    margin-bottom: var(--hll-space-xl);
}

.hll-results__draw-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 var(--hll-space-xs);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hll-results__total {
    font-size: 1.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 var(--hll-space-xl);
}

.hll-results__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hll-space-md);
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hll-results__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hll-results__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.hll-results__ticket {
    background: linear-gradient(145deg, #E8C065 0%, #D4A843 100%);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: var(--hll-space-md) var(--hll-space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 130px;
    gap: var(--hll-space-xs);
}

.hll-results__ticket--first {
    grid-column: 1 / -1;
    min-height: 160px;
}

@media (min-width: 1024px) {
    .hll-results__ticket--first {
        grid-column: auto;
    }
}

.hll-results__number {
    font-size: 1.625rem;
    font-weight: 900;
    color: var(--hll-bg-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hll-results__ticket--first .hll-results__number {
    font-size: 2.75rem;
}

.hll-results__prize {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hll-bg-dark);
    line-height: 1.2;
}

.hll-results__retailer {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--hll-bg-dark);
    opacity: 0.75;
    line-height: 1.3;
}

.hll-results__ticket--first .hll-results__prize {
    font-size: 1.5rem;
}

.hll-results__ticket--first .hll-results__retailer {
    font-size: 0.9375rem;
}

/* ── SMS subscription modal ─────────────────────── */

.hll-results__subscribe-wrap {
    text-align: center;
    padding: var(--hll-space-2xl) var(--hll-space-md) var(--hll-space-xl);
    background: var(--hll-bg-dark);
}

.hll-results__subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    min-width: 280px;
    background: #D4A843;
    color: #1B3A2D;
    font-family: var(--hll-font);
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: var(--hll-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
}

.hll-results__subscribe-btn:hover {
    background: #E8C065;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.hll-results__subscribe-icon {
    flex-shrink: 0;
}

.hll-sms-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: var(--hll-space-md);
}

.hll-sms-modal--open {
    display: flex;
}

.hll-sms-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hll-sms-modal__card {
    position: relative;
    background: #FFFDF7;
    border-radius: var(--hll-radius-lg);
    padding: var(--hll-space-xl);
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 1;
}

.hll-sms-modal__close {
    position: absolute;
    top: var(--hll-space-md);
    right: var(--hll-space-md);
    width: 2rem;
    height: 2rem;
    border: none;
    background: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--hll-text-muted);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.1s, color 0.1s;
}

.hll-sms-modal__close:hover {
    background: var(--hll-bg-gray);
    color: var(--hll-text);
}

.hll-sms-modal__step--hidden {
    display: none;
}

.hll-sms-modal__title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--hll-bg-dark);
    margin: 0 0 var(--hll-space-sm);
    padding-right: var(--hll-space-xl);
}

.hll-sms-modal__text {
    font-size: 0.9375rem;
    color: var(--hll-text-light);
    margin: 0 0 var(--hll-space-lg);
}

.hll-sms-modal__error {
    font-size: 0.875rem;
    color: #b91c1c;
    background: #fde8e8;
    border-radius: var(--hll-radius);
    padding: var(--hll-space-sm) var(--hll-space-md);
    margin-bottom: var(--hll-space-md);
    display: none;
}

.hll-sms-modal__error:not(:empty) {
    display: block;
}

.hll-sms-modal__form {
    display: flex;
    flex-direction: column;
    gap: var(--hll-space-md);
}

.hll-sms-modal__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hll-text);
    margin-bottom: calc(-1 * var(--hll-space-xs));
}

.hll-sms-modal__input {
    padding: 0.75rem var(--hll-space-md);
    border: 1px solid var(--hll-border);
    border-radius: var(--hll-radius);
    font-size: 1rem;
    font-family: var(--hll-font);
    color: var(--hll-text);
    background: var(--hll-bg-white);
    transition: border-color 0.15s;
}

.hll-sms-modal__input:focus {
    outline: none;
    border-color: var(--hll-accent);
}

.hll-sms-modal__input--code {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-align: center;
}

.hll-sms-modal__btn {
    padding: 0.8rem var(--hll-space-xl);
    background: var(--hll-accent);
    color: var(--hll-bg-dark);
    font-family: var(--hll-font);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--hll-radius);
    cursor: pointer;
    transition: background 0.15s;
}

.hll-sms-modal__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.hll-sms-modal__btn:not(:disabled):hover {
    background: var(--hll-accent-hover);
}

.hll-sms-modal__back {
    margin-top: var(--hll-space-md);
    background: none;
    border: none;
    font-size: 0.875rem;
    color: var(--hll-text-muted);
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.hll-sms-modal__back:hover {
    color: var(--hll-text);
}

.hll-sms-modal__done-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #d1f0e0;
    color: #0f7b3f;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 var(--hll-space-md);
}

/* ── Retailers intro paragraph ─────────────────── */

.hll-retailers__intro {
    max-width: 680px;
    margin: 0 auto var(--hll-space-2xl);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(27, 58, 45, 0.8);
}

/* ── /join page ─────────────────────────────────── */

.hll-main {
    padding-top: 5rem;
}

.hll-join {
    padding: var(--hll-space-xl) var(--hll-space-md) var(--hll-space-3xl);
}

.hll-join__inner {
    max-width: 720px;
    margin: 0 auto;
}

.hll-join__inner--thankyou {
    text-align: center;
    padding: var(--hll-space-3xl) var(--hll-space-md);
}

.hll-join__inner--narrow {
    max-width: 480px;
}

.hll-join__form {
    display: flex;
    flex-direction: column;
}

.hll-join__fieldset {
    border: 1px solid var(--hll-border);
    border-radius: var(--hll-radius);
    padding: var(--hll-space-lg);
    margin: 0;
}

.hll-join__legend {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hll-bg-dark);
    padding: 0 var(--hll-space-sm);
}

.hll-join__legend-note {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--hll-text-muted);
}

.hll-join__group {
    display: flex;
    flex-direction: column;
    gap: var(--hll-space-xs);
    margin-top: var(--hll-space-md);
}

.hll-join__group--mt {
    margin-top: var(--hll-space-md);
}

.hll-join__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--hll-space-md);
}

@media (max-width: 600px) {
    .hll-join__row {
        grid-template-columns: 1fr;
    }
}

.hll-join__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hll-text);
}

.hll-join__required {
    color: #c0392b;
}

.hll-join__optional {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 400;
    font-size: 0.8125rem;
}

.hll-join__input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--hll-border);
    border-radius: var(--hll-radius);
    font-size: 0.9375rem;
    font-family: var(--hll-font);
    color: var(--hll-text);
    background: var(--hll-bg-white);
    box-sizing: border-box;
    transition: border-color 0.15s;
}

.hll-join__input:focus {
    outline: none;
    border-color: var(--hll-green);
    box-shadow: 0 0 0 3px rgba(45, 122, 78, 0.12);
}

.hll-join__input--error {
    border-color: #c0392b;
}

.hll-join__textarea {
    resize: vertical;
    min-height: 80px;
}

.hll-join__input--signature {
    font-style: italic;
    font-size: 1.125rem;
}

.hll-join__input--pin {
    letter-spacing: 0.25em;
    font-size: 1.25rem;
    max-width: 200px;
}

.hll-join__error {
    font-size: 0.8125rem;
    color: #c0392b;
}

.hll-join__hint {
    font-size: 0.8125rem;
    color: var(--hll-text-muted);
    margin: 0 0 var(--hll-space-xs);
}

.hll-join__consent-intro {
    font-size: 0.875rem;
    color: var(--hll-text-light);
    margin: var(--hll-space-md) 0 var(--hll-space-sm);
}

.hll-join__consent-group {
    display: flex;
    flex-direction: column;
    gap: var(--hll-space-xs);
    padding: var(--hll-space-md);
    border: 1px solid var(--hll-border);
    border-radius: var(--hll-radius);
    margin-top: var(--hll-space-sm);
}

.hll-join__consent-group--error {
    border-color: #c0392b;
    background: #fdf3f3;
}

.hll-join__checkbox-label {
    display: flex;
    gap: var(--hll-space-sm);
    cursor: pointer;
    align-items: flex-start;
}

.hll-join__checkbox-label--inline {
    align-items: center;
}

.hll-join__checkbox {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.15rem;
    accent-color: var(--hll-green);
    cursor: pointer;
}

.hll-join__checkbox-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--hll-text);
}

.hll-join__actions {
    padding: var(--hll-space-md) 0;
}

.hll-join__submit {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--hll-bg-dark);
    color: var(--hll-accent);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--hll-radius);
    cursor: pointer;
    transition: background 0.15s;
    font-family: var(--hll-font);
}

.hll-join__submit:hover {
    background: var(--hll-bg-dark-alt);
}

.hll-join__success-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #d1f0e0;
    color: #0f7b3f;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--hll-space-lg);
}

.hll-join__back-link {
    display: inline-block;
    margin-top: var(--hll-space-xl);
    color: var(--hll-green);
    font-weight: 600;
    text-decoration: none;
}

.hll-join__back-link:hover {
    text-decoration: underline;
}


/* ---- Join wizard step indicator ------------------- */

.hll-join__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin: 0 0 var(--hll-space-md);
}

.hll-join__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 100px;
}

.hll-join__step-dot {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--hll-border);
    color: var(--hll-text-muted);
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: background 0.2s, color 0.2s;
}

.hll-join__step-dot--active {
    background: var(--hll-bg-dark);
    color: var(--hll-accent);
}

.hll-join__step-dot--done {
    background: var(--hll-green);
    color: #fff;
}

.hll-join__step-label {
    font-size: 0.6875rem;
    color: var(--hll-text-muted);
    margin-top: 0.25rem;
    text-align: center;
    white-space: nowrap;
}

.hll-join__step-label--active {
    color: var(--hll-bg-dark);
    font-weight: 600;
}

.hll-join__step-line {
    position: absolute;
    top: 1rem;
    left: calc(50% + 1rem);
    right: calc(-50% + 1rem);
    height: 2px;
    background: var(--hll-border);
    transition: background 0.2s;
}

.hll-join__step-line--done {
    background: var(--hll-green);
}

.hll-join__step-counter {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--hll-text-muted);
    margin-bottom: var(--hll-space-lg);
}

.hll-join__panel {
    display: flex;
    flex-direction: column;
    gap: var(--hll-space-lg);
}

.hll-join__nav {
    display: flex;
    padding: var(--hll-space-sm) 0 var(--hll-space-md);
}

.hll-join__nav--right {
    justify-content: flex-end;
}

.hll-join__nav--split {
    justify-content: space-between;
}

.hll-join__btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: var(--hll-font);
    border-radius: var(--hll-radius);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.hll-join__btn--next {
    background: var(--hll-bg-dark);
    color: var(--hll-accent);
    border: 2px solid var(--hll-bg-dark);
}

.hll-join__btn--next:hover {
    background: var(--hll-bg-dark-alt);
    border-color: var(--hll-bg-dark-alt);
}

.hll-join__btn--back {
    background: transparent;
    color: var(--hll-text);
    border: 2px solid var(--hll-border);
}

.hll-join__btn--back:hover {
    border-color: var(--hll-text);
}

.hll-join__hint--banking {
    margin-top: var(--hll-space-md);
    font-size: 0.875rem;
    color: var(--hll-text-light);
    line-height: 1.6;
    background: #F5F0E8;
    padding: var(--hll-space-sm) var(--hll-space-md);
    border-radius: var(--hll-radius);
    border-left: 3px solid var(--hll-green);
}

.hll-alert {
    padding: var(--hll-space-md) var(--hll-space-lg);
    border-radius: var(--hll-radius);
    font-size: 0.9375rem;
    margin-bottom: var(--hll-space-lg);
}

.hll-alert--success {
    background: #d1f0e0;
    color: #0f5c30;
    border: 1px solid #a8dfc0;
}

.hll-alert--error {
    background: #fde8e8;
    color: #8b1a1a;
    border: 1px solid #f5c0c0;
}

/* ── Claim prize banner ───────────────────────── */

.hll-claim-banner {
    background: var(--hll-bg-dark);
    text-align: center;
    padding: var(--hll-space-xl) var(--hll-space-md);
}

.hll-claim-banner__btn {
    display: inline-block;
    background: #D4A843;
    color: #1B3A2D;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 0.875rem 2.5rem;
    border-radius: var(--hll-radius);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.15s;
}

.hll-claim-banner__btn:hover {
    background: #E8C065;
}


/* ── Non-participating business tiles ─────────── */

.hll-sponsors__card--non-participating .hll-sponsors__img {
    filter: grayscale(100%);
    transition: filter 0.35s ease;
}

a.hll-sponsors__card--non-participating:hover .hll-sponsors__img {
    filter: grayscale(0);
}

/* ── Non-participating retailer detail page ────── */

.hll-retailer__notice--non-participating {
    color: #6b7280;
    background: rgba(107, 114, 128, 0.08);
    border-left-color: #9ca3af;
}

.hll-retailer__claim-btn {
    display: inline-block;
    margin-top: var(--hll-space-sm);
    padding: 0.625rem 1.25rem;
    border: 2px solid #1B3A2D;
    border-radius: var(--hll-radius);
    color: #1B3A2D;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.hll-retailer__claim-btn:hover {
    background: #1B3A2D;
    color: #fff;
}

.hll-retailer-body__desc--placeholder {
    font-style: italic;
    color: rgba(27, 58, 45, 0.5);
}


.hll-sponsors__name--muted {
    background: #e5e7eb;
    color: #6b7280;
}

a.hll-sponsors__card:hover .hll-sponsors__name--muted {
    background: #d1d5db;
}

/* ── Claim this listing – review summary ───────────────── */

.hll-claim__summary {
    margin: var(--hll-space-sm) 0 0;
    padding: 0;
    border: 1px solid rgba(27, 58, 45, 0.15);
    border-radius: var(--hll-radius);
    overflow: hidden;
}

.hll-claim__summary-row {
    display: flex;
    gap: var(--hll-space-sm);
    padding: 0.625rem var(--hll-space-sm);
    border-bottom: 1px solid rgba(27, 58, 45, 0.08);
}

.hll-claim__summary-row:last-child {
    border-bottom: none;
}

.hll-claim__summary-label {
    flex: 0 0 6rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(27, 58, 45, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hll-claim__summary-value {
    font-size: 0.9375rem;
    color: var(--hll-text);
    word-break: break-word;
}

/* ── Business directory filter pills ─────────────── */

.hll-biz-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: var(--hll-space-md) 0;
}

.hll-biz-filter__pill {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 99px;
    border: 1.5px solid rgba(27, 58, 45, 0.3);
    color: rgba(27, 58, 45, 0.7);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    white-space: nowrap;
}

.hll-biz-filter__pill:hover {
    border-color: #D4A843;
    color: #1B3A2D;
}

.hll-biz-filter__pill--active {
    background: #D4A843;
    border-color: #D4A843;
    color: #1B3A2D;
}

.hll-biz-filter__pill--active:hover {
    background: #E8C065;
    border-color: #E8C065;
}

/* ── TEMPORARY: hide SMS subscribe button until SMS feature is ready ── */
/* TODO: remove this rule when SMS is live */
.hll-results__subscribe-wrap {
    display: none;
}
