/*
Theme Name: Sarasota Box Office Child Theme
Template: sbo-core
Text Domain: sbo-child
Description: Child theme for Germany's Great Bavarian Circus. 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
   Germany's Great Bavarian Circus (GGBC)
   Blue / Gold / Cream palette
   =========================================== */
:root {
    /* Text colors */
    --sbo-text-white: #ffffff;
    --sbo-text-light: #dddddd;
    --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: 26, 35, 64;

    /* Stage frame / curtain colors (blue drapes) */
    --sbo-stage-curtain-fade: rgba(0, 60, 139, 0.6);
    --sbo-curtain-darkest: #0a1a3a;
    --sbo-curtain-dark: #152a4a;
    --sbo-curtain-medium: #1a305a;
    --sbo-curtain-deep: #0a152a;
    --sbo-curtain-deepest: #050a1a;

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

    /* Cast card placeholder */
    --sbo-cast-placeholder-fill: rgba(15, 20, 30, 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: #ffffff;
    --sbo-us-btn-bg: #D4A017;
    --sbo-us-btn-text: #1A2340;
    --sbo-us-btn-hover-bg: #F5C842;
    --sbo-us-dates-color: #F5C842;
    --sbo-us-city-color: #ffffff;
    --sbo-us-venue-color: #ffffff;
    --sbo-us-show-btn-bg: #F5C842;
    --sbo-us-show-btn-text: #1A2340;
    --sbo-us-arrow-color: #F5C842;

    /* ===========================================
       FONT OVERRIDES - Germany's Great Bavarian Circus
       Cinzel Decorative: Headlines (ornate serif)
       Nunito: Body text (friendly rounded sans-serif)
       =========================================== */
    --sbo-font-headline-primary: 'Cinzel Decorative', Georgia, serif;
    --sbo-font-headline-secondary: 'Cinzel Decorative', Georgia, serif;
    --sbo-font-headline-tertiary: 'Cinzel Decorative', Georgia, serif;
    --sbo-font-headline-quartary: 'Cinzel Decorative', Georgia, serif;
    --sbo-font-body-primary: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --sbo-elements-button-font: 'Nunito', -apple-system, BlinkMacSystemFont, sans-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
   =========================================== */
.module-upcoming-shows {
    background: #FFF8E7;
    color: var(--sbo-colors-black, #1A2340);
    overflow: hidden;
    position: relative;
    z-index: 20;
}

.sh-upcoming-eyebrow {
    font-family: var(--sbo-font-body-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sbo-colors-tertiary-medium, #D4A017);
    margin-bottom: 0.5rem;
}

.sh-upcoming-title {
    font-family: var(--sbo-font-headline-primary);
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--sbo-colors-primary, #004EA2);
}

.sh-upcoming-link {
    color: var(--sbo-colors-primary, #004EA2);
    font-family: var(--sbo-font-body-primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sh-upcoming-link:hover {
    color: var(--sbo-colors-tertiary-dark, #A07810);
}

/* Upcoming Shows Cards Grid */
.sh-upcoming-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
}

@media (min-width: 640px) {
    .sh-upcoming-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 768px) {
    .sh-upcoming-cards {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem !important;
    }
}

/* Individual Show Card - Override plugin styles */
.sh-upcoming-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
    padding: 0 !important;
    padding-top: 40px !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

/* Star Badge with Date - Override plugin styles */
.sh-upcoming-card__date {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 70px !important;
    height: 70px !important;
    background: radial-gradient(circle at 35% 35%, #f5e6a3, #D4A017 50%, #a67c00 90%) !important;
    box-shadow: 0 2px 8px rgba(164, 124, 0, 0.45), inset 0 1px 2px rgba(255, 243, 200, 0.6) !important;
    border-radius: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sh-upcoming-card__day-abbr {
    font-family: var(--sbo-font-body-primary) !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #1A2340 !important;
    line-height: 1 !important;
    margin-bottom: 2px !important;
    background: transparent !important;
}

.sh-upcoming-card__day-num {
    font-family: var(--sbo-font-headline-primary) !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #1A2340 !important;
    line-height: 1 !important;
}

/* Card Body - Override plugin styles */
.sh-upcoming-card__details {
    background: radial-gradient(ellipse at center, #0a4a9e 0%, #012671 40%, #020b33 100%) !important;
    border: 3px solid #D4A017 !important;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.4) !important;
    border-radius: 16px !important;
    padding: 50px 1.25rem 1.25rem !important;
    margin-top: -30px !important;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-height: 140px !important;
}

.sh-upcoming-card__month {
    font-family: var(--sbo-font-body-primary) !important;
    font-size: 0.7rem !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0.5rem !important;
    margin-top: 1.5rem !important;
}

.sh-upcoming-card__city {
    font-family: var(--sbo-font-body-primary) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    margin-bottom: 0.25rem !important;
}

.sh-upcoming-card__time {
    font-family: var(--sbo-font-body-primary) !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hide location and action button */
.sh-upcoming-card__location,
.sh-upcoming-card__action {
    display: none !important;
}

/* Hover effect */
.sh-upcoming-card:hover .sh-upcoming-card__details {
    background: radial-gradient(ellipse at center, #1a5aae 0%, #0238a0 40%, #041452 100%) !important;
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.6) !important;
}

/* Upcoming Shows Bottom Ornament */
.sh-upcoming-ornament {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.sh-upcoming-ornament img {
    width: 180px;
    height: auto;
}

/* ===========================================
   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);
}

/* ===========================================
   GGBC HERO SECTION
   Germany's Great Bavarian Circus
   =========================================== */

/* Hero container */
.ggbc-hero {
    position: relative;
    background: linear-gradient(160deg, #1A4DB5 0%, #0047AB 40%, #003380 100%);
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem 6rem;
}

/* Animated searchlights */
.ggbc-hero__searchlight {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 80%;
    background: linear-gradient(to top, rgba(255, 220, 100, 0.4), transparent);
    transform-origin: bottom center;
    animation: ggbc-swing 6s ease-in-out infinite;
    pointer-events: none;
}

.ggbc-hero__searchlight:nth-child(2) { left: 10%; animation-duration: 6s; }
.ggbc-hero__searchlight:nth-child(3) { left: 20%; animation-duration: 8s; animation-delay: -2s; }
.ggbc-hero__searchlight:nth-child(4) { right: 10%; animation-duration: 7s; animation-delay: -3s; }
.ggbc-hero__searchlight:nth-child(5) { right: 20%; animation-duration: 5.5s; animation-delay: -1s; }

@keyframes ggbc-swing {
    0%, 100% { transform: rotate(-20deg); }
    50% { transform: rotate(20deg); }
}

/* Sparkle elements */
.ggbc-hero__sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: ggbc-twinkle 3s ease-in-out infinite;
    pointer-events: none;
}

.ggbc-hero__sparkle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 2px;
    width: 4px;
    height: 16px;
    background: inherit;
    border-radius: 2px;
}

.ggbc-hero__sparkle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: -4px;
    width: 16px;
    height: 4px;
    background: inherit;
    border-radius: 2px;
}

@keyframes ggbc-twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Hero badge pill */
.ggbc-hero__badge {
    font-family: var(--sbo-font-body-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #F5C842;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 220, 100, 0.4);
    border-radius: 30px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(4px);
    animation: ggbc-fadeDown 0.7s ease 0.2s both;
}

@keyframes ggbc-fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero logo */
.ggbc-hero__logo-wrap {
    position: relative;
    z-index: 2;
    animation: ggbc-zoomIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    margin-bottom: 1.5rem;
}

@keyframes ggbc-zoomIn {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

.ggbc-hero__logo {
    max-width: 500px;
    width: 90vw;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}

/* Tagline */
.ggbc-hero__tagline {
    font-family: var(--sbo-font-body-primary);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    animation: ggbc-fadeDown 0.8s ease 0.8s both;
    max-width: 700px;
}

/* CTA button group */
.ggbc-hero__cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: ggbc-fadeDown 0.8s ease 1s both;
    margin-bottom: 3rem;
}

/* Gold tickets button */
.ggbc-hero__btn-tickets {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A2340;
    padding: 1.1rem 3rem;
    font-family: var(--sbo-font-body-primary);
    font-size: 1.2rem;
    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.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: ggbc-pulseGlow 2s ease-in-out infinite;
}

.ggbc-hero__btn-tickets i {
    margin-right: 0.4rem;
    --fa-primary-color: #1A2340;
    --fa-secondary-color: #6B4E00;
    --fa-secondary-opacity: 0.7;
}

.ggbc-hero__btn-tickets:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.7);
    color: #1A2340;
}

@keyframes ggbc-pulseGlow {
    0%, 100% { box-shadow: 0 6px 30px rgba(255, 165, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 6px 45px rgba(255, 165, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
}

/* White outline button */
.ggbc-hero__btn-outline {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #004EA2;
    padding: 0.9rem 2.2rem;
    font-family: var(--sbo-font-body-primary);
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ggbc-hero__btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    color: #004EA2;
}

/* Performer chips */
.ggbc-hero__performers {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: ggbc-fadeDown 1s ease 1.2s both;
}

.ggbc-hero__perf-chip {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    color: white;
    font-family: var(--sbo-font-body-primary);
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ggbc-hero__perf-chip i {
    font-size: 0.9rem;
    --fa-primary-color: #F5C842;
    --fa-secondary-color: #FFFFFF;
    --fa-secondary-opacity: 0.6;
}

/* Wave divider */
.ggbc-hero__wave {
    line-height: 0;
    margin-top: -2px;
}

.ggbc-hero__wave svg {
    display: block;
    width: 100%;
}

/* Responsive */
@media (max-width: 640px) {
    .ggbc-hero {
        min-height: 80vh;
        padding: 6rem 1.5rem 4rem;
    }

    .ggbc-hero__performers {
        display: none;
    }

    .ggbc-hero__btn-tickets {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .ggbc-hero__btn-outline {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ggbc-hero__searchlight,
    .ggbc-hero__sparkle {
        animation: none;
    }

    .ggbc-hero__badge,
    .ggbc-hero__logo-wrap,
    .ggbc-hero__tagline,
    .ggbc-hero__cta-group,
    .ggbc-hero__performers {
        animation: none;
        opacity: 1;
    }

    .ggbc-hero__btn-tickets {
        animation: none;
    }
}


/* ===========================================
   HIGHLIGHTS — "What's Inside the Big Top?"
   =========================================== */
.module-highlights {
    background: #fff;
    position: relative;
    z-index: 20;
}

/* Section title */
.hl-title {
    font-family: var(--sbo-font-headline-primary);
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    color: var(--sbo-colors-primary, #004EA2);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hl-title .gold-word {
    color: var(--sbo-colors-tertiary-dark, #A07810);
}


/* Subtitle */
.hl-subtitle {
    text-align: center;
    color: #e8dcc8;
    font-family: var(--sbo-font-body-primary);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

/* Cards grid */
.hl-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

/* Individual card */
.hl-card {
    background: #FFF8E7;
    border-radius: 20px;
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hl-card:hover {
    border-color: var(--sbo-colors-tertiary-medium, #D4A017);
    transform: translateY(-6px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

/* Icon in card */
.hl-card__icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
    --fa-primary-color: var(--sbo-colors-primary, #004EA2);
    --fa-secondary-color: var(--sbo-colors-tertiary-medium, #D4A017);
    --fa-secondary-opacity: 0.7;
}

/* Photo fallback */
.hl-card__photo {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.hl-card__photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card title */
.hl-card__title {
    font-family: var(--sbo-font-headline-primary);
    font-size: 0.95rem;
    color: var(--sbo-colors-primary, #004EA2);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

/* Card text */
.hl-card__text {
    font-family: var(--sbo-font-body-primary);
    color: #334466;
    font-size: 0.9rem;
    line-height: 1.6;
}


.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;
    }
}