/* =============================================================================
   Golf Club Manager — Frontend Stylesheet  v1.0.0
   Design: Refined professional aesthetic for U.S. golf clubs.
   Typography: Playfair Display (headings) | Source Sans 3 (body)
   ============================================================================= */


/* ── 1. Custom Properties ──────────────────────────────────────────────────── */

:root {
    /* Brand */
    --gcm-primary:          #1a6b3c;
    --gcm-primary-dark:     #0f4526;
    --gcm-primary-light:    #e8f5ee;
    --gcm-accent:           #c9a84c;
    --gcm-accent-dark:      #a8863a;
    --gcm-accent-light:     #faf5e8;

    /* Tier */
    --gcm-badge-bronze:     #cd7f32;
    --gcm-badge-silver:     #a8a9ad;
    --gcm-badge-gold:       #c9a84c;

    /* Neutral scale */
    --gcm-text:             #1a1a1a;
    --gcm-text-muted:       #6b7280;
    --gcm-text-light:       #9ca3af;
    --gcm-bg:               #ffffff;
    --gcm-bg-subtle:        #f9fafb;
    --gcm-bg-light:         #f3f4f6;
    --gcm-border:           #e5e7eb;
    --gcm-border-dark:      #d1d5db;

    /* Feedback */
    --gcm-success-color:    #15603a;
    --gcm-success-bg:       #f0fdf4;
    --gcm-success-border:   #a7f3d0;
    --gcm-error-color:      #991b1b;
    --gcm-error-bg:         #fef2f2;
    --gcm-error-border:     #fca5a5;
    --gcm-warning-color:    #78350f;
    --gcm-warning-bg:       #fffbeb;
    --gcm-warning-border:   #fde68a;
    --gcm-info-color:       #1e3a8a;
    --gcm-info-bg:          #eff6ff;
    --gcm-info-border:      #bfdbfe;

    /* Typography */
    --gcm-font-serif:       'Playfair Display', Georgia, 'Times New Roman', serif;
    --gcm-font-sans:        'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

    /* Shape */
    --gcm-radius:           4px;
    --gcm-radius-md:        6px;
    --gcm-shadow:           0 1px 3px rgba(0, 0, 0, 0.06);
    --gcm-shadow-md:        0 2px 6px rgba(0, 0, 0, 0.08);
}


/* ── 2. Base Container ─────────────────────────────────────────────────────── */

.gcm-shop,
.gcm-product,
.gcm-cart,
.gcm-checkout,
.gcm-membership-plans,
.gcm-order-confirmation,
.gcm-mini-cart {
    font-family: var(--gcm-font-sans);
    font-size:   1rem;
    color:       var(--gcm-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gcm-shop *,
.gcm-product *,
.gcm-cart *,
.gcm-checkout *,
.gcm-membership-plans *,
.gcm-order-confirmation *,
.gcm-mini-cart * {
    box-sizing: border-box;
}


/* ── 3. Headings ───────────────────────────────────────────────────────────── */

.gcm-shop h1,
.gcm-shop h2,
.gcm-shop h3,
.gcm-product h1,
.gcm-product h2,
.gcm-product h3,
.gcm-cart h2,
.gcm-cart h3,
.gcm-checkout h2,
.gcm-checkout h3,
.gcm-membership-plans h2,
.gcm-membership-plans h3,
.gcm-order-confirmation h1,
.gcm-order-confirmation h2,
.gcm-order-confirmation h3 {
    font-family: var(--gcm-font-serif);
    font-weight: 600;
    line-height: 1.2;
    color:       var(--gcm-text);
    margin-top:  0;
}

.gcm-checkout-step__title {
    font-family: var(--gcm-font-serif);
    font-size:   1.625rem;
    font-weight: 600;
    margin:      0 0 1.5rem;
    color:       var(--gcm-text);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gcm-border);
}

.gcm-checkout-step__subtitle {
    font-size:    0.9375rem;
    color:        var(--gcm-text-muted);
    margin:       -0.75rem 0 1.5rem;
}


/* ── 4. Buttons ────────────────────────────────────────────────────────────── */

.gcm-btn {
    display:         inline-block;
    font-family:     var(--gcm-font-sans);
    font-size:       0.9375rem;
    font-weight:     500;
    letter-spacing:  0.01em;
    line-height:     1;
    text-align:      center;
    text-decoration: none;
    white-space:     nowrap;
    cursor:          pointer;
    border:          1px solid transparent;
    border-radius:   var(--gcm-radius);
    padding:         0.6875rem 1.375rem;
    transition:      background-color 140ms ease, border-color 140ms ease, color 140ms ease;
    vertical-align:  middle;
}

.gcm-btn:focus-visible {
    outline:        3px solid var(--gcm-accent);
    outline-offset: 2px;
}

/* Primary */
.gcm-btn--primary {
    background-color: var(--gcm-primary);
    border-color:     var(--gcm-primary);
    color:            #ffffff;
}

.gcm-btn--primary:hover {
    background-color: var(--gcm-primary-dark);
    border-color:     var(--gcm-primary-dark);
    color:            #ffffff;
    text-decoration:  none;
}

/* Outline */
.gcm-btn--outline {
    background-color: transparent;
    border-color:     var(--gcm-primary);
    color:            var(--gcm-primary);
}

.gcm-btn--outline:hover {
    background-color: var(--gcm-primary-light);
    color:            var(--gcm-primary-dark);
    text-decoration:  none;
}

/* Large */
.gcm-btn--lg {
    font-size: 1rem;
    padding:   0.8125rem 1.75rem;
}

/* Disabled */
.gcm-btn--disabled,
.gcm-btn:disabled {
    background-color: var(--gcm-bg-light);
    border-color:     var(--gcm-border-dark);
    color:            var(--gcm-text-light);
    cursor:           not-allowed;
    pointer-events:   none;
}

/* Loading state */
.gcm-btn--loading {
    opacity:        0.7;
    cursor:         wait;
    pointer-events: none;
}


/* ── 5. Form Elements ──────────────────────────────────────────────────────── */

.gcm-form-group {
    margin-bottom: 1.125rem;
}

.gcm-form-group label,
.gcm-form-group .gcm-label {
    display:       block;
    font-family:   var(--gcm-font-sans);
    font-size:     0.8125rem;
    font-weight:   600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color:         var(--gcm-text);
    margin-bottom: 0.375rem;
}

.gcm-required {
    color:       var(--gcm-error-color);
    margin-left: 2px;
}

.gcm-input,
.gcm-select,
.gcm-textarea {
    display:          block;
    width:            100%;
    font-family:      var(--gcm-font-sans);
    font-size:        0.9375rem;
    color:            var(--gcm-text);
    background-color: var(--gcm-bg);
    border:           1px solid var(--gcm-border-dark);
    border-radius:    var(--gcm-radius);
    padding:          0.625rem 0.75rem;
    line-height:      1.5;
    transition:       border-color 140ms ease;
    -webkit-appearance: none;
    appearance:       none;
}

.gcm-input::placeholder,
.gcm-textarea::placeholder {
    color: var(--gcm-text-light);
}

.gcm-input:focus,
.gcm-select:focus,
.gcm-textarea:focus {
    outline:      none;
    border-color: var(--gcm-primary);
    background-color: #fff;
}

.gcm-textarea {
    resize:     vertical;
    min-height: 6rem;
}

/* Row helpers */
.gcm-form-row {
    display: grid;
    gap:     1rem;
}

.gcm-form-row--half {
    grid-template-columns: 1fr 1fr;
}

.gcm-form-row--thirds {
    grid-template-columns: 1fr 1fr 1fr;
}

input[type="date"].gcm-input {
    cursor: pointer;
}

input[type="number"].gcm-input {
    -moz-appearance: textfield;
}

input[type="number"].gcm-input::-webkit-inner-spin-button,
input[type="number"].gcm-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}


/* ── 6. Notices ────────────────────────────────────────────────────────────── */

.gcm-notice {
    display:       block;
    font-family:   var(--gcm-font-sans);
    font-size:     0.9375rem;
    padding:       0.875rem 1.125rem;
    border-radius: var(--gcm-radius);
    border-left:   3px solid transparent;
    margin-bottom: 1rem;
    line-height:   1.5;
}

.gcm-notice--success {
    background-color: var(--gcm-success-bg);
    border-color:     var(--gcm-success-border);
    color:            var(--gcm-success-color);
}

.gcm-notice--error {
    background-color: var(--gcm-error-bg);
    border-color:     var(--gcm-error-border);
    color:            var(--gcm-error-color);
}

.gcm-notice--warning {
    background-color: var(--gcm-warning-bg);
    border-color:     var(--gcm-warning-border);
    color:            var(--gcm-warning-color);
}

.gcm-notice--info {
    background-color: var(--gcm-info-bg);
    border-color:     var(--gcm-info-border);
    color:            var(--gcm-info-color);
}

.gcm-notice p {
    margin: 0;
}

.gcm-notice p + p {
    margin-top: 0.5rem;
}


/* ── 7. Price Display ──────────────────────────────────────────────────────── */

.gcm-price {
    font-family: var(--gcm-font-serif);
    font-size:   1.1875rem;
    font-weight: 600;
    color:       var(--gcm-text);
}

.gcm-price--sale .gcm-regular-price {
    font-size:       0.9375rem;
    font-weight:     400;
    color:           var(--gcm-text-muted);
    text-decoration: line-through;
    margin-right:    0.375rem;
}

.gcm-price--sale .gcm-sale-price {
    font-size:   1.1875rem;
    font-weight: 600;
    color:       var(--gcm-primary-dark);
    font-style:  normal;
}


/* ── 8. Filter Navigation ──────────────────────────────────────────────────── */

.gcm-shop__filters {
    display:       flex;
    flex-wrap:     wrap;
    gap:           0.375rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gcm-border);
}

.gcm-filter-tab {
    font-family:     var(--gcm-font-sans);
    font-size:       0.8125rem;
    font-weight:     500;
    letter-spacing:  0.03em;
    text-transform:  uppercase;
    text-decoration: none;
    color:           var(--gcm-text-muted);
    background:      transparent;
    border:          1px solid var(--gcm-border-dark);
    border-radius:   var(--gcm-radius);
    padding:         0.4375rem 0.875rem;
    transition:      background-color 130ms ease, color 130ms ease, border-color 130ms ease;
}

.gcm-filter-tab:hover {
    color:            var(--gcm-primary);
    border-color:     var(--gcm-primary);
    text-decoration:  none;
    background-color: var(--gcm-primary-light);
}

.gcm-filter-tab--active {
    background-color: var(--gcm-primary);
    border-color:     var(--gcm-primary);
    color:            #ffffff;
}

.gcm-filter-tab--active:hover {
    background-color: var(--gcm-primary-dark);
    border-color:     var(--gcm-primary-dark);
    color:            #ffffff;
}


/* ── 9. Product Grid ───────────────────────────────────────────────────────── */

.gcm-shop__grid {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   1.5rem;
}

.gcm-shop__empty {
    text-align: center;
    padding:    3rem 1.5rem;
    color:      var(--gcm-text-muted);
}

.gcm-shop__empty p {
    font-family:   var(--gcm-font-serif);
    font-size:     1.125rem;
    margin-bottom: 1.25rem;
}


/* ── 10. Product Card ──────────────────────────────────────────────────────── */

.gcm-product-card {
    display:          flex;
    flex-direction:   column;
    background-color: var(--gcm-bg);
    border:           1px solid var(--gcm-border);
    border-top:       3px solid var(--gcm-primary);
    border-radius:    var(--gcm-radius-md);
    overflow:         hidden;
}

.gcm-product-card__image {
    aspect-ratio: 4 / 3;
    overflow:     hidden;
}

.gcm-product-card__image img {
    display:    block;
    width:      100%;
    height:     100%;
    object-fit: cover;
}

.gcm-product-card__body {
    flex:    1;
    padding: 1.125rem 1.25rem 0.75rem;
}

