/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
    color: #FFF8E7;
    padding: 1rem 0;
    z-index: 1000;
    border-top: 1px solid rgba(104, 160, 99, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text {
    flex: 1;
}

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

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: #68A063;
    color: white;
}

.cookie-accept:hover {
    background-color: #4A7C59;
}

.cookie-reject {
    background-color: transparent;
    color: #E2E8F0;
    border: 1px solid #4A5568;
}

.cookie-reject:hover {
    background-color: #4A5568;
    color: white;
}

.cookie-customize {
    background-color: transparent;
    color: #E2E8F0;
    border: 1px solid #68A063;
}

.cookie-customize:hover {
    background-color: #68A063;
    color: white;
}

.cookie-link {
    color: #68A063;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

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

/* Cookie Customization Panel */
.cookie-customization {
    background: rgba(45, 55, 72, 0.98);
    border-top: 1px solid rgba(104, 160, 99, 0.3);
    padding: 1.5rem 0;
}

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

.cookie-options h4 {
    color: #FFF8E7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cookie-option {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(104, 160, 99, 0.2);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: #E2E8F0;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #68A063;
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.6;
}

.cookie-option p {
    margin: 0.5rem 0 0 2.25rem;
    font-size: 0.85rem;
    color: #A0AEC0;
    line-height: 1.4;
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.2rem;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-option label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cookie-option p {
        margin-left: 0;
    }
}