/*
Theme Name: Bricks Child
Theme URI: https://bricksbuilder.io/
Description: Child theme for Bricks.
Author: Bricks
Author URI: https://bricksbuilder.io/
Template: bricks
Version: 1.0.0
Text Domain: bricks
*/

/* CSS Variables for Premium Design System */
:root {
    --bg-dark: #0d0c0c;
    --bg-card: rgba(26, 20, 20, 0.65);
    --bg-card-hover: rgba(43, 31, 31, 0.85);
    --primary: #a62c2b; /* Logo Deep Red */
    --primary-light: #c94c4b;
    --primary-dark: #7d1c1c;
    --accent: #dca842; /* Logo Gold */
    --accent-light: #f2c76b;
    --accent-dark: #b28122;
    --text-light: #f9f9fb;
    --text-muted: #cfcfd4; /* Lighter for much better readability */
    --border-color: rgba(220, 168, 66, 0.12); /* Subtle gold border */
    --font-display: 'Arvo', serif; /* Rustic slab-serif matching the logo */
    --font-body: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --glow: 0 0 20px rgba(166, 44, 43, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.75;
    font-size: 1.35rem; /* Increased body font size */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}



/* Floating BBQ Wood Embers */
.ember-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.ember {
    position: absolute;
    bottom: -20px;
    background: radial-gradient(circle, #ff8c00 20%, rgba(230, 92, 0, 0.8) 50%, rgba(230, 92, 0, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    filter: blur(1px);
    animation: float-ember 12s infinite linear;
}

@keyframes float-ember {
    0% {
        transform: translateY(0) translateX(0) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-110vh) translateX(var(--ember-drift, 50px)) scale(1.2) rotate(360deg);
        opacity: 0;
    }
}

/* Outline background decorative typography */
.text-outline-bg {
    position: absolute;
    font-family: var(--font-display);
    font-size: 10vw;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    user-select: none;
}

/* Scroll Reveal CSS (Upgraded to skew/clip-path) */
.reveal {
    opacity: 0;
    transform: translateY(50px) skewY(2deg) scale(0.96);
    clip-path: inset(100% 0 0 0); /* editorial wipe transition */
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, clip-path;
}
.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0) skewY(0) scale(1);
    clip-path: inset(0% 0 0 0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Angled Dividers */
.angled-divider-top {
    clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -4vw;
}
.angled-divider-bottom {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
    margin-bottom: -4vw;
}

/* Glassmorphism utility */
.card-glass {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.card-glass:hover {
    background: var(--bg-card-hover);
    border-color: rgba(220, 168, 66, 0.35);
    box-shadow: 0 12px 40px rgba(166, 44, 43, 0.25);
    transform: translateY(-5px);
}

/* Parallax Depth */
@media (min-width: 992px) {
    .parallax-bg {
        background-attachment: fixed !important;
    }
}

/* Button Micro-glow Keyframe */
@keyframes button-pulse {
    0% {
        box-shadow: 0 0 20px rgba(166, 44, 43, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(166, 44, 43, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(166, 44, 43, 0.2);
    }
}

/* ==========================================================================
   PREMIUM EMBER GLOW & RISING SPARKS HOVER EFFECT
   ========================================================================== */

/* Unified target containers for relative positioning */
.teaser-card-img,
.story-image-wrapper,
.intro-image-wrapper,
.event-img-wrapper,
.blog-img-wrapper,
.team-avatar,
.wc-product-img-wrapper {
    position: relative;
    overflow: hidden;
}

/* Common image styles inside target containers */
.teaser-card-img img,
.story-image-wrapper img,
.intro-image-wrapper img,
.event-img-wrapper img,
.blog-img-wrapper img,
.team-avatar img,
.wc-product-img-wrapper img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Image behavior on hover: zoom in and dim/increase contrast for fire to pop */
.teaser-card:hover .teaser-card-img img,
.story-img-column:hover .story-image-wrapper img,
.intro-image-wrapper:hover img,
.event-card:hover .event-img-wrapper img,
.blog-card:hover .blog-img-wrapper img,
.team-card:hover .team-avatar img,
.woocommerce ul.products li.product:hover .wc-product-img-wrapper img {
    transform: scale(1.06) !important;
    filter: brightness(0.65) contrast(1.2) !important;
}

/* Also support direct hover on the wrappers in case of different structures */
.teaser-card-img:hover img,
.story-image-wrapper:hover img,
.event-img-wrapper:hover img,
.blog-img-wrapper:hover img,
.team-avatar:hover img,
.wc-product-img-wrapper:hover img {
    transform: scale(1.06) !important;
    filter: brightness(0.65) contrast(1.2) !important;
}

/* Unified Ember sparks and glow overlays using ::before */
.teaser-card-img::before,
.story-image-wrapper::before,
.intro-image-wrapper::before,
.event-img-wrapper::before,
.blog-img-wrapper::before,
.team-avatar::before,
.wc-product-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    background-image: 
        /* Magma core */
        radial-gradient(ellipse at 50% 120%, rgba(255, 69, 0, 0.75) 0%, rgba(183, 39, 4, 0.45) 50%, rgba(11, 11, 12, 0) 85%),
        /* Spark Layer 1 */
        radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.9) 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 60%, rgba(255, 69, 0, 0.8) 2px, transparent 2px),
        /* Spark Layer 2 */
        radial-gradient(circle at 40% 10%, rgba(255, 200, 0, 0.85) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 92, 0, 0.9) 2.5px, transparent 2.5px),
        /* Spark Layer 3 */
        radial-gradient(circle at 10% 70%, rgba(255, 69, 0, 0.75) 3px, transparent 3px),
        radial-gradient(circle at 60% 40%, rgba(255, 140, 0, 0.85) 1.5px, transparent 1.5px),
        /* Spark Layer 4 */
        radial-gradient(circle at 30% 90%, rgba(255, 220, 100, 0.85) 2px, transparent 2px),
        radial-gradient(circle at 90% 20%, rgba(255, 69, 0, 0.9) 1.5px, transparent 1.5px);
        
    background-size: 
        100% 100%,
        120px 240px,
        120px 240px,
        180px 360px,
        180px 360px,
        150px 300px,
        150px 300px,
        200px 400px,
        200px 400px;
        
    background-repeat: 
        no-repeat,
        repeat, repeat,
        repeat, repeat,
        repeat, repeat,
        repeat, repeat;

    background-position: 
        50% 120%,
        0px 0px, 40px 120px,
        20px 50px, 110px 230px,
        50px 100px, 120px 250px,
        10px 10px, 90px 210px;

    mix-blend-mode: screen;
}