.gcm-product-card__type {
    display:        block;
    font-size:      0.6875rem;
    font-weight:    600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color:          var(--gcm-primary);
    margin-bottom:  0.4375rem;
}

.gcm-product-card__title {
    font-family:   var(--gcm-font-serif);
    font-size:     1.125rem;
    font-weight:   600;
    color:         var(--gcm-text);
    margin:        0 0 0.5rem;
    line-height:   1.25;
}

.gcm-product-card__excerpt {
    font-size:     0.875rem;
    color:         var(--gcm-text-muted);
    margin:        0 0 0.75rem;
    line-height:   1.5;
}

.gcm-product-card__price {
    margin-top: auto;
    padding-top: 0.375rem;
}

.gcm-product-card__actions {
    padding: 0.875rem 1.25rem 1.125rem;
    border-top: 1px solid var(--gcm-border);
}

.gcm-product-card__actions .gcm-btn {
    width:   100%;
    display: block;
}


/* ── 11. Single Product ────────────────────────────────────────────────────── */

.gcm-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:     2.5rem;
    padding: 1rem 0 2rem;
}

.gcm-product__media {
    display:        flex;
    flex-direction: column;
    gap:            0.625rem;
}

.gcm-product__featured-image img {
    display:       block;
    width:         100%;
    height:        auto;
    border-radius: var(--gcm-radius-md);
    border:        1px solid var(--gcm-border);
}

.gcm-product__gallery {
    display:               grid;
    grid-template-columns: repeat(4, 1fr);
    gap:                   0.375rem;
}

.gcm-product__gallery-item img {
    display:       block;
    width:         100%;
    aspect-ratio:  1;
    object-fit:    cover;
    border-radius: var(--gcm-radius);
    border:        1px solid var(--gcm-border);
}

.gcm-product__details {
    display:        flex;
    flex-direction: column;
    gap:            0.875rem;
}

.gcm-product__type {
    display:        block;
    font-size:      0.6875rem;
    font-weight:    600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color:          var(--gcm-primary);
}

.gcm-product__title {
    font-family:   var(--gcm-font-serif);
    font-size:     2rem;
    font-weight:   700;
    line-height:   1.15;
    margin:        0;
}

.gcm-product__price {
    padding:       0.625rem 0;
    border-top:    1px solid var(--gcm-border);
    border-bottom: 1px solid var(--gcm-border);
}

.gcm-product__short-desc {
    font-size:  0.9375rem;
    color:      var(--gcm-text-muted);
    line-height: 1.6;
}

.gcm-product__stock {
    font-size: 0.875rem;
    color:     var(--gcm-text-muted);
    margin:    0;
}

.gcm-product__stock--out {
    color: var(--gcm-error-color);
}

.gcm-product__actions {
    padding-top: 0.5rem;
}

.gcm-product__actions .gcm-btn {
    min-width: 12rem;
}

.gcm-product__description {
    padding-top: 1.25rem;
    border-top:  1px solid var(--gcm-border);
    font-size:   0.9375rem;
    line-height: 1.7;
    color:       var(--gcm-text);
}

.gcm-product__description p {
    margin: 0 0 1em;
}

.gcm-product__description p:last-child {
    margin-bottom: 0;
}


/* ── 12. Membership Plans ──────────────────────────────────────────────────── */

.gcm-membership-plans {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   1.25rem;
    padding:               1rem 0;
}

.gcm-membership-card {
    display:          flex;
    flex-direction:   column;
    background-color: var(--gcm-bg);
    border:           1px solid var(--gcm-border);
    border-radius:    var(--gcm-radius-md);
    overflow:         hidden;
    position:         relative;
}

.gcm-membership-card--featured {
    border-color: var(--gcm-accent);
    border-width: 2px;
}

.gcm-membership-card__badge {
    position:        absolute;
    top:             0;
    right:           1.25rem;
    font-size:       0.6875rem;
    font-weight:     700;
    letter-spacing:  0.06em;
    text-transform:  uppercase;
    color:           var(--gcm-primary-dark);
    background-color: var(--gcm-accent);
    padding:         0.3125rem 0.625rem;
    border-radius:   0 0 var(--gcm-radius) var(--gcm-radius);
}

.gcm-membership-card__header {
    padding:    1.5rem 1.375rem 1.25rem;
    color:      #ffffff;
}

.gcm-membership-card__title {
    font-family: var(--gcm-font-serif);
    font-size:   1.375rem;
    font-weight: 700;
    color:       #ffffff;
    margin:      0 0 0.5rem;
}

.gcm-membership-card__price {
    font-family: var(--gcm-font-serif);
    font-size:   1.875rem;
    font-weight: 700;
    color:       #ffffff;
    line-height: 1;
}

.gcm-membership-card__price .gcm-price {
    font-family: inherit;
    font-size:   inherit;
    font-weight: inherit;
    color:       #ffffff;
}

.gcm-membership-card__period {
    display:   block;
    font-size: 0.8125rem;
    font-weight: 400;
    opacity:   0.85;
    margin-top: 0.25rem;
}

.gcm-membership-card__body {
    flex:    1;
    padding: 1.25rem 1.375rem;
}

.gcm-membership-card__discount {
    font-weight:   600;
    font-size:     0.875rem;
    color:         var(--gcm-primary);
    margin:        0 0 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--gcm-border);
}

.gcm-membership-card__perks {
    list-style: none;
    margin:     0;
    padding:    0;
    display:    flex;
    flex-direction: column;
    gap:        0.5rem;
}

.gcm-membership-card__perks li {
    font-size:   0.9375rem;
    color:       var(--gcm-text);
    line-height: 1.4;
    display:     flex;
    gap:         0.5rem;
    align-items: flex-start;
}

.gcm-perk-icon {
    flex-shrink:  0;
    color:        var(--gcm-primary);
    font-weight:  700;
    margin-top:   0.0625rem;
}

.gcm-membership-card__footer {
    padding:    1rem 1.375rem 1.375rem;
    border-top: 1px solid var(--gcm-border);
}

.gcm-membership-card__footer .gcm-btn {
    width:   100%;
    display: block;
}


/* ── 13. Cart (Bahama storefront) ──────────────────────────────────────────── */

.gcm-cart {
    max-width: 1180px;
    margin:    0 auto;
}

.gcm-cart__layout {
    display:               grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap:                   28px;
    align-items:           start;
}

.gcm-cart__sidebar {
    position: sticky;
    top:      100px;
}

/* Items column */
.gcm-cart__items-head {
    display:         flex;
    align-items:     baseline;
    justify-content: space-between;
    padding-bottom:  14px;
    margin-bottom:   18px;
    border-bottom:   1px solid var(--gcm-border);
}

body.gcm-storefront .gcm-cart__items-head {
    border-bottom-color: var(--gcm-sf-stroke);
}

.gcm-cart__items-title {
    margin:      0;
    font-size:   22px;
    font-family: var(--gcm-font-serif);
}

body.gcm-storefront .gcm-cart__items-title {
    font-family: var(--gcm-sf-serif);
}

.gcm-cart__items-count {
    font-size: 13px;
    color:     var(--gcm-text-muted);
}

body.gcm-storefront .gcm-cart__items-count {
    color: var(--gcm-sf-muted);
}

.gcm-cart__list {
    list-style:     none;
    padding:        0;
    margin:         0;
    display:        flex;
    flex-direction: column;
    gap:            16px;
}

.gcm-cart__item {
    display:               grid;
    grid-template-columns: 96px 1fr;
    gap:                   16px;
    padding:               18px;
    background:            #fff;
    border:                1px solid var(--gcm-border);
    border-radius:         var(--gcm-radius-md);
}

body.gcm-storefront .gcm-cart__item {
    border-color:  var(--gcm-sf-stroke);
    border-radius: var(--radius, 18px);
    box-shadow:    var(--shadow, 0 4px 16px rgba(15, 23, 42, 0.04));
}

.gcm-cart__item-thumb {
    width:         96px;
    height:        96px;
    border-radius: 14px;
    overflow:      hidden;
    background:    rgba(24, 167, 122, 0.08);
    border:        1px solid var(--gcm-border);
}

body.gcm-storefront .gcm-cart__item-thumb {
    border-color: var(--gcm-sf-stroke);
}

.gcm-cart__item-thumb img {
    display:    block;
    width:      100%;
    height:     100%;
    object-fit: cover;
}

.gcm-cart__item-body {
    display:        flex;
    flex-direction: column;
    min-width:      0;
}

.gcm-cart__item-headline {
    display:     flex;
    flex-wrap:   wrap;
    gap:         10px;
    align-items: baseline;
}

.gcm-cart__item-title {
    margin:      0;
    font-family: var(--gcm-font-serif);
    font-size:   18px;
    color:       var(--gcm-text);
}

body.gcm-storefront .gcm-cart__item-title {
    font-family: var(--gcm-sf-serif);
    color:       var(--gcm-sf-text, var(--gcm-text));
}

.gcm-cart__item-type {
    font-size:       10.5px;
    letter-spacing:  0.12em;
    text-transform:  uppercase;
    font-weight:     700;
    color:           var(--gcm-primary);
    background:      rgba(24, 167, 122, 0.10);
    padding:         3px 8px;
    border-radius:   999px;
}

body.gcm-storefront .gcm-cart__item-type {
    color: var(--green2, var(--gcm-primary));
}

.gcm-cart__item-desc {
    margin:    6px 0 0;
    color:     var(--gcm-text-muted);
    font-size: 14px;
}

body.gcm-storefront .gcm-cart__item-desc {
    color: var(--gcm-sf-muted);
}

.gcm-cart__item-chips {
    display:    flex;
    flex-wrap:  wrap;
    gap:        6px;
    margin-top: 8px;
}

.gcm-cart__item-chip {
    background:    rgba(10, 20, 18, 0.05);
    padding:       3px 10px;
    border-radius: 999px;
    font-size:     12px;
    color:         var(--gcm-text);
}

.gcm-cart__item-controls {
    display:     flex;
    flex-wrap:   wrap;
    gap:         14px;
    align-items: center;
    margin-top:  12px;
    padding-top: 12px;
    border-top:  1px dashed var(--gcm-border);
}

body.gcm-storefront .gcm-cart__item-controls {
    border-top-color: var(--gcm-sf-stroke);
}

.gcm-cart__item-price {
    display:        flex;
    flex-direction: column;
    line-height:    1.1;
}

.gcm-cart__item-unit {
    font-weight: 700;
    font-family: var(--gcm-font-serif);
    color:       var(--gcm-text);
}

body.gcm-storefront .gcm-cart__item-unit {
    font-family: var(--gcm-sf-serif);
}

.gcm-cart__item-unit-label {
    color:     var(--gcm-text-muted);
    font-size: 11px;
}

body.gcm-storefront .gcm-cart__item-unit-label {
    color: var(--gcm-sf-muted);
}

/* Quantity stepper */
.gcm-cart__qty {
    display:       inline-flex;
    align-items:   center;
    border:        1px solid var(--gcm-border);
    border-radius: 999px;
    overflow:      hidden;
    background:    #fff;
}

body.gcm-storefront .gcm-cart__qty {
    border-color: var(--gcm-sf-stroke);
}

.gcm-cart__qty-btn {
    width:      32px;
    height:     32px;
    border:     0;
    background: transparent;
    cursor:     pointer;
    font-size:  18px;
    line-height: 1;
    color:      var(--gcm-text);
}

.gcm-cart__qty-btn:hover {
    background: rgba(24, 167, 122, 0.08);
}

.gcm-cart__qty-input {
    width:           48px;
    text-align:      center;
    border:          0;
    padding:         6px 0;
    font:            inherit;
    background:      transparent;
    color:           var(--gcm-text);
    -moz-appearance: textfield;
}

.gcm-cart__qty-input::-webkit-outer-spin-button,
.gcm-cart__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.gcm-cart__qty-input:focus {
    outline: none;
}

