/* ──────────────────────────────────────────────────────────────────────────
   FastEditor Product Button – front-end styles
   Designed to sit nicely alongside the WooCommerce "Add to cart" button
   while being easily overrideable from a child theme.
   ────────────────────────────────────────────────────────────────────────── */

.fe-button-wrapper {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Button ──────────────────────────────────────────────────────────────── */
.fe-design-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.4;
    cursor: pointer;
    border-radius: 4px;

    /* Default colours – override via your theme */
    background-color: #1a1a2e;
    color: #ffffff;
    border: 2px solid #1a1a2e;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.fe-design-button:hover,
.fe-design-button:focus-visible {
    background-color: #16213e;
    border-color: #16213e;
    color: #ffffff;
    outline: none;
    outline-offset: 0px;
}

.fe-design-button:active {
    background-color: #0f3460;
    border-color: #0f3460;
}

/* ── Loading state ───────────────────────────────────────────────────────── */
.fe-design-button.fe-loading {
    opacity: 0.7;
    cursor: wait;
    pointer-events: none;
}

.fe-design-button.fe-loading .fe-button-icon svg {
    animation: fe-spin 0.9s linear infinite;
}

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

/* ── Icon ────────────────────────────────────────────────────────────────── */
.fe-button-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.fe-button-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

/* ── Error message ───────────────────────────────────────────────────────── */
.fe-button-error {
    margin: 0;
    padding: 8px 12px;
    font-size: 0.875em;
    color: #c0392b;
    background-color: #fdf3f2;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

/* ── Section heading in admin ────────────────────────────────────────────── */
.fe-product-options-group .fe-section-heading {
    padding: 10px 12px 0;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #555;
}
