/* Colors */

/* LIGHT MODE THEME VARIABLES */
:root {
    /* Backgrounds */
    --bg: #ffffff;
    --bg2: #F8FAFC;
    --bg-light: #ffffff;
    --card-bg: #ffffff;
    --card-bg2: #1e293b;
    --footer: #1e293b;
    --navbar: #ffffff;

    /* Accent & Button Colors */
    --accent: #126C9F;
    --accent2: #126C9F;
    --accent-600: #0f5a8a;
    --accent-orange: #126C9F;
    --accent-icon: #00AB91;
    --button-color: #126C9F;
    --button-color2: #10b981;

    /* Border colors */
    --border-color: #cfcfcf;
    --border-color-checked: #126C9F;

    /* Text Colors */
    --dark-text: #1E293B;
    --light-text: #64748B;
    --normal-text: #1E293B;
    --price-text: #6b7280;
    --label-text: #374151;
    --white-text: #ffffff;

    /* Slider Colors */
    --slider: #126C9F;
}

/* DARK MODE THEME VARIABLES */
[data-theme="dark"] {
    /* Backgrounds */
    --bg: #001f22;
    --bg2: #003233;
    --bg-light: #001f22;
    --card-bg: #003233;
    --card-bg2: #003233;
    --footer: #003233;
    --navbar: #003233;

    /* Accent & Button Colors */
    --accent: #003233;
    --accent2: #ffffff;
    --accent-600: #00AB91;
    --accent-orange: #f58a51;
    --accent-icon: #f58a51;
    --button-color: #00AB91;
    --button-color2: #f58a51;

    /* Border colors */
    --border-color: #ffffff;
    --border-color-checked: #00AB91;

    /* Text Colors */
    --dark-text: #ffffff;
    --light-text: #ffffff;
    --normal-text: #ffffff;
    --price-text: #ffffff;
    --label-text: #ffffff;
    --white-text: #ffffff;

    /* Slider Colors */
    --slider: #00AB91;

    color-scheme: dark;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    max-width: 900px;
    margin: auto;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #1E293B;
    flex: 1 1 60%;
}

.cookie-content a {
    color: var(--accent-600);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex: 1 1 35%;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-primary,
.btn-secondary {
    padding: 1rem;
    font-weight: 600;
    border: none;
    color: white;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-hidden {
    display: none;
}

.cookie-hidden-green {
    display: none;
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}