/* ============================================================
   Fungies WooCommerce – Frontend Styles
   Covers: checkout payment block, card icon strips, thank-you page
   ============================================================ */

/* ─── Checkout block wrapper ─────────────────────────────────── */
.fngs-checkout-block {
    margin: 10px 0 4px;
    padding: 14px 16px 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

/* ─── Brand card strip (larger icons inside payment_fields) ──── */
.fngs-checkout-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin-bottom: 10px;
}

.fngs-cb {
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
    transition: transform .15s ease, box-shadow .15s ease;
}

.fngs-cb:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,.18);
}

.fngs-cb svg {
    display: block;
}

/* ─── Sub-text / description ─────────────────────────────────── */
.fngs-checkout-desc {
    margin: 0 0 7px !important;
    font-size: 12.5px !important;
    color: #374151 !important;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.5 !important;
}

.fngs-lock {
    font-size: 13px;
    flex-shrink: 0;
}

/* ─── Redirect / PCI security notice ────────────────────────── */
.fngs-checkout-notice {
    margin: 0 !important;
    font-size: 11.5px !important;
    color: #6b7280 !important;
    line-height: 1.55 !important;
    font-style: italic;
}

/* ─── Small icon strip next to the payment method title
       (get_icon() output) ──────────────────────────────────── */
.fngs-icons {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    vertical-align: middle;
    margin-left: 8px;
}

.fngs-icon {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,.15);
}

.fngs-icon svg {
    display: block;
}

/* ─── Thank-you page plan card ───────────────────────────────── */
.fungies-thankyou-notice {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 5px solid #16a34a;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 20px 0 28px;
    font-size: 15px;
    line-height: 1.75;
    color: #166534;
}

.fungies-thankyou-notice p {
    margin: 0 0 8px;
}

.fungies-thankyou-notice p:last-child {
    margin-bottom: 0;
}

.fungies-thankyou-notice a {
    color: #15803d;
    text-decoration: underline;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 480px) {
    .fngs-checkout-brands {
        gap: 5px;
    }
    .fngs-cb svg,
    .fngs-cb {
        width: 44px !important;
        height: 28px !important;
    }
    .fngs-icons {
        gap: 3px;
        margin-left: 5px;
    }
    .fngs-icon svg,
    .fngs-icon {
        width: 36px !important;
        height: 22px !important;
    }
}
