/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2D4A4A;
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-text {
    margin-bottom: 1rem;
}

.cookie-text h3 {
    color: #E8D5B7;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-accept,
.cookie-save {
    background: #E8D5B7;
    color: #2D4A4A;
}

.cookie-accept:hover,
.cookie-save:hover {
    background: #D4C1A4;
}

.cookie-reject,
.cookie-cancel {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover,
.cookie-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-customize {
    background: rgba(232, 213, 183, 0.1);
    color: #E8D5B7;
    border: 1px solid #E8D5B7;
}

.cookie-customize:hover {
    background: rgba(232, 213, 183, 0.2);
}

.cookie-link {
    color: #E8D5B7;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

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

/* Cookie Preferences Panel */
.cookie-preferences {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cookie-preferences.hidden {
    display: none;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.cookie-category-label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
}

.cookie-category-label input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.1);
}

.cookie-category-label input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-category-name {
    font-weight: 600;
    color: #E8D5B7;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.cookie-category-desc {
    font-size: 0.8rem;
    color: #B8C5C5;
    margin-left: 1.5rem;
}

.cookie-preference-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 0 16px;
    }
    
    .cookie-content {
        padding: 0 16px;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }
    
    .cookie-preference-actions {
        justify-content: center;
    }
}