/* Activate hover effects when parents or the wrappers themselves are hovered */
.teaser-card:hover .teaser-card-img::before,
.story-img-column:hover .story-image-wrapper::before,
.intro-image-wrapper:hover::before,
.event-card:hover .event-img-wrapper::before,
.blog-card:hover .blog-img-wrapper::before,
.team-card:hover .team-avatar::before,
.woocommerce ul.products li.product:hover .wc-product-img-wrapper::before,
.teaser-card-img:hover::before,
.story-image-wrapper:hover::before,
.event-img-wrapper:hover::before,
.blog-img-wrapper:hover::before,
.team-avatar:hover::before,
.wc-product-img-wrapper:hover::before {
    opacity: 1;
    animation: rising-sparks 9s linear infinite, ember-glow-flicker 3s ease-in-out infinite alternate;
}

/* Keyframes for spark particles rising and drifting horizontally */
@keyframes rising-sparks {
    0% {
        background-position: 
            50% 120%,
            0px 0px, 40px 120px,
            20px 50px, 110px 230px,
            50px 100px, 120px 250px,
            10px 10px, 90px 210px;
    }
    100% {
        background-position: 
            50% 120%,
            -120px -480px, -80px -360px,
            180px -720px, 360px -490px,
            -150px -600px, -300px -350px,
            200px -800px, 400px -590px;
    }
}

/* Keyframes for flickering magma glow intensity */
@keyframes ember-glow-flicker {
    0% { filter: brightness(1) contrast(1); opacity: 0.85; }
    30% { filter: brightness(1.2) contrast(1.1); opacity: 1; }
    60% { filter: brightness(0.9) contrast(0.95); opacity: 0.8; }
    80% { filter: brightness(1.3) contrast(1.15); opacity: 1; }
    100% { filter: brightness(1.05) contrast(1.05); opacity: 0.9; }
}

