/*
Theme Name: Evolution Airshow
Theme URI: https://example.com/evolution-airshow
Author: Antigravity
Description: A premium, dark aviation event theme with seamless UI and high-tech aesthetics.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: evolution-airshow
*/

:root {
    /* --- Premium Dark Palette --- */
    --color-bg-deep: #07101E;
    /* Deep Navy/Anthracite */
    --color-bg-panel: #0B1220;
    /* Slightly lighter panel bg */
    --color-text-main: #EAF2FF;
    /* High visibility white-blueish */
    --color-text-muted: #B6C6DA;
    /* Muted blue-grey */

    --color-accent-cyan: #35C9FF;
    /* Primary Action / Highlight */
    --color-accent-blue: #1E6BFF;
    /* Deep Blue Accent */
    --color-accent-sunset: #FFB86B;
    /* Warm Accent (Subtle) */

    /* --- Glass Effects --- */
    --glass-bg: rgba(11, 18, 32, 0.75);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glass-blur: blur(16px);

    /* --- Typography --- */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Segoe UI', Inter, Roboto, sans-serif;

    /* --- Layout --- */
    --container-width: 1200px;
    --header-height: 80px;
    --section-gap: 120px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent horizontal scroll from hero effects */
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    line-height: 1.6;
}

/* Global Texture: Subtle Blueprint Grid */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(53, 201, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(53, 201, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    color: var(--color-accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Utility Classes --- */
.section-padding {
    padding: var(--section-gap) 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--color-accent-cyan);
}

/* Glass Panel Utility */
.glass-panel {
    background: rgba(18, 28, 45, 0.85);
    /* Lighter/Blueish for better contrast */
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Slightly stronger border */
    box-shadow: var(--glass-shadow);
    border-radius: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 107, 255, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(53, 201, 255, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-accent-cyan);
    color: var(--color-accent-cyan);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--color-accent-cyan);
    color: #000;
}

/* --- Header / Navigation - Glass Pill Style --- */
.site-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: auto;
    pointer-events: none;
    /* Click-through outside pill */
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
    padding: 0;
}

.site-header.scrolled {
    top: 10px;
}

.header-inner {
    width: auto;
    max-width: 95%;
    background: rgba(11, 18, 32, 0.85);
    /* Dark Glass Pill */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    padding: 10px 40px;
    pointer-events: auto;
    /* Re-enable clicks */
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-branding img,
.site-branding .custom-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Ensure simple logo is white */
    display: block;
    /* Fix spacing */
}

/* Pill Menu Nav Items */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
    /* Tighter gap */
}

.main-navigation a {
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.main-navigation a:hover,
.main-navigation .current_page_item>a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.main-navigation a::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    /* Above mobile menu overlay */
}

/* =========================================
   Responsive Navigation & Submenus
   ========================================= */

