:root {
    --black: #050403;
    --panel: rgba(18, 17, 15, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.035);
    --gold: #d6b85a;
    --gold-soft: rgba(214, 184, 90, 0.32);
    --text: #f5f1e8;
    --muted: rgba(245, 241, 232, 0.68);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top, rgba(214, 184, 90, 0.12), transparent 34%),
        linear-gradient(180deg, #090806, #030302);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
}

.club-shell {
    min-height: 100vh;
    padding: 34px 42px 110px;
}

.club-hero {
    border: 1px solid var(--gold-soft);
    border-radius: 22px;
    padding: 34px 42px;
    margin-bottom: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.42em;
    font-size: 12px;
}

.club-hero h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.club-room {
    display: grid;
    grid-template-columns:
        minmax(520px, 1.25fr) minmax(360px, 0.9fr) minmax(280px, 0.55fr);
    gap: 22px;
    align-items: stretch;
}

.tier-column,
.choice-column {
    min-height: calc(100vh - 290px);
    background: var(--panel);
    border: 1px solid var(--gold-soft);
    border-radius: 20px;
    padding: 20px;
}

.tier-column h2,
.choice-column h2 {
    margin: 0;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.column-header p {
    color: var(--muted);
    margin: 10px 0 16px;
}

.tier-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.tier-card {
    border: 1px solid rgba(214, 184, 90, 0.24);
    background: var(--panel-soft);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: 160ms ease;
}

.tier-card.active {
    border-color: var(--gold);
    box-shadow: 0 0 28px rgba(214, 184, 90, 0.16);
}

.tier-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 500;
}

.tier-card p {
    margin: 6px 0;
    color: var(--muted);
    font-size: 13px;
}

.choice-scroll {
    height: calc(100vh - 390px);
    overflow-y: auto;
    padding-right: 8px;
}

.choice-card {
    border: 1px solid rgba(214, 184, 90, 0.22);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
}

.choice-card.locked {
    border-color: rgba(214, 184, 90, 0.44);
}

.choice-card label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.choice-card input {
    margin-top: 4px;
    transform: scale(1.25);
}

.choice-card strong {
    display: block;
    font-size: 15px;
}

.choice-card small {
    display: block;
    color: var(--muted);
    margin-top: 6px;
}