.gcm-cart__qty-fixed {
    padding:     6px 14px;
    font-weight: 600;
    color:       var(--gcm-text-muted);
    font-size:   13px;
}

.gcm-cart__item-line {
    margin-left:    auto;
    display:        flex;
    flex-direction: column;
    align-items:    flex-end;
    line-height:    1.1;
}

.gcm-cart__item-line-label {
    font-size:      11px;
    color:          var(--gcm-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

body.gcm-storefront .gcm-cart__item-line-label {
    color: var(--gcm-sf-muted);
}

.gcm-cart__item-line-amount {
    font-family: var(--gcm-font-serif);
    font-weight: 700;
    color:       var(--gcm-primary);
    font-size:   18px;
}

body.gcm-storefront .gcm-cart__item-line-amount {
    font-family: var(--gcm-sf-serif);
    color:       var(--green2, var(--gcm-primary));
}

.gcm-cart__remove {
    background:   none;
    border:       0;
    color:        var(--gcm-text-muted);
    cursor:       pointer;
    font-size:    13px;
    display:      inline-flex;
    gap:          4px;
    align-items:  center;
    padding:      6px 10px;
    border-radius: 8px;
    transition:   color 120ms ease, background 120ms ease;
}

.gcm-cart__remove:hover {
    color:      #a8323a;
    background: rgba(168, 50, 58, 0.06);
}

.gcm-cart__continue {
    margin-top: 18px;
}

/* Sidebar / order totals */
.gcm-cart__totals {
    padding:        22px;
    background:     #fff;
    border:         1px solid var(--gcm-border);
    border-radius:  var(--gcm-radius-md);
    display:        flex;
    flex-direction: column;
    gap:            14px;
}

body.gcm-storefront .gcm-cart__totals {
    border-color:  var(--gcm-sf-stroke);
    border-radius: var(--radius, 18px);
    box-shadow:    var(--shadow, 0 4px 16px rgba(15, 23, 42, 0.04));
}

.gcm-cart__totals-title {
    margin:         0 0 8px;
    font-family:    var(--gcm-font-serif);
    font-size:      20px;
    padding-bottom: 12px;
    border-bottom:  1px solid var(--gcm-border);
}

body.gcm-storefront .gcm-cart__totals-title {
    font-family:         var(--gcm-sf-serif);
    border-bottom-color: var(--gcm-sf-stroke);
}

.gcm-cart__totals-list {
    margin:         0;
    padding:        0;
    display:        flex;
    flex-direction: column;
    gap:            8px;
}

.gcm-cart__totals-row {
    display:         flex;
    justify-content: space-between;
    font-size:       14px;
}

.gcm-cart__totals-row dt {
    margin: 0;
    color:  var(--gcm-text-muted);
}

.gcm-cart__totals-row dd {
    margin: 0;
    color:  var(--gcm-text);
}

body.gcm-storefront .gcm-cart__totals-row dt {
    color: var(--gcm-sf-muted);
}

body.gcm-storefront .gcm-cart__totals-row dd {
    color: var(--gcm-sf-text, var(--gcm-text));
}

.gcm-cart__totals-row--discount dd {
    color:       #a8323a;
    font-weight: 600;
}

.gcm-cart__totals-row--grand {
    padding-top: 12px;
    border-top:  1px solid var(--gcm-border);
    font-family: var(--gcm-font-serif);
    font-size:   18px;
}

body.gcm-storefront .gcm-cart__totals-row--grand {
    border-top-color: var(--gcm-sf-stroke);
    font-family:      var(--gcm-sf-serif);
}

.gcm-cart__totals-row--grand dd strong {
    color: var(--gcm-primary);
}

body.gcm-storefront .gcm-cart__totals-row--grand dd strong {
    color: var(--green2, var(--gcm-primary));
}

.gcm-cart__checkout {
    width:           100%;
    justify-content: center;
}

.gcm-cart__trust {
    margin:      0;
    font-size:   12px;
    color:       var(--gcm-text-muted);
    display:     flex;
    align-items: center;
    gap:         6px;
}

body.gcm-storefront .gcm-cart__trust {
    color: var(--gcm-sf-muted);
}

/* Empty state */
.gcm-cart__empty {
    text-align:    center;
    padding:       60px 24px;
    background:    #fff;
    border:        1px solid var(--gcm-border);
    border-radius: var(--gcm-radius-md);
}

body.gcm-storefront .gcm-cart__empty {
    border-color:  var(--gcm-sf-stroke);
    border-radius: var(--radius, 18px);
    box-shadow:    var(--shadow, 0 4px 16px rgba(15, 23, 42, 0.04));
}

.gcm-cart__empty-icon {
    font-size: 48px;
    opacity:   0.5;
}

.gcm-cart__empty-title {
    margin:      12px 0 6px;
    font-family: var(--gcm-font-serif);
    font-size:   24px;
}

body.gcm-storefront .gcm-cart__empty-title {
    font-family: var(--gcm-sf-serif);
}

.gcm-cart__empty p {
    color:         var(--gcm-text-muted);
    margin-bottom: 1.25rem;
}

/* Placeholder image (any context — product, lesson, cart, drawer) */
.gcm-product-image--placeholder {
    opacity:    0.85;
    background: rgba(24, 167, 122, 0.06);
}

/* Responsive collapse */
@media (max-width: 980px) {
    .gcm-cart__layout {
        grid-template-columns: 1fr;
    }
    .gcm-cart__sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .gcm-cart__item {
        grid-template-columns: 1fr;
    }
    .gcm-cart__item-thumb {
        width:  100%;
        height: 180px;
    }
    .gcm-cart__item-line {
        margin-left:     0;
        width:           100%;
        flex-direction:  row;
        justify-content: space-between;
        align-items:     baseline;
    }
    .gcm-cart__items-head {
        flex-wrap: wrap;
        gap:       6px;
    }
}


/* ── 14. Mini Cart ─────────────────────────────────────────────────────────── */

.gcm-mini-cart {
    display: inline-block;
}

.gcm-mini-cart__link {
    display:         inline-flex;
    align-items:     center;
    gap:             0.4375rem;
    text-decoration: none;
    color:           var(--gcm-text);
    font-family:     var(--gcm-font-sans);
    font-size:       0.9375rem;
    padding:         0.375rem 0.625rem;
    border-radius:   var(--gcm-radius);
    transition:      background-color 130ms ease;
}

.gcm-mini-cart__link:hover {
    background-color: var(--gcm-bg-subtle);
    text-decoration:  none;
    color:            var(--gcm-primary);
}

.gcm-mini-cart__count {
    display:          inline-flex;
    align-items:      center;
    justify-content:  center;
    min-width:        1.375rem;
    height:           1.375rem;
    background-color: var(--gcm-primary);
    color:            #ffffff;
    font-size:        0.6875rem;
    font-weight:      700;
    border-radius:    50%;
    padding:          0 0.25rem;
    line-height:      1;
}

.gcm-mini-cart__total {
    font-weight: 500;
    color:       var(--gcm-text);
}


/* ── 15. Checkout ──────────────────────────────────────────────────────────── */

.gcm-checkout--empty {
    text-align: center;
    padding:    3rem 1.5rem;
    border:     1px solid var(--gcm-border);
    border-radius: var(--gcm-radius-md);
}

/* Step progress */
.gcm-checkout__steps {
    display:         flex;
    list-style:      none;
    margin:          0 0 2.5rem;
    padding:         0;
    position:        relative;
    counter-reset:   step;
}

.gcm-checkout__steps::before {
    content:    '';
    position:   absolute;
    top:        1.125rem;
    left:       1.75rem;
    right:      1.75rem;
    height:     1px;
    background: var(--gcm-border-dark);
    z-index:    0;
}

.gcm-checkout__step {
    flex:           1;
    text-align:     center;
    position:       relative;
    z-index:        1;
}

.gcm-checkout__step-num {
    display:          flex;
    align-items:      center;
    justify-content:  center;
    width:            2.25rem;
    height:           2.25rem;
    margin:           0 auto 0.375rem;
    border-radius:    50%;
    border:           2px solid var(--gcm-border-dark);
    background-color: var(--gcm-bg);
    font-family:      var(--gcm-font-serif);
    font-size:        0.9375rem;
    font-weight:      600;
    color:            var(--gcm-text-muted);
    transition:       background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.gcm-checkout__step-label {
    display:        block;
    font-size:      0.75rem;
    font-weight:    500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color:          var(--gcm-text-muted);
    transition:     color 140ms ease;
}

/* Active step */
.gcm-checkout__step--active .gcm-checkout__step-num {
    background-color: var(--gcm-primary);
    border-color:     var(--gcm-primary);
    color:            var(--gcm-primary);
}

.gcm-checkout__step--active .gcm-checkout__step-label {
    color:       var(--gcm-primary);
    font-weight: 600;
}

/* Completed step */
.gcm-checkout__step--done .gcm-checkout__step-num {
    background-color: var(--gcm-primary-light);
    border-color:     var(--gcm-primary);
    color:            var(--gcm-primary);
}

.gcm-checkout__step--done .gcm-checkout__step-label {
    color: var(--gcm-text-muted);
}

/* Step content */
.gcm-checkout__content {
    padding: 2rem;
    border:  1px solid var(--gcm-border);
    border-radius: var(--gcm-radius-md);
    background-color: var(--gcm-bg);
}

.gcm-checkout-step__footer {
    display:     flex;
    gap:         0.875rem;
    margin-top:  1.75rem;
    padding-top: 1.25rem;
    border-top:  1px solid var(--gcm-border);
    align-items: center;
}

.gcm-checkout__messages {
    margin-top: 0.75rem;
    min-height: 0;
}

/* Payment layout */
.gcm-checkout-payment__layout {
    display:               grid;
    grid-template-columns: 1fr 1.25fr;
    gap:                   2rem;
}

/* Order summary (within payment step) */
.gcm-checkout-payment__summary h3 {
    font-family:   var(--gcm-font-serif);
    font-size:     1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--gcm-border);
}

.gcm-order-summary__items {
    list-style:    none;
    margin:        0 0 1rem;
    padding:       0;
    display:       flex;
    flex-direction: column;
    gap:           0.5rem;
}

.gcm-order-summary__item {
    display:         flex;
    justify-content: space-between;
    font-size:       0.9375rem;
    gap:             0.75rem;
}

.gcm-order-summary__item-title {
    color: var(--gcm-text);
    flex:  1;
}

.gcm-order-summary__item-price {
    font-weight: 500;
    white-space: nowrap;
}

.gcm-order-summary__slot {
    font-size:    0.875rem;
    color:        var(--gcm-text-muted);
    margin-bottom: 1rem;
    padding:      0.5rem 0.75rem;
    background:   var(--gcm-bg-subtle);
    border-radius: var(--gcm-radius);
    border:       1px solid var(--gcm-border);
}

.gcm-order-summary__totals {
    width:           100%;
    border-collapse: collapse;
    border-top:      2px solid var(--gcm-border-dark);
    margin-top:      0.5rem;
}

.gcm-order-summary__totals th,
.gcm-order-summary__totals td {
    font-size:  0.875rem;
    padding:    0.375rem 0;
    text-align: right;
    vertical-align: middle;
}

.gcm-order-summary__totals th {
    text-align:  left;
    font-weight: 400;
    color:       var(--gcm-text-muted);
}

.gcm-order-summary__total-row th,
.gcm-order-summary__total-row td {
    font-size:  1rem;
    font-weight: 600;
    padding-top: 0.625rem;
    border-top:  1px solid var(--gcm-border-dark);
    color:       var(--gcm-text);
}

/* Stripe elements placeholder */
.gcm-stripe-elements {
    border:        1px solid var(--gcm-border-dark);
    border-radius: var(--gcm-radius-md);
    padding:       1.125rem;
    min-height:    6rem;
    background:    var(--gcm-bg-subtle);
    margin-bottom: 1rem;
}

.gcm-stripe-loading {
    font-size: 0.875rem;
    color:     var(--gcm-text-muted);
    text-align: center;
    padding:   1.5rem 0;
    margin:    0;
}


/* ── 16. Slot Picker ───────────────────────────────────────────────────────── */

.gcm-slot-list {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   0.5rem;
    margin-top:            0.5rem;
}

.gcm-slot-btn {
    width:            100%;
    font-family:      var(--gcm-font-sans);
    font-size:        0.875rem;
    font-weight:      500;
    color:            var(--gcm-primary);
    background-color: var(--gcm-primary-light);
    border:           1px solid var(--gcm-primary-light);
    border-radius:    var(--gcm-radius);
    padding:          0.5rem 0.25rem;
    text-align:       center;
    cursor:           pointer;
    transition:       background-color 130ms ease, border-color 130ms ease, color 130ms ease;
}

.gcm-slot-btn:hover {
    background-color: var(--gcm-primary);
    border-color:     var(--gcm-primary);
    color:            #ffffff;
}

.gcm-slot-btn--selected {
    background-color: var(--gcm-primary);
    border-color:     var(--gcm-primary-dark);
    color:            #ffffff;
}


/* ── 17. Order Confirmation ────────────────────────────────────────────────── */

.gcm-order-confirmation {
    max-width: 680px;
    margin:    0 auto;
}

.gcm-order-confirmation__hero {
    text-align:    center;
    padding:       2.5rem 1.5rem;
    border-bottom: 1px solid var(--gcm-border);
    margin-bottom: 2rem;
}

.gcm-order-confirmation__icon {
    display:          block;
    width:            3.5rem;
    height:           3.5rem;
    line-height:      3.5rem;
    margin:           0 auto 1.125rem;
    background-color: var(--gcm-primary);
    border-radius:    50%;
    font-size:        1.5rem;
    color:            #ffffff;
    text-align:       center;
}

.gcm-order-confirmation__title {
    font-family:   var(--gcm-font-serif);
    font-size:     2rem;
    font-weight:   700;
    color:         var(--gcm-text);
    margin:        0 0 0.625rem;
}

.gcm-order-confirmation__subtitle {
    font-size: 1rem;
    color:     var(--gcm-text-muted);
    margin:    0;
}

.gcm-order-confirmation__details {
    margin-bottom: 2rem;
}

.gcm-order-confirmation__meta {
    width:           100%;
    border-collapse: collapse;
    font-size:       0.9375rem;
}

.gcm-order-confirmation__meta th,
.gcm-order-confirmation__meta td {
    padding:    0.625rem 0.875rem;
    vertical-align: top;
}

.gcm-order-confirmation__meta th {
    width:       9rem;
    font-weight: 600;
    color:       var(--gcm-text-muted);
    font-size:   0.8125rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align:  left;
    border-bottom: 1px solid var(--gcm-border);
    border-right:  1px solid var(--gcm-border);
    background:  var(--gcm-bg-subtle);
}

.gcm-order-confirmation__meta td {
    color:       var(--gcm-text);
    border-bottom: 1px solid var(--gcm-border);
}

.gcm-order-confirmation__meta tr:first-child th,
.gcm-order-confirmation__meta tr:first-child td {
    border-top: 1px solid var(--gcm-border);
}

.gcm-order-confirmation__items {
    margin-bottom: 2rem;
}

.gcm-order-confirmation__items h2 {
    font-family:   var(--gcm-font-serif);
    font-size:     1.125rem;
    font-weight:   600;
    margin:        0 0 1rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--gcm-border);
}

.gcm-order-confirmation__items-table {
    width:           100%;
    border-collapse: collapse;
    font-size:       0.9375rem;
}

.gcm-order-confirmation__items-table thead th {
    font-size:       0.75rem;
    font-weight:     600;
    letter-spacing:  0.05em;
    text-transform:  uppercase;
    color:           var(--gcm-text-muted);
    padding:         0.5rem 0.75rem;
    text-align:      left;
    border-bottom:   2px solid var(--gcm-border-dark);
}

.gcm-order-confirmation__items-table tbody td {
    padding:     0.6875rem 0.75rem;
    border-bottom: 1px solid var(--gcm-border);
    vertical-align: middle;
}

.gcm-order-confirmation__items-table tfoot th,
.gcm-order-confirmation__items-table tfoot td {
    padding:    0.5rem 0.75rem;
    text-align: right;
    font-size:  0.875rem;
}

.gcm-order-confirmation__items-table tfoot th {
    text-align:  left;
    font-weight: 400;
    color:       var(--gcm-text-muted);
}

.gcm-order-confirmation__total-row th,
.gcm-order-confirmation__total-row td {
    font-size:  1rem;
    font-weight: 600;
    padding-top: 0.75rem;
    border-top:  2px solid var(--gcm-border-dark);
    color:       var(--gcm-text);
}

.gcm-order-confirmation__actions {
    display:     flex;
    gap:         0.875rem;
    flex-wrap:   wrap;
    padding-top: 1rem;
    border-top:  1px solid var(--gcm-border);
    margin-top:  1rem;
}


/* ── 18. Utility Classes ───────────────────────────────────────────────────── */

.gcm-sr-only {
    position: absolute;
    width:    1px;
    height:   1px;
    padding:  0;
    margin:   -1px;
    overflow: hidden;
    clip:     rect(0, 0, 0, 0);
    border:   0;
}

.gcm-text-center {
    text-align: center;
}

.gcm-text-right {
    text-align: right;
}

.gcm-text-muted {
    color: var(--gcm-text-muted);
}


/* ── 19. Responsive Breakpoints ────────────────────────────────────────────── */

/* Tablet — up to 960px */
@media screen and (max-width: 960px) {
    .gcm-shop__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gcm-product {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gcm-membership-plans {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .gcm-checkout-payment__layout {
        grid-template-columns: 1fr;
    }
}

/* Tablet — up to 768px */
@media screen and (max-width: 768px) {
    .gcm-checkout__steps::before {
        display: none;
    }

    .gcm-checkout__steps {
        gap: 0.5rem;
    }

    .gcm-checkout__step-label {
        font-size: 0.6875rem;
    }

    .gcm-checkout__content {
        padding: 1.25rem;
    }

    .gcm-form-row--half,
    .gcm-form-row--thirds {
        grid-template-columns: 1fr;
    }

    .gcm-product__gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .gcm-slot-list {
        grid-template-columns: repeat(2, 1fr);
    }

    body.gcm-storefront .gcm-checkout__aside {
        order: 0;
    }
    body.gcm-storefront .cards {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    body.gcm-storefront .league .img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

/* Mobile — up to 480px */
@media screen and (max-width: 480px) {

    body.gcm-storefront .cards {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }

    body.gcm-storefront .league .img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    body.gcm-storefront .gcm-checkout__aside {
        order: 0;
    }
    .gcm-shop__grid {
        grid-template-columns: 1fr;
    }

    .gcm-product__title {
        font-size: 1.5rem;
    }

    .gcm-order-confirmation__title {
        font-size: 1.5rem;
    }

    .gcm-checkout__steps {
        flex-direction: row;
        align-items:    flex-start;
        gap:            0.75rem;
        margin-bottom:  1.5rem;
    }

    .gcm-checkout__step {
        display:     flex;
        align-items: center;
        gap:         0.625rem;
        text-align:  left;
    }

    .gcm-checkout__step-num {
        margin: 0;
        flex-shrink: 0;
    }

    .gcm-slot-list {
        grid-template-columns: 1fr 1fr;
    }

    .gcm-order-confirmation__actions {
        flex-direction: column;
    }

    .gcm-order-confirmation__actions .gcm-btn {
        width: 100%;
        text-align: center;
    }
}


/* =============================================================================
   Bahama Design Overlay � Phase 3 UI integration
   Source of truth: BahamaGolfStore/light-style.css
   Tokens: Oswald (display) + Inter (body), --green primary, soft mint surfaces.
   Re-themes all existing .gcm-* shortcode markup; no class renames required.
   ============================================================================= */

:root {
    /* Bahama palette */
    --gcm-bah-bg:       #F2F6F4;
    --gcm-bah-bg2:      #FFFFFF;
    --gcm-bah-text:     #0A1412;
    --gcm-bah-muted:    rgba(10,20,18,.66);
    --gcm-bah-stroke:   rgba(10,20,18,.14);
    --gcm-bah-green:    #18A77A;
    --gcm-bah-green2:   #0E7C66;
    --gcm-bah-gold:     #C8A45A;
    --gcm-bah-radius:   18px;
    --gcm-bah-shadow:   0 14px 40px rgba(10,20,18,.10);

    /* Re-point existing tokens so legacy rules inherit the new look */
    --gcm-primary:        var(--gcm-bah-green);
    --gcm-primary-dark:   var(--gcm-bah-green2);
    --gcm-primary-light:  rgba(24,167,122,.10);
    --gcm-accent:         var(--gcm-bah-gold);
    --gcm-text:           var(--gcm-bah-text);
    --gcm-text-muted:     var(--gcm-bah-muted);
    --gcm-bg:             var(--gcm-bah-bg2);
    --gcm-bg-subtle:      var(--gcm-bah-bg);
    --gcm-bg-light:       rgba(10,20,18,.04);
    --gcm-border:         var(--gcm-bah-stroke);
    --gcm-border-dark:    rgba(10,20,18,.22);
    --gcm-radius:         14px;
    --gcm-radius-md:      var(--gcm-bah-radius);
    --gcm-shadow:         var(--gcm-bah-shadow);
    --gcm-shadow-md:      var(--gcm-bah-shadow);
    --gcm-font-serif:     'Oswald', system-ui, sans-serif;
    --gcm-font-sans:      'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Scope all overlays to plugin containers so we never bleed into the host theme. */
.gcm-shop,
.gcm-product,
.gcm-cart,
.gcm-checkout,
.gcm-checkout--empty,
.gcm-membership-plans,
.gcm-order-confirmation,
.gcm-account,
.gcm-booking-widget,
.gcm-mini-cart-drawer,
.gcm-mini-cart-toggle {
    font-family: var(--gcm-font-sans);
    color: var(--gcm-bah-text);
}

.gcm-shop h1, .gcm-shop h2, .gcm-shop h3,
.gcm-product h1, .gcm-product h2, .gcm-product h3,
.gcm-cart h1, .gcm-cart h2, .gcm-cart h3,
.gcm-checkout h1, .gcm-checkout h2, .gcm-checkout h3,
.gcm-membership-plans h1, .gcm-membership-plans h2, .gcm-membership-plans h3,
.gcm-order-confirmation h1, .gcm-order-confirmation h2, .gcm-order-confirmation h3,
.gcm-account h1, .gcm-account h2, .gcm-account h3,
.gcm-booking-widget h2, .gcm-booking-widget h3 {
    font-family: var(--gcm-font-serif);
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--gcm-bah-text);
}

/* Buttons � Bahama pill style */
.gcm-shop .gcm-btn,
.gcm-product .gcm-btn,
.gcm-cart .gcm-btn,
.gcm-checkout .gcm-btn,
.gcm-membership-plans .gcm-btn,
.gcm-order-confirmation .gcm-btn,
.gcm-account .gcm-btn,
.gcm-booking-widget .gcm-btn,
.gcm-mini-cart-drawer .gcm-btn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.85);
    color: var(--gcm-bah-text);
    font-weight: 600;
    font-family: var(--gcm-font-sans);
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}
.gcm-shop .gcm-btn:hover,
.gcm-product .gcm-btn:hover,
.gcm-cart .gcm-btn:hover,
.gcm-checkout .gcm-btn:hover,
.gcm-membership-plans .gcm-btn:hover,
.gcm-order-confirmation .gcm-btn:hover,
.gcm-account .gcm-btn:hover,
.gcm-booking-widget .gcm-btn:hover,
.gcm-mini-cart-drawer .gcm-btn:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.96);
    border-color: rgba(0,0,0,.18);
}
.gcm-shop .gcm-btn--primary,
.gcm-product .gcm-btn--primary,
.gcm-cart .gcm-btn--primary,
.gcm-checkout .gcm-btn--primary,
.gcm-membership-plans .gcm-btn--primary,
.gcm-order-confirmation .gcm-btn--primary,
.gcm-account .gcm-btn--primary,
.gcm-booking-widget .gcm-btn--primary,
.gcm-mini-cart-drawer .gcm-btn--primary {
    background: linear-gradient(135deg, var(--gcm-bah-green), var(--gcm-bah-green2));
    border-color: rgba(14,124,102,.35);
    color: #03110B;
    box-shadow: 0 14px 28px rgba(14,124,102,.18);
}
.gcm-shop .gcm-btn--primary:hover,
.gcm-product .gcm-btn--primary:hover,
.gcm-cart .gcm-btn--primary:hover,
.gcm-checkout .gcm-btn--primary:hover,
.gcm-membership-plans .gcm-btn--primary:hover,
.gcm-order-confirmation .gcm-btn--primary:hover,
.gcm-account .gcm-btn--primary:hover,
.gcm-booking-widget .gcm-btn--primary:hover,
.gcm-mini-cart-drawer .gcm-btn--primary:hover {
    background: linear-gradient(135deg, #3AF0AA, #12C88A);
    color: #03110B;
}
.gcm-shop .gcm-btn--outline,
.gcm-product .gcm-btn--outline,
.gcm-cart .gcm-btn--outline,
.gcm-checkout .gcm-btn--outline,
.gcm-membership-plans .gcm-btn--outline,
.gcm-order-confirmation .gcm-btn--outline,
.gcm-account .gcm-btn--outline {
    background: transparent;
    border-color: rgba(0,0,0,.14);
    color: var(--gcm-bah-text);
}
.gcm-shop .gcm-btn--lg,
.gcm-product .gcm-btn--lg,
.gcm-checkout .gcm-btn--lg {
    padding: 14px 22px;
    font-size: 15px;
}

/* Inputs */
.gcm-shop input, .gcm-shop select, .gcm-shop textarea,
.gcm-product input, .gcm-product select, .gcm-product textarea,
.gcm-cart input, .gcm-cart select, .gcm-cart textarea,
.gcm-checkout input, .gcm-checkout select, .gcm-checkout textarea,
.gcm-account input, .gcm-account select, .gcm-account textarea,
.gcm-booking-widget input, .gcm-booking-widget select, .gcm-booking-widget textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.14);
    background: rgba(255,255,255,.85);
    color: var(--gcm-bah-text);
    font-family: var(--gcm-font-sans);
    font-size: 14px;
    outline: none;
    transition: border-color .18s ease, background .18s ease;
}
.gcm-shop input:focus, .gcm-shop select:focus, .gcm-shop textarea:focus,
.gcm-product input:focus, .gcm-product select:focus, .gcm-product textarea:focus,
.gcm-cart input:focus, .gcm-cart select:focus, .gcm-cart textarea:focus,
.gcm-checkout input:focus, .gcm-checkout select:focus, .gcm-checkout textarea:focus,
.gcm-account input:focus, .gcm-account select:focus, .gcm-account textarea:focus,
.gcm-booking-widget input:focus, .gcm-booking-widget select:focus, .gcm-booking-widget textarea:focus {
    border-color: rgba(14,124,102,.45);
    background: #fff;
}