/* --- Desktop Menu (min-width: 901px) --- */
@media (min-width: 901px) {
    .main-navigation ul {
        display: flex;
        gap: 30px;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .main-navigation ul li {
        position: relative;
        /* For submenu positioning */
    }

    /* Submenu Container */
    .main-navigation ul ul {
        position: absolute;
        top: 100%;
        left: 0;
        display: block;
        /* Flex change to block for vertical list */
        min-width: 220px;
        background: rgba(11, 18, 32, 0.95);
        /* Dark Glass */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(53, 201, 255, 0.3);
        /* Neon Border */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-radius: 4px;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s cubic-bezier(0.2, 0.6, 0.3, 1);
        z-index: 999;
    }

    /* Show Submenu on Hover */
    .main-navigation ul li:hover>ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Submenu Items */
    .main-navigation ul ul li {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-navigation ul ul li:last-child {
        border-bottom: none;
    }

    .main-navigation ul ul li a {
        display: block;
        padding: 10px 20px;
        font-size: 0.9rem;
        color: #B6C6DA;
        white-space: nowrap;
        background: transparent;
    }

    .main-navigation ul ul li a:hover {
        background: rgba(53, 201, 255, 0.1);
        color: #35C9FF;
        padding-left: 25px;
        /* Slide effect */
    }
}

/* --- Mobile Menu (max-width: 900px) --- */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
        /* Show hamburger */
        pointer-events: auto;
        /* Ensure clickable */
    }

    .main-navigation {
        position: absolute;
        /* Relative to header pill or body */
        top: 100%;
        /* Below header */
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        /* Fit content */
        max-height: 80vh;
        /* Scroll if too long */
        overflow-y: auto;

        background: rgba(11, 18, 32, 0.98);
        /* Deep Dark */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(53, 201, 255, 0.2);
        border-radius: 0 0 12px 12px;
        /* Rounded bottom */
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

        padding: 30px 20px;
        transform: translateY(-20px);
        /* Small slide */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.2, 0.6, 0.3, 1);
        z-index: 9000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        pointer-events: auto;
        /* Ensure content is clickable */
        margin-top: 10px;
        /* Gap from header */
    }

    .main-navigation.toggled {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-navigation ul {
        display: block;
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

    .main-navigation li {
        margin-bottom: 15px;
        opacity: 1;
        /* Reset logic */
        transform: none;
    }

    .main-navigation a {
        font-size: 1.2rem;
        /* Slightly smaller for compactness */
        font-weight: 600;
        color: #fff;
        display: block;
        padding: 10px 0;
    }

    /* Mobile Submenu */
    .main-navigation ul ul {
        margin-top: 5px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        display: block;
        margin-bottom: 10px;
    }

    .main-navigation ul ul li {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-navigation ul ul li:last-child {
        border-bottom: none;
    }

    .main-navigation ul ul a {
        font-size: 1rem;
        font-weight: 400;
        color: #B6C6DA;
        padding: 8px 0;
    }
}



/* --- Hero Section --- */
/* --- Hero Section --- */

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: top center;
    /* Align top edge as requested */
    background-image: url('assets/images/hero-desktop.png');
    /* Default Desktop */
    margin-top: -80px;
    padding-top: 80px;
    /* overflow: hidden; Removed to allow countdown to bridge */
}

/* Responsive Hero Images */
@media (max-width: 1024px) {
    .hero-section {
        background-image: url('assets/images/hero-tablet.png');
        background-position: top center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-image: url('assets/images/hero-mobile.png');
        height: 100vh;
        /* Full height on mobile */
        min-height: auto;
        background-position: top center;
    }
}

/* --- Anniversary Badge --- */
/* --- Anniversary Badge --- */
.hero-badge {
    width: 200px !important;
    max-width: 200px !important;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(53, 201, 255, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
    flex-shrink: 0;
    margin: 0 auto 20px auto;
    /* Centering + Bottom Spacing */
    display: block;
    /* Required for margin auto */
    /* Animation */
    animation: fadeInBadge 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.hero-badge:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(53, 201, 255, 0.6));
}

@keyframes fadeInBadge {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-badge-container {
        margin-bottom: 10px;
    }

    .hero-badge {
        width: 120px !important;
        /* Force override for mobile */
        max-width: 120px !important;
    }
}

/* Premium Gradient Overlay: Sunset to Deep Navy */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(7, 16, 30, 0.4) 0%,
            rgba(7, 16, 30, 0.6) 50%,
            var(--color-bg-deep) 100%);
    z-index: 1;
}

/* Subtle Animated Contrails (Optional Polish) */
.hero-section::after {
    content: "";
    position: absolute;
    top: 20%;
    left: -20%;
    width: 200%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255, 184, 107, 0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
    margin-bottom: 0;
    padding-top: 15vh !important;
    /* Push content down as requested */
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 0.2em;
    text-transform: uppercase;
    letter-spacing: 2px;

    /* Combined Look: Silver Gradient + Tech Outline + Glow */
    background: linear-gradient(135deg, #ffffff 40%, #B6C6DA 100%);
    /* Silver/Grey Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Decoration */
    -webkit-text-stroke: 1px rgba(53, 201, 255, 0.8);
    /* Cyan Outline */
    filter: drop-shadow(0 0 15px rgba(53, 201, 255, 0.4));
    /* Glow via Filter */
}

/* Mobile Adjustment for Headline */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        /* Smaller on mobile */
        -webkit-text-stroke: 1px rgba(53, 201, 255, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-meta {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    color: var(--color-accent-cyan);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

/* --- Bridge Countdown --- */
.bridge-countdown-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 90%;
    max-width: 900px;
    z-index: 10;
}

.countdown-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 40px;
    /* Dark Glass Bridge */
    background: rgba(13, 22, 36, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(53, 201, 255, 0.3);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    /* Tech highlight line */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-cyan), transparent);
    opacity: 0.8;
}

.countdown-box {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 15px rgba(53, 201, 255, 0.6);
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    letter-spacing: 2px;
    margin-top: 5px;
    opacity: 0.8;
}

/* --- Section 2: Program (Connected) --- */
.section-program {
    /* Top padding accommodates half the countdown bridge height (~100px/2 + buffer) */
    padding-top: 140px;
    background: radial-gradient(circle at top center, #101c2e 0%, var(--color-bg-deep) 60%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.divider-line {
    width: 60px;
    height: 4px;
    background: var(--color-accent-cyan);
    margin: 20px auto 0;
    box-shadow: 0 0 10px rgba(53, 201, 255, 0.5);
    border-radius: 2px;
}

/* HUD Cards */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stacked layout requested */
    gap: 30px;
}

/* Reduced Spacing Overrides requested by User (40px effective gap) */
#program.section-padding {
    padding-bottom: 20px;
}

