/* Inline checkout (sidebar widget) styles — extracted from _checkout.php */

/* Access box (enrolled state) */
.checkout-access-box {
    text-align: center;
    padding: 1rem 0;
}
.checkout-access-icon { font-size: 2rem; }
.checkout-access-title {
    font-family: 'Instrument Serif', serif;
    margin: 0.5rem 0;
}
.checkout-access-btn {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
}

/* Offer ends (countdown wrapper) */
.checkout-offer-ends-label { color: var(--muted, #888); }
.checkout-countdown-timer {
    font-family: 'Space Mono', monospace;
    color: #C9A96E;
    margin-top: 0.2rem;
}
.checkout-offer-ends-wrap {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: #888;
}

/* Payment section */
.checkout-payment-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

/* Gateway hint */
.checkout-gateway-hint {
    color: var(--muted, #888);
    display: block;
    font-size: 0.8rem;
}
.checkout-gateway-hint.is-disabled { color: #f87171; }

/* Country */
.checkout-country-label {
    display: block;
    font-size: 0.85rem;
    color: var(--muted, #888);
    margin-bottom: 0.4rem;
}
.checkout-country-select {
    background: var(--bg, #0A0A0A);
    color: var(--text, #F5F5F0);
}

/* Invoice */
.checkout-invoice-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.checkout-invoice-checkbox { width: auto; margin: 0; }
.checkout-invoice-text {
    font-size: 0.85rem;
    color: var(--muted, #888);
}
.checkout-invoice-fields {
    display: none;
    margin-top: 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
}
.checkout-invoice-fields.is-visible { display: flex; }

/* Promo */
.checkout-promo-form { display: none; margin-top: 0.5rem; }
.checkout-promo-form.is-visible { display: block; }
.checkout-promo-row {
    display: flex;
    gap: 0.5rem;
}
.checkout-promo-input {
    flex: 1;
    background: var(--bg, #0A0A0A);
    border: 1px solid var(--border, #222);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: var(--text, #F5F5F0);
    font-size: 0.85rem;
}
.checkout-promo-btn {
    background: var(--accent, #C9A96E);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}
.checkout-promo-message {
    display: block;
    margin-top: 0.35rem;
}
.checkout-promo-applied {
    display: none;
    margin-top: 0.5rem;
}
.checkout-promo-applied.is-visible { display: block; }
.checkout-promo-success { color: #4ade80; }
.checkout-promo-remove {
    margin-left: 0.5rem;
    color: #f87171;
    font-size: 0.8rem;
}

/* Terms */
.checkout-terms-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.checkout-terms-checkbox { width: auto; margin: 0; }
.checkout-terms-text {
    font-size: 0.8rem;
    color: var(--muted, #888);
    line-height: 1.4;
}
.checkout-terms-link { color: var(--accent, #C9A96E); }

/* Sections */
.checkout-section-no-border { border: none; }

/* Trust badges row */
.checkout-trust-badges-row { margin-top: 0.35rem; }
