/* ── Ecomus Buy Now Button ───────────────────────────────────────── */

.embn-buy-now-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    padding: 14px 24px;
    margin-top: 10px;

    background-color: #c8a97e;
    color: #fff;
    border: 2px solid #c8a97e;
    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;

    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    position: relative;
    overflow: hidden;
}

.embn-buy-now-button:hover:not(:disabled) {
    background-color: #b8955f;
    border-color: #b8955f;
    transform: translateY(-1px);
}

.embn-buy-now-button:active:not(:disabled) {
    transform: translateY(0);
}

/* Disabled state — waiting for variation selection */
.embn-buy-now-button:disabled {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.embn-btn-arrow {
    font-size: 15px;
    transition: transform 0.2s ease;
}
.embn-buy-now-button:hover:not(:disabled) .embn-btn-arrow {
    transform: translate(2px, -2px);
}

/* Loading spinner */
.embn-spinner {
    display: inline-block;
    animation: embn-spin 0.7s linear infinite;
}
@keyframes embn-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Variation notice */
.embn-variation-notice {
    margin: 6px 0 0;
    font-size: 12px;
    color: #e05a5a;
}

/* Error notice */
.embn-error-notice {
    padding: 10px 14px;
    margin-top: 10px;
    background: #fff0f0;
    border-left: 3px solid #e05a5a;
    color: #c0392b;
    font-size: 13px;
    border-radius: 3px;
}
