/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c1810;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-banner-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #FFD700;
    text-decoration: none;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #C41E3A;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #a01729;
}

.cookie-btn-customize {
    background: #FFD700;
    color: #2c1810;
}

.cookie-btn-customize:hover {
    background: #e6c200;
}

.cookie-policy-link {
    color: #FFD700;
    text-decoration: none;
.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #666;
}

.cookie-btn-decline:hover {
    background: #333;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

/* Cookie Customization Styles */
.cookie-customization {
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 20px;
    margin-top: 16px;
}

.cookie-options h4 {
    color: #FFD700;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.cookie-option {
    margin-bottom: 16px;
    padding: 12px;
    background: #2c1810;
    border-radius: 6px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin: 0;
}

.cookie-option p {
    margin: 8px 0 0 24px;
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.4;
}

.cookie-custom-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-banner-text {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}