/* -- Generic card surface --------------------------------------------------- */
.gcm-card {
    background: rgba(10,20,18,.04);
    border: 1px solid var(--gcm-bah-stroke);
    border-radius: var(--gcm-bah-radius);
    box-shadow: var(--gcm-bah-shadow);
    backdrop-filter: blur(12px);
    padding: 22px;
}

/* -- Shop grid -------------------------------------------------------------- */
.gcm-shop__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    border: 0;
}
.gcm-shop .gcm-filter-tab {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.75);
    color: var(--gcm-bah-muted);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .02em;
    text-decoration: none;
}
.gcm-shop .gcm-filter-tab:hover { background: rgba(255,255,255,.95); color: var(--gcm-bah-text); border-color: var(--gcm-bah-stroke); }
.gcm-shop .gcm-filter-tab--active,
.gcm-shop .gcm-filter-tab--active:hover {
    background: linear-gradient(135deg, var(--gcm-bah-green), var(--gcm-bah-green2));
    border-color: rgba(14,124,102,.35);
    color: #03110B;
    box-shadow: 0 10px 22px rgba(14,124,102,.18);
}
.gcm-shop__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
.gcm-shop .gcm-product-card {
    padding: 16px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.78);
    box-shadow: none;
    transition: transform .18s ease, background .18s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.gcm-shop .gcm-product-card:hover { transform: translateY(-2px); background: rgba(255,255,255,.92); }
