.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background-color: #fff;
    color: #333;
    padding: 20px;
    z-index: 9999;
    display: none;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border: 1px solid #e1e5e9;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-message {
    margin-bottom: 15px;
    line-height: 1.5;
}

.cookie-consent-message h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.cookie-consent-message p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.4;
    font-size: 13px;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 80px;
}

.cookie-accept-btn {
    background-color: #3498db;
    color: white;
    flex: 1;
    min-width: 120px;
}

.cookie-accept-btn:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}



.cookie-settings-btn {
    color: #3498db;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s;
    margin-left: auto;
}

.cookie-settings-btn:hover {
    color: #2980b9;
    text-decoration: underline;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-consent-icon {
    margin-right: 10px;
    font-size: 18px;
    color: #3498db;
}

@media (max-width: 576px) {
    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

