/* Cookie Consent Banner Styles */
:root {
    --cookie-bg: #0f0f0f;
    --cookie-text: #e0e0e0;
    --cookie-accent: #c5a059;
    /* Matching the site's gold */
    --cookie-btn-text: #000;
    --cookie-border: rgba(197, 160, 89, 0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--cookie-bg);
    color: var(--cookie-text);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
    border-top: 1px solid var(--cookie-border);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-text h3 {
    color: var(--cookie-accent);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-family: inherit;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: #ccc;
}

.cookie-text a {
    color: var(--cookie-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.cookie-text a:hover {
    border-color: var(--cookie-accent);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--cookie-accent);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--cookie-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cookie.accept {
    background: var(--cookie-accent);
    color: var(--cookie-btn-text);
}

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.btn-cookie.accept:hover {
    background: #d4b06a;
    border-color: #d4b06a;
}

.btn-cookie.decline:hover {
    background: rgba(197, 160, 89, 0.1);
}