/**
 * NSC Google RRME Link - Frontend Styles
 * @package NSC_Google_RRME_Link
 */

#nsc-rrme-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 4px solid #ff6915;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    animation: nscSlideUp 0.5s ease-out;
}

.nsc-rrme-hidden {
    display: none !important;
}

.nsc-rrme-text {
    font-size: 15px;
    color: #333;
    max-width: 700px;
    line-height: 1.5;
}

.nsc-rrme-btn {
    background: #ff6915;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
    white-space: nowrap;
}

.nsc-rrme-btn:hover {
    background: #e55a12;
}

.nsc-rrme-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.nsc-rrme-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    color: #999;
    font-size: 24px;
    line-height: 1;
    transition: color 0.2s ease;
}

.nsc-rrme-close:hover {
    color: #333;
}

@keyframes nscSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #nsc-rrme-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }
    
    .nsc-rrme-text {
        font-size: 14px;
    }
    
    .nsc-rrme-btn {
        width: 100%;
    }
}




/* Assine  */
.swg-button-light {
    cursor: pointer;
}