.choice-pill {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--gold-soft);
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.club-status-bar {
    position: fixed;
    left: 42px;
    right: 42px;
    bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    background: rgba(12, 11, 9, 0.96);
    border: 1px solid var(--gold-soft);
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.club-status-bar span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.club-status-bar strong {
    font-size: 16px;
}

.club-status-bar button {
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    background: linear-gradient(180deg, #f3d776, #b99533);
    color: #090806;
    font-weight: 900;
    cursor: pointer;
}

.club-status-bar button:disabled {
    opacity: 0.38;
    cursor: not-allowed;
}


.hidden {
    display: none !important;
}

.member-step {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 24px;
    min-height: calc(100vh - 280px);
}

.selection-review,
.member-form-panel {
    background: var(--panel);
    border: 1px solid var(--gold-soft);
    border-radius: 22px;
    padding: 28px;
}

.selection-review h2,
.member-form-panel h2 {
    margin: 0 0 22px;
    color: var(--text);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.selection-summary {
    display: grid;
    gap: 18px;
}

.summary-block {
    border: 1px solid rgba(214, 184, 90, 0.22);
    border-radius: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.summary-block h3 {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.summary-block p,
.summary-block li {
    color: var(--muted);
    line-height: 1.6;
}

.summary-block ul {
    margin: 0;
    padding-left: 18px;
}

.member-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.member-form-grid input {
    width: 100%;
    border: 1px solid rgba(214, 184, 90, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
}

.member-form-grid input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(214, 184, 90, 0.13);
}

.wide {
    grid-column: 1 / -1;
}

.member-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--muted);
    line-height: 1.5;
    border: 1px solid rgba(214, 184, 90, 0.16);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.member-check input {
    width: auto;
    margin-top: 3px;
    transform: scale(1.25);
}

.member-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 24px;
}

.primary-club-btn,
.secondary-club-btn {
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 900;
    cursor: pointer;
}

.primary-club-btn {
    background: linear-gradient(180deg, #f3d776, #b99533);
    color: #090806;
}

.primary-club-btn:disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

.secondary-club-btn {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid rgba(214, 184, 90, 0.24);
}

.club-room {
    display: grid;
    grid-template-columns:
        minmax(520px, 1.25fr) minmax(360px, 0.9fr) minmax(280px, 0.55fr);
    gap: 22px;
    align-items: stretch;
}

.choice-column {
    min-width: 0;
    overflow: hidden;
}

.choice-scroll {
    display: block;
    min-height: 360px;
    max-height: calc(100vh - 390px);
    overflow-y: auto;
    overflow-x: hidden;
}

.stripe-panel {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(214, 184, 90, .24);
    border-radius: 18px;
    background: rgba(255, 255, 255, .025);
}

.stripe-panel-header {
    margin-bottom: 14px;
}

.stripe-note {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.stripe-card-shell {
    min-height: 72px;
    padding: 16px;
    border: 1px solid rgba(214, 184, 90, .32);
    border-radius: 14px;
    background: rgba(0, 0, 0, .22);
    display: flex;
    align-items: center;
}

#card-element {
    width: 100%;
    min-height: 44px;
}

#card-element iframe {
    min-height: 44px !important;
}

.stripe-actions {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-status {
    color: var(--muted);
    font-weight: 700;
}

.stripe-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.payment-status {
    color: var(--muted);
    font-weight: 700;
}

/* ==========================================
   ORDER SUCCESS MODAL
========================================== */

.success-modal {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.success-modal.hidden {
    display: none;
}

.success-card {
    width: 560px;
    max-width: 92vw;

    background:
        linear-gradient(145deg,
            #16110d,
            #261914);

    color: #f8efe3;

    border: 1px solid rgba(197, 143, 72, 0.75);
    border-radius: 20px;

    padding: 40px;

    text-align: center;

    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.45);
}

.success-card h2 {
    margin-bottom: 12px;

    color: #d7a35d;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.success-message {
    margin-bottom: 12px;

    color: #f8efe3;

    font-size: 18px;
}

#successOrderNumber {
    color: #ffffff;

    font-size: 28px;
    font-weight: 700;

    margin-bottom: 24px;
}

#successCountdown {
    margin-top: 24px;

    color: #f3d7aa;

    font-size: 16px;
    font-weight: 600;
}

/* end modal css */

/* wine glass animation */
.wine-glass-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.wine-svg {
    width: 220px;
    max-width: 45vw;
    height: auto;
    display: block;
}

.wine-fill-svg {
    transition: height 10s linear, y 10s linear;
}

/* ==========================================
   SOCIETY MEMBERSHIP GALLERY
========================================== */

.tier-list {
    grid-template-columns: 1fr;
    gap: 18px;
}

.society-tier-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tier-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tier-code {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* font size of the tier names start   */
.tier-rank {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
}

.tier-rank.bronze {
    color: #cd7f32;
}

.tier-rank.silver {
    color: #c0c0c0;
}

.tier-rank.gold {
    color: #ffd700;
}

.tier-rank.diamond {
    color: #7dd3fc;
}

/* for size of tier name end  */

.tier-price {
    color: var(--text);
    font-weight: 900;
}

.tier-benefits {
    display: grid;
    gap: 4px;
}

.tier-fomo {
    margin-top: 6px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 16px;

    padding: 12px 14px;

    border: 1px dashed rgba(214, 184, 90, 0.28);
    border-radius: 14px;

    background: rgba(214, 184, 90, 0.045);
}

.tier-fomo-content {
    flex: 1;
}

.tier-fomo-content p {
    margin: 2px 0;
}

.tier-fomo-btn {
    flex-shrink: 0;
    height: 38px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid rgba(214, 184, 90, .45);
    background: rgba(214, 184, 90, .14);
    color: #d6b85a;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.tier-fomo-btn:hover {
    background: rgba(214, 184, 90, .24);
}

.tier-select-btn {
    margin-top: auto;
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid rgba(214, 184, 90, 0.26);
    font-weight: 900;
    cursor: pointer;
}

.tier-column {
    padding: 24px;
}

.society-tier-card {
    gap: 14px;
}

.tier-card {
    padding: 22px;
}

.tier-card h3 {
    font-size: 20px;
}

.tier-benefits p,
.tier-fomo p {
    font-size: 14px;
}

.tier-card.active .tier-select-btn {
    background: linear-gradient(180deg, #f3d776, #b99533);
    color: #090806;
}


/* responsive css section  */

@media (max-width: 1200px) {
    .club-shell {
        padding: 24px 24px 130px;
    }

    .club-room {
        grid-template-columns: 1fr;
    }

    .tier-column,
    .choice-column {
        min-height: auto;
    }

    .tier-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .choice-scroll {
        max-height: none;
        height: auto;
        min-height: 0;
    }

    .club-status-bar {
        left: 24px;
        right: 24px;
        grid-template-columns: 1fr 1fr;
    }

    .club-status-bar button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .club-shell {
        padding: 16px 14px 160px;
    }

    .club-hero {
        padding: 24px 20px;
    }

    .club-hero h1 {
        font-size: 28px;
        letter-spacing: 0.12em;
    }

    .eyebrow {
        letter-spacing: 0.22em;
    }

    .tier-list {
        grid-template-columns: 1fr;
    }

    .club-status-bar {
        left: 12px;
        right: 12px;
        bottom: 12px;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .member-step {
        grid-template-columns: 1fr;
    }

    .member-form-grid {
        grid-template-columns: 1fr;
    }

    .member-actions,
    .stripe-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-club-btn,
    .secondary-club-btn,
    .club-status-bar button {
        width: 100%;
    }

    .selection-review,
    .member-form-panel {
        padding: 20px;
    }

    .selection-review h2,
    .member-form-panel h2 {
        font-size: 22px;
        letter-spacing: 0.06em;
    }

    .member-form-grid input {
        font-size: 16px;
        padding: 15px 14px;
    }

    .stripe-panel {
        padding: 18px;
    }

    .stripe-card-shell {
        padding: 14px;
    }

    #card-element {
        min-height: 48px;
    }
}

.tier-price-block {
    display: grid;
    gap: 4px;
    justify-items: end;
    text-align: right;
}

.tier-price,
.tier-discount {
    color: var(--text);
    font-weight: 900;
    font-size: 14px;
    line-height: 1.2;
}

/* to help iphone render  */

@media (max-width: 640px) {

    html,
    body {
        min-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .club-shell {
        min-height: auto;
        padding-bottom: 220px;
    }

    .club-room,
    .member-step {
        min-height: auto;
        overflow: visible;
    }

    .tier-column,
    .choice-column,
    .selection-review,
    .member-form-panel {
        min-height: auto;
        overflow: visible;
    }

    .choice-scroll {
        height: auto;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .club-status-bar {
        position: sticky;
        margin-top: 24px;
    }
}

.tier-experience-benefits {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(245, 241, 232, 0.18);
}

.tier-experience-benefits h4 {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tier-experience-benefits div {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.tier-benefit-on {
    color: #22c55e;
    font-weight: 700;
    white-space: nowrap;
}

.tier-benefit-off {
    color: #ef4444;
    font-weight: 700;
    white-space: nowrap;
}


/* making the three columns independant andmiddle and RHS colum scrollable iof required  */


/* CUSTOMER CLUB ROOM 3-COLUMN FIXED VIEWPORT LAYOUT */

body {
    overflow: hidden;
}

.club-shell {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.club-hero {
    flex: 0 0 auto;
    padding-top: 14px;
    padding-bottom: 12px;
}

.club-room {
    flex: 1 1 auto;
    min-height: 0;

    display: grid;
    grid-template-columns: 43% 32% 25%;
    gap: 18px;

    overflow: hidden;
}

.tier-column,
.choice-column {
    min-height: 0;
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

.tier-column h2,
.column-header {
    flex: 0 0 auto;
}

.tier-list {
    flex: 1 1 auto;
    min-height: 0;

    overflow-y: auto;
    overflow-x: hidden;

    padding-right: 8px;
}

.choice-scroll {
    flex: 1 1 auto;
    min-height: 0;

    overflow-y: auto;
    overflow-x: hidden;

    padding-right: 8px;
    padding-bottom: 24px;
}

.club-status-bar {
    flex: 0 0 auto;
    position: sticky;
    bottom: 0;
    z-index: 50;
}

/* COMPACT TIER CARDS IN LEFT COLUMN */

.tier-column .tier-card {
    padding: 14px 16px !important;
    margin-bottom: 12px !important;
    min-height: auto !important;
}

.tier-column .tier-rank {
    font-size: 1.25rem !important;
    margin-bottom: 8px !important;
}

.tier-column .tier-card-top {
    margin-bottom: 6px !important;
}

.tier-column .tier-card h3 {
    margin: 4px 0 10px !important;
    font-size: 1.05rem !important;
}

.tier-column .tier-experience-benefits {
    margin-top: 8px !important;
    padding-top: 8px !important;
}

.tier-column .tier-experience-benefits h4 {
    font-size: 0.82rem !important;
    margin-bottom: 6px !important;
}

.tier-column .tier-experience-benefits div {
    margin-bottom: 3px !important;
    font-size: 0.78rem !important;
}

.tier-column .tier-fomo {
    margin-top: 8px !important;
    padding: 8px 10px !important;
}

.tier-column .tier-fomo span {
    font-size: 0.68rem !important;
}

.tier-column .tier-fomo p {
    margin: 3px 0 !important;
    font-size: 0.75rem !important;
}

.tier-column .tier-select-btn {
    margin-top: 8px !important;
    padding: 9px 10px !important;
    font-size: 0.78rem !important;
}

/* FINAL COMPACT TIER CARD STRUCTURE */

.tier-column .tier-card {
    padding: 12px 14px !important;
}

.tier-compact-header {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.22);
}

.tier-title-line,
.tier-price-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.tier-title-line {
    margin-bottom: 5px;
}

.tier-column .tier-rank {
    display: inline !important;
    margin: 0 !important;
    font-size: 1rem !important;
    line-height: 1.1 !important;
}

.tier-column .tier-code {
    color: #c9a84c !important;
    font-weight: 900 !important;
    font-size: 0.85rem !important;
}

.tier-name {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
}

.tier-dot {
    color: #c9a84c;
    font-weight: 900;
}

.tier-column .tier-price {
    font-size: 0.9rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
}

.tier-column .tier-discount {
    font-size: 0.9rem !important;
    font-weight: 900 !important;
    color: #52b788 !important;
}

.tier-column .tier-card-top,
.tier-column .tier-card>h3,
.tier-column .tier-card>.tier-select-btn {
    display: none !important;
}

.tier-fomo {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 12px !important;
}

.tier-fomo-content {
    flex: 1;
}

.tier-fomo-content span {
    margin-bottom: 5px !important;
}

.tier-fomo-content p {
    margin: 2px 0 !important;
    font-size: 0.74rem !important;
}

.tier-select-btn.compact {
    flex: 0 0 112px !important;
    width: 112px !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    font-size: 0.72rem !important;
    border-radius: 10px !important;
}

/* =========================================================
   FINAL MOBILE OVERRIDE — CUSTOMER CLUB ROOM
   Must stay at very bottom because desktop fixed-viewport
   rules appear late in this file.
   ========================================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        min-height: 100%;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    body {
        position: static !important;
    }

    .club-shell {
        height: auto !important;
        max-height: none !important;
        min-height: 100vh !important;
        overflow: visible !important;
        display: block !important;
        padding: 14px 12px 28px !important;
    }

    .club-hero {
        padding: 22px 18px !important;
        margin-bottom: 16px !important;
        border-radius: 18px !important;
    }

    .club-hero h1 {
        font-size: 27px !important;
        line-height: 1.18 !important;
        letter-spacing: 0.08em !important;
    }

    .hero-copy {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }

    .eyebrow {
        font-size: 11px !important;
        letter-spacing: 0.2em !important;
    }

    .club-room {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .tier-column,
    .choice-column {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        padding: 18px !important;
        border-radius: 18px !important;
    }

    .tier-list,
    .choice-scroll {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        overflow: visible !important;
        padding-right: 0 !important;
    }

    .tier-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .tier-card {
        padding: 18px !important;
        margin-bottom: 0 !important;
        border-radius: 16px !important;
    }

    .tier-compact-header {
        margin-bottom: 10px !important;
    }

    .tier-title-line,
    .tier-price-line {
        gap: 8px !important;
    }

    .tier-column .tier-rank {
        font-size: 1.15rem !important;
    }

    .tier-name {
        font-size: 1rem !important;
    }

    .tier-column .tier-price,
    .tier-column .tier-discount {
        font-size: 0.95rem !important;
    }

    .tier-fomo {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .tier-select-btn.compact,
    .tier-fomo-btn,
    .tier-select-btn {
        width: 100% !important;
        flex: none !important;
        min-height: 50px !important;
        font-size: 0.9rem !important;
        border-radius: 14px !important;
    }

    .choice-card {
        padding: 16px !important;
        border-radius: 16px !important;
    }

    .choice-card label {
        gap: 14px !important;
    }

    .choice-card input {
        transform: scale(1.35) !important;
    }

    .choice-card strong {
        font-size: 16px !important;
    }

    .member-step {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .selection-review,
    .member-form-panel {
        padding: 18px !important;
        border-radius: 18px !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .selection-review h2,
    .member-form-panel h2 {
        font-size: 22px !important;
        line-height: 1.2 !important;
    }

    .member-form-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .member-form-grid input {
        min-height: 52px !important;
        font-size: 16px !important;
    }

    .stripe-panel {
        padding: 18px !important;
        border-radius: 18px !important;
    }

    .stripe-actions,
    .member-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .primary-club-btn,
    .secondary-club-btn {
        width: 100% !important;
        min-height: 52px !important;
        font-size: 16px !important;
    }

    .club-status-bar {
        position: sticky !important;
        left: auto !important;
        right: auto !important;
        bottom: 0 !important;
        width: 100% !important;
        margin-top: 18px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 14px !important;
        border-radius: 18px !important;
    }

    .club-status-bar button {
        width: 100% !important;
        min-height: 52px !important;
        font-size: 16px !important;
    }
}

/* =========================================================
   FINAL MOBILE OVERRIDE — CUSTOMER CLUB ROOM
   Must stay at very bottom because desktop fixed-viewport
   rules appear late in this file. end
   ========================================================= */



/* Required action highlight start */
.needs-attention {
    border: 3px solid #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18) !important;
}

.input-needs-attention {
    border: 3px solid #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18) !important;
}

/* Required action highlight end */



.success-clock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
}

.clock-face {
    font-size: 34px;
    animation: clockPulse 1s infinite ease-in-out;
}

.clock-number {
    font-size: 42px;
    font-weight: 800;
    color: #c9a84c;
}

@keyframes clockPulse {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.65;
    }
}

.account-required-clock {
    margin-top: 10px;
    padding: 14px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 14px;
    background: rgba(25, 28, 29, 0.72);
    text-align: center;
}

.account-required-title {
    font-weight: 700;
    color: #f5f1e8;
    margin-bottom: 8px;
}

.account-clock-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.account-clock-face {
    font-size: 28px;
    animation: clockPulse 1s infinite ease-in-out;
}

.account-clock-number {
    font-size: 34px;
    font-weight: 800;
    color: #c9a84c;
}

.account-required-subtitle {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(245, 241, 232, 0.72);
}

/* formatting the wine profiles against each wine */

.wine-profile-chips {
    display: flex;
    gap: 5px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.wine-profile-chip {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #111;
}

.profile-low {
    background: #4ade80;
}

.profile-medium {
    background: #bef264;
}

.profile-medium-plus {
    background: #facc15;
}

.profile-high {
    background: #f87171;
}