/* GTech Store V2 — Checkout Extra Styles */
.gtech-payment-box { font-family: 'DM Sans', sans-serif; }
.gtech-ref-input { font-family: 'JetBrains Mono', monospace !important; }
#payment .payment_box { border-top: none !important; padding: 0 0 8px !important; }

/* ============================================================
   PAYMENT METHOD LOGOS (Orange / MTN / Cash / Pickup)
   The gateway $this->icon outputs a single <img> at the right of
   the label. Make sure it's well sized and aligned.
   ============================================================ */
#payment ul.payment_methods li label img {
    max-height: 36px;
    width: auto;
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
}
#payment ul.payment_methods li label {
    flex-wrap: wrap;
}
@media (max-width: 480px) {
    #payment ul.payment_methods li label img {
        max-height: 28px;
    }
}

/* ============================================================
   FALLBACK — Pickup gateway inline styles
   These mirror the theme rules so the gateway looks correct
   even on standard WooCommerce templates.
   ============================================================ */
.gtech-pickup-box .pickup-advance-notice {
    background: #E3F0FF;
    border: 2px solid #0057B8;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13.5px;
    color: #003D8A;
    line-height: 1.6;
    margin-bottom: 16px;
}
.gtech-pickup-box .pickup-store-card {
    background: #fff;
    border: 1.5px solid #E3F0FF;
    border-radius: 12px;
    padding: 16px;
    margin: 12px 0;
}
.gtech-pickup-box .pickup-store-card-header {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #D6E4F0;
}
.gtech-pickup-box .pickup-store-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #0057B8, #00A651);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.gtech-pickup-box .pickup-store-row {
    display: flex;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.6;
}
.gtech-pickup-box .pickup-row-icon { font-size: 16px; }
.gtech-pickup-box .pickup-date-field input,
.gtech-pickup-box .pickup-notes-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #D6E4F0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}
.gtech-pickup-box .pickup-date-field input:focus,
.gtech-pickup-box .pickup-notes-field textarea:focus {
    border-color: #0057B8;
    box-shadow: 0 0 0 3px rgba(0,87,184,.1);
}
.gtech-pickup-box .pickup-final-note {
    font-size: 12px;
    color: #5A6A8A;
    margin-top: 12px;
    padding: 10px;
    background: #F4F7FB;
    border-radius: 8px;
    line-height: 1.6;
}
.gtech-pickup-box .pickup-help-text { font-size: 12px; color: #8A9BBB; margin-top: 6px; }
.gtech-pickup-box .pickup-optional {
    font-size: 11px;
    color: #8A9BBB;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 4px;
    font-weight: 400;
}
.gtech-step-num.pickup { background: #0057B8; }
.gtech-pickup-box .pickup-maps-link {
    display: inline-block;
    margin-top: 4px;
    color: #0057B8;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}
.gtech-pickup-box .pickup-maps-link:hover { text-decoration: underline; }

/* ============================================================
   USSD QUICK-PAY CODES
   Tappable codes (#150*...# / *126*...#) — on mobile, tapping
   them opens the dialer pre-filled. The link wrapper keeps the
   text-decoration off so the code reads cleanly.
   ============================================================ */
.gtech-ussd-link {
    display: inline-block;
    text-decoration: none !important;
    margin: 6px 0 4px;
}
.gtech-ussd {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    background: #1A2744;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    word-break: break-all;
    line-height: 1.3;
    transition: transform .12s ease, background .15s ease;
    cursor: pointer;
}
.gtech-ussd-link:hover .gtech-ussd,
.gtech-ussd-link:focus .gtech-ussd {
    background: #003D8A;
    transform: translateY(-1px);
}
.gtech-ussd-hint {
    display: block;
    font-size: 12px;
    color: #5A6A8A;
    margin-top: 4px;
    line-height: 1.5;
}
@media (max-width: 480px) {
    .gtech-ussd { font-size: 13px; padding: 7px 10px; }
    .gtech-ussd-hint { font-size: 11px; }
}

/* ============================================================
   BENEFICIARY VERIFICATION (the most important anti-fraud step
   for Mobile Money in Cameroon — the customer must check the
   name returned by the operator before validating the payment).
   ============================================================ */
.gtech-step.gtech-step-warning {
    background: #FFF6E5;
    border: 1.5px solid #FF6B00;
    border-radius: 10px;
    padding: 10px 12px;
    margin: 6px 0;
    align-items: flex-start;
}
.gtech-step.gtech-step-warning strong { color: #BF360C; }
.gtech-beneficiary {
    display: inline-block;
    background: #1A2744;
    color: #FFD600;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.5px;
}
