:root {
    --bg-pure-black: #000000;
    --text-white: #ffffff;
    --text-muted: #aaaaaa;
    --gold: #d4af37;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-pure-black);
    color: var(--text-white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glossy Black Marble Effect via CSS Gradients */
.marble-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 20% 30%, #151515 0%, #000 40%),
                radial-gradient(circle at 80% 70%, #1a1a1a 0%, #000 50%);
    z-index: -1;
}

/* Utility Classes */
.center-text { text-align: center; }
.flex-col-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.mt-xs { margin-top: 5px; }
.mt-sm { margin-top: 15px; }
.mt-md { margin-top: 30px; }
.mt-lg { margin-top: 50px; }
.mb-sm { margin-bottom: 15px; }
.mb-md { margin-bottom: 30px; }
.mb-lg { margin-bottom: 50px; }
.mb-xl { margin-bottom: 80px; }
.p-0 { padding: 0 !important; }
.pt-120 { padding-top: 160px !important; } /* Overrides .section padding to clear navbar */
.gap-md { gap: 20px; }
.gold-text { color: var(--gold); }
.script-font { font-family: var(--font-script); font-size: 3rem; font-weight: normal; }

/* Frosted Navbar */
.navbar {
    display: flex;
    justify-content: center; /* Centers the text logo */
    align-items: center;
    padding: 0 40px;
    height: 120px; /* Taller, premium layout as requested */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo-flame-link {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    z-index: 1001;
}

.nav-logo-flame {
    height: 80px; /* Bold size */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.nav-logo-flame:hover { transform: scale(1.05); }

.nav-logo-text-link {
    text-decoration: none;
    z-index: 1001;
}

.nav-logo-text {
    height: 60px; /* Large, readable text block */
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.nav-logo-text:hover { opacity: 0.8; }

.navbar.frosted {
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hamburger {
    display: block;
    color: white;
    font-size: 2rem; /* Make hamburger larger for the taller navbar */
    cursor: pointer;
    position: absolute;
    right: 40px;
    z-index: 1002;
}

/* Global Full Screen Nav Overlay (Bento Grid) */
.nav-links {
    position: fixed;
    top: 120px; /* Starts exactly below the 120px navbar */
    left: -100vw;
    width: 100vw;
    height: calc(100vh - 120px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(150px, auto);
    gap: 20px;
    padding: 40px;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    list-style: none;
    overflow-y: auto;
}

.nav-links.active {
    left: 0;
}

.nav-links li {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.nav-links li::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--hover-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
    transform: scale(1.1);
}

.nav-links li:hover::before,
.nav-links li.in-view::before {
    opacity: 0.4; /* Smoothly reveals the image */
    transform: scale(1);
}

.bento-hover-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.nav-links li:hover .bento-hover-video,
.nav-links li.in-view .bento-hover-video {
    opacity: 0.4; /* Smoothly reveals the video */
    transform: scale(1);
}

.nav-links li:hover,
.nav-links li.in-view {
    border-color: rgba(212, 175, 55, 0.4); /* Gold border glow */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-links a {
    position: relative;
    z-index: 1;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 300;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    transition: color 0.3s ease;
}

.nav-links li:hover a,
.nav-links li.in-view a {
    color: var(--gold);
}

.nav-search {
    display: none; /* Hidden on all screens for clean layout */
}

/* Sections & Glass Containers */
.section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-container {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    padding: 40px;
    overflow: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

/* Typography */
.main-heading {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 2.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.sub-heading {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.body-text {
    font-size: 1rem;
    font-weight: 300;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Specific Elements */
.banner-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.portrait-lg {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.divider {
    height: 1px;
    width: 80px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 auto 30px auto;
}

.specialties-box {
    text-align: center;
}
.specialties-box h2 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.specialties-box ul {
    list-style: none;
    color: var(--text-white);
    font-weight: 300;
}
.specialties-box li {
    margin-bottom: 8px;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-3 img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.4s ease;
}
.grid-3 img:hover {
    transform: scale(1.03);
}

.full-width-img {
    width: 100%;
    display: block;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #eee;
    max-width: 900px;
    margin: 0 auto;
}

/* Button */
.btn-primary {
    display: inline-block;
    background: var(--bg-black);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px; /* Soft corners */
    padding: 15px 40px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--text-white);
    border-color: var(--gold);
}

/* Team Grid Specific */
.team-card {
    text-align: center;
}
.team-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
}
.team-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.team-icons a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.team-icons a:hover {
    background: #fff;
    color: #000;
}

/* Footer */
.footer {
    padding: 60px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 50px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--text-muted);
}
.legal-text {
    font-size: 0.8rem;
    color: #888;
}
.legal-text p {
    margin-bottom: 5px;
}

/* ----------------------------------- */
/* DIAMONDS PAGE STYLES */
/* ----------------------------------- */

/* Diamond Hero Banner */
.diamond-hero-banner {
    width: 100%;
    height: 600px; /* Increased from 400px to show more of the image */
    background-size: cover;
    background-position: center top; /* Shift focus to the top where the diamond is */
    background-repeat: no-repeat; /* Prevents 1px edge bleeding */
    position: relative;
    border-radius: 4px; /* Soft corners to match glass boxes */
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.hero-title-left {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

/* Floating Glass Pill Navigation */
.glass-pill-nav {
    position: sticky;
    top: 140px; /* Sticks just below the 120px master navbar */
    z-index: 900;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin: -30px auto 40px auto;
    width: fit-content;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-pill-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.glass-pill-nav a:hover, .glass-pill-nav a.active {
    color: var(--gold);
    background: rgba(255,255,255,0.05);
}

/* Diamond Grid Layout */
.diamond-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    justify-content: center;
}

.diamond-card {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 350px; /* Slightly tighter so 3 fit perfectly with gaps */
}

.diamond-img-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
}

/* Rings Grid Layout */
.rings-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    justify-content: center;
}

.ring-card {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px; /* Allows 4 cards per row comfortably */
}

.ring-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.ring-card:hover img {
    transform: scale(1.05);
}

.diamond-img-container {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.diamond-gif {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.diamond-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.btn-lab-report {
    display: inline-block;
    background: var(--bg-black);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px; /* Soft corners */
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 40px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.btn-lab-report:hover {
    background: var(--gold);
    color: var(--text-white);
    border-color: var(--gold);
}

.btn-white {
    background: var(--bg-black);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px; /* Soft corners */
    padding: 15px 40px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--gold);
    color: var(--text-white);
    border-color: var(--gold);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .glass-pill-nav {
        top: 85px; /* Sits right under the 75px mobile navbar */
        margin: 0px auto 30px auto;
        padding: 5px 10px;
        gap: 10px;
    }
    
    .glass-pill-nav a {
        font-size: 0.7rem;
        padding: 5px 10px;
        letter-spacing: 1px;
    }

    .navbar {
        height: 75px; /* Sleeker height for mobile */
        padding: 0 20px;
    }
    
    .hamburger {
        right: 20px;
        font-size: 1.5rem;
    }

    .nav-logo-flame-link {
        left: 20px;
    }

    .nav-logo-flame {
        height: 50px;
    }

    .nav-logo-text {
        height: 35px; /* Shrink text significantly so it doesn't overlap on small screens */
        margin-left: 50px; /* Push it right so it doesn't hit the flame */
        margin-right: 30px; /* Push it left so it doesn't hit hamburger */
    }

    /* Reduce Padding & Fonts for Mobile */
    .nav-links {
        top: 75px; /* Starts below new sleeker mobile navbar */
        height: calc(100vh - 75px);
        grid-template-columns: 1fr; /* Stack vertically on small screens */
        padding: 20px;
        grid-auto-rows: minmax(100px, auto);
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .script-font {
        font-size: 2rem;
    }

    .section {
        padding: 20px 10px;
    }
    
    .glass-container {
        padding: 20px;
    }

    .portrait-lg {
        width: 200px;
        height: 200px;
    }

    .main-heading {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .script-font {
        font-size: 2rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .banner-image {
        height: 200px;
    }
    
    .grid-3 img {
        height: auto;
        aspect-ratio: 1/1;
    }
}

/* Premium Frosted Plaque for Hero Banners */
.frosted-plaque {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(181, 155, 84, 0.5);
    border-radius: 8px;
    padding: 10px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.frosted-plaque h1, .frosted-plaque h2 {
    color: var(--text-white);
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
}

/* Global Mobile Overrides for Hero Plaques */
@media (max-width: 768px) {
    .frosted-plaque {
        top: 20px;
        left: 20px;
        padding: 8px 15px;
        max-width: 85%;
    }

    .frosted-plaque h1, .frosted-plaque h2 {
        font-size: 1.5rem; /* Reduced from 3rem */
        line-height: 1.2;
    }
}

/* ----------------------------------- */
/* SYMPHONY CONCIERGE CHATBOT STYLES   */
/* ----------------------------------- */
.chat-widget-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.chat-widget-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
}

.chat-widget-btn.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transform: scale(0.8) !important;
}

.chat-widget-btn img {
    width: 35px;
    height: auto;
}

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.chat-window.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chat-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

.chat-close-btn {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.chat-close-btn:hover {
    color: var(--text-white);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-messages::-webkit-scrollbar {
    width: 5px;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 5px;
}

.chat-message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
}

.chat-message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom-left-radius: 2px;
}

.chat-message.user {
    align-self: flex-end;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--text-white);
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 10px 15px;
    color: var(--text-white);
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input-area input:focus {
    border-color: var(--gold);
}

.chat-input-area button {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.chat-input-area button:hover {
    transform: scale(1.1);
}

.typing-indicator {
    display: none;
    align-self: flex-start;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 600px) {
    .chat-window {
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 100%;
        height: 100dvh;
        border-radius: 0;
        border: none;
    }
    .chat-widget-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* --- COOKIE BANNER --- */
.cookie-banner-wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 8px; /* Sleeker rounded corners */
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(181, 155, 84, 0.3); /* Subtle gold border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.cookie-text {
    margin: 0;
    font-size: 0.75rem;
    color: #e0e0e0;
    line-height: 1.3;
    flex: 1;
}

.cookie-btn-compact {
    padding: 6px 15px;
    font-size: 0.75rem;
    border: none;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Mobile Responsiveness for Cookie Banner */
@media (max-width: 600px) {
    .cookie-banner-wrapper {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: fit-content;
        max-width: 85%;
        padding: 10px 20px;
        gap: 15px;
        flex-direction: row;
        justify-content: center;
        border-radius: 8px;
        text-align: left;
    }
    .cookie-text {
        font-size: 0.7rem;
    }
    .cookie-btn-compact {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}
