/* ==========================================================
   PAYMENT UI - VERSION 12
   Version 11 + Grid-aligned section divider
   ========================================================== */


/* ==========================================================
   VARIABLES + PAGE
   ========================================================== */

.payment-ui {
    --payment-primary: #0d6efd;
    --payment-primary-dark: #0b5ed7;
    --payment-success: #10b981;
    --payment-success-dark: #047857;
    --payment-border: #dce5ef;
    --payment-text: #1f2937;
    --payment-heading: #111827;
    --payment-muted: #6b7280;
    --payment-background: #f8fafc;
    --payment-card-background: #ffffff;
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 0 18px;
    color: #17213b;
    box-sizing: border-box;
}

.payment-ui,
.payment-ui *,
.payment-ui *::before,
.payment-ui *::after {
    box-sizing: border-box;
}

.payment-ui h1,
.payment-ui h2,
.payment-ui h3 {
    color: var(--payment-heading);
}


/* ==========================================================
   PREMIUM PLANS
   ========================================================== */

.payment-ui .payment-plans {
    position: relative;
    margin-bottom: 28px;
}

.payment-ui .payment-plans>.text-center {
    margin-bottom: 24px !important;
}

.payment-ui .payment-plans h1 {
    margin: 0 0 6px !important;
    color: #101a37;
    font-size: 31px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.payment-ui .payment-plans p {
    font-size: 14px;
}

.payment-ui .payment-plan-grid>[class*="col-"] {
    display: flex;
}


/* ==========================================================
   PLAN CARD
   ========================================================== */

.payment-ui .payment-plan-card {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 310px;
    height: 100%;
    flex-direction: column;
    padding: 20px 18px 18px;
    overflow: visible;
    color: var(--payment-text);
    text-align: left;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(28, 55, 90, 0.055);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.payment-ui .payment-plan-card:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 110, 253, 0.55);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.payment-ui .payment-plan-card-active {
    border: 1.5px solid #0864ed;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.12);
}


/* ==========================================================
   PLAN BADGE
   ========================================================== */

.payment-ui .payment-plan-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    z-index: 2;
    width: 132px;
    padding: 6px 10px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
    white-space: nowrap;
    border-radius: 8px 8px 3px 3px;
    background: #0864ed;
    box-shadow: 0 7px 18px rgba(13, 110, 253, 0.27);
    transform: translateX(-50%);
}


/* ==========================================================
   PLAN TOP
   ========================================================== */

.payment-ui .payment-plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 13px;
}

.payment-ui .payment-plan-name {
    color: var(--payment-heading);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.payment-ui .payment-plan-save {
    display: inline-flex;
    min-height: 21px;
    align-items: center;
    padding: 3px 8px;
    color: var(--payment-success-dark);
    font-size: 9px;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
    border-radius: 999px;
    background: #dcfce7;
}


/* ==========================================================
   PLAN PRICE
   ========================================================== */

.payment-ui .payment-plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
    color: var(--payment-heading);
}

.payment-ui .payment-plan-currency {
    margin: 0 7px 0 0;
    font-size: 20px;
    font-weight: 750;
    line-height: 1;
}

.payment-ui .payment-plan-amount {
    font-size: 32px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.03em;
}

