/* ===============================================
   COOKIE CONSENT STYLES
   =============================================== */

#cookie-consent {
    position: fixed;
    bottom: -100%; /* Initially hidden */
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: bottom 0.5s ease-in-out;
}

#cookie-consent.active {
    bottom: 0; /* Slide in */
}

#cookie-consent .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
}

#cookie-consent p {
    margin: 0;
    flex-grow: 1;
    min-width: 300px;
}

#cookie-consent a {
    color: #ffeb3b;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

#accept-cookies, #manage-cookies, #decline-cookies {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

#accept-cookies {
    background: #2e7d32;
    color: #ffffff;
}

#accept-cookies:hover {
    background: #1b5e20;
}

#manage-cookies {
    background: #f8f9fa;
    color: #1a1a1a;
}

#manage-cookies:hover {
    background: #e0e0e0;
}

#decline-cookies {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

#decline-cookies:hover {
    background: #ffffff;
    color: #1a1a1a;
}
