/**
 * OnePay Credit - Cookie Consent Banner Styles
 * Full-width bottom banner with OnePay brand colors
 */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #183949 0%, #234c5e 100%);
    color: white;
    z-index: 99999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-consent-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #DE4E2A 0%, #c44424 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-consent-icon i {
    font-size: 26px;
    color: white;
}

.cookie-consent-text {
    line-height: 1.5;
}

.cookie-consent-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.cookie-consent-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #DE4E2A 0%, #c44424 100%);
    color: white;
}

.cookie-btn-primary:hover {
    box-shadow: 0 4px 20px rgba(222, 78, 42, 0.4);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .cookie-consent-content {
        flex-direction: column;
    }

    .cookie-consent-icon {
        width: 50px;
        height: 50px;
    }

    .cookie-consent-icon i {
        font-size: 22px;
    }

    .cookie-consent-text strong {
        font-size: 16px;
    }

    .cookie-consent-text p {
        font-size: 13px;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 20px;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .cookie-consent-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}