/* Minimal styles so Elementor button styles still work. Users should style via Elementor. */

.subhan-eac-add-to-cart,
.subhan-eac-buy-now {
    display: inline-block;
    cursor: pointer;
}


.subhan-eac-add-to-cart {
    position: relative;
    overflow: hidden;
}

.subhan-eac-add-to-cart.seac-loading {
    color: transparent !important;
}

.subhan-eac-add-to-cart.seac-loading:after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 16px; height: 16px;
    margin-top: -8px;
    margin-left: -8px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin .6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast */
.seac-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: #000;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    z-index: 999999;
    transition: .3s ease;
}

.seac-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
