/* --- Global Styles & Variables --- */
:root {
    --bg-main: #fffcf8;
    /* Creamier white */
    --bg-alt: #fcecec;
    /* Soft rose */
    --text-dark: #4a3b32;
    /* Deep Coffee */
    --accent-pink: #d29a9a;
    /* Original pink */
    --accent-gold: #d4af37;
    /* NEW: Premium Gold */
    --accent-gold-hover: #b5952f;
    --text-light: #ffffff;
    --shadow-soft: 0 10px 30px rgba(210, 154, 154, 0.15);
    --shadow-hover: 0 15px 35px rgba(74, 59, 50, 0.2);
    --google-blue: #4285F4;
    --google-green: #34A853;
    --google-yellow: #FBBC05;
    --google-red: #EA4335;
}

html {
    scroll-behavior: smooth;
}

/* ADDED: Fix for horizontal scrolling on mobile */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: "Nunito Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
    /* More premium font */
    color: var(--text-dark);
    margin-top: 0;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* UPDATED: Simplified H2 styling for better alignment */
h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    /* Removed fixed positioning/transform hack */
}

/* Decorative underline for H2 */
h2::after {
    content: 'aaa';
    /* Abstract shape decoration */
    font-family: "Playfair Display";
    font-size: 10px;
    letter-spacing: 5px;
    color: transparent;
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-gold));
    margin: 10px auto 0;
    /* Auto margins center it */
    border-radius: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, var(--text-dark), #6d5548);
    color: var(--text-light);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(74, 59, 50, 0.3);
}

.btn-gold {
    background: linear-gradient(45deg, var(--accent-gold), #f0d57a);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
    background: linear-gradient(45deg, #b5952f, var(--accent-gold));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.btn-google {
    background: white;
    color: #5f6368;
    border: 1px solid #dadce0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
}

.btn-google:hover {
    background: #f8f9fa;
    color: #202124;
    border-color: #dadce0;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
    transform: translateY(-2px);
}

/* --- Social Icons (Header & Footer) --- */
.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: transform 0.3s, color 0.3s;
    margin-right: 5px;
    /* Slight spacing before CTA */
}

.nav-social-icon:hover {
    color: var(--accent-pink);
    transform: scale(1.1);
}

.nav-social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Disable underline for icon in nav */
nav.desktop-nav a.nav-social-icon::after {
    display: none;
}

/* Footer SVG sizing */
.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- Header --- */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

nav.desktop-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav.desktop-nav a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

nav.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s;
}

nav.desktop-nav a:hover::after {
    width: 100%;
}

.header-cta {
    background-color: var(--accent-pink);
    color: white !important;
    padding: 10px 25px;
    border-radius: 30px;
}

.header-cta:hover {
    background-color: var(--text-dark);
}

.header-cta::after {
    display: none !important;
}

/* --- Mobile Menu --- */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 1002;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 1001;
    padding-top: 100px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-overlay ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    font-size: 1.5rem;
    font-family: "Playfair Display";
}

.mobile-nav-overlay a {
    color: var(--text-dark);
}

/* --- Hero Section --- */
#hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease-out;
}

.hero-subtitle {
    display: inline-block;
    background-color: var(--bg-alt);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 35px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hero Slider container */
.hero-visual {
    position: relative;
    height: 600px;
    border-radius: 250px 250px 20px 20px;
    /* Unique arch shape */
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: rotate(-2deg);
    transition: transform 0.5s;
}

.hero-visual:hover {
    transform: rotate(0deg) scale(1.01);
}

.hero-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

/* --- Marquee (Scrolling Text) --- */
/* ADDED: Wrapper to clip the rotated banner */
.marquee-wrapper {
    width: 100%;
    /*overflow: hidden;*/
    margin: 40px 0;
}

.marquee-container {
    background-color: var(--text-dark);
    color: var(--bg-main);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    transform: rotate(1deg) scale(1.05);
    /* Slanted for catchiness */
    /* margin: 40px 0; REMOVED margin from here, moved to wrapper */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: "Playfair Display";
    font-style: italic;
    font-size: 1.2rem;
}

.marquee-content span {
    margin: 0 30px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Features / How it Works --- */
#process {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.process-step {
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.process-step:hover {
    background-color: var(--bg-alt);
    transform: translateY(-10px);
}

.step-number {
    background-color: var(--accent-gold);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
    font-family: "Playfair Display";
    font-size: 1.2rem;
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* --- Gallery --- */
#gallery {
    padding: 100px 0;
    background-color: var(--bg-alt);
    position: relative;
}

/* Wavy top separator */
.wave-top {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23fcecec' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    transform: scaleY(-0.2);
    /* Adjust height */
    transform-origin: bottom;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--text-dark);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--text-dark);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.4s;
    background-color: #fff;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 80px 20px 20px;
    color: white;
    opacity: 0;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-title {
    font-family: "Playfair Display";
    font-size: 1.4rem;
    margin: 0;
}

.item-tag {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.btn-small {
    align-self: flex-start;
    margin-top: 10px;
    padding: 8px 20px;
    background: var(--accent-gold);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* --- About Section --- */
#about {
    padding: 100px 0;
    background: #fff;
}

/* UPDATED: Left align title in about section for better flow */
#about h2 {
    text-align: left;
    margin-left: 0;
}

#about h2::after {
    margin-left: 0;
    /* Left align the underline too */
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img-box {
    flex: 1;
    position: relative;
}

.about-img-box img {
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Decorative square behind image */
.about-img-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    z-index: -1;
}

.about-text-box {
    flex: 1.2;
}

/* --- Testimonials / Google Reviews --- */
#testimonials {
    background-color: var(--bg-main);
    padding: 80px 0;
    text-align: center;
}