/* PAGE HELPERS & STRUCTURE */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.text-center { text-align: center; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.section-subtitle {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 4.02rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.section-desc {
    color: var(--text-muted);
    max-width: 700px;
    margin: 16px auto 0;
    font-size: 1.55rem;
    line-height: 1.7;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
}
button.btn, input[type="submit"].btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    box-shadow: var(--glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: button-pulse 3s infinite alternate;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 25px rgba(245, 124, 0, 0.35);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    animation: none;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(220, 168, 66, 0.45);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--bg-dark) !important;
    border-color: var(--accent);
    transform: translateY(-2px) scale(1.02);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.4rem;
}

/* HEADER & NAVIGATION */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 12, 12, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(13, 12, 12, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.site-header.scrolled .header-container {
    padding: 12px 24px;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.site-header.scrolled .site-logo img {
    height: 52px;
}

.site-logo img:hover {
    transform: scale(1.04);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-light);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    box-shadow: var(--glow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(166, 44, 43, 0.4);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

@media (max-width: 1100px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(15, 15, 16, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 40px 24px;
        justify-content: flex-start;
        gap: 24px;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.35rem;
    }
}

.nav-link.active {
    color: var(--accent) !important;
}
.nav-link.active::after {
    width: 100% !important;
}

.cart-link {
    display: flex;
    align-items: center;
    position: relative;
    padding: 6px 15px 6px 0;
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    transition: var(--transition);
}
.cart-link:hover {
    color: var(--accent-light);
}
.cart-count {
    background-color: var(--primary);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -2px;
    box-shadow: 0 0 10px rgba(166, 44, 43, 0.6);
    border: 1px solid rgba(255,255,255,0.2);
    line-height: 1;
}

/* FOOTER Styles */
.site-footer {
    background-color: #0b0b0c;
    padding: 80px 24px 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 0px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 70px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.footer-links, .footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-info h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    width: fit-content;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.footer-info a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info a:hover {
    text-decoration: underline;
    color: var(--accent-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* FRONT PAGE (HOME) SPECIFIC STYLES */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../../uploads/ribs.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 0 24px;
    border-bottom: 1px solid var(--border-color);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(15, 15, 16, 0.4) 0%, rgba(15, 15, 16, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin-top: 50px;
}

.hero-logo {
    height: 150px;
    width: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5.52rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 2.24rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-location-badge svg {
    height: 20px;
    width: 20px;
    color: var(--accent);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.story-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    aspect-ratio: 4/3;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-img:hover {
    transform: scale(1.02);
}

.story-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content-wrapper .section-title {
    margin-bottom: 24px;
}

.story-p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.85;
}

.story-p strong {
    color: var(--text-light);
}

.teaser-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.teaser-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}
.teaser-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
    border-color: rgba(245, 124, 0, 0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.teaser-card-img {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.teaser-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.98);
    transition: transform 0.5s ease;
}
.teaser-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.teaser-badge {
    display: inline-block;
    background-color: rgba(245, 124, 0, 0.15);
    color: var(--primary-light);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    align-self: flex-start;
    letter-spacing: 0.5px;
    border: 1px solid rgba(245, 124, 0, 0.25);
}
.teaser-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.84rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}
.teaser-card-desc {
    color: var(--text-muted);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.teaser-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}
.teaser-price {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--accent);
}

.toast-cta-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.toast-cta-box {
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.08) 0%, rgba(15, 15, 16, 0.6) 100%);
    border: 1px solid rgba(245, 124, 0, 0.35);
    border-radius: 16px;
    padding: 45px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.toast-cta-box h3 {
    font-family: var(--font-display);
    font-size: 2.53rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.toast-cta-text {
    font-size: 1.55rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.location-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.location-info-wrapper {
    display: flex;
    flex-direction: column;
}

.location-p {
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1.75;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    background-color: rgba(245, 124, 0, 0.1);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(245, 124, 0, 0.2);
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-text h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.info-text p {
    color: var(--text-muted);
    font-size: 1.3rem;
}

.info-text a {
    color: var(--primary-light);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.location-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.location-map-wrapper iframe {
    border-radius: 16px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) contrast(90%) hue-rotate(180deg) brightness(0.9);
}

.contact-section {
    padding: 120px 0;
    background-color: #0b0b0c;
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 991px) {
    .hero-title { font-size: 3.68rem; }
    .hero-subtitle { font-size: 1.45rem; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .teaser-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.88rem; }
    .hero-actions { flex-direction: column; gap: 12px; width: 100%; max-width: 280px; margin: 0 auto; }
    .contact-box { padding: 30px 20px; }
}

/* ABOUT US PAGE SPECIFIC STYLES */
.page-about-us {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.page-hero-section {
    position: relative;
    height: 45vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}
.page-hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 4.6rem;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.page-hero-subtitle {
    font-size: 1.72rem;
    color: var(--text-light);
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.about-story-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.about-p {
    font-size: 1.45rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.about-p strong {
    color: white;
}
.story-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    aspect-ratio: 4/3;
}
.story-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smoke-craft-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.craft-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.craft-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
    border-color: rgba(245, 124, 0, 0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.craft-icon {
    color: var(--primary);
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(245, 124, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 124, 0, 0.2);
}
.craft-icon svg {
    width: 30px;
    height: 30px;
}
.craft-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: white;
    margin-bottom: 15px;
}
.craft-card p {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.7;
}

.timeline-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
}
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}
.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    z-index: 2;
}
.timeline-item.reveal,
.timeline-item.reveal.reveal-visible {
    clip-path: none !important;
}
.timeline-item.left {
    left: 0;
    text-align: right;
}
.timeline-item.right {
    left: 50%;
    text-align: left;
}
.timeline-badge {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 50%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 10px rgba(245, 124, 0, 0.4);
}
.timeline-badge span {
    display: block;
    line-height: 1.1;
    white-space: nowrap;
}
.timeline-badge span:only-child {
    font-size: 1.2rem;
}
.timeline-badge span:not(:only-child) {
    font-size: 0.95rem;
}
.timeline-item.left .timeline-badge {
    right: -40px;
    top: 15px;
}
.timeline-item.right .timeline-badge {
    left: -40px;
    top: 15px;
}
.timeline-content {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 8px;
}
.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.25rem;
}

.team-section {
    padding: 120px 0;
}
.team-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.team-avatar {
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}
.team-info {
    padding: 30px;
}
.team-info h3 {
    font-family: var(--font-display);
    font-size: 1.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}
.team-role {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.team-info p {
    color: var(--text-muted);
    font-size: 1.3rem;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .grid-3 { grid-template-columns: 1fr; gap: 24px; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .grid-symmetric-story { grid-template-columns: 1fr; gap: 40px; }
    .page-hero-title { font-size: 3.45rem; }
    .page-hero-subtitle { font-size: 1.4rem; }
    .timeline-container::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 85px; padding-right: 0; text-align: left !important; }
    .timeline-item.right { left: 0; }
    .timeline-item.left .timeline-badge, .timeline-item.right .timeline-badge { left: -9px; right: auto; top: 15px; }
}

/* EVENTS PAGE SPECIFIC STYLES */
.page-events {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.events-list-section {
    padding: 120px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.event-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.event-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
    border-color: rgba(245, 124, 0, 0.35);
    box-shadow: 0 15px 50px rgba(0,0,0,0.45);
}

.event-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    border-right: 1px solid var(--border-color);
}

.event-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--primary);
    color: white;
    border-radius: 12px;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    z-index: 5;
}

.badge-month {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-day {
    font-size: 2.07rem;
    font-weight: 800;
    line-height: 1.1;
}

.event-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-category {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.event-details h3 {
    font-family: var(--font-display);
    font-size: 2.53rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.event-desc {
    color: var(--text-muted);
    font-size: 1.35rem;
    line-height: 1.75;
    margin-bottom: 30px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
    padding: 18px 0;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1.25rem;
}

.meta-item svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.price-item svg {
    color: var(--primary-light);
}

.price-val {
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--accent-light);
    font-size: 1.4rem;
}

.price-val.text-green {
    color: #4caf50;
}

.event-actions {
    display: flex;
    gap: 15px;
}

@media (max-width: 991px) {
    .event-card {
        grid-template-columns: 1fr;
    }
    .event-img-wrapper {
        height: 280px;
        min-height: 280px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .event-details {
        padding: 30px;
    }
    .page-hero-title {
        font-size: 3.45rem;
    }
    .page-hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .event-details h3 {
        font-size: 2.01rem;
    }
    .event-meta {
        flex-direction: column;
        gap: 15px;
    }
    .event-actions .btn {
        width: 100%;
    }
}

/* CATERING PAGE SPECIFIC STYLES */
.catering-hero-section {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../../uploads/2025/07/smoked-ribs-and-pulled-pork.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 120px 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.catering-intro-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content {
    display: flex;
    flex-direction: column;
}

.intro-content .section-title {
    margin-bottom: 24px;
}

.intro-p {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-p strong {
    color: var(--text-light);
}

.intro-p.highlight {
    border-left: 3px solid var(--primary);
    padding-left: 18px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.intro-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    aspect-ratio: 4/3;
}

.intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.intro-img:hover {
    transform: scale(1.02);
}

.packages-section {
    padding: 120px 0;
    background-color: #0b0b0c;
    border-bottom: 1px solid var(--border-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

.package-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 124, 0, 0.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.package-card.premium-card {
    border: 1px solid rgba(255, 179, 0, 0.2);
    box-shadow: 0 5px 25px rgba(255, 179, 0, 0.03);
}

.package-card.premium-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(255, 179, 0, 0.1);
}

.package-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.package-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    background-color: rgba(245, 124, 0, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(245, 124, 0, 0.2);
}

.package-tag.premium-tag {
    color: var(--accent);
    background-color: rgba(255, 179, 0, 0.1);
    border-color: rgba(255, 179, 0, 0.25);
}

.package-header h3 {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
}

.package-lead {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.6;
}

.package-body {
    flex-grow: 1;
}

.menu-group h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-card .menu-group h4 {
    color: var(--accent);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-item-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
}

.menu-item-price {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-light);
    font-size: 1.25rem;
}

.premium-card .menu-item-price {
    color: var(--accent);
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.5;
}

.sides-list {
    gap: 16px;
}

.sides-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 8px;
}

.sides-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.premium-notice {
    background-color: rgba(255, 179, 0, 0.04);
    border: 1px solid rgba(255, 179, 0, 0.15);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.notice-icon {
    color: var(--accent);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.notice-icon svg {
    width: 24px;
    height: 24px;
}

.notice-text h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 6px;
}

.notice-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

.inquiry-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.catering-info-card {
    position: sticky;
    top: 140px;
}

.info-lead {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.catering-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    background-color: rgba(245, 124, 0, 0.1);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(245, 124, 0, 0.2);
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-text h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.detail-text p {
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 500;
}

.detail-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.detail-text a:hover {
    color: var(--primary-light);
}

.detail-note {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-style: italic;
}

.catering-form-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.catering-form-card h3 {
    font-family: var(--font-display);
    font-size: 2.07rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-instructions {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.catering-form-container input[type="text"],
.catering-form-container input[type="email"],
.catering-form-container input[type="tel"],
.catering-form-container textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.2rem;
    transition: var(--transition);
    margin-bottom: 20px;
}

.catering-form-container input[type="text"]:focus,
.catering-form-container input[type="email"]:focus,
.catering-form-container input[type="tel"]:focus,
.catering-form-container textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 12px rgba(245, 124, 0, 0.15);
}

.catering-form-container label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 4px;
}

.catering-form-container input[type="submit"],
.catering-form-container .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-shadow: var(--glow);
    margin-top: 10px;
}

.catering-form-container input[type="submit"]:hover,
.catering-form-container .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(245, 124, 0, 0.35);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.catering-form-container .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fallback-contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .catering-hero-section { height: 50vh; min-height: 400px; padding-top: 100px; }
    .hero-title { font-size: 3.68rem; }
    .hero-subtitle { font-size: 1.45rem; }
    
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-image-wrapper { aspect-ratio: 16/9; order: -1; }
    
    .packages-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .inquiry-grid { grid-template-columns: 1fr; gap: 50px; }
    .catering-info-card { position: static; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.64rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-actions { flex-direction: column; gap: 12px; width: 100%; max-width: 280px; margin: 0 auto; }
    
    .catering-form-card { padding: 30px 20px; }
    .catering-form-container .form-row { grid-template-columns: 1fr; gap: 0; }
    .fallback-contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* CONTACT US PAGE SPECIFIC STYLES */
.page-contact {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.contact-details-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-lead {
    font-size: 1.4rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
    border-color: rgba(245, 124, 0, 0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.info-card-icon {
    color: var(--primary);
    width: 48px;
    height: 48px;
    background: rgba(245, 124, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 124, 0, 0.2);
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
}

.info-card-text h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: white;
    margin-bottom: 4px;
}

.info-card-text p {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.info-card-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.info-card-text a:hover {
    color: var(--primary-light);
}

.info-card-text .note {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-style: italic;
}

.info-card-text .closed-days {
    color: var(--primary-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form-column {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form-column h3 {
    font-family: var(--font-display);
    font-size: 2.07rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-lead {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.2rem;
    transition: var(--transition);
    margin-bottom: 20px;
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 12px rgba(245, 124, 0, 0.15);
}

.contact-form-container label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.contact-form-container button[type="submit"],
.contact-form-container .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-shadow: var(--glow);
    margin-top: 10px;
}

.contact-form-container button[type="submit"]:hover,
.contact-form-container .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(245, 124, 0, 0.35);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.contact-form-container .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fallback-contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-map-section {
    padding: 0;
    line-height: 0;
}

.contact-iframe-map {
    width: 100%;
    height: 500px;
    border: none;
    filter: grayscale(100%) invert(90%) contrast(90%) hue-rotate(180deg) brightness(0.9);
}

@media (max-width: 991px) {
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .contact-form-column { padding: 40px 24px; }
}

@media (max-width: 576px) {
    .contact-cards-grid { grid-template-columns: 1fr; }
    .contact-form-container .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* WOOCOMMERCE SPECIFIC STYLES */
.page-woocommerce-wrapper {
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 80vh;
}

.woocommerce-hero {
    position: relative;
    height: 35vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 60px;
}

.woocommerce-hero .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(13,12,12,0.5) 0%, rgba(13,12,12,0.95) 100%);
    z-index: 1;
}

.woocommerce-hero .hero-content {
    position: relative;
    z-index: 2;
}

.woocommerce-hero .page-hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 4.02rem;
    color: white;
    margin-top: 8px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.woocommerce-main-content {
    padding-bottom: 100px;
}

.woocommerce-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.woocommerce-breadcrumb {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.woocommerce-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}
.woocommerce-breadcrumb a:hover {
    color: var(--primary-light);
}

/* WOO SHOP PRODUCTS LOOP & HOVER */
.woocommerce ul.products {
    margin: 0 0 3em;
    padding: 0;
    list-style: none;
    clear: both;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.woocommerce ul.products li.product {
    float: none;
    width: 100%;
    margin: 0;
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
}

/* Multi-state interactive hover panels */
.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card-hover);
    border-color: rgba(220, 168, 66, 0.35);
    box-shadow: 0 15px 40px rgba(166, 44, 43, 0.25);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.woocommerce ul.products li.product .price {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--accent-light);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.woocommerce ul.products li.product .price del {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-right: 8px;
}

.woocommerce ul.products li.product .price ins {
    background: transparent;
    text-decoration: none;
    color: var(--accent-light);
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Loop buttons */
.woocommerce ul.products li.product .button {
    margin-top: auto;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    color: white !important;
    border-radius: 30px !important;
    padding: 12px 24px !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: var(--transition) !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--glow) !important;
    text-shadow: none !important;
}

.woocommerce ul.products li.product .button:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    box-shadow: 0 0 25px rgba(245, 124, 0, 0.35) !important;
}

.woocommerce ul.products li.product .added_to_cart {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: var(--accent-light);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

/* SINGLE PRODUCT PAGE */
.woocommerce div.product {
    margin-bottom: 0;
}

.woocommerce div.product div.images {
    width: 45%;
    float: left;
    margin-bottom: 2em;
}

.woocommerce div.product div.images img {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.woocommerce div.product div.images img:hover {
    transform: scale(1.02);
}

.woocommerce div.product div.summary {
    width: 50%;
    float: right;
    margin-bottom: 2em;
}

.woocommerce div.product .product_title {
    font-family: var(--font-display);
    font-size: 3.22rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 12px;
}

.woocommerce div.product .price {
    font-family: var(--font-display);
    font-size: 2.3rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 1.35rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.woocommerce div.product form.cart {
    margin-bottom: 2em;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Quantity inputs */
.woocommerce .quantity .qty {
    width: 70px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    outline: none;
    transition: var(--transition);
}

.woocommerce .quantity .qty:focus {
    border-color: var(--primary);
    background-color: rgba(255,255,255,0.06);
    box-shadow: 0 0 10px rgba(166,44,43,0.3);
}

/* Cart buttons single product */
.woocommerce div.product form.cart .button {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    color: white !important;
    border-radius: 30px !important;
    padding: 14px 36px !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: var(--transition) !important;
    box-shadow: var(--glow) !important;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woocommerce div.product form.cart .button:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    box-shadow: 0 0 25px rgba(245, 124, 0, 0.35) !important;
}

.woocommerce div.product .product_meta {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.woocommerce div.product .product_meta a {
    color: var(--accent);
    text-decoration: none;
}

.woocommerce div.product .product_meta a:hover {
    color: var(--primary-light);
}

/* TABS */
.woocommerce-tabs {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    clear: both;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    border: none;
    background: none;
    display: flex;
    gap: 15px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid var(--border-color) !important;
    background-color: var(--bg-card) !important;
    border-radius: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 10px 24px !important;
    font-weight: 700 !important;
    color: var(--text-muted) !important;
    font-family: var(--font-display) !important;
    text-shadow: none !important;
    font-size: 1.15rem !important;
    display: block;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background-color: var(--primary) !important;
    border-color: var(--primary-light) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: white !important;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-family: var(--font-display);
    font-size: 2.07rem;
    color: white;
    margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel p {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* WOO TABLES & GRID OVERLAYS */
table.shop_table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color) !important;
    background-color: var(--bg-card);
}

table.shop_table th {
    font-family: var(--font-display);
    font-weight: 700;
    background-color: rgba(220, 168, 66, 0.05);
    color: var(--accent);
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    font-size: 1.1rem;
}

table.shop_table td {
    padding: 20px !important;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 1.2rem;
    vertical-align: middle;
}

table.shop_table tr:last-child td {
    border-bottom: none;
}

table.shop_table td.product-thumbnail img {
    width: 70px;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

table.shop_table td.product-name a {
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
}

table.shop_table td.product-name a:hover {
    color: var(--accent);
}

/* Buttons inside tables */
.woocommerce table.cart td.actions .button {
    background-color: rgba(255,255,255,0.05) !important;
    color: white !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    transition: var(--transition) !important;
}

.woocommerce table.cart td.actions .button:hover {
    background-color: rgba(255,255,255,0.1) !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    color: white !important;
    border-radius: 30px !important;
    padding: 15px 36px !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    display: block;
    text-align: center;
    margin-top: 15px;
    box-shadow: var(--glow) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: var(--transition) !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    box-shadow: 0 0 25px rgba(245, 124, 0, 0.35) !important;
}

/* CART COLLATERALS */
.cart-collaterals {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    width: 100% !important;
    float: none !important;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.cart-collaterals h2 {
    font-family: var(--font-display);
    font-size: 1.84rem;
    color: white;
    margin-bottom: 20px;
}

/* WOO ALERTS & CHECKOUT NOTICES */
.woocommerce-error, 
.woocommerce-info, 
.woocommerce-message {
    background-color: rgba(26, 20, 20, 0.85) !important;
    border-top: 3px solid var(--primary) !important;
    color: var(--text-light) !important;
    border-radius: 8px;
    padding: 20px 24px 20px 60px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
    font-family: var(--font-body) !important;
    font-size: 1.25rem !important;
    position: relative;
    list-style: none !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.woocommerce-info {
    border-top-color: var(--accent) !important;
}

.woocommerce-message {
    border-top-color: #4caf50 !important;
}

.woocommerce-error::before, 
.woocommerce-info::before, 
.woocommerce-message::before {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.72rem;
}

.woocommerce-error a.button, 
.woocommerce-info a.button, 
.woocommerce-message a.button {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    padding: 8px 18px !important;
    font-family: var(--font-display) !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    transition: var(--transition) !important;
    float: right;
    margin-top: -3px;
}

.woocommerce-error a.button:hover, 
.woocommerce-info a.button:hover, 
.woocommerce-message a.button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* CHECKOUT DESIGN SYSTEM */
.col2-set {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.woocommerce-billing-fields h3, 
.woocommerce-shipping-fields h3,
#order_review_heading {
    font-family: var(--font-display);
    font-size: 2.07rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.woocommerce-billing-fields__field-wrapper, 
.woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-row {
    margin-bottom: 20px !important;
    float: none !important;
    width: 100% !important;
}

.form-row-wide, 
#billing_first_name_field_parent, 
#billing_last_name_field_parent {
    grid-column: span 2;
}

.woocommerce form .form-row label {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
}

/* Custom styled inputs for glowing effect */
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-color) !important;
    padding: 14px 18px !important;
    border-radius: 8px !important;
    color: white !important;
    font-family: var(--font-body) !important;
    font-size: 1.2rem !important;
    transition: var(--transition) !important;
}

.woocommerce form .form-row input.input-text:focus, 
.woocommerce form .form-row textarea:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 12px rgba(245, 124, 0, 0.15) !important;
}

/* ORDER REVIEW BLOCK */
#order_review {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.woocommerce-checkout-review-order-table {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 30px;
}

.woocommerce-checkout-review-order-table th, 
.woocommerce-checkout-review-order-table td {
    padding: 15px 0 !important;
    border-bottom: 1px solid var(--border-color) !important;
}

/* PAYMENT BOX GLOW CARD */
#payment {
    background: transparent !important;
    border: none !important;
}

#payment ul.payment_methods {
    border-bottom: 1px solid var(--border-color) !important;
    padding-bottom: 20px !important;
    margin-bottom: 15px !important;
}

#payment div.payment_box {
    background-color: rgba(255,255,255,0.03) !important;
    color: var(--text-muted) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px;
}

#payment div.payment_box::before {
    border-bottom-color: rgba(255,255,255,0.03) !important;
}

#place_order {
    width: 100%;
    margin-top: 15px;
}

/* RESPONSIVENESS WOOCOMMERCE */
@media (max-width: 991px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
    .woocommerce div.product div.images {
        width: 100%;
        float: none;
        margin-bottom: 2em;
    }
    .woocommerce div.product div.summary {
        width: 100%;
        float: none;
    }
    .col2-set {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    .woocommerce div.product .product_title {
        font-size: 2.53rem;
    }
    .woocommerce-billing-fields__field-wrapper, 
    .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-column: span 1 !important;
    }
}

/* DEFAULT PAGE TEMPLATE STYLES */
.page-main-content {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: var(--bg-dark);
    min-height: 70vh;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-header-section {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 2.88rem;
    font-weight: 800;
    color: var(--primary-light);
    letter-spacing: -0.5px;
}

.page-entry-content {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.page-entry-content p {
    margin-bottom: 24px;
}

.page-entry-content h2 {
    font-family: var(--font-display);
    font-size: 2.07rem;
    color: var(--primary-light);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-entry-content h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

/* ==========================================================================
   PREMIUM GRAPHIC & UI/UX UPGRADES
   ========================================================================== */

/* 1. Curtain-Wipe Scroll Reveal Loader (Upgraded Premium Ember Reveal) */
.curtain-reveal {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    background-color: #0b0b0c;
}
.curtain-reveal img {
    opacity: 0;
    transform: scale(1.1);
    transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease-in-out;
    will-change: opacity, transform;
}
/* Removed .curtain-reveal::before rule to allow sparks display */
.curtain-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255, 69, 0, 0) 0%,
        rgba(255, 69, 0, 0.85) 4%,
        #b72704 10%,
        #2b0e08 20%,
        #0b0b0c 35%,
        #0b0b0c 100%
    );
    z-index: 3;
    pointer-events: none;
    transform: translateX(0);
    will-change: transform;
    box-shadow: -15px 0 30px rgba(255, 69, 0, 0.65), -5px 0 15px rgba(183, 39, 4, 0.8);
}

.curtain-reveal.reveal-visible img {
    opacity: 1;
    transform: scale(1);
}
.curtain-reveal.reveal-visible::after {
    transform: translateX(100.1%);
    transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Kinetic Typography Split Reveals */
.split-word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}
.split-word {
    display: inline-block;
    transform: translate3d(0, 110%, 0) rotate(3deg);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    will-change: transform, opacity;
}
.kinetic-text.reveal-visible .split-word {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
}



/* Scroll Progress Circular Indicator */
.scroll-progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(11, 11, 12, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.4s, transform 0.4s, visibility 0.4s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.scroll-progress-wrap.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.scroll-progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}
.scroll-progress-bar {
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s ease;
}
.scroll-progress-arrow {
    position: relative;
    z-index: 2;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, color 0.3s;
}
.scroll-progress-wrap:hover {
    border-color: var(--primary);
}
.scroll-progress-wrap:hover .scroll-progress-arrow {
    transform: translateY(-3px);
    color: var(--accent);
}

/* Premium Gold Foil Border Gradient */
.gold-trim-card {
    position: relative;
    border: 1px solid transparent !important;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%) border-box !important;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gold-trim-card:hover {
    box-shadow: 0 10px 30px rgba(179, 135, 40, 0.18) !important;
}

/* Organic Slow-Morph Smoke Path SVG Dividers */
.smoke-divider svg path {
    animation: smoke-drift-anim 12s infinite ease-in-out alternate;
    transform-origin: center;
}
.smoke-divider svg path:nth-child(2) {
    animation-delay: -4s;
    animation-duration: 18s;
    opacity: 0.55;
}
@keyframes smoke-drift-anim {
    0% {
        transform: scaleY(0.96) skewX(-1.5deg) translateY(2px);
    }
    100% {
        transform: scaleY(1.04) skewX(1.5deg) translateY(-2px);
    }
}

/* 2. BBQ Smoked Vignette & Textured Grain Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    filter: url(#noise);
    opacity: 0.035;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}
.vignette-section {
    position: relative;
}
.vignette-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

/* 3. Three-Layered Wood-Embers Parallax Particles */
.ember-bg {
    position: absolute;
    bottom: -20px;
    background: radial-gradient(circle, #ff5500 20%, rgba(230, 92, 0, 0.4) 70%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    filter: blur(1px);
    animation: float-ember-bg 16s infinite linear;
}
.ember-mg {
    position: absolute;
    bottom: -20px;
    background: radial-gradient(circle, #ff8c00 20%, rgba(230, 92, 0, 0.6) 60%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    filter: blur(1.5px);
    animation: float-ember-mg 10s infinite linear;
}
.ember-fg {
    position: absolute;
    bottom: -30px;
    background: radial-gradient(circle, #ffa600 30%, rgba(255, 68, 0, 0.8) 70%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    filter: blur(4px); /* Bokeh foreground blur */
    animation: float-ember-fg 6s infinite linear;
    z-index: 5;
}

@keyframes float-ember-bg {
    0% {
        transform: translateY(0) translateX(0) scale(0.6) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% {
        transform: translateY(-110vh) translateX(var(--ember-drift, -30px)) scale(1) rotate(180deg);
        opacity: 0;
    }
}
@keyframes float-ember-mg {
    0% {
        transform: translateY(0) translateX(0) scale(0.8) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(-110vh) translateX(var(--ember-drift, 40px)) scale(1.2) rotate(-270deg);
        opacity: 0;
    }
}
@keyframes float-ember-fg {
    0% {
        transform: translateY(0) translateX(0) scale(0.9) rotate(0deg);
        opacity: 0;
    }
    15% { opacity: 0.7; }
    85% { opacity: 0.7; }
    100% {
        transform: translateY(-110vh) translateX(var(--ember-drift, 100px)) scale(1.5) rotate(360deg);
        opacity: 0;
    }
}

/* 4. Layout Offsets & Asymmetric Overlapping Grid Elements */
.offset-up-30 {
    margin-top: -30px;
}
.offset-down-30 {
    margin-top: 30px;
}
.overlap-container {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .grid-asymmetric-story {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 60px;
        align-items: center;
    }
    .grid-symmetric-story {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    .story-text-column {
        position: relative;
        z-index: 2;
        padding-right: 40px;
    }
    .story-img-column {
        position: relative;
        margin-left: -50px;
        z-index: 1;
    }
}

/* 5. Hot-Coal Magma Hover Glow & Magnetic Buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover {
    box-shadow: 0 0 25px rgba(230, 92, 0, 0.6), 0 0 50px rgba(166, 44, 43, 0.3) !important;
    transform: translateY(-2px);
}
.btn .arrow-char {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover .arrow-char {
    transform: translateX(6px);
}

/* 6. Curved SVG Section Boundaries */
.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    z-index: 5;
    background: transparent;
}
.section-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}
.section-divider.smoke-divider svg {
    height: 80px;
    fill: #0b0b0c; /* Matches adjacent dark section background */
}

/* 7. Catering Accordion Drawers & Glowing Cards */
.accordion-trigger {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    margin: 20px 0;
    transition: all 0.3s ease;
}
.accordion-trigger:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.02);
}
.accordion-trigger .chevron-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--primary);
}
.accordion-open .accordion-trigger .chevron-icon {
    transform: rotate(180deg);
}
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.accordion-open .accordion-content {
    grid-template-rows: 1fr;
}
.accordion-inner {
    min-height: 0;
    padding-bottom: 20px;
}
.catering-items-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.catering-items-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.5;
}
.catering-items-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ==========================================================================
   8. PITMASTER JOURNAL (BLOG) STYLES
   ========================================================================== */

/* Blog Archive Layout */
.page-blog-archive {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.blog-archive-section {
    padding: 100px 0 120px;
    background-color: var(--bg-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

/* Glassmorphic Blog Card */
.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.blog-card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.06);
}

/* Custom Badges */
.blog-date-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(11, 11, 12, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 3;
}

.blog-date-badge .badge-day {
    font-size: 1.45rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.blog-date-badge .badge-month {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-light);
    letter-spacing: 0.5px;
}

.blog-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.blog-category {
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-read-time {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.72rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: var(--transition);
}

.blog-card:hover .blog-card-title {
    color: var(--primary-light);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-read-more {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--primary);
}

.blog-card:hover .blog-read-more {
    color: var(--primary-light);
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
    color: var(--primary-light);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-width: 48px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-light);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: var(--transition);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(245, 124, 0, 0.4);
}

.blog-pagination .page-numbers.dots {
    background-color: transparent;
    border-color: transparent;
    color: var(--text-muted);
}

/* Single Post Layout */
.page-single-post {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.post-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.post-hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.post-hero-meta .meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.post-hero-meta .meta-separator {
    color: rgba(255,255,255,0.25);
    font-size: 1.05rem;
}

.single-post-main {
    padding: 80px 0 100px;
}

.single-post-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 80px;
    border-radius: 24px;
}

/* Rich Text WordPress Content Styling */
.single-post-entry-content {
    font-size: 1.35rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.single-post-entry-content p {
    margin-bottom: 30px;
}

.single-post-entry-content p:last-child {
    margin-bottom: 0;
}

.single-post-entry-content h2,
.single-post-entry-content h3,
.single-post-entry-content h4 {
    font-family: var(--font-display);
    color: white;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.single-post-entry-content h2 { font-size: 2.53rem; }
.single-post-entry-content h3 { font-size: 2.01rem; }
.single-post-entry-content h4 { font-size: 1.55rem; }

.single-post-entry-content strong {
    color: white;
}

.single-post-entry-content ul,
.single-post-entry-content ol {
    margin-bottom: 30px;
    padding-left: 24px;
}

.single-post-entry-content li {
    margin-bottom: 12px;
}

.single-post-entry-content blockquote {
    border-left: 3px solid var(--primary);
    padding: 15px 30px;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-light);
}

.single-post-entry-content figure {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.single-post-entry-content figure img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-entry-content figcaption {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    padding: 12px 20px;
    background: rgba(11, 11, 12, 0.5);
    border-top: 1px solid var(--border-color);
}

/* Post Footer & Tags */
.single-post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-light);
    margin-right: 5px;
}

.post-tags a {
    font-size: 1.05rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.post-tags a:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(245, 124, 0, 0.3);
}

.post-nav-back {
    margin-left: auto;
}

/* Responsive Rules for Blog Pages */
@media (max-width: 1200px) {
    .blog-grid {
        gap: 24px;
    }
    .blog-details {
        padding: 24px;
    }
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .single-post-card {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .single-post-card {
        padding: 40px 24px;
        border-radius: 16px;
    }
    .single-post-entry-content {
        font-size: 1.25rem;
    }
    .single-post-entry-content h2 { font-size: 2.07rem; }
    .single-post-entry-content h3 { font-size: 1.72rem; }
    .single-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .post-nav-back {
        width: 100%;
        margin-left: 0;
    }
    .post-nav-back .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   9. PREMIUM GRAPHIC DESIGN & TRANSITIONS
   ========================================================================== */

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #0b0b0c;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 5px;
    border: 2px solid #0b0b0c;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--accent-light));
}

/* Page Transition Curtain Overlay */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0b0b0c 0%, #161516 50%, var(--primary-dark) 100%);
    z-index: 99999;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.page-transition-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.page-transition-overlay.active {
    pointer-events: auto;
    transform: translateY(0);
}

/* WooCommerce Enhancements & Premium Elements */
.woocommerce select,
.woocommerce .select2-container .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-color) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    height: auto !important;
    outline: none !important;
    font-family: var(--font-body) !important;
    transition: var(--transition) !important;
}

.woocommerce select:focus,
.woocommerce .select2-container--open .select2-selection--single {
    border-color: var(--primary) !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 12px rgba(245, 124, 0, 0.15) !important;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white !important;
    padding-left: 0 !important;
}

.woocommerce .select2-dropdown {
    background-color: #121112 !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    z-index: 99999 !important;
}

.woocommerce .select2-results__option {
    padding: 10px 14px !important;
    color: var(--text-muted) !important;
    font-family: var(--font-body) !important;
}

.woocommerce .select2-results__option--highlighted[aria-selected],
.woocommerce .select2-results__option[aria-selected="true"] {
    background-color: var(--primary) !important;
    color: white !important;
}

.woocommerce-checkout #payment div.payment_box {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

/* WooCommerce Cart Page Subtotal Box & Styling */
.woocommerce .cart-collaterals .cart_totals table {
    border: none !important;
    background: transparent !important;
    margin-bottom: 20px !important;
}

.woocommerce .cart-collaterals .cart_totals table th,
.woocommerce .cart-collaterals .cart_totals table td {
    border-bottom: 1px solid var(--border-color) !important;
    padding: 12px 0 !important;
    background: transparent !important;
}

/* Fix product link overlay styles in the card */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 15px;
}