.payment-ui .payment-plan-period {
    min-height: 20px;
    margin-bottom: 15px;
    color: var(--payment-muted);
    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================================
   PLAN FEATURES
   ========================================================== */

.payment-ui .payment-plan-features {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.payment-ui .payment-plan-features li {
    position: relative;
    min-height: 18px;
    padding-left: 22px;
    color: #4b5563;
    font-size: 12px;
    line-height: 1.4;
}

.payment-ui .payment-plan-features li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #d8f7e8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m3.2 8.1 3 3 6.6-6.6' fill='none' stroke='%23047857' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
}


/* ==========================================================
   PLAN BUTTON
   ========================================================== */

.payment-ui .payment-plan-action {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 9px 12px;
    color: var(--payment-primary);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    border: 1px solid var(--payment-primary);
    border-radius: 7px;
    background: #ffffff;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-ui .payment-plan-card:hover .payment-plan-action,
.payment-ui .payment-plan-card-active .payment-plan-action {
    color: #ffffff;
    border-color: var(--payment-primary);
    background: var(--payment-primary);
}

.payment-ui .payment-plan-card-active .payment-plan-action {
    box-shadow: 0 7px 14px rgba(13, 110, 253, 0.16);
}


/* ==========================================================
   PAYMENT METHODS SECTION
   ========================================================== */

.payment-ui .payment-methods {
    position: relative;
    padding-top: 24px;
    border-top: 0;
}

.payment-ui .payment-methods::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    height: 1px;
    background: var(--payment-border);
}

.payment-ui .payment-methods>.row {
    align-items: stretch;
}

.payment-ui .payment-methods>.row>[class*="col-"] {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.payment-ui .payment-methods-box {
    width: 100%;
    height: 100%;
    padding: 20px 22px;
    border: 1px solid #dce5ef;
    border-radius: 11px;
    background: #ffffff;
}

.payment-ui .payment-methods-heading {
    margin-bottom: 18px;
}

.payment-ui .payment-methods-heading h2 {
    margin-bottom: 4px !important;
    font-size: 21px;
}

.payment-ui .payment-methods-heading p {
    font-size: 13px;
}


/* ==========================================================
   PAYMENT METHOD CARD
   + RESELLERS LINK
   ========================================================== */

.payment-ui .payment-method-card,
.payment-ui .payment-resellers-link {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 68px;
    align-items: center;
    gap: 14px;
    padding: 9px 14px;
    color: var(--payment-text);
    text-align: left;
    text-decoration: none;
    border: 1px solid #dce5ef;
    border-radius: 9px;
    background: var(--payment-card-background);
    cursor: pointer;
    box-shadow: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.payment-ui .payment-method-card:hover,
.payment-ui .payment-resellers-link:hover,
.payment-ui .payment-resellers-link:focus {
    color: var(--payment-text);
    text-decoration: none;
    border-color: rgba(13, 110, 253, 0.52);
    box-shadow: 0 6px 15px rgba(28, 55, 90, 0.07);
}

.payment-ui .payment-method-card-active {
    border: 2px solid var(--payment-primary);
    background: rgba(13, 110, 253, 0.025);
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.13);
}


/* ==========================================================
   PAYMENT METHOD CHECK
   ========================================================== */

.payment-ui .payment-method-check {
    position: absolute;
    top: 9px;
    right: 10px;
    z-index: 2;
    display: none;
    width: 21px;
    height: 21px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
    border-radius: 50%;
    background: var(--payment-primary);
}

.payment-ui .payment-method-card-active .payment-method-check {
    display: flex;
}

.payment-ui .payment-method-check svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   PAYMENT METHOD ICON
   ========================================================== */

.payment-ui .payment-method-icon {
    display: flex;
    width: 58px;
    height: 46px;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.payment-ui .payment-method-icon img {
    display: block;
    width: 54px;
    max-width: 54px;
    height: 42px;
    object-fit: contain;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}


/* Resellers SVG icon */

.payment-ui .payment-resellers-link .payment-method-icon svg {
    display: block;
    width: 32px;
    height: 32px;
    color: var(--payment-primary);
}


/* ==========================================================
   PAYMENT METHOD CONTENT
   ========================================================== */

.payment-ui .payment-method-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 4px;
    padding-right: 6px;
}

.payment-ui .payment-method-name {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--payment-heading);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.3;
}

.payment-ui .payment-method-description {
    color: var(--payment-muted);
    font-size: 11px;
    line-height: 1.45;
}

.payment-ui .payment-method-recommended {
    display: inline-flex;
    margin-left: 2px;
    padding: 3px 7px;
    color: #08764f;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    border-radius: 999px;
    background: #d8f7e8;
}


/* ==========================================================
   PAYMENT METHOD ARROW
   ========================================================== */

.payment-ui .payment-method-arrow {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    color: #16335f;
    font-size: 0;
}

.payment-ui .payment-method-arrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   SECURITY COPY
   ========================================================== */

.payment-ui .payment-security-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    color: var(--payment-muted);
    font-size: 11px;
    line-height: 1.55;
}

.payment-ui .payment-security-shield {
    display: flex;
    width: 28px;
    height: 31px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    color: var(--payment-primary);
    border: 0;
    border-radius: 0;
}