#tickets.section-padding {
    padding-top: 20px;
    padding-bottom: 20px;
}

#location.section-padding {
    padding-top: 20px;
}

.hud-card {
    position: relative;
    padding: 40px 30px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hud-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-cyan);
    box-shadow: 0 10px 40px rgba(53, 201, 255, 0.15);
}

/* HUD Decor */
.hud-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent-cyan);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.hud-card:hover .hud-corner {
    opacity: 1;
}

.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.card-time {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 4px;
    color: var(--color-accent-cyan);
    font-family: monospace;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    padding: 12px 15px;
    /* More padding and side padding */
    color: #B6C6DA;
    /* Muted Blue-Grey */
    border-bottom: 1px solid rgba(53, 201, 255, 0.1);
    /* Subtle border */
    display: flex;
    /* Flexbox for better alignment if content allows, mostly wraps text though */
    flex-wrap: wrap;
    /* responsive */
    align-items: baseline;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.card-list li:hover {
    background: rgba(53, 201, 255, 0.03);
    /* Hover effect */
    border-bottom-color: rgba(53, 201, 255, 0.2);
}

.card-list li:last-child {
    border-bottom: none;
}

/* Time / Label */
.card-list li strong {
    color: #35C9FF;
    /* Accent Cyan */
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-right: 8px;
    min-width: 60px;
    /* alignment help */
}

/* Call to Action Section */
.cta-box {
    text-align: center;
    width: 100%;
    /* Full width requested */
    max-width: 100%;
    /* Override previous 800px limit */
    margin: 0 auto;
    padding: 80px;
    /* Brighter background & Glow */
    background: linear-gradient(135deg, rgba(20, 35, 60, 0.9), rgba(15, 25, 45, 0.85));
    border: 1px solid rgba(53, 201, 255, 0.4);
    box-shadow:
        0 0 30px rgba(53, 201, 255, 0.15),
        inset 0 0 50px rgba(53, 201, 255, 0.05);
    position: relative;
    backdrop-filter: blur(20px);
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #fff;
    /* Brighter text */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Footer */
.site-footer {
    background: #050b16;
    border-top: 1px solid var(--glass-border);
    padding: 60px 0;
    margin-top: auto;
}

.footer-blueprint {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-text {
    font-family: monospace;
    color: var(--color-text-muted);
    opacity: 0.5;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .bridge-countdown-wrapper {
        width: 95%;
    }

    .countdown-container {
        padding: 20px 10px;
        gap: 10px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-bg-deep);
        padding: 20px;
        border-top: 1px solid var(--glass-border);
    }

    .main-navigation.toggled {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hero-section {
        height: auto;
        padding: 120px 0 100px;
    }
}

/* =========================================
   WooCommerce Overrides
   ========================================= */

/* --- General Layout --- */
.woocommerce-page .site-header {
    background: var(--glass-bg);
    /* Ensure header is readable on shop pages */
    position: relative;
    top: 0;
    margin-bottom: 0;
}

.woocommerce div.product,
.woocommerce-page .entry-content,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
    color: var(--color-text-main);
}

/* --- Buttons --- */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    box-shadow: 0 0 20px rgba(53, 201, 255, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
    color: #fff;
}

.woocommerce a.added_to_cart {
    padding-top: 10px;
    display: inline-block;
}

/* --- Shop Grid / Loop --- */
.woocommerce ul.products li.product {
    background: rgba(11, 18, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.woocommerce ul.products li.product:hover {
    background: rgba(18, 28, 45, 0.9);
    border-color: var(--color-accent-cyan);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding-top: 10px;
}

.woocommerce ul.products li.product .price {
    color: var(--color-accent-cyan);
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
}

/* --- Single Product --- */
.woocommerce div.product .product_title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.woocommerce div.product .price {
    font-size: 1.5rem;
    color: var(--color-accent-cyan);
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    background: transparent;
    border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: var(--color-bg-deep);
    color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--color-text-muted);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--color-accent-cyan);
}

/* --- Cart & Checkout Forms --- */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    border-radius: 4px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--color-accent-cyan);
    outline: none;
    box-shadow: 0 0 10px rgba(53, 201, 255, 0.2);
}

.woocommerce table.shop_table {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(11, 18, 32, 0.4);
}

.woocommerce table.shop_table th {
    color: var(--color-accent-cyan);
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
}

.woocommerce table.shop_table td {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce a.remove {
    color: #ff6b6b !important;
    background: transparent;
    border: 1px solid #ff6b6b;
}

.woocommerce a.remove:hover {
    background: #ff6b6b;
    color: #fff !important;
}

/* --- Messages / Notices --- */
.woocommerce-message,
.woocommerce-info {
    background-color: rgba(53, 201, 255, 0.1);
    color: var(--color-accent-cyan);
    border-top: 3px solid var(--color-accent-cyan);
}

.woocommerce-error {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border-top: 3px solid #ff6b6b;
}

/* =========================================
   User Requested Refinements (Step 46)
   ========================================= */

/* Remove default sidebar if it appears via CSS as well (just in case) */
.woocommerce-page #secondary {
    display: none !important;
}

