/*
Theme Name: Sarasota Box Office Child Theme
Template: sbo-core
Text Domain: sbo-child
Description: Child theme for Circus Classic.
Author: Sarasota Box Office
Version: 1.0.0
*/

/*
 * SINGLE SOURCE OF TRUTH FOR COLORS
 *
 * To rebrand for a new client:
 * 1. Change the 7 core brand colors in Section A
 * 2. Update fonts in Section B
 * 3. Adjust Section C (derived palette) to taste
 * 4. Rebuild Vite assets: npm run build in sbo-core + sbo-child
 *
 * ACF Options inline <style> still works as a fallback layer,
 * but this file loads at priority 999 and overrides it.
 */


/* ===========================================
   SECTION A — CORE BRAND COLORS (required)
   Change these 7 values per client.
   =========================================== */
:root {
    --sbo-colors-black:           #1a1a1a;      /* Near black */
    --sbo-colors-white:           #FFFFFF;      /* White */
    --sbo-colors-primary:         #E30613;      /* Circus red */
    --sbo-colors-secondary:       #FFD100;      /* Golden yellow */
    --sbo-colors-tertiary-dark:   #C8A200;      /* Dark gold */
    --sbo-colors-tertiary-medium: #FFE44D;      /* Light yellow */
    --sbo-colors-tertiary-light:  #FFF8E7;      /* Cream */


/* ===========================================
   SECTION B — FONTS (required)
   Circus Classic
   Passion One: Headlines (bold circus display)
   Nunito: Body text (friendly rounded sans-serif)
   =========================================== */

    --sbo-font-headline-primary:   'Passion One', 'Impact', sans-serif;
    --sbo-font-headline-secondary: 'Passion One', 'Impact', sans-serif;
    --sbo-font-headline-tertiary:  'Passion One', 'Impact', sans-serif;
    --sbo-font-headline-quartary:  'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --sbo-font-body-primary:       'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --sbo-elements-button-font:    'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;


/* ===========================================
   SECTION C — DERIVED PALETTE (adjust to taste)
   =========================================== */

    /* Semantic aliases */
    --sbo-surface-warm: #FFF8E7;
    --sbo-text-body:    #333333;

    /* Text colors */
    --sbo-text-white: #ffffff;
    --sbo-text-light: #dddddd;
    --sbo-text-muted: #cccccc;
    --sbo-text-dim: #aaaaaa;

    /* Glow/shadow RGB values (used with rgba()) */
    --sbo-glow-gold-rgb: 200, 162, 0;
    --sbo-hero-overlay-rgb: 26, 26, 26;

    /* Ribbon fold (banner button pseudo-elements) */
    --sbo-ribbon-fold: #990000;

    /* Cast card placeholder */
    --sbo-cast-placeholder-fill: rgba(26, 26, 26, 1);

    /* FAQ / Accordion */
    --sbo-faq-bg: rgba(0, 0, 0, 0.08);
    --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: #FFD100;
    --sbo-us-btn-text: #1a1a1a;
    --sbo-us-btn-hover-bg: #FFE44D;
    --sbo-us-dates-color: #FFD100;
    --sbo-us-city-color: #ffffff;
    --sbo-us-venue-color: #ffffff;
    --sbo-us-show-btn-bg: #FFD100;
    --sbo-us-show-btn-text: #1a1a1a;
    --sbo-us-arrow-color: #FFD100;
}


/* ===========================================
   SECTION D — CLIENT CSS BELOW
   =========================================== */

/* ===========================================
   REVIEWS CAROUSEL - 6 CARD GRID
   =========================================== */
.module-reviews-carousel {

    color: var(--sbo-colors-white);
}

/* 6-Card Grid Layout */
.six-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .six-card-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 1.25rem;
    }
}

/* Base Card Styles */
.card-review,
.card-image,
.card-photo {
    border-radius: 16px;
    overflow: hidden;
}

