/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    font-family: 'Barlow', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    display: none;
}

.cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.cookie-popup.hide {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.cookie-popup h3 {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.cookie-popup p {
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.cookie-popup a {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-popup a:hover {
    color: #0056b3;
    text-decoration: none;
}

.cookie-popup .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-popup .btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Barlow', sans-serif;
    min-width: 120px;
}

.cookie-popup .btn-accept {
    background-color: #007bff;
    color: white;
}

.cookie-popup .btn-accept:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.cookie-popup .btn-reject {
    background-color: #6c757d;
    color: white;
}

.cookie-popup .btn-reject:hover {
    background-color: #545b62;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 15px;
    }
    
    .cookie-popup h3 {
        font-size: 16px;
    }
    
    .cookie-popup p {
        font-size: 13px;
    }
    
    .cookie-popup .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-popup .btn-cookie {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .cookie-popup {
        bottom: 5px;
        left: 5px;
        right: 5px;
        padding: 12px;
    }
    
    .cookie-popup h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .cookie-popup p {
        font-size: 12px;
        margin-bottom: 15px;
    }
}