.gcm-shop .gcm-product-card__image {
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    margin-bottom: 14px;
}
.gcm-shop .gcm-product-card__image img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1);
    transition: transform .55s ease;
}
.gcm-shop .gcm-product-card:hover .gcm-product-card__image img { transform: scale(1.06); }
.gcm-shop .gcm-product-card__type {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(215,180,106,.18);
    border: 1px solid rgba(215,180,106,.32);
    color: rgba(15,23,32,.92);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}
.gcm-shop .gcm-product-card__title {
    font-family: var(--gcm-font-serif);
    font-size: 20px;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.gcm-shop .gcm-product-card__excerpt { color: var(--gcm-bah-muted); font-size: 14px; line-height: 1.55; margin: 0 0 12px; }
.gcm-shop .gcm-product-card__price { font-family: var(--gcm-font-serif); font-size: 22px; margin: 6px 0 14px; }
.gcm-shop .gcm-product-card__actions { margin-top: auto; padding: 0; }

/* -- Product detail --------------------------------------------------------- */
.gcm-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}
.gcm-product__media {
    border-radius: var(--gcm-bah-radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: var(--gcm-bah-shadow);
    background: #fff;
}
.gcm-product__featured-image img { width: 100%; height: auto; display: block; }
.gcm-product__gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 8px; }
.gcm-product__gallery-item { border-radius: 10px; overflow: hidden; border: 1px solid rgba(0,0,0,.08); }
.gcm-product__details {
    padding: 22px;
    border-radius: var(--gcm-bah-radius);
    background: rgba(255,255,255,.72);
    border: 1px solid var(--gcm-bah-stroke);
}
.gcm-product__type {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(215,180,106,.18);
    border: 1px solid rgba(215,180,106,.32);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}
.gcm-product__title { font-family: var(--gcm-font-serif); font-size: clamp(28px, 3vw, 40px); margin: 0 0 12px; }
.gcm-product__price { font-family: var(--gcm-font-serif); font-size: 28px; color: var(--gcm-bah-green2); margin: 0 0 14px; }
.gcm-product__short-desc { color: var(--gcm-bah-muted); font-size: 16px; line-height: 1.6; margin: 0 0 16px; }
.gcm-product__stock { font-size: 14px; color: var(--gcm-bah-muted); margin: 0 0 14px; }
.gcm-product__stock--out { color: #a8323a; font-weight: 700; }
.gcm-product__actions { margin: 6px 0 18px; }
.gcm-product__description { font-size: 15px; line-height: 1.7; color: rgba(15,23,32,.86); margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--gcm-bah-stroke); }

/* -- Checkout --------------------------------------------------------------- */
.gcm-checkout--empty {
    text-align: center;
    padding: 60px 24px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.72);
    box-shadow: var(--gcm-bah-shadow);
}
.gcm-checkout__steps {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0 0 24px;
    padding: 14px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.72);
    box-shadow: var(--gcm-bah-shadow);
}
.gcm-checkout__step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    color: var(--gcm-bah-muted);
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    border: 1px solid transparent;
}
.gcm-checkout__step--active {
    background: linear-gradient(135deg, var(--gcm-bah-green), var(--gcm-bah-green2));
    color: #03110B;
    border-color: rgba(14,124,102,.35);
    box-shadow: 0 10px 22px rgba(14,124,102,.18);
}
.gcm-checkout__step--done { color: var(--gcm-bah-green2); }
.gcm-checkout__step-num {
    width: 28px; height: 28px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.75);
    border: 1px solid var(--gcm-bah-stroke);
    font-family: var(--gcm-font-serif);
}
.gcm-checkout__step--active .gcm-checkout__step-num { background: rgba(255,255,255,.95); }

.gcm-checkout-step {
    padding: 26px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.78);
    box-shadow: var(--gcm-bah-shadow);
}
.gcm-checkout-step__title { font-family: var(--gcm-font-serif); font-size: 24px; margin: 0 0 18px; text-transform: uppercase; letter-spacing: .02em; }
.gcm-checkout-step__footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--gcm-bah-stroke); }

.gcm-form-row { display: grid; gap: 12px; margin-bottom: 12px; }
.gcm-form-row--half { grid-template-columns: 1fr 1fr; }
.gcm-form-row--thirds { grid-template-columns: 1fr 1fr 1fr; }
.gcm-form-group { display: grid; gap: 6px; margin-bottom: 12px; }
.gcm-form-group label { font-size: 13px; font-weight: 600; color: rgba(15,23,32,.78); }
.gcm-required { color: #a8323a; margin-left: 2px; }

.gcm-checkout-payment__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}
.gcm-checkout-payment__summary,
.gcm-checkout-payment__form {
    padding: 22px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.78);
    box-shadow: var(--gcm-bah-shadow);
}
.gcm-order-summary__items { list-style: none; margin: 0 0 14px; padding: 0; }
.gcm-order-summary__item { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--gcm-bah-stroke); font-size: 14px; }
.gcm-order-summary__item:last-child { border-bottom: 0; }
.gcm-order-summary__totals { width: 100%; border-collapse: collapse; margin-top: 14px; }
.gcm-order-summary__totals th, .gcm-order-summary__totals td { padding: 8px 0; text-align: left; font-size: 14px; }
.gcm-order-summary__totals td { text-align: right; }
.gcm-order-summary__total-row th, .gcm-order-summary__total-row td {
    border-top: 1px solid var(--gcm-bah-stroke);
    padding-top: 12px;
    font-family: var(--gcm-font-serif);
    font-size: 18px;
}
.gcm-stripe-elements { padding: 14px; border-radius: 14px; border: 1px solid var(--gcm-bah-stroke); background: #fff; min-height: 80px; }

.gcm-booking-summary-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 12px; }
.gcm-booking-summary-item {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.72);
}
.gcm-booking-summary-item h3 { margin: 0 0 6px; font-family: var(--gcm-font-serif); font-size: 16px; text-transform: uppercase; letter-spacing: .02em; }