/* Price Styling: Bolder and Green #00d084 */
.woocommerce ul.products li.product .price,
.woocommerce div.product .price {
    color: #00d084 !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(0, 208, 132, 0.4);
}

/* Checkout / Form Inputs: Force Dark Background & Readable Placeholder */
#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background-color: #0B1220 !important;
    /* Force dark background */
    color: #fff !important;
    /* Force white text */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Ensure Labels are visible */
.woocommerce form .form-row label {
    color: var(--color-text-main);
    line-height: 2;
}

/* Placeholder Styling - Darker for contrast against white text */
.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder {
    color: #64748b !important;
    /* Slate 500 - Distinct from white */
    opacity: 1;
}

.woocommerce form .form-row input.input-text:-ms-input-placeholder,
.woocommerce form .form-row textarea:-ms-input-placeholder {
    color: #64748b !important;
}

.woocommerce form .form-row input.input-text::-ms-input-placeholder,
.woocommerce form .form-row textarea::-ms-input-placeholder {
    color: #64748b !important;
}

/* =========================================
   WooCommerce Block Checkout Support
   (New blocks use different classes)
   ========================================= */

/* Inputs & Textareas (Block) */
.wc-block-components-text-input input,
.wc-block-components-textarea textarea,
.wc-block-components-combobox .wc-block-components-combobox__control,
.wc-block-components-text-input.is-active input,
.wc-block-components-text-input.is-focused input {
    background-color: #0B1220 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
}

/* Labels (Block) */
.wc-block-components-text-input label,
.wc-block-components-combobox label {
    color: #64748b !important;
    /* Placeholder/Label color */
    background: transparent !important;
}

/* Focused Labels (Move up) */
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input.is-focused label,
.wc-block-components-text-input:focus-within label {
    background-color: #07101E !important;
    /* Match body bg to hide line if needed */
    color: var(--color-accent-cyan) !important;
}

/* Select/Combobox Dropdowns */
.wc-block-components-combobox-control input {
    background-color: #0B1220 !important;
    color: #fff !important;
}

/* Generic Fallback for standard inputs that might have been missed */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    background-color: #0B1220 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: #64748b !important;
    opacity: 1;
}

/* =========================================
   Navigation Modal (Glass Overlay)
   ========================================= */

.nav-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-modal-overlay.active {
    opacity: 1;
    display: flex;
    /* Ensure it switches to flex when active */
}

.nav-modal-content {
    background: rgba(11, 18, 32, 0.95);
    border: 1px solid rgba(53, 201, 255, 0.3);
    box-shadow: 0 0 40px rgba(53, 201, 255, 0.2);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-modal-overlay.active .nav-modal-content {
    transform: scale(1);
}

.nav-modal-title {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-modal-text {
    color: #B6C6DA;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.nav-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-btn-confirm {
    background: linear-gradient(135deg, #1E6BFF, #35C9FF);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 107, 255, 0.3);
    transition: all 0.2s ease;
}

.nav-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(53, 201, 255, 0.6);
    color: #fff;
}

.nav-btn-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #B6C6DA;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}


/* =========================================
   Hero CTA Spacing & Sticky Footer
   ========================================= */

/* Desktop Spacing for Hero Button */
@media (min-width: 768px) {
    .hero-cta-spacer {
        margin-bottom: 120px !important;
        /* Increased space on desktop */
    }
}

/* Sticky Footer CTA Bar */
#sticky-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 18, 32, 0.95);
    /* Deep dark glass */
    border-top: 1px solid rgba(53, 201, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    /* Hidden by default */
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#sticky-footer-cta.visible {
    transform: translateY(0);
    /* Slide in */
}

/* Sticky Footer Buttons */
.sticky-btn {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.2s;
    text-align: center;
}

/* Button 1: Disabled / Coming Soon */
.sticky-btn.btn-disabled {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
}

/* Button 2: Rundflug (Primary) */
.sticky-btn.btn-primary {
    background: linear-gradient(135deg, #1E6BFF, #35C9FF);
    color: #fff;
    border: none;
    box-shadow: 0 0 15px rgba(53, 201, 255, 0.3);
}

.sticky-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(53, 201, 255, 0.6);
    color: #fff;
}

/* Mobile Adjustments for Sticky Footer */
@media (max-width: 600px) {
    #sticky-footer-cta {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .sticky-btn {
        width: 100%;
        padding: 12px 0;
    }
}