#cookie-banner {
    position: fixed;
    bottom: -350px; opacity: 0; visibility: hidden;
    left: 0;
    width: 100%;
    background-color: var(--cream);
    color: var(--text);
    padding: 1rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s, opacity 0.6s;
    font-family: var(--font-body);
    border-top: 1px solid rgba(181,191,138,0.3);
}

#cookie-banner.show {
    bottom: 0; opacity: 1;
    visibility: visible;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    font-size: 0.95rem;
    color: var(--text);
}

.cookie-text strong {
    color: var(--olive);
}

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

.cookie-buttons button {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    border: none;
}

.cookie-buttons #cookie-accept {
    background-color: var(--sage-dark);
    color: var(--white);
}

.cookie-buttons #cookie-accept:hover {
    background-color: var(--olive);
}

.cookie-buttons #cookie-reject {
    background-color: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.cookie-buttons #cookie-reject:hover {
    background-color: rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
