/*
 *   Copyright © 2026 natani
 *   https://marketplace.abantecart.com/index.php?rt=product/vendor&v=40
 */
.fsm-cta-popup {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    animation: fsm-cta-fade-in 0.3s ease-out;
}

.fsm-cta-content {
    background: #2d3748;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    pointer-events: auto;
    min-width: 280px;
    max-width: 400px;
}


.fsm-cta-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #2d3748;
}


.fsm-cta-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.fsm-cta-close:hover {
    opacity: 1;
}

.fsm-cta-close:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    border-radius: 2px;
}


.fsm-cta-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 24px;
}


.fsm-cta-icon {
    flex-shrink: 0;
    color: #ef4444;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fsm-cta-icon svg {
    width: 100%;
    height: 100%;
}


.fsm-cta-text {
    flex: 1;
}

.fsm-cta-main {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}


.fsm-cta-popup.fsm-cta-positioned {
    pointer-events: auto;
}


@keyframes fsm-cta-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .fsm-cta-content {
        min-width: 240px;
        max-width: 90%;
        padding: 14px 18px;
    }
    
    .fsm-cta-main {
        font-size: 13px;
    }
    
    .fsm-cta-icon {
        width: 18px;
        height: 18px;
    }
}

