/*
Theme Name: Sarasota Box Office Child Theme
Template: sbo-core
Text Domain: sbo-child
Description: Child theme for Circus Golden Star. Colors and fonts are controlled via ACF Options.
Author: Sarasota Box Office
Version: 1.0.0
*/

/*
 * Site-specific CSS customizations go in src/styles/app.css
 * Colors are controlled via ACF Options > Theme Colors
 * Fonts are controlled via ACF Options > Theme Fonts
 *
 * Available CSS variables (set by ACF):
 * --sbo-colors-black
 * --sbo-colors-white
 * --sbo-colors-primary
 * --sbo-colors-secondary
 * --sbo-colors-tertiary-dark
 * --sbo-colors-tertiary-medium
 * --sbo-colors-tertiary-light
 * --sbo-font-headline-primary
 * --sbo-font-headline-secondary
 * --sbo-font-headline-tertiary
 * --sbo-font-headline-quartary
 * --sbo-font-body-primary
 */

/* ===========================================
   CLIENT-CUSTOMIZABLE COLORS
   Circus Golden Star (CGS)
   Deep Blue / Gold / Cream palette
   =========================================== */
:root {
    /* Text colors */
    --sbo-text-white: #FAFAFA;
    --sbo-text-light: #E8E8F0;
    --sbo-text-muted: #cccccc;
    --sbo-text-dim: #aaaaaa;

    /* Gold glow/shadow RGB (used with rgba() at various opacities) */
    --sbo-glow-gold-rgb: 212, 160, 23;

    /* Hero overlay RGB (dark blue tint over video) */
    --sbo-hero-overlay-rgb: 27, 43, 90;

    /* Stage frame / curtain colors (blue drapes) */
    --sbo-stage-curtain-fade: rgba(27, 43, 90, 0.6);
    --sbo-curtain-darkest: #0a1230;
    --sbo-curtain-dark: #0d1b3e;
    --sbo-curtain-medium: #1B2B5A;
    --sbo-curtain-deep: #0a152a;
    --sbo-curtain-deepest: #090e1f;

    /* Ribbon fold (banner button pseudo-elements) */
    --sbo-ribbon-fold: #1B2B5A;

    /* Cast card placeholder */
    --sbo-cast-placeholder-fill: rgba(13, 27, 62, 1);

    /* FAQ / Accordion */
    --sbo-faq-bg: rgba(0, 0, 0, 0.15);
    --sbo-accordion-bg: rgba(255, 255, 255, 0.05);
    --sbo-accordion-border: rgba(255, 255, 255, 0.08);
    --sbo-accordion-hover-bg: rgba(255, 255, 255, 0.1);

    /* Upcoming shows override colors */
    --sbo-us-title-color: #FAFAFA;
    --sbo-us-btn-bg: #D4A017;
    --sbo-us-btn-text: #1A2340;
    --sbo-us-btn-hover-bg: #FFD700;
    --sbo-us-dates-color: #FFD700;
    --sbo-us-city-color: #FAFAFA;
    --sbo-us-venue-color: #FAFAFA;
    --sbo-us-show-btn-bg: #FFD700;
    --sbo-us-show-btn-text: #1A2340;
    --sbo-us-arrow-color: #FFD700;

    /* ===========================================
       FONT OVERRIDES - Circus Golden Star
       Cinzel Decorative: Display/logo headlines
       Playfair Display: Section headlines
       Lora: Body text, buttons, UI
       =========================================== */
    --sbo-font-headline-primary: 'Cinzel Decorative', Georgia, serif;
    --sbo-font-headline-secondary: 'Playfair Display', Georgia, serif;
    --sbo-font-headline-tertiary: 'Playfair Display', Georgia, serif;
    --sbo-font-headline-quartary: 'Playfair Display', Georgia, serif;
    --sbo-font-body-primary: 'Lora', Georgia, serif;
    --sbo-elements-button-font: 'Lora', Georgia, serif;
}

/* ===========================================
   REVIEWS — "What Families Are Saying"
   =========================================== */
.module-reviews {
    background: #fff;
}

/* Testimonial cards grid */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 2rem;
    }
}

