/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f150e;
    box-shadow: 0 -4px 30px rgba(74, 50, 34, 0.3);
    padding: 20px;
    z-index: 9999;
    display: none;
    border-top: 2px solid #d4833a;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 24px;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

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

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: #d4833a;
    color: #fff;
    box-shadow: 0 6px 24px rgba(212, 131, 58, 0.35);
}

.cookie-btn-accept:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 131, 58, 0.5);
    background: #b86a2c;
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #1f150e;
    padding: 30px;
    border-radius: 28px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 131, 58, 0.15);
}

.cookie-modal-content h3 {
    margin-top: 0;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.cookie-modal-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.cookie-modal-content a {
    color: #d4833a;
    text-decoration: underline;
}
