/* Structural styling matching the template buttons */
.buy-in-one-click-btn-wrapper-5070f956 {
    width: 100%;
    display: block;
}

.buy-in-one-click-btn-5070f956 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    border-style: solid;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    text-transform: uppercase;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    border-radius: 100px;
    padding: 20px;
    color: var(--e-global-color-text, #ffffff);
    background-color: var(--e-global-color-primary, #FF2929);
    border-color: var(--e-global-color-primary, #FF2929);
    border-width: 1px;
}

.buy-in-one-click-btn-5070f956:hover {
    background-color: var(--e-global-color-accent, #B21111);
    border-color: var(--e-global-color-accent, #B21111);
}

.buy-in-one-click-btn-5070f956.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.buy-in-one-click-btn-5070f956.loading::after {
    content: '';
    width: 1em;
    height: 1em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 0.6s linear infinite;
}

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