/* Individual card */
.review-card {
    background: #FFF8E7;
    border-radius: 20px;
    padding: 2rem;
    border-left: 4px solid var(--sbo-colors-tertiary-medium, #D4A017);
    position: relative;
}

/* Big decorative quote mark */
.review-card::before {
    content: '\201C';
    font-family: var(--sbo-font-headline-primary);
    font-size: 4rem;
    color: var(--sbo-colors-tertiary-light, #F5C842);
    opacity: 0.5;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}

/* Star rating */
.review-card__stars {
    color: var(--sbo-colors-tertiary-medium, #D4A017);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    --fa-primary-color: var(--sbo-colors-tertiary-medium, #D4A017);
    --fa-secondary-color: var(--sbo-colors-tertiary-light, #F5C842);
    --fa-secondary-opacity: 0.7;
}

.review-card__stars i {
    margin-right: 0.1rem;
}

/* Review text */
.review-card__text {
    font-family: var(--sbo-font-body-primary);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #334466;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

/* Author */
.review-card__author {
    font-family: var(--sbo-font-body-primary);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--sbo-colors-primary, #004EA2);
}

/* ===========================================
   TENT DIVIDER — reusable section separator
   =========================================== */
.tent-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 1.5rem;
}

.tent-divider::before,
.tent-divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--sbo-colors-tertiary-medium, #D4A017));
}

.tent-divider::after {
    background: linear-gradient(to left, transparent, var(--sbo-colors-tertiary-medium, #D4A017));
}

.tent-divider__icon {
    width: 32px;
    height: auto;
    display: block;
}

/* ===========================================
   CTA BLOCK — "Don't Miss the Magic!"
   =========================================== */
.module-cta-block {
    background: linear-gradient(135deg,
        var(--sbo-colors-tertiary-light, #F5C842),
        var(--sbo-colors-tertiary-medium, #D4A017),
        var(--sbo-colors-tertiary-dark, #A07810));
    position: relative;
    overflow: hidden;
}

/* Diamond checker overlay */
.module-cta-block__checker {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(45deg, white 25%, transparent 25%),
        linear-gradient(-45deg, white 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, white 75%),
        linear-gradient(-45deg, transparent 75%, white 75%);
    background-size: 24px 24px;
    background-position: 0 0, 0 12px, 12px -12px, -12px 0;
    pointer-events: none;
}

.module-cta-block .cta-block__heading {
    font-family: var(--sbo-font-headline-primary);
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.8rem;
}

.module-cta-block .cta-block__description {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--sbo-font-body-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
}

.module-cta-block .cta-block__btn {
    display: inline-block;
    background: #fff;
    color: var(--sbo-colors-primary, #004EA2);
    padding: 1rem 2.5rem;
    font-family: var(--sbo-font-body-primary);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.module-cta-block .cta-block__btn i {
    margin-right: 0.4rem;
    --fa-primary-color: var(--sbo-colors-primary, #004EA2);
    --fa-secondary-color: var(--sbo-colors-tertiary-medium, #D4A017);
    --fa-secondary-opacity: 0.7;
}

.module-cta-block .cta-block__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
    background: #fff;
    color: var(--sbo-colors-primary, #004EA2);
}

/* ===========================================
   UPCOMING SHOWS SECTION — CGS dark starfield
   =========================================== */
.module-upcoming-shows {
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, var(--sbo-colors-primary, #1B2B5A) 0%, #0d1b3e 100%);
}

.module-upcoming-shows .cgs-section-header {
    margin-bottom: 2rem;
}

/* Star dots on dark bg */
.module-upcoming-shows::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 70% 30%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.2) 50%, transparent 100%);
    opacity: 0.5;
}

.cgs-section-intro {
    font-size: 1.125rem;
    color: rgba(232, 232, 240, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--sbo-font-body-primary);
}

/* Upcoming Shows Cards — single column rows */
.sh-upcoming-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    max-width: 800px;
    margin: 0 auto;
}

/* Individual Show Card — horizontal row style */
.sh-upcoming-card {
    display: grid !important;
    grid-template-columns: 80px 1fr auto !important;
    align-items: center !important;
    gap: 1.5rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(var(--sbo-glow-gold-rgb), 0.15) !important;
    border-radius: 0.75rem !important;
    padding: 1.25rem 1.75rem !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
}

.sh-upcoming-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--sbo-colors-tertiary-medium, #D4A017) !important;
    transform: translateX(4px) !important;
}

/* Date badge — large day + month label */
.sh-upcoming-card__date {
    text-align: center !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sh-upcoming-card__day-num {
    font-family: var(--sbo-font-headline-secondary, 'Playfair Display', serif) !important;
    font-size: 2.25rem !important;
    font-weight: 900 !important;
    color: var(--sbo-colors-tertiary-light, #FFD700) !important;
    line-height: 1 !important;
}

.sh-upcoming-card__day-abbr {
    font-size: 0.8125rem !important;
    color: var(--sbo-colors-tertiary-light, #FFD700) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    font-weight: 400 !important;
    background: transparent !important;
    line-height: 1 !important;
    margin-top: 0.125rem !important;
}

/* Card details (city + time) — no special bg, inline */
.sh-upcoming-card__details {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    text-align: left !important;
    display: block !important;
    min-height: auto !important;
}

.sh-upcoming-card__month {
    display: none !important;
}

.sh-upcoming-card__city {
    font-family: var(--sbo-font-headline-secondary, 'Playfair Display', serif) !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #E8E8F0 !important;
    text-transform: none !important;
    margin-bottom: 0.25rem !important;
}

.sh-upcoming-card__time {
    font-size: 0.875rem !important;
    color: rgba(232, 232, 240, 0.5) !important;
}

/* Action button — "Buy Tickets" pill */
.sh-upcoming-card__action {
    display: inline-block !important;
    background: var(--sbo-colors-tertiary-medium, #D4A017) !important;
    color: var(--sbo-colors-black, #1A2340) !important;
    font-family: var(--sbo-font-body-primary) !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: 0.375rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    transition: background 0.3s !important;
}

.sh-upcoming-card__action:hover {
    background: var(--sbo-colors-tertiary-light, #FFD700) !important;
}

/* Hide location (shown in time line instead) */
.sh-upcoming-card__location {
    display: none !important;
}

/* Responsive — stack on mobile */
@media (max-width: 640px) {
    .sh-upcoming-card {
        grid-template-columns: 70px 1fr !important;
        gap: 1rem !important;
    }

    .sh-upcoming-card__action {
        grid-column: 1 / -1 !important;
        text-align: center !important;
    }
}

/* ===========================================
   CITIES ACCORDION — CGS style
   Full-width rows matching the blue/gold aesthetic
   =========================================== */
.sbo-city-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sbo-city-accordion__item {
    border: 3px solid var(--sbo-colors-tertiary-medium, #D4A017) !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1e3068 0%, #1B2B5A 40%, #0d1b3e 100%);
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.25);
    transition: all 0.3s ease;
    font-family: var(--sbo-font-body-primary);
    color: #ffffff;
}

.sbo-city-accordion__item:hover {
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.5);
}

.sbo-city-accordion__item--open {
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.5);
}

.sbo-city-accordion__toggle {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.sbo-city-accordion__toggle:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.sbo-city-accordion__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.sbo-city-accordion__dates {
    font-family: var(--sbo-font-body-primary);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sbo-colors-tertiary-medium, #D4A017);
}

.sbo-city-accordion__name {
    font-family: var(--sbo-font-body-primary);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.sbo-city-accordion__venue {
    font-family: var(--sbo-font-body-primary);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.sbo-city-accordion__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--sbo-colors-tertiary-medium, #D4A017);
    border: 2px solid var(--sbo-colors-tertiary-medium, #D4A017);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.sbo-city-accordion__item--open .sbo-city-accordion__icon {
    background: var(--sbo-colors-tertiary-medium, #D4A017);
    color: #1A2340;
}

.sbo-city-accordion__panel {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(212, 160, 23, 0.3);
    background: #ffffff;
    border-radius: 0 0 13px 13px;
}

/* Calendar inside accordion — no overrides, inherits site's existing calendar styles */

/* Upcoming cities container */
.sh-upcoming-cities {
    max-width: 900px;
    margin: 0 auto;
}

/* Don't apply negative margin inside accordion panels */
.sbo-city-accordion__panel .strawhouse-calendar {
    margin: 0 !important;
}

/* ===========================================
   CONTENT TYPE 1 - SINGLE COLUMN CENTERED
   "The Spindler Legacy" — blue gradient + checker
   =========================================== */
.module-content-single {
    background: linear-gradient(135deg, var(--sbo-colors-primary, #004EA2) 0%, var(--sbo-colors-secondary, #0066CC) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Diamond checker overlay */
.module-content-single__checker {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(45deg, white 25%, transparent 25%),
        linear-gradient(-45deg, white 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, white 75%),
        linear-gradient(-45deg, transparent 75%, white 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0;
    pointer-events: none;
}

.module-content-single .text--eyebrow,
.module-content-single p:first-child {
    color: var(--sbo-colors-tertiary-light, #F5C842);
    font-family: var(--sbo-font-body-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.module-content-single h2,
.module-content-single .text--h2 {
    font-family: var(--sbo-font-headline-primary);
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

/* Bold text inside h2 = gold highlight */
.module-content-single h2 strong {
    color: var(--sbo-colors-tertiary-light, #F5C842);
    font-weight: inherit;
}

.module-content-single p {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--sbo-font-body-primary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Blockquote = italic lighter quote */
.module-content-single blockquote {
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Citation line after blockquote — small gold uppercase */
.module-content-single blockquote + p {
    color: var(--sbo-colors-tertiary-light, #F5C842);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.module-content-single .btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--sbo-colors-black, #1A2340);
    padding: 1rem 2.5rem;
    font-family: var(--sbo-font-body-primary);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(255, 165, 0, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.module-content-single .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.7);
    color: var(--sbo-colors-black, #1A2340);
}

/* ===========================================
   FRENCH EXPERIENCE SECTION
   (The French Experience Comes to America)
   Apply via unique_id="french-experience"
   =========================================== */
#french-experience,
.module-french-experience {

    color: #ffffff !important;
    overflow: visible !important;
    position: relative;
}

.fe-section {
    position: relative;
    overflow: visible;
    min-height: 100%;
}

/* Header Section */
#french-experience .fe-header,
.module-french-experience .fe-header {
    text-align: center;
    margin-bottom: 2rem;
}

#french-experience .fe-header__subtitle,
.module-french-experience .fe-header__subtitle {
    font-family: var(--sbo-font-headline-primary);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

#french-experience .fe-header__title,
.module-french-experience .fe-header__title {
    font-family: var(--sbo-font-headline-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    #french-experience .fe-header__title,
    .module-french-experience .fe-header__title {
        font-size: 3rem;
    }
}

/* Two Column Cards Grid */
#french-experience .fe-cards,
.module-french-experience .fe-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    #french-experience .fe-cards,
    .module-french-experience .fe-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Individual Card - Red gradient with cream/gold glow */
#french-experience .fe-card,
.module-french-experience .fe-card {
    background: radial-gradient(ellipse at center, #004EA2 0%, #003380 50%, #002266 100%);
    border: none;
    box-shadow: 0 0 30px rgba(255, 248, 220, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

#french-experience .fe-card__title,
.module-french-experience .fe-card__title {
    font-family: var(--sbo-font-headline-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4A017;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.3);
}

#french-experience .fe-card__content,
.module-french-experience .fe-card__content {
    font-family: var(--sbo-font-body-primary);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

/* Left Image - Ring Tossers (bottom left) */
.fe-image-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    max-width: 500px;
    z-index: 5;
    pointer-events: none;
}

.fe-image-left img {
    width: 100%;
    height: auto;
}

/* Right Image - Aerialist (top right) */
.fe-image-right {
    position: absolute;
    bottom: auto;
    top: 0;
    right: 0;
    width: 30%;
    max-width: 280px;
    z-index: 15;
    pointer-events: none;
}

.fe-image-right img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .fe-image-left,
    .fe-image-right {
        display: none;
    }
}

/* Footer Section */
#french-experience .fe-footer,
.module-french-experience .fe-footer {
    text-align: center;
    margin-top: 2rem;

}

#french-experience .fe-footer__text,
.module-french-experience .fe-footer__text {
    font-family: var(--sbo-font-headline-primary);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

/* Red/Gold Button (OUR HISTORY) */
#french-experience .btn-red-gold,
.module-french-experience .btn-red-gold {
    display: inline-block;
    background: radial-gradient(ellipse at center, #004EA2 0%, #003380 100%);
    color: #F5C842;
    font-family: var(--sbo-font-headline-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border: 3px solid #D4A017;
    border-radius: 50px;
    transition: all 0.3s ease;
}

#french-experience .btn-red-gold:hover,
.module-french-experience .btn-red-gold:hover {
    background: radial-gradient(ellipse at center, #0066CC 0%, #004090 100%);
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.4);
}

/* ===========================================
   PRE-SALE BANNER
   Use content_type_1 with unique_id="presale-banner"
   =========================================== */
#presale-banner.module-content-single {
    background: var(--sbo-colors-tertiary-medium, #D4A017);
    padding: 2.5rem 1.5rem;
}

#presale-banner .module-content-single__checker {
    display: none;
}

#presale-banner .text--eyebrow,
#presale-banner p:first-child {
    display: none;
}

#presale-banner h2 {
    font-family: var(--sbo-font-headline-tertiary);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A2340;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

#presale-banner p {
    color: #1A2340;
    opacity: 0.85;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

#presale-banner .btn {
    background: #1A2340;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

#presale-banner .btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


/* ===========================================
   ABOUT HERO STRIP
   Use content_type_1 with unique_id="about-hero"
   =========================================== */
#about-hero.module-content-single {
    border-radius: 24px;
    max-width: 1100px;
    margin: 2rem auto;
}

#about-hero h2 {
    font-size: clamp(1.2rem, 3vw, 2rem);
}

#about-hero .module-content-single__checker {
    border-radius: 24px;
}

#about-hero p strong {
    color: var(--sbo-colors-tertiary-light, #F5C842);
    font-weight: inherit;
}

/* ===========================================
   TICKET BUTTON ICONS
   =========================================== */
.btn-ticket-icon {
    width: 1.25em;
    height: 1.25em;
    margin-right: 0.5em;
    vertical-align: -0.2em;
    display: inline-block;
}

/* Ticket icon for shortcode-generated buttons */
.strawhouse-calendar__action__btn::before,
.sh-upcoming-card__btn::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 0.4em;
    vertical-align: -0.15em;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9a3 3 0 0 1 3 3v1a3 3 0 0 1-3 3V9zm20 0v7a3 3 0 0 1-3-3v-1a3 3 0 0 1 3-3zM4 9V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v3M4 16v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2'/%3E%3Cline x1='9' y1='4' x2='9' y2='20'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

/* ===========================================
   CGS NAVIGATION
   =========================================== */
.cgs-nav {
    background: var(--sbo-colors-primary, #1B2B5A);
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 3px solid var(--sbo-colors-tertiary-medium, #D4A017);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cgs-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
}

/* Logo */
.cgs-nav__logo {
    font-family: var(--sbo-font-headline-primary);
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--sbo-colors-tertiary-light, #FFD700);
    text-decoration: none;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.cgs-nav__logo:hover {
    color: var(--sbo-colors-tertiary-light, #FFD700);
}

.cgs-nav__logo-star {
    font-size: 1.75rem;
}

/* Nav menu */
.cgs-nav__menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.cgs-nav__item {
    position: relative;
    margin: 0;
    padding: 0;
}

.cgs-nav__link {
    color: #E8E8F0;
    text-decoration: none;
    font-family: var(--sbo-font-body-primary);
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s;
    letter-spacing: 0.03em;
    display: block;
    white-space: nowrap;
}

.cgs-nav__link:hover {
    color: var(--sbo-colors-tertiary-light, #FFD700);
    background: rgba(255, 215, 0, 0.08);
}

/* Dropdown */
.cgs-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--sbo-colors-primary, #1B2B5A);
    border: 1px solid rgba(var(--sbo-glow-gold-rgb), 0.15);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    min-width: 180px;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cgs-nav__item.group:hover .cgs-nav__dropdown,
.cgs-nav__item:hover .cgs-nav__dropdown {
    display: block;
}

.cgs-nav__dropdown-item {
    margin: 0;
    padding: 0;
}

.cgs-nav__dropdown-item .cgs-nav__link {
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    font-size: 0.875rem;
}

/* Get Tickets CTA */
.cgs-nav__cta {
    background: var(--sbo-colors-tertiary-medium, #D4A017);
    color: var(--sbo-colors-primary, #1B2B5A);
    font-family: var(--sbo-font-body-primary);
    font-weight: 700;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.cgs-nav__cta:hover {
    background: var(--sbo-colors-tertiary-light, #FFD700);
    color: var(--sbo-colors-primary, #1B2B5A);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(var(--sbo-glow-gold-rgb), 0.4);
}

/* Right side */
.cgs-nav__right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Burger color override */
.cgs-nav .hamburger-inner,
.cgs-nav .hamburger-inner::before,
.cgs-nav .hamburger-inner::after {
    background-color: var(--sbo-colors-tertiary-medium, #D4A017);
}

/* Hide old header styles that might leak */
#hdr {
    padding: 0 !important;
}

@media (max-width: 1023px) {
    .cgs-nav__inner {
        height: 60px;
    }

    .cgs-nav__logo {
        font-size: 1.125rem;
    }

    .cgs-nav__logo-star {
        font-size: 1.375rem;
    }
}


/* ===========================================
   CGS HERO SECTION
   Circus Golden Star — Aurora Borealis
   =========================================== */

/* Hero container */
.cgs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(58, 86, 165, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(139, 26, 26, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 26, 26, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0d1b3e 0%, #1B2B5A 40%, #1e3068 100%);
    overflow: hidden;
    padding: 5rem 1.5rem;
}

/* Twinkling star field */
.cgs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 10% 15%, white 50%, transparent 100%),
        radial-gradient(2px 2px at 25% 35%, white 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 10%, white 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 45%, white 50%, transparent 100%),
        radial-gradient(2px 2px at 70% 20%, white 50%, transparent 100%),
        radial-gradient(1px 1px at 85% 55%, white 50%, transparent 100%),
        radial-gradient(2px 2px at 15% 70%, white 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 30% 85%, white 50%, transparent 100%),
        radial-gradient(1px 1px at 60% 75%, white 50%, transparent 100%),
        radial-gradient(2px 2px at 90% 40%, white 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 5% 50%, white 50%, transparent 100%),
        radial-gradient(1px 1px at 45% 60%, white 50%, transparent 100%),
        radial-gradient(2px 2px at 75% 85%, white 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 95% 15%, white 50%, transparent 100%),
        radial-gradient(1px 1px at 50% 30%, white 50%, transparent 100%);
    animation: cgs-twinkle 4s ease-in-out infinite alternate;
    opacity: 0.6;
}

/* Spotlight cone */
.cgs-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 800px;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes cgs-twinkle {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* Aurora borealis container */
.cgs-hero__aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Aurora bands */
.cgs-hero__aurora-band {
    position: absolute;
    width: 200%;
    height: 60%;
    top: -10%;
    left: -50%;
    opacity: 0;
    filter: blur(40px);
    mix-blend-mode: screen;
    animation: cgs-aurora 12s ease-in-out infinite;
}

.cgs-hero__aurora-band:nth-child(1) {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 200, 120, 0.25) 15%,
        rgba(0, 255, 150, 0.35) 30%,
        rgba(80, 200, 255, 0.25) 50%,
        rgba(0, 200, 120, 0.3) 70%,
        transparent 100%);
    animation-duration: 14s;
    transform: rotate(-5deg);
}

.cgs-hero__aurora-band:nth-child(2) {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(80, 180, 255, 0.2) 20%,
        rgba(120, 80, 220, 0.3) 40%,
        rgba(0, 220, 160, 0.25) 60%,
        rgba(80, 180, 255, 0.2) 80%,
        transparent 100%);
    animation-delay: -4s;
    animation-duration: 18s;
    top: -5%;
    transform: rotate(3deg);
}

.cgs-hero__aurora-band:nth-child(3) {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 255, 200, 0.18) 25%,
        rgba(0, 180, 255, 0.25) 50%,
        rgba(100, 255, 180, 0.18) 75%,
        transparent 100%);
    animation-delay: -8s;
    animation-duration: 20s;
    top: 5%;
    height: 40%;
    transform: rotate(-2deg);
}

@keyframes cgs-aurora {
    0% {
        opacity: 0.5;
        transform: translateX(-10%) rotate(-5deg) scaleY(0.8);
    }
    25% {
        opacity: 0.9;
        transform: translateX(5%) rotate(-3deg) scaleY(1.2);
    }
    50% {
        opacity: 0.7;
        transform: translateX(10%) rotate(2deg) scaleY(1);
    }
    75% {
        opacity: 1;
        transform: translateX(-5%) rotate(-1deg) scaleY(1.3);
    }
    100% {
        opacity: 0.5;
        transform: translateX(-10%) rotate(-5deg) scaleY(0.8);
    }
}

/* Hero content wrapper */
.cgs-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Badge pill */
.cgs-hero__badge {
    display: inline-block;
    padding: 0.5rem 1.75rem;
    border: 1px solid var(--sbo-colors-tertiary-medium, #D4A017);
    border-radius: 40px;
    color: var(--sbo-colors-tertiary-light, #FFD700);
    font-family: var(--sbo-font-body-primary);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    background: rgba(212, 160, 23, 0.08);
    animation: cgs-fadeDown 1s ease-out 0.2s both;
}

/* Five floating stars */
.cgs-hero__stars {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: cgs-fadeDown 1s ease-out 0.4s both;
}

.cgs-hero__stars span {
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    animation: cgs-star-float 3s ease-in-out infinite;
}

.cgs-hero__stars span:nth-child(1) { animation-delay: 0s; }
.cgs-hero__stars span:nth-child(2) { animation-delay: 0.3s; }
.cgs-hero__stars span:nth-child(3) { animation-delay: 0.6s; }
.cgs-hero__stars span:nth-child(4) { animation-delay: 0.9s; }
.cgs-hero__stars span:nth-child(5) { animation-delay: 1.2s; }

@keyframes cgs-star-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.1); }
}

/* Hero title */
.cgs-hero__title {
    font-family: var(--sbo-font-headline-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--sbo-colors-tertiary-light, #FFD700);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    text-shadow:
        0 0 40px rgba(255, 215, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.5);
    animation: cgs-fadeUp 1s ease-out 0.6s both;
}

.cgs-hero__title-circus {
    display: block;
    font-size: 0.45em;
    letter-spacing: 0.5em;
    color: #E8E8F0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
}

/* Subtitle */
.cgs-hero__subtitle {
    font-family: var(--sbo-font-body-primary);
    font-style: italic;
    font-size: clamp(1.125rem, 2.5vw, 1.625rem);
    color: #E8E8F0;
    margin-bottom: 2.5rem;
    animation: cgs-fadeUp 1s ease-out 0.8s both;
    opacity: 0.9;
}

/* CTA button group */
.cgs-hero__cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: cgs-fadeUp 1s ease-out 1s both;
    margin-bottom: 3.75rem;
}

/* Gold tickets button */
.cgs-hero__btn-tickets {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sbo-colors-tertiary-medium, #D4A017);
    color: var(--sbo-colors-black, #1A2340);
    font-family: var(--sbo-font-body-primary);
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(var(--sbo-glow-gold-rgb), 0.3);
}

.cgs-hero__btn-tickets:hover {
    background: var(--sbo-colors-tertiary-light, #FFD700);
    color: var(--sbo-colors-black, #1A2340);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(var(--sbo-glow-gold-rgb), 0.5);
}

/* Outline button */
.cgs-hero__btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #E8E8F0;
    font-family: var(--sbo-font-body-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(232, 232, 240, 0.3);
    border-radius: 0.5rem;
    text-decoration: none;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s;
}

.cgs-hero__btn-outline:hover {
    border-color: var(--sbo-colors-tertiary-light, #FFD700);
    color: var(--sbo-colors-tertiary-light, #FFD700);
    background: rgba(255, 215, 0, 0.05);
}

/* Act marquee chips */
.cgs-hero__acts {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: cgs-fadeUp 1s ease-out 1.2s both;
}

.cgs-hero__act {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(232, 232, 240, 0.6);
    font-family: var(--sbo-font-body-primary);
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cgs-hero__act-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sbo-colors-tertiary-medium, #D4A017);
    box-shadow: 0 0 8px var(--sbo-colors-tertiary-medium, #D4A017);
}

/* Entrance animations */
@keyframes cgs-fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cgs-fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .cgs-hero {
        min-height: 90vh;
    }

    .cgs-hero__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cgs-hero__acts {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cgs-hero__acts {
        display: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .cgs-hero::before,
    .cgs-hero__aurora-band,
    .cgs-hero__stars span {
        animation: none;
    }

    .cgs-hero__aurora-band {
        opacity: 0.5;
    }

    .cgs-hero::before {
        opacity: 0.6;
    }

    .cgs-hero__badge,
    .cgs-hero__stars,
    .cgs-hero__title,
    .cgs-hero__subtitle,
    .cgs-hero__cta-group,
    .cgs-hero__acts {
        animation: none;
        opacity: 1;
    }
}


/* ===========================================
   HIGHLIGHTS — "A Night of Pure Wonder"
   =========================================== */
.module-highlights {
    background: #FFF8E7;
    position: relative;
    z-index: 20;
}

.module-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sbo-colors-tertiary-medium, #D4A017), transparent);
}

/* --- Shared CGS section header --- */
.cgs-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cgs-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
    margin-bottom: 0.75rem;
}

.cgs-section-divider__star {
    color: var(--sbo-colors-tertiary-medium, #D4A017);
    font-size: 1.125rem;
}

.cgs-section-divider__line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sbo-colors-tertiary-medium, #D4A017), transparent);
}

/* Dark-background overrides */
.cgs-section-divider__star--light {
    color: var(--sbo-colors-tertiary-light, #FFD700);
}

.cgs-section-divider__line--light {
    background: linear-gradient(90deg, transparent, var(--sbo-colors-tertiary-light, #FFD700), transparent);
}

.cgs-section-label {
    font-family: var(--sbo-font-body-primary);
    font-size: 0.8125rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sbo-colors-tertiary-dark, #8B6914);
    margin-bottom: 0.75rem;
}

.cgs-section-label--light {
    color: var(--sbo-colors-tertiary-light, #FFD700);
}

.cgs-section-title {
    font-family: var(--sbo-font-headline-secondary, 'Playfair Display', serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--sbo-colors-primary, #1B2B5A);
    margin-bottom: 1rem;
}

.cgs-section-title--light {
    color: #ffffff;
}

.cgs-section-title--light em {
    color: var(--sbo-colors-tertiary-light, #FFD700);
    font-style: normal;
}

/* Cards grid */
.hl-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .hl-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Individual card */
.hl-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(var(--sbo-glow-gold-rgb), 0.1);
    transition: all 0.4s;
}

.hl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--sbo-colors-tertiary-light, #FFD700);
}

/* Icon area (image in dark blue header) */
.hl-card__icon-area {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sbo-colors-primary, #1B2B5A), var(--sbo-colors-secondary, #3A56A5));
    position: relative;
    overflow: hidden;
}

.hl-card__icon-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1px 1px at 20% 30%, white 50%, transparent 100%),
        radial-gradient(1px 1px at 60% 70%, white 50%, transparent 100%),
        radial-gradient(1px 1px at 80% 20%, white 50%, transparent 100%);
    opacity: 0.3;
}

.hl-card__icon-area img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Card title */
.hl-card__title {
    font-family: var(--sbo-font-headline-secondary, 'Playfair Display', serif);
    font-size: 1.375rem;
    color: var(--sbo-colors-primary, #1B2B5A);
    font-weight: 700;
    margin-bottom: 0.625rem;
    padding: 1.75rem 1.5rem 0;
}

/* Card text */
.hl-card__text {
    font-family: var(--sbo-font-body-primary);
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.7;
    padding: 0 1.5rem 1.75rem;
}


.upcoming-shows-override .us-title {
    color: var(--sbo-us-title-color) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.upcoming-shows-override .us-btn-gold {
    background: var(--sbo-us-btn-bg) !important;
    color: var(--sbo-us-btn-text) !important;
    border: none !important;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.upcoming-shows-override .us-btn-gold:hover {
    background: var(--sbo-us-btn-hover-bg) !important;
    transform: translateY(-2px);
}

/* Show card styling */
.upcoming-shows-override .sh-city-showing__dates {
    color: var(--sbo-us-dates-color) !important;
    font-size: 1.5rem;
    font-weight: 400;
}

.upcoming-shows-override .sh-city-showing__city {
    color: var(--sbo-us-city-color) !important;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.upcoming-shows-override .sh-city-showing__venue {
    color: var(--sbo-us-venue-color) !important;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.upcoming-shows-override .sh-city-showing__btn {
    background: var(--sbo-us-show-btn-bg) !important;
    color: var(--sbo-us-show-btn-text) !important;
    border: none !important;
    border-radius: 4px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.upcoming-shows-override .sh-city-showing__btn:hover {
    background: var(--sbo-us-show-btn-bg) !important;
}

/* Character images - positioned at edges */
.upcoming-shows-override .us-character-left {
    position: absolute;
    left: -3%;
    bottom: 5%;
    width: 35%;
    max-width: 400px;
    pointer-events: none;
    z-index: 5;
}

.upcoming-shows-override .us-character-right {
    position: absolute;
    right: 1%;
    bottom:.5%;
    width: 25%;
    pointer-events: none;
    z-index: 5;
}

.upcoming-shows-override .us-character-left img,
.upcoming-shows-override .us-character-right img {
    width: 100%;
    height: auto;
}

/* Down arrow - gold/orange color */
.upcoming-shows-override .us-down-arrow {
    color: var(--sbo-us-arrow-color);
}

@media (max-width: 767px) {
    .upcoming-shows-override .us-character-left,
    .upcoming-shows-override .us-character-right {
        display: none;
    }
}


/* ===========================================
   FAQ SECTION
   =========================================== */

.module-faq_list {
    font-family: var(--sbo-font-body-primary);
    background: var(--sbo-faq-bg) !important;
    margin-bottom: 0 !important;
}

/* Hide decorative arrows */
.module-faq_list > .relative.hidden,
.module-faq_list > .relative.z-20 {
    display: none !important;
}

/* Remove clipping mask */
.module-faq_list.clipping-mask--bottom-down {
    clip-path: none !important;
    -webkit-clip-path: none !important;
}

/* Container */
.module-faq_list .container {
    padding: 3.5rem 2rem !important;
    max-width: 800px !important;
}

/* Section title */
.module-faq_list .text--h3 {
    font-family: var(--sbo-font-body-primary);
    font-size: 2.25rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem !important;
}

/* Reset grid to single column */
.module-faq_list .grid {
    display: block !important;
}

/* Hide empty grid columns */
.module-faq_list .grid > .hidden {
    display: none !important;
}

/* FAQ list */
.module-faq_list dl {
    max-width: 800px;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* FAQ Items */
.module-faq_list dt {
    margin-top: 0.75rem !important;
}

.module-faq_list dt:first-of-type {
    margin-top: 0 !important;
}

/* Question button */
.module-faq_list [class^="accordion-trigger-"] {
    width: 100%;
    background: var(--sbo-accordion-bg) !important;
    border: 1px solid var(--sbo-accordion-border) !important;
    border-radius: 0.75rem !important;
    padding: 1.25rem 1.5rem !important;
    transition: all 0.3s ease;
}

.module-faq_list [class^="accordion-trigger-"]:hover {
    background: var(--sbo-accordion-hover-bg) !important;
}

/* Question text */
.module-faq_list .text--question {
    font-family: var(--sbo-font-body-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-left: 1rem !important;
}

/* Plus/minus icon */
.module-faq_list dt button span:first-child {
    background: var(--sbo-colors-secondary) !important;
    color: var(--sbo-colors-primary) !important;
    border-radius: 0.5rem !important;
    width: 2rem !important;
    height: 2rem !important;
    min-width: 2rem !important;
    min-height: 2rem !important;
}

/* Answer panel */
.module-faq_list dd {
    margin: 0 !important;
}

.module-faq_list dd > div {
    font-family: var(--sbo-font-body-primary);
    font-size: 0.875rem;
    line-height: 1.7;
    opacity: 0.75;
    padding: 0.5rem 1.5rem 1rem 4rem !important;
    margin: 0 !important;
}

/* ===========================================
   FAQ SECTION - MOBILE
   =========================================== */

@media (max-width: 767px) {
    .module-faq_list .container {
        padding: 2.5rem 1rem !important;
    }

    .module-faq_list .text--h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem !important;
    }

    .module-faq_list [class^="accordion-trigger-"] {
        padding: 1rem !important;
    }

    .module-faq_list .text--question {
        font-size: 0.875rem;
        margin-left: 0.75rem !important;
    }

    .module-faq_list dd > div {
        padding: 0.5rem 1rem 1rem 3rem !important;
        font-size: 0.8125rem;
    }

    .module-faq_list dt button span:first-child {
        width: 1.75rem !important;
        height: 1.75rem !important;
        min-width: 1.75rem !important;
        min-height: 1.75rem !important;
    }
}
/* View All FAQs Link */
.faq-view-all {
    text-align: center;
    margin-top: 2rem;
}

.faq-view-all a {
    color: var(--sbo-colors-secondary);
    font-family: var(--sbo-font-body-primary);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.faq-view-all a:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .faq-view-all {
        margin-top: 1.5rem;
    }

    .faq-view-all a {
        font-size: 0.875rem;
    }
}





/* ===========================================
   WOOCOMMERCE CART PAGE STYLING
   =========================================== */

/* Cart Page Container */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Page Title */
.woocommerce-cart .entry-title,
.woocommerce-cart h1 {
    font-family: var(--sbo-font-headline-tertiary);
    color: var(--sbo-colors-white);
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

/* Cart Table */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--sbo-colors-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce table.shop_table thead {
    background: rgba(255, 255, 255, 0.05);
}

.woocommerce table.shop_table thead th {
    font-family: var(--sbo-font-body-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sbo-colors-tertiary-medium);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce table.shop_table tbody td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--sbo-colors-white);
}

.woocommerce table.shop_table tbody tr:last-child td {
    border-bottom: none;
}

/* Cart Item Row Hover */
.woocommerce table.shop_table tbody tr.cart_item:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Product Thumbnail */
.woocommerce table.shop_table .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product Name */
.woocommerce table.shop_table .product-name a {
    font-family: var(--sbo-font-body-primary);
    font-weight: 600;
    color: var(--sbo-colors-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce table.shop_table .product-name a:hover {
    color: var(--sbo-colors-tertiary-medium);
}

/* Product Price & Subtotal */
.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
    font-family: var(--sbo-font-body-primary);
    font-weight: 600;
    color: var(--sbo-colors-tertiary-light);
}

/* Remove Button */
.woocommerce table.shop_table .product-remove a.remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545 !important;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.woocommerce table.shop_table .product-remove a.remove:hover {
    background: #dc3545;
    color: var(--sbo-colors-white) !important;
    transform: scale(1.1);
}

/* Quantity Input */
.woocommerce table.shop_table .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce table.shop_table .quantity .qty {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--sbo-colors-white);
    font-family: var(--sbo-font-body-primary);
    font-weight: 600;
}

.woocommerce table.shop_table .quantity .qty:focus {
    outline: none;
    border-color: var(--sbo-colors-tertiary-medium);
    box-shadow: 0 0 0 2px rgba(var(--sbo-glow-gold-rgb), 0.2);
}

/* Actions Row (Coupon & Update) */
.woocommerce table.shop_table td.actions {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

/* Coupon Section */
.woocommerce .coupon {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.woocommerce .coupon input.input-text {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--sbo-colors-white);
    font-family: var(--sbo-font-body-primary);
}

.woocommerce .coupon input.input-text::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.woocommerce .coupon input.input-text:focus {
    outline: none;
    border-color: var(--sbo-colors-tertiary-medium);
}

/* Buttons */
.woocommerce button.button,
.woocommerce .button {
    padding: 0.75rem 1.5rem;
    font-family: var(--sbo-font-body-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--sbo-colors-secondary);
    color: var(--sbo-colors-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.woocommerce button.button:hover,
.woocommerce .button:hover {
    background: var(--sbo-colors-tertiary-medium);
    color: var(--sbo-colors-black);
    transform: translateY(-1px);
}

.woocommerce button.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Cart Collaterals (Totals Section) */
.woocommerce .cart-collaterals {
    margin-top: 2rem;
}

.woocommerce .cart_totals {
    background: var(--sbo-colors-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 450px;
    margin-left: auto;
}

.woocommerce .cart_totals h2 {
    font-family: var(--sbo-font-headline-tertiary);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--sbo-colors-tertiary-light);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce .cart_totals table {
    background: transparent;
    border: none;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
    padding: 0.75rem 0;
    border: none;
    background: transparent;
}

.woocommerce .cart_totals table th {
    font-family: var(--sbo-font-body-primary);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.woocommerce .cart_totals table td {
    text-align: right;
    color: var(--sbo-colors-white);
    font-weight: 600;
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
    font-size: 1.25rem;
    color: var(--sbo-colors-tertiary-light);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Proceed to Checkout Button */
.woocommerce .wc-proceed-to-checkout {
    margin-top: 1.5rem;
}

.woocommerce .wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--sbo-font-headline-tertiary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    background: var(--sbo-colors-tertiary-medium);
    color: var(--sbo-colors-black);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce .wc-proceed-to-checkout .checkout-button:hover {
    background: var(--sbo-colors-tertiary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(var(--sbo-glow-gold-rgb), 0.3);
}

/* Empty Cart Message */
.woocommerce-cart .cart-empty,
.woocommerce-cart .woocommerce-info {
    text-align: center;
    padding: 3rem;
    padding-top: 6rem;
    margin-top: 2rem;
    color: var(--sbo-colors-white);
    font-family: var(--sbo-font-body-primary);
    font-size: 1.25rem;
}

.woocommerce-cart .return-to-shop {
    text-align: center;
    padding-bottom: 4rem;
}

.woocommerce-cart .return-to-shop .button {
    margin-top: 1rem;
}

/* Cart Variation Details (ticket info) */
dl.variation,
dl.variation dt,
dl.variation dd,
dl.variation p {
    color: var(--sbo-colors-white) !important;
}

dl.variation {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

dl.variation dt {
    opacity: 0.7;
}

dl.variation dd {
    margin-left: 0;
}

/* Cart Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    font-family: var(--sbo-font-body-primary);
}

.woocommerce-message {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    color: #28a745;
}

.woocommerce-info {
    background: rgba(23, 162, 184, 0.1);
    border-left: 4px solid #17a2b8;
    color: #17a2b8;
}

.woocommerce-error {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #dc3545;
}

/* ===========================================
   CART PAGE - MOBILE RESPONSIVE
   =========================================== */
@media (max-width: 767px) {
    .woocommerce table.shop_table.shop_table_responsive thead {
        display: none;
    }

    .woocommerce table.shop_table.shop_table_responsive tbody tr.cart_item {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.5rem 1rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .woocommerce table.shop_table.shop_table_responsive tbody td {
        padding: 0.25rem 0;
        border: none;
    }

    .woocommerce table.shop_table.shop_table_responsive .product-thumbnail {
        grid-row: 1 / 4;
    }

    .woocommerce table.shop_table.shop_table_responsive .product-thumbnail img {
        width: 70px;
        height: 70px;
    }

    .woocommerce table.shop_table.shop_table_responsive .product-name {
        grid-column: 2;
        font-size: 0.9rem;
    }

    .woocommerce table.shop_table.shop_table_responsive .product-price,
    .woocommerce table.shop_table.shop_table_responsive .product-quantity,
    .woocommerce table.shop_table.shop_table_responsive .product-subtotal {
        grid-column: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .woocommerce table.shop_table.shop_table_responsive td::before {
        content: attr(data-title) ": ";
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        margin-right: 0.5rem;
    }

    .woocommerce table.shop_table.shop_table_responsive .product-remove {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }

    .woocommerce table.shop_table.shop_table_responsive tbody tr.cart_item {
        position: relative;
    }

    .woocommerce table.shop_table td.actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .woocommerce .coupon {
        width: 100%;
    }

    .woocommerce .coupon input.input-text {
        min-width: 0;
    }

    .woocommerce table.shop_table td.actions > button {
        width: 100%;
    }

    .woocommerce .cart_totals {
        max-width: 100%;
        margin-top: 1.5rem;
    }
}

/* Green / SALE */
.strawhouse_ticket.ticket_row.ticket_id_94162{
    border: 5px solid #f52ff9 !important;
    background: #fec7ff ;
    border-radius: 6px;
    margin-top: 2px!important;
    margin-bottom: 2px!important;
}

/* Purple / VIP */
.strawhouse_ticket.ticket_row.ticket_id_94164 {
    border: 5px solid #f90503!important;
    background: #ffe7e7;
    border-radius: 6px;
    margin-top: 2px!important;
    margin-bottom: 2px!important;
    color:black;
    font-weight: bold;
}
/* Red / VIP / PREFERRED */
.strawhouse_ticket.ticket_row.ticket_id_94165 {
    border: 5px solid #f9ac05 !important;
    background: #fff;''
border-radius: 6px;
    margin-top: 2px!important;
    margin-bottom: 2px!important;

}
/* Blue / GA */
.strawhouse_ticket.ticket_row.ticket_id_94166{
    border: 5px solid #2556c2 !important;
    background: #80e6fc;
    border-radius: 6px;
    margin-top: 2px!important;
    margin-bottom: 2px!important;
}
/* Yellow / FLOOR */
.strawhouse_ticket.ticket_row.ticket_id_94167 {
    border: 5px solid #f9ac05 !important;
    background: #fff49d;
    border-radius: 6px;
    margin-top: 2px!important;
    margin-bottom: 2px!important;
    font-weight: bold;
}
/* Tix Info-Boxes */
.tixbox {
    border: 1px solid #2556c2;
    border-radius: 8px;
    background: #c7e9ff;
    margin-bottom: 8px;
}
.tixbox p {
    color: #000;
    text-align: justify;
    padding: 2%;
    font-size: 12px;
}
.tixbox-title {
    background: #2556c2;
    padding:2%;
    text-align: center;
    color: #ffff;
    border-top-left-radius:6px;
    border-top-right-radius:6px;
}
.block.text--strong.uppercase.mb-4 {
    color: #ffffff;
}
.block.text--strong.uppercase.mb-4:hover {
    color: #1e72bd;
}

@media(max-width:800px) {
    .text--h3-headline-primary {
        padding-top: 85px!important;
        font-size: 32px;
    }
    .strawhouse-calendar {
        margin: -25px;
    }
    .module-content_type_1 {
        padding-top: 150px;
    }

}


/* ===========================================
   GEOLOCATOR BANNER - SHOW NEAR YOU
   =========================================== */
.module-show_near_you .geolocator-header {
    color: var(--sbo-colors-black);
    font-family: var(--sbo-font-body-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.module-show_near_you .geolocator-city,
.module-show_near_you .geolocator-date {
    font-family: var(--sbo-font-headline-tertiary);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .module-show_near_you .geolocator-city,
    .module-show_near_you .geolocator-date {
        font-size: 4rem;
    }
}

.module-show_near_you .down-arrow {
    min-height: 60px;
}

.module-show_near_you .down-arrow svg {
    fill: var(--sbo-colors-white) !important;
    color: var(--sbo-colors-white) !important;
}

.btn-banner.geolocator-tickets {
    position: relative;
    display: inline-block;
    padding: 0.875rem 2.5rem !important;
    color: var(--sbo-text-white) !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none !important;
    border-radius: 0 !important;
    transition: all 0.3s ease;
}

.btn-banner.geolocator-tickets::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: var(--sbo-ribbon-fold) transparent transparent transparent;
}

.btn-banner.geolocator-tickets::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent var(--sbo-ribbon-fold) transparent transparent;
    transform: scaleX(-1);
}

.btn-banner.geolocator-tickets:hover {
    color: var(--sbo-text-white) !important;
    transform: translateY(-2px);
}

.module-show_near_you .fine_print {
    color: var(--sbo-colors-black);
    opacity: 0.7;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: #1A2340;
}

.footer a {
    color: var(--sbo-colors-white) !important;
}

/* ===========================================
   HEADER CART ICON
   To remove: delete this entire section
   =========================================== */
.header-cart-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.header-cart-icon svg {
    width: 24px;
    height: 24px;
}

.header-cart-count {
    font-size: 0.7rem;
    line-height: 1;
    min-width: 20px;
    height: 20px;
    animation: cart-pop 0.3s ease;
}

@keyframes cart-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.header-cart-link:hover .header-cart-icon svg {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Hide cart total on smaller screens */
@media (max-width: 1023px) {
    .header-cart-total {
        display: none;
    }
}

/* ===========================================
   CAST SHOWCASE — White rounded card + photo grid
   =========================================== */
.module-cast-showcase {
    background: transparent !important;
    padding: 0 !important;
}

.cast-card-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
}

.cast-subtitle {
    text-align: center;
    color: #5a6a7a;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.cast-subtitle p {
    margin: 0 0 0.5rem;
}

.cast-subtitle p:last-child {
    margin-bottom: 0;
}

/* Photo grid — 3 columns */
.cast-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.cast-photo-card {
    text-align: center;
}

.cast-photo-card__image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 4 / 3;
    background: #e8f0fe;
}

.cast-photo-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cast-photo-card__name {
    font-family: var(--sbo-font-headline-primary);
    color: var(--sbo-colors-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.cast-photo-card__title {
    color: var(--sbo-colors-tertiary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.5rem;
}

.cast-photo-card__desc {
    font-size: 0.9rem;
    color: #5a6a7a;
    line-height: 1.6;
}

.cast-photo-card__desc p {
    margin: 0;
}

@media (max-width: 640px) {
    .cast-card-container {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }

    .cast-photo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===========================================
   CHECKOUT REVIEW ORDER - MOBILE
   =========================================== */
@media (max-width: 767px) {
    .woocommerce-checkout-review-order {
        background: #ffffff !important;
        color: #000000 !important;
    }

    .woocommerce-checkout-review-order * {
        color: #000000 !important;
    }

    [style*="--sbo-colors-tertiary-dark"] {
        background: #ffffff !important;
        color: #000000 !important;
    }

    .woocommerce-checkout-review-order [style*="--sbo-colors-tertiary-dark"],
    .woocommerce-checkout-review-order [class*="tertiary-dark"] {
        background: #ffffff !important;
        color: #000000 !important;
    }
}