/* Shared payment-method card UI (product pages + one-page checkout).
   Three stacked cards: Express PayPal (blue), Visa/MasterCard (white),
   Bank Transfer / PAYID (green). */
.ppx-methods {
    margin-top: 5px;
    clear: both;
    max-width: 480px;
    position: relative;
    z-index: 1;
}
.ppx-methods-wide {
    max-width: 720px;
}
.ppx-card {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d5dbe3;
    border-radius: 12px;
    background: #fff;
    padding: 14px 18px;
    margin: 0 0 12px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    min-height: 44px; /* touch target */
}
.ppx-card-row {
    display: flex;
    align-items: center;
}
.ppx-card-icon {
    flex: 0 0 auto;
    width: 64px;
    text-align: center;
    margin-right: 14px;
}
.ppx-card-icon img {
    max-width: 64px;
    max-height: 40px;
    vertical-align: middle;
}
.ppx-card-icon .fa {
    font-size: 42px;
    color: #2d3e50;
}
.ppx-card-body {
    flex: 1 1 auto;
    min-width: 0;
}
.ppx-card-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}
.ppx-card-desc {
    display: block;
    font-size: 13px;
    color: #687074;
    line-height: 1.4;
    margin-top: 2px;
}
.ppx-card-chevron {
    flex: 0 0 auto;
    font-size: 18px;
    color: #555;
    margin-left: 10px;
}
/* Card 1: Express PayPal (light blue tint) */
.ppx-card-paypal {
    background: #eaf4fb;
    border-color: #b9dcee;
    cursor: default;
}
.ppx-card-paypal .ppx-card-title { color: #003087; }
/* The Smart Button sits under the header inside the PayPal card. */
.ppx-card-paypal .ppx-button {
    margin-top: 10px;
}
/* Card 2: credit card */
.ppx-card-cc:hover, .ppx-card-cc:focus {
    border-color: #009cde;
    box-shadow: 0 1px 6px rgba(0,156,222,.25);
}
/* Card 3: bank transfer / PayID (light green tint) */
.ppx-card-bank {
    background: #eef7f0;
    border-color: #c4e3cd;
}
.ppx-card-bank:hover, .ppx-card-bank:focus {
    border-color: #18ba9b;
    box-shadow: 0 1px 6px rgba(24,186,155,.25);
}
.ppx-card-bank .ppx-card-icon .fa { color: #1e6b4f; }
/* Logo strip inside cards 2 & 3 */
.ppx-card-logos {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.ppx-card-logos img {
    max-height: 30px;
    max-width: 90px;
    vertical-align: middle;
}
.ppx-card-logos .ppx-logo-divider {
    width: 1px;
    height: 26px;
    background: #c8cdd3;
    margin: 0 14px;
}
.ppx-card-logos .ppx-bank-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.ppx-card-logos .ppx-bank-label .fa { margin-right: 6px; color: #1e6b4f; }
/* PayID badge */
.ppx-payid-badge {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: .5px;
}
.ppx-payid-badge span { color: #a78bfa; }
/* The Add-to-Cart form floats (.product-quantity); clear the Specifications
   section below it so it can't overlap (and block clicks on) the payment
   cards on mobile. */
.shop-product .tab-v6 {
    clear: both;
}
/* Checkout: form body inside a card (sections are always expanded) */
.ppx-card-form {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.08);
    cursor: default;
}
/* Checkout: action row at the bottom of a payment card (Pay now etc.) -
   full-width prominent button so it can't be missed after the address form. */
.ppx-card-actions {
    margin-top: 14px;
}
.ppx-action-btn {
    display: block;
    width: 100%;
    min-height: 48px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.ppx-action-note {
    margin: 8px 0 0;
    font-size: 13px;
    color: #a94442;
    text-align: center;
}
/* Product pages: delivery option selector above the payment cards */
.ppx-delivery {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d5dbe3;
    border-radius: 12px;
    background: #f7f9fb;
    padding: 12px 18px;
    margin: 0 0 12px;
}
.ppx-delivery-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}
.ppx-delivery-title .fa { margin-right: 8px; color: #2d3e50; }
.ppx-delivery-option {
    display: flex;
    align-items: center;
    min-height: 32px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}
.ppx-delivery-option input[type="radio"] {
    margin: 0 10px 0 0;
    min-height: 0;
}
.ppx-delivery-option .ppx-delivery-price {
    margin-left: auto;
    font-weight: 700;
    color: #18ba9b;
}
/* Mobile: cards full width, compact icon column */
@media (max-width: 480px) {
    .ppx-methods { max-width: none; }
    .ppx-card { padding: 12px 14px; }
    .ppx-card-icon { width: 48px; margin-right: 10px; }
    .ppx-card-icon img { max-width: 48px; }
    .ppx-card-icon .fa { font-size: 34px; }
}
