/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(26, 20, 16, 0.98);
    color: #fff;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 2px solid #C6A052;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-family: 'Cinzel', serif;
    color: #C6A052;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.cookie-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: #dedede;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    white-space: nowrap;
}

.btn-cookie {
    padding: 10px 22px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accept {
    background: #C6A052;
    color: #1a1410;
    border: none;
}

.btn-accept:hover {
    background: #e0b865;
    transform: translateY(-2px);
}

.btn-essential {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-essential:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

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