.payment-ui .payment-security-shield svg {
    width: 28px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   ORDER SUMMARY
   ========================================================== */

.payment-ui .payment-order-summary {
    position: static;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 20px 20px 18px;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    background: var(--payment-card-background);
    box-shadow: 0 8px 22px rgba(28, 55, 90, 0.055);
}

.payment-ui .payment-summary-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.payment-ui .payment-summary-title {
    margin: 0 0 4px;
    color: var(--payment-heading);
    font-size: 17px;
    font-weight: 800;
}

.payment-ui .payment-summary-subtitle {
    margin: 0;
    color: var(--payment-muted);
    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================================
   SUMMARY LOCK
   ========================================================== */

.payment-ui .payment-summary-lock {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
    padding: 5px 9px;
    color: var(--payment-success-dark);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 999px;
    background: #d1fae5;
}

.payment-ui .payment-summary-lock::before {
    content: none;
}

.payment-ui .payment-summary-lock svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   SUMMARY PLAN
   ========================================================== */

.payment-ui .payment-summary-plan {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 17px;
    padding: 13px;
    border-radius: 8px;
    background: #f5f8fc;
}

.payment-ui .payment-summary-label {
    display: block;
    margin-bottom: 3px;
    color: var(--payment-muted);
    font-size: 11px;
}

.payment-ui .payment-summary-plan-name {
    display: block;
    color: var(--payment-heading);
    font-size: 15px;
    font-weight: 750;
}

.payment-ui .payment-summary-plan-price {
    flex: 0 0 auto;
    color: var(--payment-primary);
    font-size: 18px;
    font-weight: 850;
    white-space: nowrap;
}


/* ==========================================================
   SUMMARY ROWS
   ========================================================== */

.payment-ui .payment-summary-row {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 13px;
    color: var(--payment-muted);
    font-size: 12px;
}

.payment-ui .payment-summary-row strong {
    min-width: 0;
    color: var(--payment-heading);
    font-weight: 700;
    text-align: right;
    overflow-wrap: anywhere;
}

.payment-ui .payment-summary-divider {
    height: 1px;
    margin: 15px 0;
    background: var(--payment-border);
}


/* ==========================================================
   SUMMARY TOTAL
   ========================================================== */

.payment-ui .payment-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
    color: var(--payment-heading);
    font-size: 15px;
    font-weight: 700;
}

.payment-ui .payment-summary-total strong {
    color: var(--payment-primary);
    font-size: 23px;
    font-weight: 850;
}


/* ==========================================================
   CHECKOUT BUTTON
   ========================================================== */

.payment-ui .payment-checkout-button {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(135deg, #0864ed, #0869f7);
    box-shadow: 0 10px 23px rgba(13, 110, 253, 0.23);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-ui .payment-checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.29);
}

.payment-ui .payment-checkout-button:active {
    transform: translateY(0);
}

.payment-ui .payment-checkout-arrow {
    display: inline-flex;
    flex: 0 0 auto;
}

.payment-ui .payment-checkout-arrow svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.payment-ui .payment-summary-note {
    margin: 13px 0 0;
    color: var(--payment-muted);
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
}


/* ==========================================================
   AUTHORIZED RESELLERS
   ========================================================== */

.payment-ui .payment-resellers {
    position: relative;
    margin-top: 22px;
    padding: 20px 22px 18px;
    border: 1px solid #dce5ef;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(28, 55, 90, 0.045);
}


/* ==========================================================
   RESELLER HEADING
   ========================================================== */

.payment-ui .payment-resellers-heading {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.payment-ui .payment-resellers-heading h2 {
    margin: 0 0 4px !important;
    color: var(--payment-heading);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
}

.payment-ui .payment-resellers-heading p {
    margin: 0;
    color: var(--payment-muted);
    font-size: 13px;
    line-height: 1.45;
}


/* ==========================================================
   RESELLER GRID
   ========================================================== */

.payment-ui .payment-reseller-grid {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}


/* ==========================================================
   RESELLER CARD
   ========================================================== */

.payment-ui .payment-reseller-card {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 188px;
    flex-direction: column;
    padding: 15px;
    overflow: hidden;
    color: var(--payment-text);
    border: 1px solid #dce5ef;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-ui .payment-reseller-card:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 110, 253, 0.45);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.075);
}


/* ==========================================================
   RESELLER TOP / IDENTITY
   ========================================================== */

.payment-ui .payment-reseller-top {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: flex-start;
    margin-bottom: 13px;
}

.payment-ui .payment-reseller-identity {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.payment-ui .payment-reseller-title {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}


/* ==========================================================
   RESELLER LOGO
   ========================================================== */

.payment-ui .payment-reseller-logo {
    display: flex;
    width: 46px;
    height: 46px;
    min-width: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payment-ui .payment-reseller-logo img {
    display: block;
    width: 46px;
    max-width: 46px;
    height: 46px;
    max-height: 46px;
    object-fit: contain;
    border: 0;
    background: transparent;
}

.payment-ui .payment-reseller-logo span {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #14213d;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
}


/* ==========================================================
   RESELLER NAME + AUTHORIZED BADGE
   ========================================================== */

.payment-ui .payment-reseller-name {
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    color: var(--payment-heading);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-ui .payment-reseller-authorized {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 4px;
    padding: 4px 7px;
    color: #047857;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    border-radius: 999px;
    background: #d1fae5;
}

.payment-ui .payment-reseller-authorized svg {
    display: block;
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   RESELLER PAYMENT METHODS - TEXT ONLY
   ========================================================== */

.payment-ui .payment-reseller-method-label {
    margin-bottom: 7px;
    color: var(--payment-muted);
    font-size: 10px;
    font-weight: 650;
    line-height: 1.3;
}

.payment-ui .payment-reseller-methods {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.payment-ui .payment-reseller-method {
    display: inline-flex;
    min-width: 0;
    min-height: 23px;
    align-items: center;
    justify-content: center;
    padding: 4px 7px;
    color: #4b5563;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid #e3e9f0;
    border-radius: 5px;
    background: #f8fafc;
}


/* ==========================================================
   RESELLER ACTION
   ========================================================== */

.payment-ui .payment-reseller-actions {
    display: flex;
    width: 100%;
    margin-top: auto;
}

.payment-ui .payment-reseller-buy {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 37px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 11px;
    color: var(--payment-primary);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--payment-primary);
    border-radius: 7px;
    background: #ffffff;
    box-shadow: none;
    transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-ui .payment-reseller-buy:hover,
.payment-ui .payment-reseller-buy:focus {
    color: #ffffff;
    text-decoration: none;
    border-color: var(--payment-primary);
    background: var(--payment-primary);
    box-shadow: 0 7px 15px rgba(13, 110, 253, 0.18);
    transform: translateY(-1px);
}

.payment-ui .payment-reseller-buy svg {
    display: block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   VIEW ALL RESELLERS
   ========================================================== */

.payment-ui .payment-resellers-view-all-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.payment-ui .payment-resellers-view-all {
    display: inline-flex;
    min-height: 35px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    color: var(--payment-primary);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    border: 1px solid #b9d2f5;
    border-radius: 7px;
    background: #ffffff;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-ui .payment-resellers-view-all:hover,
.payment-ui .payment-resellers-view-all:focus {
    color: var(--payment-primary-dark);
    text-decoration: none;
    border-color: var(--payment-primary);
    background: #f8fbff;
    box-shadow: 0 5px 13px rgba(13, 110, 253, 0.1);
}

.payment-ui .payment-resellers-view-all svg {
    display: block;
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   RESELLER RESPONSIVE
   ========================================================== */

@media (max-width: 991.98px) {
    .payment-ui .payment-reseller-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .payment-ui .payment-reseller-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .payment-ui .payment-resellers {
        margin-top: 18px;
        padding: 17px;
        border-radius: 10px;
    }
    .payment-ui .payment-resellers-heading {
        display: block;
        margin-bottom: 14px;
    }
    .payment-ui .payment-resellers-heading h2 {
        font-size: 19px;
    }
    .payment-ui .payment-resellers-heading p {
        font-size: 12px;
    }
    .payment-ui .payment-reseller-card {
        min-height: 0;
        padding: 15px;
    }
    .payment-ui .payment-reseller-logo,
    .payment-ui .payment-reseller-logo img {
        width: 42px;
        max-width: 42px;
        height: 42px;
        max-height: 42px;
        min-width: 42px;
        flex-basis: 42px;
    }
    .payment-ui .payment-reseller-name {
        font-size: 14px;
    }
    .payment-ui .payment-reseller-authorized {
        padding: 4px 6px;
        font-size: 8px;
    }
    .payment-ui .payment-reseller-buy {
        min-height: 39px;
        font-size: 11px;
    }
}


/* ==========================================================
   BENEFITS
   ========================================================== */

.payment-ui .payment-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 18px;
    padding: 15px 20px;
    border: 1px solid #dce5ef;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.035);
}

.payment-ui .payment-benefits>div {
    display: grid;
    min-width: 0;
    grid-template-columns: 25px minmax(0, 1fr);
    column-gap: 9px;
    align-items: center;
}

.payment-ui .payment-benefits>div+div {
    padding-left: 24px;
    border-left: 1px solid #e7edf4;
}

.payment-ui .payment-benefits span {
    grid-row: 1 / 3;
    color: var(--payment-primary);
    font-size: 23px;
}

.payment-ui .payment-benefits strong {
    min-width: 0;
    color: var(--payment-heading);
    font-size: 12px;
}

.payment-ui .payment-benefits small {
    min-width: 0;
    color: var(--payment-muted);
    font-size: 10px;
}

.payment-ui .payment-benefit-icon {
    display: flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.payment-ui .payment-benefit-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================
   PAYMENT METHODS HIGHLIGHT
   ========================================================== */

.payment-ui .payment-methods-highlight {
    animation: paymentMethodsGlow 0.8s ease;
}

@keyframes paymentMethodsGlow {
    0% {
        filter: drop-shadow(0 0 0 rgba(13, 110, 253, 0));
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(13, 110, 253, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 0 rgba(13, 110, 253, 0));
    }
}


/* ==========================================================
   SINGLE PAYMENT METHOD
   ========================================================== */

@media (min-width: 768px) {
    .payment-ui .payment-methods .row.g-3>[class*="col-"]:only-child {
        width: 50%;
    }
}


/* ==========================================================
   RESPONSIVE - <= 1199px
   ========================================================== */

@media (max-width: 1199.98px) {
    .payment-ui {
        max-width: calc(100% - 24px);
    }
    .payment-ui .payment-plan-card {
        min-height: 285px;
    }
}


/* ==========================================================
   RESPONSIVE - <= 991px
   ========================================================== */

@media (max-width: 991.98px) {
    .payment-ui {
        width: 100%;
        max-width: 100%;
        padding-right: 12px;
        padding-left: 12px;
    }
    .payment-ui .payment-order-summary {
        position: static;
    }
    .payment-ui .payment-methods-box {
        padding: 18px;
    }
    .payment-ui .payment-reseller-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .payment-ui .payment-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .payment-ui .payment-benefits>div+div {
        padding-left: 0;
        border-left: 0;
    }
}


/* ==========================================================
   RESPONSIVE - <= 767px
   ========================================================== */

@media (max-width: 767.98px) {
    .payment-ui .payment-plan-card {
        min-height: 275px;
    }
    .payment-ui .payment-plan-amount {
        font-size: 33px;
    }
    .payment-ui .payment-reseller-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* ==========================================================
   RESPONSIVE - MOBILE
   ========================================================== */

@media (max-width: 575.98px) {
    .payment-ui {
        padding-right: 10px;
        padding-left: 10px;
    }
    .payment-ui .payment-plans h1 {
        font-size: 27px;
    }
    .payment-ui .payment-plan-card {
        min-height: 0;
        padding: 18px;
        border-radius: 14px;
    }
    .payment-ui .payment-plan-name {
        font-size: 17px;
    }
    .payment-ui .payment-plan-amount {
        font-size: 31px;
    }
    .payment-ui .payment-plan-features {
        gap: 8px;
    }
    .payment-ui .payment-method-card,
    .payment-ui .payment-resellers-link {
        min-height: 66px;
        gap: 12px;
        padding: 9px 12px;
    }
    .payment-ui .payment-method-icon {
        width: 52px;
        height: 42px;
        flex: 0 0 52px;
    }
    .payment-ui .payment-method-icon img {
        width: 48px;
        max-width: 48px;
        height: 38px;
    }
    .payment-ui .payment-resellers-link .payment-method-icon svg {
        width: 30px;
        height: 30px;
    }
    .payment-ui .payment-order-summary {
        padding: 19px;
    }
    /* RESELLERS */
    .payment-ui .payment-resellers {
        margin-top: 18px;
        padding: 17px;
        border-radius: 10px;
    }
    .payment-ui .payment-resellers-heading {
        display: block;
        margin-bottom: 14px;
    }
    .payment-ui .payment-resellers-heading h2 {
        font-size: 19px;
    }
    .payment-ui .payment-resellers-heading p {
        font-size: 12px;
    }
    .payment-ui .payment-reseller-filters {
        gap: 6px;
        margin-bottom: 14px;
    }
    .payment-ui .payment-reseller-filter {
        min-height: 30px;
        padding: 6px 10px;
        font-size: 10px;
    }
    .payment-ui .payment-reseller-card {
        min-height: 0;
        padding: 15px;
    }
    .payment-ui .payment-reseller-top {
        align-items: flex-start;
    }
    .payment-ui .payment-reseller-logo {
        max-width: 115px;
    }
    .payment-ui .payment-reseller-logo img {
        max-width: 115px;
    }
    .payment-ui .payment-reseller-authorized {
        padding: 4px 6px;
        font-size: 8px;
    }
    .payment-ui .payment-reseller-buy {
        min-height: 39px;
        font-size: 11px;
    }
    /* ORIGINAL BENEFITS */
    .payment-ui .payment-benefits {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
    .payment-ui .payment-summary-header,
    .payment-ui .payment-summary-plan,
    .payment-ui .payment-summary-row,
    .payment-ui .payment-summary-total {
        min-width: 0;
    }
}