.cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #1a2920;
    color: #D4C9B0;
    border-top: 1px solid rgba(196, 164, 90, 0.3);
    padding: 18px 24px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
}

.cookie-notice.visible {
    display: flex;
}

.cookie-notice p {
    margin: 0;
    max-width: 700px;
    opacity: 0.85;
}

.cookie-notice a {
    color: #C4A45A;
    text-decoration: underline;
}

.cookie-notice button {
    background: #C4A45A;
    color: #1a2920;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.2s;
}

.cookie-notice button:hover {
    filter: brightness(1.1);
}

@media (max-width: 600px) {
    .cookie-notice {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
}