/* -- Order confirmation ----------------------------------------------------- */
.gcm-order-confirmation { display: grid; gap: 22px; max-width: 760px; margin: 0 auto; }
.gcm-order-confirmation__hero {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.78);
    box-shadow: var(--gcm-bah-shadow);
}
.gcm-order-confirmation__icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gcm-bah-green), var(--gcm-bah-green2));
    color: #fff;
    font-size: 36px;
    margin-bottom: 14px;
    box-shadow: 0 14px 28px rgba(14,124,102,.22);
}
.gcm-order-confirmation__title { font-family: var(--gcm-font-serif); font-size: 36px; margin: 0 0 8px; }
.gcm-order-confirmation__subtitle { color: var(--gcm-bah-muted); font-size: 16px; margin: 0; }
.gcm-order-confirmation__details,
.gcm-order-confirmation__items {
    padding: 22px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.78);
    box-shadow: var(--gcm-bah-shadow);
}
.gcm-order-confirmation__meta { width: 100%; border-collapse: collapse; }
.gcm-order-confirmation__meta th, .gcm-order-confirmation__meta td { padding: 10px 0; text-align: left; font-size: 14px; }
.gcm-order-confirmation__meta th { color: var(--gcm-bah-muted); font-weight: 600; width: 40%; }
.gcm-order-confirmation__items-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.gcm-order-confirmation__items-table th, .gcm-order-confirmation__items-table td { padding: 10px 0; text-align: left; font-size: 14px; border-bottom: 1px dashed var(--gcm-bah-stroke); }
.gcm-order-confirmation__items-table th { color: var(--gcm-bah-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.gcm-order-confirmation__total-row th, .gcm-order-confirmation__total-row td { font-family: var(--gcm-font-serif); font-size: 18px; border-bottom: 0; }
.gcm-order-confirmation__actions { display: flex; gap: 12px; justify-content: center; }

/* -- Membership plans ------------------------------------------------------- */
.gcm-membership-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.gcm-membership-card {
    padding: 22px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.78);
    box-shadow: var(--gcm-bah-shadow);
    display: flex;
    flex-direction: column;
}
.gcm-membership-card__header { padding-bottom: 14px; border-bottom: 1px solid var(--gcm-bah-stroke); margin-bottom: 14px; }
.gcm-membership-card__title { font-family: var(--gcm-font-serif); font-size: 22px; margin: 0 0 8px; text-transform: uppercase; letter-spacing: .02em; }
.gcm-membership-card__price { font-family: var(--gcm-font-serif); font-size: 28px; color: var(--gcm-bah-green2); }
.gcm-membership-card__period { font-family: var(--gcm-font-sans); font-size: 13px; color: var(--gcm-bah-muted); margin-left: 4px; }
.gcm-membership-card__description { color: var(--gcm-bah-muted); font-size: 14px; line-height: 1.6; margin: 0 0 12px; }
.gcm-membership-card__perks { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 8px; }
.gcm-membership-card__perks li {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.08);
    font-size: 14px;
}
.gcm-perk-icon {
    width: 18px; height: 18px; border-radius: 6px;
    background: rgba(24,167,122,.14);
    border: 1px solid rgba(46,229,157,.35);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 auto;
    color: var(--gcm-bah-green2);
    font-size: 12px;
    margin-top: 2px;
}
.gcm-membership-card__footer { margin-top: auto; padding-top: 12px; }
.gcm-membership-card__footer .gcm-btn { width: 100%; }

/* -- Account portal --------------------------------------------------------- */
.gcm-account {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}
.gcm-account-nav {
    padding: 14px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.78);
    box-shadow: var(--gcm-bah-shadow);
    position: sticky;
    top: 24px;
}
.gcm-account-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.gcm-account-nav a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    color: rgba(15,23,32,.78);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}
.gcm-account-nav a:hover { background: rgba(0,0,0,.04); color: var(--gcm-bah-text); }
.gcm-account-nav li.is-active a {
    background: linear-gradient(135deg, var(--gcm-bah-green), var(--gcm-bah-green2));
    color: #03110B;
    box-shadow: 0 10px 22px rgba(14,124,102,.18);
}
.gcm-account-body {
    padding: 26px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.78);
    box-shadow: var(--gcm-bah-shadow);
}
.gcm-account-body h2 { font-family: var(--gcm-font-serif); margin: 0 0 18px; text-transform: uppercase; letter-spacing: .02em; }
.gcm-account-body h3 { font-family: var(--gcm-font-serif); margin: 22px 0 10px; text-transform: uppercase; letter-spacing: .02em; font-size: 16px; }
.gcm-account-card {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.72);
    margin-bottom: 14px;
}
.gcm-account-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.gcm-account-stats .gcm-account-card { text-align: center; margin: 0; }
.gcm-account-stats strong { display: block; font-family: var(--gcm-font-serif); font-size: 26px; }
.gcm-account-stats span { color: var(--gcm-bah-muted); font-size: 13px; }
.gcm-account table { width: 100%; border-collapse: collapse; }
.gcm-account table th, .gcm-account table td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid var(--gcm-bah-stroke);
    font-size: 14px;
}
.gcm-account table th {
    color: var(--gcm-bah-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 600;
}
.gcm-account .gcm-pm-list { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 8px; }
.gcm-account .gcm-pm-list li {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.72);
    font-size: 14px;
}
.gcm-account .gcm-pm-list .button,
.gcm-account .gcm-membership-actions .button,
.gcm-account .gcm-profile-form .button,
.gcm-account .gcm-bookings-table .button {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.85);
    color: var(--gcm-bah-text);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}
.gcm-account .button-primary {
    background: linear-gradient(135deg, var(--gcm-bah-green), var(--gcm-bah-green2)) !important;
    border-color: rgba(14,124,102,.35) !important;
    color: #03110B !important;
    box-shadow: 0 14px 28px rgba(14,124,102,.18);
}
.gcm-account-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(24,167,122,.14);
    border: 1px solid rgba(46,229,157,.35);
    color: var(--gcm-bah-green2);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
}
.gcm-account-badge--muted { background: rgba(10,20,18,.06); border-color: var(--gcm-bah-stroke); color: var(--gcm-bah-muted); }
.gcm-account-empty { color: var(--gcm-bah-muted); padding: 14px 0; }

/* -- Booking widget --------------------------------------------------------- */
.gcm-booking-widget {
    padding: 22px;
    border-radius: var(--gcm-bah-radius);
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.78);
    box-shadow: var(--gcm-bah-shadow);
    display: grid;
    gap: 18px;
}
.gcm-booking-step h3 {
    font-family: var(--gcm-font-serif);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gcm-bah-muted);
    margin: 0 0 10px;
}
.gcm-booking-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
.gcm-booking-slots button,
.gcm-booking-slots .slot {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.85);
    color: var(--gcm-bah-text);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
.gcm-booking-slots .is-selected,
.gcm-booking-slots button.is-selected {
    background: linear-gradient(135deg, var(--gcm-bah-green), var(--gcm-bah-green2));
    border-color: rgba(14,124,102,.35);
    color: #03110B;
}
.gcm-booking-message { color: var(--gcm-bah-muted); font-size: 14px; min-height: 1.2em; }

/* -- Mini-cart (legacy inline + new floating drawer) ------------------------ */
.gcm-mini-cart__link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 999px;
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.85);
    color: var(--gcm-bah-text); text-decoration: none;
    font-weight: 600; font-size: 13px;
}

.gcm-mini-cart-toggle {
    position: fixed;
    right: 18px; bottom: 18px;
    z-index: 70;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(14,124,102,.35);
    background: linear-gradient(135deg, var(--gcm-bah-green), var(--gcm-bah-green2));
    color: #03110B;
    font-weight: 700;
    font-family: var(--gcm-font-sans);
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(0,0,0,.18);
}
.gcm-mini-cart-toggle__icon { font-size: 18px; }
.gcm-mini-cart-toggle__count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 22px; height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #fff;
    color: var(--gcm-bah-green2);
    font-size: 12px; font-weight: 800;
}
.gcm-mini-cart-toggle[hidden] { display: none !important; }

.gcm-mini-cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(420px, 92vw);
    z-index: 80;
    background: rgba(242,246,244,.98);
    border-left: 1px solid var(--gcm-bah-stroke);
    box-shadow: -20px 0 60px rgba(10,20,18,.18);
    transform: translateX(100%);
    transition: transform .28s ease;
    display: flex; flex-direction: column;
    backdrop-filter: blur(16px);
}
.gcm-mini-cart-drawer.is-open { transform: translateX(0); }
.gcm-mini-cart-drawer__backdrop {
    position: fixed; inset: 0;
    background: rgba(10,20,18,.32);
    z-index: 79;
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease;
}
.gcm-mini-cart-drawer__backdrop.is-open { opacity: 1; pointer-events: auto; }
.gcm-mini-cart-drawer__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--gcm-bah-stroke);
}
.gcm-mini-cart-drawer__title { font-family: var(--gcm-font-serif); margin: 0; text-transform: uppercase; letter-spacing: .04em; font-size: 18px; }
.gcm-mini-cart-drawer__close {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--gcm-bah-stroke); background: rgba(255,255,255,.85);
    cursor: pointer; font-size: 18px; color: var(--gcm-bah-text);
}
.gcm-mini-cart-drawer__body { flex: 1; overflow-y: auto; padding: 14px 20px; }
.gcm-mini-cart-drawer__items { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.gcm-mini-cart-drawer__item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--gcm-bah-stroke);
    background: rgba(255,255,255,.78);
    align-items: center;
}
.gcm-mini-cart-drawer__item-image { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; border: 1px solid var(--gcm-bah-stroke); }
.gcm-mini-cart-drawer__item-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gcm-mini-cart-drawer__item-title { font-family: var(--gcm-font-serif); font-size: 14px; text-transform: uppercase; letter-spacing: .02em; margin: 0 0 4px; }
.gcm-mini-cart-drawer__item-meta { font-size: 12px; color: var(--gcm-bah-muted); }
.gcm-mini-cart-drawer__item-price { font-family: var(--gcm-font-serif); font-size: 14px; text-align: right; white-space: nowrap; }
.gcm-mini-cart-drawer__empty { text-align: center; color: var(--gcm-bah-muted); padding: 40px 16px; }
.gcm-mini-cart-drawer__footer {
    padding: 16px 20px 20px;
    border-top: 1px solid var(--gcm-bah-stroke);
    display: grid;
    gap: 10px;
}
.gcm-mini-cart-drawer__totals { display: flex; justify-content: space-between; font-family: var(--gcm-font-serif); font-size: 18px; }
.gcm-mini-cart-drawer__actions { display: grid; gap: 8px; }
.gcm-mini-cart-drawer__actions .gcm-btn { width: 100%; }

/* -- Responsive ------------------------------------------------------------- */
@media (max-width: 960px) {
    .gcm-shop__grid,
    .gcm-membership-plans { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .gcm-product,
    .gcm-cart__form,
    .gcm-checkout-payment__layout,
    .gcm-account { grid-template-columns: 1fr; }
    .gcm-account-nav { position: static; }
    .gcm-cart__totals,
    .gcm-account-nav { position: static; }
}
@media (max-width: 640px) {
    .gcm-shop__grid,
    .gcm-membership-plans { grid-template-columns: 1fr; }
    .gcm-checkout__steps { flex-wrap: wrap; }
    .gcm-checkout-step__footer { flex-direction: column-reverse; }
    .gcm-checkout-step__footer .gcm-btn { width: 100%; }
    .gcm-form-row--half,
    .gcm-form-row--thirds { grid-template-columns: 1fr; }
    .gcm-account-stats { grid-template-columns: 1fr; }
    .gcm-mini-cart-toggle { right: 12px; bottom: 12px; padding: 10px 14px; }
}

/* ===========================================================================
   Storefront full-page chrome — exact Bahama header / nav / footer layout.
   Scoped to body.gcm-storefront (set by templates/storefront-page.php) so it
   never leaks into a host theme's own header/footer on non-store pages.
   =========================================================================== */
body.gcm-storefront {
    --gcm-sf-bg:     #F2F6F4;
    --gcm-sf-bg2:    #FFFFFF;
    --gcm-sf-text:   #0A1412;
    --gcm-sf-muted:  rgba(10,20,18,.66);
    --gcm-sf-stroke: rgba(10,20,18,.14);
    --gcm-sf-green:  #18A77A;
    --gcm-sf-green2: #0E7C66;
    --gcm-sf-radius: 18px;
    --gcm-sf-shadow: 0 14px 40px rgba(10,20,18,.10);
    --gcm-sf-max:    1180px;
    --gcm-sf-serif:  "Oswald", sans-serif;
    --gcm-sf-sans:   Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    /* Reference (light-style.css) variable names — so inline var() in the
       shortcode markup resolves identically to the Bahama design. */
    --bg:     #F2F6F4;
    --bg2:    #FFFFFF;
    --card:   rgba(10,20,18,.04);
    --card2:  rgba(10,20,18,.06);
    --stroke: rgba(10,20,18,.14);
    --text:   #0A1412;
    --muted:  rgba(10,20,18,.66);
    --green:  #18A77A;
    --green2: #0E7C66;
    --gold:   #C8A45A;
    --shadow: 0 14px 40px rgba(10,20,18,.10);
    --radius: 18px;
    --max:    1180px;

    margin: 0;
    font-family: var(--gcm-sf-sans);
    color: var(--gcm-sf-text);
    background:
        radial-gradient(1200px 700px at 15% -10%, rgba(24,167,122,.12), transparent 60%),
        radial-gradient(900px 600px at 90% 10%, rgba(215,180,106,.10), transparent 55%),
        linear-gradient(180deg, var(--gcm-sf-bg), var(--gcm-sf-bg2) 60%, var(--gcm-sf-bg2));
    overflow-x: hidden;
}
body.gcm-storefront a { color: inherit; text-decoration: none; }
body.gcm-storefront img { max-width: 100%; display: block; }
body.gcm-storefront .container { width: min(var(--gcm-sf-max), calc(100% - 40px)); margin-inline: auto; }
body.gcm-storefront .section { padding: 84px 0; }
body.gcm-storefront .kicker { color: var(--gcm-sf-muted); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; }
body.gcm-storefront .h2 {
    font-family: var(--gcm-sf-serif);
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.08;
    margin: 0 0 12px;
    letter-spacing: .02em;
    text-transform: uppercase;
}
body.gcm-storefront .lead { font-size: clamp(15px, 1.3vw, 18px); color: var(--gcm-sf-muted); line-height: 1.65; margin: 0; }
body.gcm-storefront .small { color: var(--gcm-sf-muted); font-size: 14px; line-height: 1.7; }

/* -- Buttons (header/footer chrome) ----------------------------------------- */
body.gcm-storefront .btn {
    display: inline-flex; gap: 10px; align-items: center; justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--gcm-sf-stroke);
    background: rgba(255,255,255,.85);
    color: var(--gcm-sf-text);
    font-weight: 600;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}
