/* 
 * LoanBazzar Cookie Notice Styling
 */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 1px solid rgba(30, 58, 138, 0.2);
}

.cookie-notice.active {
    transform: translateY(0);
}

.cookie-notice-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h4 {
    margin: 0 0 5px 0;
    color: var(--primary-blue, #1e3a8a);
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted, #555);
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-cookie-accept {
    background-color: var(--primary-blue, #1e3a8a);
    color: white;
}

.btn-cookie-accept:hover {
    background-color: #15296b;
}

.btn-cookie-settings {
    background-color: transparent;
    color: var(--primary-blue, #1e3a8a);
    border: 1px solid var(--primary-blue, #1e3a8a);
}

.btn-cookie-settings:hover {
    background-color: rgba(30, 58, 138, 0.1);
}

@media (max-width: 768px) {
    .cookie-notice-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .btn-cookie {
        flex: 1;
        text-align: center;
    }
}
