/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2D1B69 0%, #4A3B8C 100%);
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.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: 2rem;
    flex-wrap: wrap;
}

.cookie-settings {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.cookie-settings-content h4 {
    color: #FFC436;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cookie-category {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.cookie-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #FFC436;
    border-color: #FFC436;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: #2D1B69;
    font-weight: bold;
    font-size: 12px;
}

.cookie-checkbox input[type="checkbox"]:disabled + .checkmark {
    background: #666;
    border-color: #666;
    cursor: not-allowed;
}

.cookie-info strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.cookie-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.3;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

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

.cookie-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.cookie-banner-text a:hover {
    color: #ffffff;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.3rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #FFC436 0%, #FFD700 100%);
    color: #2D1B69;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC436 100%);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.cookie-btn-settings {
    background: transparent;
    color: #FFC436;
    border: 2px solid #FFC436;
}

.cookie-btn-settings:hover {
    background: #FFC436;
    color: #2D1B69;
}

.cookie-btn-save {
    background: linear-gradient(135deg, #FFC436 0%, #FFD700 100%);
    color: #2D1B69;
}

.cookie-btn-save:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC436 100%);
    transform: translateY(-1px);
}

.cookie-btn-back {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

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

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-settings-buttons,
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 0.8rem 1rem;
    }
}