/* Card 1 & 3: Review Text Cards */
.card-review {
    background: radial-gradient(ellipse at center, #0a4a9e 0%, #012671 40%, #020b33 100%);
    border: 3px solid #C9A227;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
}

.card-review__ornament {
    width: 50px;
    height: auto;
    margin-bottom: 1rem;
}

.card-review__ornament img {
    width: 100%;
    height: auto;
}

.card-review__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-review__text {
    font-family: var(--sbo-font-body-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
}

.card-review__author {
    font-family: var(--sbo-font-headline-primary);
    font-size: 0.75rem;
    font-style: italic;
    color: #C9A227;
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .card-review {
        min-height: 220px;
        padding: 1.25rem;
    }

    .card-review__text {
        font-size: 0.75rem;
    }
}

/* Card 2 & 5: Eiffel Tower Image Cards */
.card-image {
    background: radial-gradient(ellipse at center, #0a4a9e 0%, #012671 40%, #020b33 100%);
    border: 3px solid #C9A227;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Tower Top (Card 2) - adjust size here */
.card-image--tower-top img {
    width: 20%;
    max-width: 120px;
    height: auto;
}

/* Hide tower cards (2 and 5) on mobile */
@media (max-width: 767px) {
    .card-image--tower-top,
    .card-image--tower-bottom {
        display: none;
    }
}

@media (min-width: 768px) {
    .card-image {
        min-height: 220px;
    }
}

/* Card 4 & 6: Photo Cards with Colored Borders */
.card-photo {
    background: #001830;
    border-width: 4px;
    border-style: solid;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-photo--blue {
    border-color: #0066cc;
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.5);
}

.card-photo--red {
    border-color: #cc0033;
    box-shadow: 0 0 15px rgba(204, 0, 51, 0.5);
}

@media (min-width: 768px) {
    .card-photo {
        min-height: 220px;
    }
}

/* Bottom Gold Ornament */
.grid-ornament {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.grid-ornament img {
    width: 180px;
    height: auto;
}

/* ===========================================
   UPCOMING SHOWS SECTION
   =========================================== */
.module-upcoming-shows {
    background:
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            rgba(0, 0, 0, 0.06) 0deg 10deg,
            transparent 10deg 20deg
        ),
        var(--sbo-colors-primary);
    color: #ffffff;
    overflow: hidden;
}

.sh-upcoming-wrapper {
    overflow: hidden;
}

.sh-upcoming-bg {
    pointer-events: none;
}

.sh-upcoming-bg img {
    filter: brightness(0.6);
}

.sh-upcoming-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #EEBE2F;
    margin-bottom: 0.5rem;
}

.sh-upcoming-title {
    font-family: var(--sbo-font-headline-tertiary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sbo-colors-secondary);
}

.sh-upcoming-link {
    color: #EEBE2F;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sh-upcoming-link:hover {
    color: #ffffff;
}

/* 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: 80px !important;
    height: 80px !important;
    background-color: transparent !important;
    background-image: url('images/asset_star.webp') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    border: none !important;
    border-radius: 0 !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: #001830 !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: #001830 !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 #C9A227 !important;
    box-shadow: 0 0 20px rgba(201, 162, 39, 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(201, 162, 39, 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;
}

/* ===========================================
   CITIES ACCORDION
   =========================================== */
.sh-upcoming-cities {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.sbo-city-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sbo-city-accordion__item {
    background: linear-gradient(135deg, #E30613 0%, #CC0000 50%, #8B0000 100%);
    border: 1px solid rgba(255, 209, 0, 0.35);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(255, 209, 0, 0.15);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sbo-city-accordion__item:hover {
    border-color: rgba(255, 209, 0, 0.6);
    box-shadow: 0 4px 20px rgba(255, 209, 0, 0.25);
}

.sbo-city-accordion__item--open {
    border-color: rgba(255, 209, 0, 0.7);
}

.sbo-city-accordion__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
}

.sbo-city-accordion__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sbo-city-accordion__dates {
    font-family: var(--sbo-font-body-primary, 'Nunito', sans-serif);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FFD100;
}

.sbo-city-accordion__name {
    font-family: var(--sbo-font-headline-primary, 'Passion One', sans-serif);
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #ffffff;
}

.sbo-city-accordion__venue {
    font-family: var(--sbo-font-body-primary, 'Nunito', sans-serif);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.sbo-city-accordion__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 2px solid #FFD100;
    border-radius: 50%;
    color: #FFD100;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.sbo-city-accordion__item--open .sbo-city-accordion__icon {
    background: #FFD100;
    color: #1a1a1a;
}

.sbo-city-accordion__panel {
    background: #ffffff;
    border-top: 2px solid rgba(255, 209, 0, 0.4);
    padding: 0.5rem 0;
}

@media (max-width: 640px) {
    .sbo-city-accordion__toggle {
        padding: 1rem 1.25rem;
    }

    .sbo-city-accordion__name {
        font-size: 1.1rem;
    }

    .sbo-city-accordion__dates {
        font-size: 0.75rem;
    }

    .sbo-city-accordion__venue {
        font-size: 0.8rem;
    }
}

/* ===========================================
   SHOP / CITIES PAGE — Red starburst background
   =========================================== */
.woocommerce.archive {
    background:
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            rgba(0, 0, 0, 0.06) 0deg 10deg,
            transparent 10deg 20deg
        ),
        var(--sbo-colors-primary) !important;
}


/* ===========================================
   HIGHLIGHT CARDS (three_box_module)
   4-card grid with pattern background
   =========================================== */
.module-highlights {
    background:
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            rgba(0, 0, 0, 0.06) 0deg 10deg,
            transparent 10deg 20deg
        ),
        var(--sbo-colors-primary);
    position: relative;
}

/* Section Title */
.hl-title {
    font-family: var(--sbo-font-headline-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sbo-colors-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hl-title {
        font-size: 3.25rem;
    }
}

/* Tent divider icon */
.tent-divider {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.tent-divider__icon {
    width: 50px;
    height: auto;
    opacity: 0.9;
}

/* Subtitle */
.hl-subtitle {
    font-family: var(--sbo-font-body-primary);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2.5rem;
}

/* Card Grid — 4 columns on desktop */
.hl-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .hl-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hl-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Individual Card */
.hl-card {
    background-color: #ffffff;
    background-image: url('images/pattern.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(255, 209, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 209, 0, 0.5);
}

/* Card Logo / Image */
.hl-card__logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hl-card__logo img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

/* Card Icon (FontAwesome) */
.hl-card__icon {
    font-size: 2.5rem;
    color: var(--sbo-colors-primary);
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* Card Title — heavy red, uppercase */
.hl-card__title {
    font-family: var(--sbo-font-headline-primary);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--sbo-colors-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

/* Card Text — red, lighter weight, uppercase */
.hl-card__text,
.hl-card__text p {
    font-family: var(--sbo-font-body-primary);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--sbo-colors-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin: 0;
}

/* Card Photo (full image, no logo sizing) */
.hl-card__photo {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.hl-card__photo img {
    width: 100%;
    height: auto;
}


/* ===========================================
   CONTENT TYPE 3 - TWO COLUMN WITH IMAGES
   =========================================== */
.module-content_type_3 .mb-8 h2 {
    font-family: var(--sbo-font-headline-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .module-content_type_3 .mb-8 h2 {
        font-size: 3rem;
    }
}

.module-content_type_3 .mb-8 p {
    font-family: var(--sbo-font-body-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
}

.ct3-columns {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.ct3-column__title {
    font-family: var(--sbo-font-headline-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.ct3-column__content,
.ct3-column__content p {
    font-family: var(--sbo-font-body-primary);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.module-content_type_3 .text-center a.btn,
.module-content_type_3 .text-center a {
    display: inline-block;
    background: var(--sbo-colors-primary);
    color: #ffffff;
    font-family: var(--sbo-font-headline-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 3rem;
    border: 3px solid var(--sbo-colors-secondary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.module-content_type_3 .text-center a.btn:hover,
.module-content_type_3 .text-center a:hover {
    background: var(--sbo-colors-secondary);
    color: var(--sbo-colors-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Side images — spread to module edges */
.ct3-wrapper {
    overflow: hidden;
}

.ct3-image-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
   /* max-width: 300px;*/
    z-index: 10;
    pointer-events: none;
}

.ct3-image-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    /*max-width: 300px;*/
    z-index: 10;
    pointer-events: none;
}

.ct3-image-left img,
.ct3-image-right img {
    width: 100%;
    height: auto;
}


/* ===========================================
   CONTENT TYPE 1 - SINGLE COLUMN CENTERED
   (90 Minutes of Breathtaking Spectacle)
   Colors from cirque-homepage-v2.html
   =========================================== */
.module-content-single {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(244, 196, 49, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 119, 179, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #001830 0%, #001a40 100%);
    color: #ffffff;
}

.module-content-single .text--eyebrow,
.module-content-single p:first-child {
    color: #F4C431;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 20px rgba(244, 196, 49, 0.4);
}

.module-content-single h2,
.module-content-single .text--h2 {
    font-family: var(--sbo-font-headline-tertiary);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .module-content-single h2,
    .module-content-single .text--h2 {
        font-size: 2.75rem;
    }
}

.module-content-single p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.module-content-single .btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #F4C431;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.module-content-single .btn:hover {
    background: #F4C431;
    color: #001830;
    box-shadow: 0 0 30px rgba(244, 196, 49, 0.4);
}

/* ===========================================
   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, #8a1538 0%, #5c0a24 50%, #3a0618 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: #C9A227;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201, 162, 39, 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, #8a1538 0%, #5c0a24 100%);
    color: #F4C431;
    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 #C9A227;
    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, #a01a42 0%, #6e0c2a 100%);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
}

/* ===========================================
   PRE-SALE BANNER
   Use content_type_1 with unique_id="presale-banner"
   =========================================== */
#presale-banner.module-content-single {
    background: linear-gradient(135deg, #F4C431 0%, #d4a82a 100%);
    padding: 2.5rem 1.5rem;
}

#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: #001830;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

#presale-banner p {
    color: #001830;
    opacity: 0.85;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

#presale-banner .btn {
    background: #001830;
    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);
}


/* ===========================================
   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);
}

/* ===========================================
   HERO VIDEO MODULE
   =========================================== */

/* Dark gradient overlay for text readability */
.hero-overlay {
    background: linear-gradient(
            to bottom,
            rgba(var(--sbo-hero-overlay-rgb), 0.2) 0%,
            rgba(var(--sbo-hero-overlay-rgb), 0.4) 50%,
            rgba(var(--sbo-hero-overlay-rgb), 0.6) 100%
    );
}

/* Hero content positioning */
.hero-content {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Hero presenter text */
.hero-presenter {
    font-family: var(--sbo-font-headline-primary);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@media (min-width: 640px) {
    .hero-presenter {
        font-size: 1.25rem;
        letter-spacing: 0.15em;
    }
}

@media (min-width: 768px) {
    .hero-presenter {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-presenter {
        font-size: 2rem;
    }
}

/* Hero logo */
.hero-logo img {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* Reduce and reposition hero logo on mobile */
@media (max-width: 767px) {
    .hero-logo {
        margin-top: 4rem;
        width: 100%;
    }

    .hero-logo img {
        width: 220px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
}

/* Hero Buy Tickets Button - Blue with gold border */
.btn-hero-tickets {
    display: inline-block;
    background: radial-gradient(ellipse at center, #012671 0%, #020b33 100%);
    color: #F4C431;
    font-family: var(--sbo-font-headline-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 3rem;
    border: 3px solid #C9A227;
    border-radius: 50px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-hero-tickets:hover {
    background: radial-gradient(ellipse at center, #0238a0 0%, #041452 100%);
    border-color: #E6BA30;
    transform: translateY(-2px);
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(201, 162, 39, 0.3);
}

.btn-hero-tickets:active {
    transform: translateY(0);
}

/* Hero title styling */
.hero-title {
    font-family: var(--sbo-font-headline-primary);
    text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Hero date styling */
.hero-date {
    font-family: var(--sbo-font-headline-primary);
}

/* Location/Date container animation */
.hero-location-date {
    animation: hero-fade-up 1s ease-out 0.3s both;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video player ensures full coverage */
.module-video .player video,
.module-video .player .wistia_responsive_wrapper {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Force Wistia video to cover container */
.module-video .wistia_embed,
.module-video .wistia_embed > div,
.module-video .wistia_embed video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .hero-location-date {
        gap: 0.5rem;
    }

    .hero-location-date .hero-title,
    .hero-location-date .hero-date {
        font-size: 1.5rem;
    }
}

/* ===========================================
   TENT SEPARATOR
   =========================================== */
.tent-separator {
    position: relative;
    z-index: 30;
    margin-top: -1px;
    line-height: 0;
}

.tent-separator__tent {
    line-height: 0;
}

.tent-separator__tent svg {
    display: block;
}

.tent-separator__bar {
    height: 8px;
    background: var(--sbo-colors-secondary);
}


/* ===========================================
   IMAGE HERO BANNER (no video fallback)
   =========================================== */
.hero-image-banner {
    position: relative;
}

.hero-image-bg {
    display: block;
    width: 100%;
    height: auto;
}

/* Heading layer image */
.hero-heading-layer img {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.15));
}

/* Large hero button */
.btn-hero-tickets--lg {
    padding: 1.25rem 3.5rem !important;
    font-size: 1.1rem !important;
}

@media (min-width: 768px) {
    .btn-hero-tickets--lg {
        padding: 1.4rem 4rem !important;
        font-size: 1.25rem !important;
    }
}

/* Alt button style (yellow bg) */
.btn-hero-tickets--alt {
    background: var(--sbo-colors-secondary) !important;
    color: var(--sbo-colors-black) !important;
    border-color: var(--sbo-colors-tertiary-dark) !important;
}

.btn-hero-tickets--alt:hover {
    background: var(--sbo-colors-tertiary-medium) !important;
    border-color: var(--sbo-colors-secondary) !important;
}



.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 — GLOBAL RESET
   White background + black text as the bulletproof default.
   Cart totals box is the only intentional dark accent.
   Status colors (#28a745, #dc3545, #17a2b8) are NOT brand
   colors — leave them hardcoded.
   =========================================== */

/* Global white-bg / black-text reset for all commerce pages */
.woocommerce-cart,
.woocommerce-checkout,
.woocommerce-order-received,
.woocommerce-order-pay,
.woocommerce-account,
.woocommerce-view-order {
    background: #ffffff;
    color: #000000;
}

/* Catch-all: every child inherits black text unless overridden */
.woocommerce-cart *,
.woocommerce-checkout *,
.woocommerce-order-received *,
.woocommerce-order-pay *,
.woocommerce-account *,
.woocommerce-view-order * {
    color: inherit;
}

/* 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: #000000;
    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: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce table.shop_table thead {
    background: #f5f5f5;
}

.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: #555555;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.woocommerce table.shop_table tbody td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    color: #000000;
}

.woocommerce table.shop_table tbody tr:last-child td {
    border-bottom: none;
}

.woocommerce table.shop_table tbody tr.cart_item:hover {
    background: #fafafa;
}

/* Product Thumbnail */
.woocommerce table.shop_table .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

/* Product Name */
.woocommerce table.shop_table .product-name a {
    font-family: var(--sbo-font-body-primary);
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce table.shop_table .product-name a:hover {
    color: var(--sbo-colors-primary);
}

/* 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: #000000;
}

/* Remove Button — keep red, it's a status color */
.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: #ffffff !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: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    color: #000000;
    font-family: var(--sbo-font-body-primary);
    font-weight: 600;
}

.woocommerce table.shop_table .quantity .qty:focus {
    outline: none;
    border-color: var(--sbo-colors-primary);
    box-shadow: 0 0 0 2px rgba(0, 38, 84, 0.15);
}

/* Actions Row (Coupon & Update) */
.woocommerce table.shop_table td.actions {
    padding: 1.5rem;
    background: #fafafa;
}

/* 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: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    color: #000000;
    font-family: var(--sbo-font-body-primary);
}

.woocommerce .coupon input.input-text::placeholder {
    color: #999999;
}

.woocommerce .coupon input.input-text:focus {
    outline: none;
    border-color: var(--sbo-colors-primary);
}

/* 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: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.woocommerce button.button:hover,
.woocommerce .button:hover {
    background: var(--sbo-colors-primary);
    color: #ffffff;
    transform: translateY(-1px);
}

.woocommerce button.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Cart Collaterals (Totals Section) — intentional dark accent */
.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,
.woocommerce .cart_totals * {
    color: #ffffff;
}

.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-secondary);
    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: #ffffff;
    font-weight: 600;
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
    font-size: 1.25rem;
    color: var(--sbo-colors-secondary);
    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-secondary);
    color: #ffffff;
    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-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 38, 84, 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: #000000;
    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: #000000 !important;
}

dl.variation {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

dl.variation dt {
    opacity: 0.7;
}

dl.variation dd {
    margin-left: 0;
}

/* Order Confirmation headings */
.woocommerce-order .woocommerce-order-details h2,
.woocommerce-order .woocommerce-customer-details h2 {
    color: #000000 !important;
}

/* Checkout form — explicit white background */
.woocommerce form.woocommerce-checkout {
    background: #ffffff;
    color: #000000;
}

.woocommerce form.woocommerce-checkout input,
.woocommerce form.woocommerce-checkout select,
.woocommerce form.woocommerce-checkout textarea {
    background: #ffffff;
    color: #000000;
    border: 1px solid #cccccc;
}

.woocommerce form.woocommerce-checkout label {
    color: #000000;
}

.woocommerce-checkout .shop_table thead th {
    color: #000000;
}

/* Cart Messages — status colors, not brand colors */
.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 #e0e0e0;
    }

    .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: #666666;
        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: #001830;
}

.footer a {
    color: var(--sbo-colors-white) !important;
}

.footer .logo-link img {
    max-width: 200px !important;
}

@media (max-width: 640px) {
    .footer .logo-link img {
        max-width: 120px !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;
    }
}