body.gcm-storefront .btn:hover { transform: translateY(-1px); background: rgba(255,255,255,.95); border-color: rgba(0,0,0,.18); }
body.gcm-storefront .btn:active { transform: translateY(0); }
body.gcm-storefront .btn-ghost { background: transparent; border-color: rgba(0,0,0,.14); }
body.gcm-storefront .btn .icon { width: 18px; height: 18px; display: inline-block; }
body.gcm-storefront .btn-primary {
    background: linear-gradient(135deg, var(--gcm-sf-green), var(--gcm-sf-green2));
    border-color: rgba(14,124,102,.35);
    color: #03110B;
    box-shadow: 0 14px 28px rgba(14,124,102,.18);
}
body.gcm-storefront .btn-primary:hover { background: linear-gradient(135deg, #3AF0AA, #12C88A); }

/* -- Shop: filter card + product grid (mirrors shop.html) -------------------- */
body.gcm-storefront .card {
    background: var(--card);
    border: 1px solid var(--gcm-sf-stroke);
    border-radius: var(--gcm-sf-radius);
    box-shadow: var(--gcm-sf-shadow);
    backdrop-filter: blur(12px);
}
body.gcm-storefront .tag {
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.75);
    color: rgba(15,23,32,.78);
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}
body.gcm-storefront .tag:hover { border-color: rgba(0,0,0,.18); color: var(--gcm-sf-text); }
body.gcm-storefront .cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
body.gcm-storefront .league {
    padding: 16px;
    border-radius: var(--gcm-sf-radius);
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.72);
    transition: transform .18s ease, background .18s ease;
    overflow: hidden;
    position: relative;
}
body.gcm-storefront .league:hover { transform: translateY(-2px); background: rgba(255,255,255,.88); }
body.gcm-storefront .league .img {
    height: 370px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.10);
    margin-bottom: 12px;
}
body.gcm-storefront .league .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
body.gcm-storefront .league:hover .img img { transform: scale(1.04); }
body.gcm-storefront .league h3 {
    font-family: var(--gcm-sf-serif);
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: .02em;
}
body.gcm-storefront .league p { margin: 0 0 12px; color: var(--gcm-sf-muted); line-height: 1.55; font-size: 14px; }
body.gcm-storefront .league .actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* -- Product detail (mirrors product.html) ---------------------------------- */
body.gcm-storefront .foot-title {
    font-family: var(--gcm-sf-serif);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 10px;
}
body.gcm-storefront .badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(215,180,106,.18);
    border: 1px solid rgba(215,180,106,.32);
    color: rgba(15,23,32,.92);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
body.gcm-storefront .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}
body.gcm-storefront .gcm-product { display: block; }
body.gcm-storefront .gcm-product__breadcrumb {
    font-size: 13px;
    color: var(--gcm-sf-muted);
    margin-bottom: 20px;
}
body.gcm-storefront .gcm-product__breadcrumb a { text-decoration: underline; }
body.gcm-storefront .gcm-product__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}
body.gcm-storefront .gcm-product__gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gcm-sf-stroke);
}
body.gcm-storefront .gcm-product__gallery-item img { width: 100%; height: 100%; object-fit: cover; }
body.gcm-storefront .gcm-product__description p { margin: 0 0 10px; color: rgba(15,23,32,.86); line-height: 1.6; }
body.gcm-storefront .gcm-product__description :last-child { margin-bottom: 0; }
body.gcm-storefront .gcm-product__stock { font-size: 14px; color: var(--gcm-sf-muted); margin: 12px 0; }
body.gcm-storefront .gcm-product__stock--out { color: #B3261E; font-weight: 600; }
body.gcm-storefront .gcm-qty__input {
    width: 80px;
    text-align: center;
    padding: 12px 10px;
    border-radius: 12px;
    border: 1px solid var(--gcm-sf-stroke);
    background: rgba(255,255,255,.85);
    color: var(--gcm-sf-text);
    font-weight: 600;
}
body.gcm-storefront .gcm-qty__btn { padding: 12px 16px; font-size: 18px; line-height: 1; }

/* -- Header ------------------------------------------------------------------ */
body.gcm-storefront .gcm-storefront-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 16px 0;
    transition: background .2s ease, border-color .2s ease, padding .2s ease;
    background: rgba(242,246,244,.72);
    border-bottom: 1px solid rgba(0,0,0,.08);
    backdrop-filter: blur(14px);
}
body.gcm-storefront .gcm-storefront-header.scrolled {
    background: rgba(242,246,244,.92);
    border-bottom-color: rgba(0,0,0,.10);
    padding: 10px 0;
}
body.gcm-storefront .gcm-storefront-header .nav {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
body.gcm-storefront .brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    font-family: var(--gcm-sf-serif);
}
body.gcm-storefront .logo {
    width: 36px; height: 36px; border-radius: 10px;
    background:
        radial-gradient(circle at 30% 30%, rgba(46,229,157,.75), rgba(16,185,129,.40) 45%, rgba(255,255,255,0) 70%),
        linear-gradient(135deg, rgba(255,255,255,.90), rgba(255,255,255,.55));
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 10px 22px rgba(0,0,0,.10);
    flex: 0 0 auto;
}
body.gcm-storefront nav ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 18px;
}
body.gcm-storefront nav a {
    color: rgba(15,23,32,.78);
    font-size: 14px; font-weight: 600;
    padding: 10px 10px; border-radius: 10px;
    transition: background .18s ease, color .18s ease;
}
body.gcm-storefront nav a:hover { background: rgba(0,0,0,.04); color: var(--gcm-sf-text); }
body.gcm-storefront .nav-actions { display: flex; align-items: center; gap: 10px; }

/* -- Mobile nav -------------------------------------------------------------- */
body.gcm-storefront .burger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 14px;
    border: 1px solid var(--gcm-sf-stroke);
    background: rgba(255,255,255,.85);
    align-items: center; justify-content: center;
    cursor: pointer;
}
body.gcm-storefront .burger span { width: 18px; height: 2px; background: var(--gcm-sf-text); position: relative; display: block; }
body.gcm-storefront .burger span::before,
body.gcm-storefront .burger span::after {
    content: ""; position: absolute; left: 0;
    width: 18px; height: 2px; background: var(--gcm-sf-text);
    transition: transform .18s ease, top .18s ease, opacity .18s ease;
}
body.gcm-storefront .burger span::before { top: -6px; }
body.gcm-storefront .burger span::after { top: 6px; }
body.gcm-storefront .mobile-panel {
    display: none;
    position: fixed; inset: 70px 14px auto 14px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 18px;
    padding: 14px;
    z-index: 60;
    box-shadow: var(--gcm-sf-shadow);
    backdrop-filter: blur(16px);
}
body.gcm-storefront .mobile-panel a { display: block; padding: 12px 12px; border-radius: 12px; }
body.gcm-storefront .mobile-panel a:hover { background: rgba(0,0,0,.04); }
body.gcm-storefront .mobile-panel .row { display: grid; gap: 10px; margin-top: 10px; }

/* -- Main / page head -------------------------------------------------------- */
body.gcm-storefront .gcm-storefront-main { min-height: 60vh; }
body.gcm-storefront .gcm-storefront-pagehead { padding-top: 120px; padding-bottom: 40px; }
body.gcm-storefront .gcm-storefront-content { padding-bottom: 80px; }

/* -- Footer ------------------------------------------------------------------ */
body.gcm-storefront .gcm-storefront-footer {
    border-top: 1px solid rgba(0,0,0,.10);
    background: rgba(0,0,0,.03);
    padding: 32px 0;
}
body.gcm-storefront .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 18px;
    align-items: start;
}
body.gcm-storefront .foot-title {
    font-family: var(--gcm-sf-serif);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 10px;
}
body.gcm-storefront .foot-links a {
    display: block;
    color: rgba(15,23,32,.80);
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
}
body.gcm-storefront .foot-links a:hover { color: var(--gcm-sf-text); }
body.gcm-storefront .gcm-storefront-footer__copy {
    border-top: 1px solid rgba(0,0,0,.10);
    padding-top: 14px;
    color: var(--gcm-sf-muted);
    font-size: 13px;
}