.google-rating-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.g-logo {
    font-weight: bold;
    font-size: 1.5rem;
}

.g-blue {
    color: var(--google-blue);
}

.g-red {
    color: var(--google-red);
}

.g-yellow {
    color: var(--google-yellow);
}

.g-green {
    color: var(--google-green);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    position: relative;
    border-top: 4px solid var(--accent-gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-initial {
    width: 40px;
    height: 40px;
    background-color: var(--text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.review-stars {
    color: var(--google-yellow);
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
    display: block;
    margin-top: 2px;
}

/* --- Contact Section --- */
#contact {
    background: linear-gradient(135deg, #2b211e, #4a3b32);
    color: #fff;
    padding: 100px 0;
    position: relative;
}

#contact h2 {
    color: #fff;
}

#contact h2::after {
    background: var(--accent-gold);
}

/* UPDATED: Make H3 specifically gold in contact section for readability */
#contact h3 {
    color: var(--accent-gold);
}

.contact-container-flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-col {
    flex: 1;
    min-width: 300px;
}

.contact-form-col {
    flex: 1.5;
    min-width: 300px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    margin-top: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

/* Responsive Form Grid */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    box-sizing: border-box;
    /* Important for alignment */
}

input:focus,
textarea:focus {
    outline: 2px solid var(--accent-gold);
}

/* --- Footer --- */
footer {
    background-color: #1a1512;
    color: #888;
    padding: 50px 0 20px;
    text-align: center;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--accent-gold);
}

/* --- Floating CTA --- */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-gold);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    z-index: 999;
    animation: pulse 2s infinite;
    cursor: pointer;
    border: 4px solid white;
}

.floating-cta svg {
    width: 30px;
    height: 30px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Cake Builder --- */
#cake-builder {
    padding: 100px 0;
    background: #fff;
}

.cake-builder-wrapper {
    background: var(--bg-main);
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto;
}

.builder-step {
    display: none;
    animation: fadeIn 0.5s;
}

.builder-step.active {
    display: block;
}

.builder-step h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.option-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.option-card.selected {
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.option-card span {
    display: block;
    margin-top: 10px;
}

.option-card>span:first-child:not(:only-child) {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    margin-top: 0;
}

.builder-nav {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.builder-nav .btn {
    padding: 12px 30px;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    order: -1;
    flex-basis: 100%;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 4px;
    transition: width 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ... existing styles ... */
/* --- Responsive --- */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-visual {
        height: 400px;
        border-radius: 20px;
        transform: rotate(0);
    }

    .about-wrapper {
        flex-direction: column;
    }

    /* Center title again on mobile since layout is stacked */
    #about h2 {
        text-align: center;
    }

    #about h2::after {
        margin: 10px auto 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    nav.desktop-nav {
        display: none;
    }

    .hero-badges {
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Form Fix: Stack columns on mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-container-flex {
        flex-direction: column;
    }

    .contact-wrapper {
        padding: 30px 20px;
    }

    .cake-builder-wrapper {
        padding: 20px;
    }
}

/* --- Summary & Modal Styles --- */
#cake-summary {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 2px dashed var(--accent-gold);
    margin-bottom: 30px;
}

#cake-summary ul {
    list-style: none;
    padding-left: 0;
}

#cake-summary li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-main);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.visible .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
}

.modal-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.modal-content h2::after {
    margin-left: 0;
}

/* --- Cookie Consent Banner --- */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    display: none;
    /* Hidden by default, shown with JS */
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    box-sizing: border-box; /* Fix for overflow on mobile */
}

#cookie-consent-banner p {
    margin: 0;
    flex-grow: 1;
}

#cookie-consent-banner a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
    justify-content: center; /* Center buttons when they wrap */
}

#accept-cookies {
    background: var(--accent-gold);
    color: white;
    border: none;
}

#decline-cookies {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

/* --- Footer Links --- */
.footer-link {
    color: #aaa;
    margin: 0 10px;
}

.footer-link:hover {
    color: var(--accent-gold);
}