/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: white;
    padding: 1rem 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-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: #6b7c32;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #4a5d23;
}

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

.cookie-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #4a5d23;
    color: white;
}

.cookie-accept:hover {
    background-color: #3a4d1a;
}

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid #666;
}

.cookie-reject:hover {
    background-color: #444;
}

.cookie-customize {
    background-color: transparent;
    color: #6b7c32;
    border: 1px solid #6b7c32;
}

.cookie-customize:hover {
    background-color: #6b7c32;
    color: white;
}

/* Cookie Customization Panel */
.cookie-customization {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #3a3a3a;
    border-radius: 4px;
    border-top: 1px solid #555;
}

.cookie-customization h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cookie-category {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #444;
    border-radius: 4px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
}

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

.cookie-category p {
    margin: 0.5rem 0 0 1.5rem;
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.3;
}

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

.cookie-save {
    background-color: #4a5d23;
    color: white;
}

.cookie-save:hover {
    background-color: #3a4d1a;
}

.cookie-cancel {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.cookie-cancel:hover {
    background-color: #555;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-button {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
    }
    
    .cookie-customization {
        padding: 0.75rem;
    }
}