/* -- Storefront responsive --------------------------------------------------- */
@media (max-width: 980px) {
    body.gcm-storefront .footer-grid { grid-template-columns: 1fr 1fr; }
    body.gcm-storefront .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
    body.gcm-storefront nav { display: none; }
    body.gcm-storefront .burger { display: inline-flex; }
}
@media (max-width: 760px) {
    body.gcm-storefront .footer-grid { grid-template-columns: 1fr; }
    body.gcm-storefront .gcm-storefront-pagehead { padding-top: 104px; }
    body.gcm-storefront .cards { grid-template-columns: 1fr; }
    body.gcm-storefront .two-col { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Memberships & Lessons pages (Bahama)
   ───────────────────────────────────────────────────────────────────────── */

body.gcm-storefront .gcm-notice {
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(24,167,122,.08);
    color: var(--gcm-sf-text);
    border: 1px solid rgba(24,167,122,.22);
    font-size: 14px;
}
body.gcm-storefront .gcm-notice--error {
    background: rgba(200,40,40,.08);
    border-color: rgba(200,40,40,.28);
    color: #8a1d1d;
}

body.gcm-storefront .gcm-page-hero {
    text-align: center;
    padding: 36px 28px;
    margin-bottom: 28px;
    background:
        radial-gradient(900px 350px at 50% -20%, rgba(24,167,122,.12), transparent 60%),
        var(--gcm-sf-surface, #fff);
    border: 1px solid var(--gcm-sf-stroke);
    border-radius: var(--radius);
}
body.gcm-storefront .gcm-page-hero .badge {
    margin-bottom: 12px;
}
body.gcm-storefront .gcm-page-hero h1 {
    font-family: var(--gcm-sf-serif);
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.1;
    margin: 0 0 10px;
    color: var(--gcm-sf-text);
}
body.gcm-storefront .gcm-page-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--gcm-sf-muted);
    font-size: clamp(15px, 1.2vw, 17px);
}

/* ── Memberships grid ───────────────────────────────────────────────────── */

body.gcm-storefront .gcm-memberships__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    align-items: stretch;
}
body.gcm-storefront .gcm-membership-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid var(--gcm-sf-stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
body.gcm-storefront .gcm-membership-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(10,20,18,.14);
    border-color: rgba(24,167,122,.35);
}
body.gcm-storefront .gcm-membership-tile--featured {
    border-color: var(--green);
    box-shadow: 0 18px 48px rgba(24,167,122,.20);
}
body.gcm-storefront .gcm-membership-tile__ribbon {
    position: absolute;
    top: 14px;
    right: -36px;
    transform: rotate(35deg);
    background: var(--green);
    color: #fff;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 44px;
    box-shadow: 0 6px 14px rgba(24,167,122,.30);
}
body.gcm-storefront .gcm-membership-tile h3 {
    font-family: var(--gcm-sf-serif);
    font-size: 24px;
    margin: 0;
    color: var(--gcm-sf-text);
}
body.gcm-storefront .gcm-membership-tile__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    border-bottom: 1px solid var(--gcm-sf-stroke);
    padding-bottom: 14px;
}
body.gcm-storefront .gcm-membership-tile__price {
    font-family: var(--gcm-sf-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--green2, var(--green));
    line-height: 1;
}
body.gcm-storefront .gcm-membership-tile__period {
    color: var(--gcm-sf-muted);
    font-size: 14px;
}
body.gcm-storefront .gcm-membership-tile__desc {
    color: var(--gcm-sf-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}
body.gcm-storefront .gcm-membership-tile__section {
    border-top: 1px dashed var(--gcm-sf-stroke);
    padding-top: 12px;
}
body.gcm-storefront .gcm-membership-tile__section:first-of-type {
    border-top: 0;
    padding-top: 0;
}
body.gcm-storefront .gcm-membership-tile__section-title {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gcm-sf-muted);
    margin: 0 0 8px;
}
body.gcm-storefront .gcm-membership-tile__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
body.gcm-storefront .gcm-membership-tile__list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--gcm-sf-text);
    line-height: 1.5;
}
body.gcm-storefront .gcm-membership-tile__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(24,167,122,.5);
}
body.gcm-storefront .gcm-membership-tile__list--benefits li {
    color: var(--gcm-sf-muted);
}
body.gcm-storefront .gcm-membership-tile__cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
body.gcm-storefront .gcm-membership-tile__cta .btn { justify-content: center; }

/* ── Lessons page ───────────────────────────────────────────────────────── */

body.gcm-storefront .gcm-lessons__filters {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-bottom: 22px;
}
body.gcm-storefront .gcm-lessons__filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
body.gcm-storefront .gcm-lessons__filter-label {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gcm-sf-muted);
    margin-right: 4px;
}
body.gcm-storefront .gcm-lessons__search {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
body.gcm-storefront .gcm-lessons__search input[type="search"] {
    flex: 1 1 240px;
    padding: 10px 14px;
    border: 1px solid var(--gcm-sf-stroke);
    border-radius: 999px;
    background: #fff;
    font: inherit;
    color: var(--gcm-sf-text);
}
body.gcm-storefront .gcm-lessons__search input[type="search"]:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(24,167,122,.18);
}
body.gcm-storefront .gcm-lessons__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

body.gcm-storefront .gcm-lesson-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--gcm-sf-stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}
body.gcm-storefront .gcm-lesson-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(10,20,18,.14);
}
body.gcm-storefront .gcm-lesson-card .img {
    position: relative;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(600px 240px at 30% 10%, rgba(24,167,122,.18), transparent 60%),
        linear-gradient(160deg, #eaf6f1, #d6ede2);
    overflow: hidden;
}
body.gcm-storefront .gcm-lesson-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body.gcm-storefront .gcm-lesson-card__type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10,20,18,.78);
    color: #fff;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
body.gcm-storefront .gcm-lesson-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px 20px;
    flex: 1;
}
body.gcm-storefront .gcm-lesson-card h3 {
    font-family: var(--gcm-sf-serif);
    font-size: 20px;
    line-height: 1.25;
    margin: 0;
    color: var(--gcm-sf-text);
}
body.gcm-storefront .gcm-lesson-card__desc {
    color: var(--gcm-sf-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
body.gcm-storefront .gcm-lesson-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
body.gcm-storefront .gcm-lesson-card__chip {
    background: rgba(24,167,122,.10);
    color: var(--green2, var(--green));
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: .02em;
}
body.gcm-storefront .gcm-lesson-card__trainer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px dashed var(--gcm-sf-stroke);
}
body.gcm-storefront .gcm-lesson-card__trainer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--gcm-sf-stroke);
    flex: 0 0 40px;
}
body.gcm-storefront .gcm-lesson-card__trainer-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
body.gcm-storefront .gcm-lesson-card__trainer-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gcm-sf-text);
}
body.gcm-storefront .gcm-lesson-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
}
body.gcm-storefront .gcm-lesson-card__price {
    font-family: var(--gcm-sf-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--green2, var(--green));
    line-height: 1;
}

/* Filter "tag" chips reuse .tag when present; add active state */
body.gcm-storefront .gcm-lessons .tag.is-active,
body.gcm-storefront .gcm-lessons .tag[aria-pressed="true"] {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

@media (max-width: 720px) {
    body.gcm-storefront .gcm-memberships__grid,
    body.gcm-storefront .gcm-lessons__grid { grid-template-columns: 1fr; }
    body.gcm-storefront .gcm-page-hero { padding: 28px 18px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Checkout (Bahama) — full-width two-column layout with persistent
   order-summary aside. Renders correctly for product, membership,
   booking, lesson and one-to-one coaching items.
   ───────────────────────────────────────────────────────────────────────── */

.gcm-checkout__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
    width: 100%;
}
.gcm-checkout__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.gcm-checkout__aside {
    min-width: 0;
    position: sticky;
    top: 100px;
}

body.gcm-storefront .gcm-checkout {
    display: block;
    width: 100%;
    margin: 0 auto;
}

/* Two-column shell: main step content + sticky summary aside */
body.gcm-storefront .gcm-checkout__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
    width: 100%;
}
body.gcm-storefront .gcm-checkout__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
body.gcm-storefront .gcm-checkout__aside {
    min-width: 0;
    position: sticky;
    top: 100px;
}

/* Inside the storefront chrome, the existing step-progress + step cards get
   a slightly cleaner spacing so they fill the available width nicely. */
body.gcm-storefront .gcm-checkout__steps {
    margin: 0 0 28px;
}
body.gcm-storefront .gcm-checkout-step {
    width: 100%;
}
body.gcm-storefront .gcm-checkout-step__title {
    margin-top: 0;
}
body.gcm-storefront .gcm-checkout-step__subtitle {
    margin: -8px 0 18px;
    color: var(--gcm-sf-muted);
    font-size: 14.5px;
}

/* Neutralise the old per-step 2-col payment layout — the outer shell
   now owns columning, so the inner block should stretch full-width. */
body.gcm-storefront .gcm-checkout-payment__layout {
    display: block;
}
body.gcm-storefront .gcm-checkout-payment__form {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

/* ── Order summary aside ──────────────────────────────────────────────── */

body.gcm-storefront .gcm-order-summary {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--gcm-sf-stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
body.gcm-storefront .gcm-order-summary__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gcm-sf-stroke);
}
body.gcm-storefront .gcm-order-summary__title {
    font-family: var(--gcm-sf-serif);
    font-size: 20px;
    margin: 0;
    color: var(--gcm-sf-text);
    text-transform: none;
    letter-spacing: 0;
}
body.gcm-storefront .gcm-order-summary__count {
    color: var(--gcm-sf-muted);
    font-size: 13px;
    font-weight: 600;
}
body.gcm-storefront .gcm-order-summary__empty {
    margin: 0;
    color: var(--gcm-sf-muted);
    font-size: 14px;
    text-align: center;
    padding: 8px 0;
}
body.gcm-storefront .gcm-order-summary__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
body.gcm-storefront .gcm-order-summary__item {
    display: flex;
    gap: 12px;
    padding: 0 0 14px;
    border-bottom: 1px dashed var(--gcm-sf-stroke);
}
body.gcm-storefront .gcm-order-summary__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
body.gcm-storefront .gcm-order-summary__item-thumb {
    position: relative;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(24,167,122,.08);
    border: 1px solid var(--gcm-sf-stroke);
}
body.gcm-storefront .gcm-order-summary__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body.gcm-storefront .gcm-order-summary__item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--green2, var(--green));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(14,124,102,.35);
}
body.gcm-storefront .gcm-order-summary__item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
body.gcm-storefront .gcm-order-summary__item-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}
body.gcm-storefront .gcm-order-summary__item-title {
    font-weight: 600;
    color: var(--gcm-sf-text);
    font-size: 14.5px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
body.gcm-storefront .gcm-order-summary__item-price {
    font-family: var(--gcm-sf-serif);
    font-weight: 700;
    color: var(--green2, var(--green));
    font-size: 15px;
    white-space: nowrap;
}
body.gcm-storefront .gcm-order-summary__item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: var(--gcm-sf-muted);
    line-height: 1.4;
}
body.gcm-storefront .gcm-order-summary__item-type {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--green2, var(--green));
    background: rgba(24,167,122,.10);
    padding: 3px 8px;
    border-radius: 999px;
}
body.gcm-storefront .gcm-order-summary__item-detail {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(10,20,18,.04);
    padding: 3px 8px;
    border-radius: 999px;
}
body.gcm-storefront .gcm-order-summary__item-detail .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    line-height: 14px;
}
body.gcm-storefront .gcm-order-summary__item-booking {
    background: rgba(24,167,122,.12);
    color: var(--green2, var(--green));
    font-weight: 600;
}
body.gcm-storefront .gcm-order-summary__item-booking--pending {
    background: rgba(215,180,106,.18);
    color: #8a6a1d;
}
body.gcm-storefront .gcm-order-summary__slot {
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(24,167,122,.08);
    border: 1px solid rgba(24,167,122,.22);
    color: var(--gcm-sf-text);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}
body.gcm-storefront .gcm-order-summary__totals {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    border-top: 1px solid var(--gcm-sf-stroke);
    padding-top: 6px;
}
body.gcm-storefront .gcm-order-summary__totals th,
body.gcm-storefront .gcm-order-summary__totals td {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gcm-sf-text);
}
body.gcm-storefront .gcm-order-summary__totals th {
    text-align: left;
    font-weight: 500;
    color: var(--gcm-sf-muted);
}
body.gcm-storefront .gcm-order-summary__totals td {
    text-align: right;
}
body.gcm-storefront .gcm-order-summary__discount-row td {
    color: #a8323a;
    font-weight: 600;
}
body.gcm-storefront .gcm-order-summary__total-row th,
body.gcm-storefront .gcm-order-summary__total-row td {
    border-top: 1px solid var(--gcm-sf-stroke);
    padding-top: 14px;
    font-family: var(--gcm-sf-serif);
    font-size: 18px;
    color: var(--gcm-sf-text);
    font-weight: 700;
}
body.gcm-storefront .gcm-order-summary__total-row td strong {
    color: var(--green2, var(--green));
    font-weight: 700;
}
body.gcm-storefront .gcm-order-summary__trust {
    margin: 0;
    padding-top: 6px;
    color: var(--gcm-sf-muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
body.gcm-storefront .gcm-order-summary__trust .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    color: var(--green2, var(--green));
}

/* ── Responsive collapse ──────────────────────────────────────────────── */
@media (max-width: 980px) {
    body.gcm-storefront .gcm-checkout__layout {
        grid-template-columns: 1fr;
    }
    body.gcm-storefront .gcm-checkout__aside {
        position: static;
        order: 2; /* keep summary BELOW the form on mobile */
    }
    body.gcm-storefront .gcm-checkout__main {
        order: 1;
    }
}
@media (max-width: 560px) {
    body.gcm-storefront .gcm-order-summary {
        padding: 18px;
    }
    body.gcm-storefront .gcm-order-summary__item-thumb {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
    }
}