:root {
    --qbl-green: #008130;
    --qbl-green-dark: #073d21;
    --qbl-green-ink: #07351d;
    --qbl-soft: #f4fbf4;
    --qbl-line: #dfe8df;
    --qbl-muted: #687168;
}

.qbl-checkout-page {
    min-height: 100vh;
    background: #fff;
    color: var(--qbl-green-ink);
    font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
}

.qbl-checkout-page *,
.qbl-checkout-page *::before,
.qbl-checkout-page *::after {
    box-sizing: border-box;
    letter-spacing: 0;
}

.qbl-checkout-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(224, 230, 225, .85);
    background: #fff;
}

.qbl-checkout-header-inner,
.qbl-checkout-wrap {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}

.qbl-checkout-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 24px;
    min-width: 0;
}

.qbl-checkout-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    text-decoration: none;
}

.qbl-brand-logo-img {
    display: block;
    width: 158px;
    height: auto;
    max-width: 100%;
}

.qbl-checkout-logo-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--qbl-green);
    color: #fff;
    font: 900 13px/1 Arial, Helvetica, sans-serif;
}

.qbl-checkout-logo-mark svg {
    width: 22px;
    height: 22px;
}

.qbl-checkout-logo-mark svg path {
    fill: none;
    stroke: #fff;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.qbl-checkout-logo strong {
    display: block;
    color: #0a140f;
    font-size: 16px;
    font-weight: 800;
    line-height: 22px;
}

.qbl-checkout-logo span span {
    display: block;
    color: var(--qbl-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .5px;
    line-height: 12px;
    text-transform: uppercase;
}

.qbl-checkout-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 0;
    color: #0a140f;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.qbl-checkout-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border-radius: 9px;
    padding: 0 10px;
    color: rgba(10, 20, 15, .82);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.qbl-checkout-nav a + a {
    margin-left: clamp(4px, .75vw, 10px);
}

.qbl-checkout-nav a:hover {
    background: #f1f8f2;
    color: var(--qbl-green-dark);
}

.qbl-checkout-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--qbl-muted);
    font-size: 14px;
}

.qbl-checkout-header-actions a {
    text-decoration: none;
}

.qbl-checkout-email {
    color: var(--qbl-muted);
    font-size: 13px;
    font-weight: 500;
}

.qbl-checkout-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 9px;
    background: var(--qbl-green);
    padding: 0 18px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 129, 48, .14);
}

.qbl-checkout-main {
    padding: 88px 0 84px;
}

.qbl-checkout-title {
    max-width: 760px;
    margin-bottom: 52px;
}

.qbl-checkout-title h1 {
    margin: 0 0 12px;
    color: var(--qbl-green-dark);
    font-size: clamp(34px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
}

.qbl-checkout-title p {
    margin: 0;
    color: #5f6570;
    font-size: 18px;
    line-height: 1.55;
}

.qbl-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 843px) 405px;
    gap: 32px;
    align-items: start;
}

.qbl-checkout-panel {
    overflow: hidden;
    border: 1px solid #e8ece8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(7, 61, 33, .05);
}

.qbl-checkout-panel-inner {
    padding: 32px;
}

.qbl-step-tabs {
    display: inline-grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    gap: 8px;
    margin-bottom: 26px;
    padding: 5px;
    border: 1px solid #dfe9df;
    border-radius: 999px;
    background: #f8fcf8;
}

.qbl-step-tabs span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    color: #6f7a72;
    font-size: 13px;
    font-weight: 900;
}

.qbl-step-tabs span.is-active {
    background: var(--qbl-green-dark);
    color: #fff;
}

.qbl-checkout-panel h2,
.qbl-checkout-panel h3,
.qbl-summary-card h1,
.qbl-summary-card h2,
.qbl-summary-card h3 {
    color: var(--qbl-green-dark) !important;
    font-weight: 900 !important;
}

.qbl-checkout-panel input,
.qbl-checkout-panel select,
.qbl-checkout-panel textarea {
    min-height: 44px !important;
    border-radius: 15px !important;
    border-color: #dfe5e0 !important;
    color: #0a2818 !important;
    box-shadow: none !important;
}

.qbl-checkout-panel label {
    color: var(--qbl-green-dark) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.qbl-checkout-panel .primary-button,
.qbl-checkout-panel button.primary-button {
    min-height: 48px;
    border-radius: 14px !important;
    background: #2fa52f !important;
    color: #fff !important;
    font-weight: 800 !important;
    box-shadow: 0 12px 22px rgba(47, 165, 47, .18);
}

.qbl-address-heading h2 {
    margin: 0 0 24px;
    color: var(--qbl-green-dark);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
}

.qbl-address-section h2.text-xl {
    margin-bottom: 14px;
    color: var(--qbl-green-dark);
    font-size: 18px;
    font-weight: 900;
}

.qbl-native-address-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    margin-top: 16px;
}

.qbl-native-field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.qbl-native-field-full {
    grid-column: 1 / -1;
}

.qbl-native-field label {
    margin: 0 !important;
    color: var(--qbl-green-dark) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

.qbl-native-field input,
.qbl-native-field select {
    width: 100% !important;
    min-height: 50px !important;
    border: 1px solid #dfe5e0 !important;
    border-radius: 15px !important;
    background: #fff !important;
    padding: 0 16px !important;
    color: #0a2818 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.qbl-native-field input:focus,
.qbl-native-field select:focus {
    border-color: #2fa52f !important;
    box-shadow: 0 0 0 4px rgba(47, 165, 47, .1) !important;
}

.qbl-checkout-panel [class*="icon-arrow"] {
    color: var(--qbl-green-dark);
}

.qbl-checkout-panel .qbl-payment-accordion {
    border: 0 !important;
    background: transparent !important;
}

.qbl-payment-section {
    margin-top: 22px;
}

.qbl-payment-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    margin-bottom: 12px;
    padding: 14px 16px;
    border: 1px solid #dfe9df;
    border-radius: 14px;
    background: #fbfffb;
}

.qbl-payment-review span {
    display: block;
    margin-bottom: 3px;
    color: #6f7a72;
    font-size: 12px;
    font-weight: 800;
}

.qbl-payment-review strong {
    display: block;
    color: var(--qbl-green-dark);
    font-size: 14px;
    font-weight: 900;
}

.qbl-payment-review button {
    border: 0;
    background: transparent;
    color: var(--qbl-green);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.qbl-payment-heading {
    margin: 24px 0 16px;
}

.qbl-payment-heading h2 {
    margin: 0 0 6px;
    color: var(--qbl-green-dark);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.18;
}

.qbl-payment-heading p {
    margin: 0;
    color: var(--qbl-muted);
    font-size: 15px;
    line-height: 1.6;
}

.qbl-payment-list {
    display: grid;
    gap: 12px;
}

.qbl-payment-option {
    width: 100%;
}

.qbl-payment-radio {
    position: absolute;
    left: 17px;
    top: 24px;
    z-index: 2;
    color: var(--qbl-green);
    font-size: 20px;
    cursor: pointer;
}

.qbl-payment-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 70px;
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 1px solid #dde5df;
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.qbl-payment-option input:checked + .qbl-payment-radio + .qbl-payment-card,
.qbl-payment-card:hover {
    border-color: #2fa52f;
    background: #f8fff8;
    box-shadow: 0 10px 26px rgba(47, 165, 47, .08);
}

.qbl-payment-copy {
    min-width: 0;
    padding-top: 1px;
}

.qbl-payment-title {
    margin: 0;
    color: var(--qbl-green-dark);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}

.qbl-payment-description {
    margin: 4px 0 0;
    color: #747a83;
    font-size: 13.5px;
    font-weight: 650;
    line-height: 1.5;
}

.qbl-payment-badge {
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 7px;
    background: #e9f8e9;
    color: #2fa52f;
    font-size: 11px;
    font-weight: 900;
}

.qbl-hidden-submit {
    display: none !important;
}

.qbl-checkout-page .qbl-card-entry-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: calc(100% - 56px);
    margin: 14px auto 4px;
    padding: 20px;
    border: 1px solid #bfe7c2;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(47, 165, 47, .1), transparent 34%),
        linear-gradient(180deg, #fbfffb 0%, #f4fbf4 100%);
    box-shadow: 0 18px 42px rgba(0, 57, 38, .1);
}

.qbl-checkout-page .qbl-card-entry-heading,
.qbl-checkout-page .qbl-card-entry-panel p,
.qbl-checkout-page .qbl-secure-payment-banner {
    grid-column: 1 / -1;
}

.qbl-checkout-page .qbl-card-entry-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 4px;
}

.qbl-checkout-page .qbl-card-entry-heading div {
    min-width: 0;
}

.qbl-checkout-page .qbl-card-entry-heading strong {
    display: block;
    color: var(--qbl-green-dark);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.qbl-checkout-page .qbl-card-entry-heading span {
    display: block;
    margin-top: 5px;
    color: #2fa52f;
    font-size: 14px;
    font-weight: 900;
}

.qbl-checkout-page .qbl-card-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.qbl-checkout-page .qbl-card-brands span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-width: 0;
    min-height: 0;
    padding: 5px 7px;
    border: 1px solid #dbe6df;
    border-radius: 9px;
    background: #fff;
    color: var(--qbl-green-dark);
    line-height: 1;
    box-shadow: 0 8px 18px rgba(7, 61, 33, .07);
    transition: border-color .14s ease, background .14s ease, box-shadow .14s ease, transform .14s ease;
}

.qbl-checkout-page .qbl-card-brands span.is-active {
    border-color: #2fa52f;
    background: #e9f8e9;
    box-shadow: 0 10px 18px rgba(47, 165, 47, .14);
    transform: translateY(-1px);
}

.qbl-checkout-page .qbl-brand-visa,
.qbl-checkout-page .qbl-brand-amex,
.qbl-checkout-page .qbl-brand-mastercard {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: 86px !important;
    height: 30px !important;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
}

.qbl-checkout-page .qbl-brand-mastercard {
    width: 116px !important;
}

.qbl-checkout-page .qbl-brand-visa img,
.qbl-checkout-page .qbl-brand-amex img,
.qbl-checkout-page .qbl-brand-mastercard img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.qbl-checkout-page .qbl-secure-payment-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid #dcebdd;
    border-radius: 14px;
    background: rgba(255, 255, 255, .84);
}

.qbl-checkout-page .qbl-secure-icon,
.qbl-checkout-page .qbl-card-field-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.qbl-checkout-page .qbl-secure-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #d8eadb;
    border-radius: 10px;
    background: #f3fbf4;
    color: #2b7a3b;
}

.qbl-checkout-page .qbl-secure-icon svg,
.qbl-checkout-page .qbl-card-field-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.qbl-checkout-page .qbl-secure-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.25;
}

.qbl-checkout-page .qbl-secure-payment-banner strong {
    display: block;
    color: var(--qbl-green-dark);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
}

.qbl-checkout-page .qbl-secure-payment-banner span {
    display: block;
    margin-top: 2px;
    color: #687168;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.qbl-checkout-page .qbl-card-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    min-width: 0;
    min-height: 0;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.qbl-checkout-page .qbl-card-entry-panel > .qbl-card-field:not(.qbl-card-field-full) {
    align-self: stretch;
}

.qbl-checkout-page .qbl-card-field-full {
    grid-column: 1 / -1;
}

.qbl-checkout-page .qbl-card-field label {
    display: block !important;
    margin: 0 !important;
    color: var(--qbl-green-dark) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}

.qbl-checkout-page .qbl-card-input-shell {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 56px !important;
    height: 56px !important;
    padding: 0 15px !important;
    border: 1px solid #dce6de !important;
    border-radius: 14px !important;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.qbl-checkout-page .qbl-card-input-shell:focus-within {
    border-color: #2fa52f;
    box-shadow: 0 0 0 4px rgba(47, 165, 47, .12);
}

.qbl-checkout-page .qbl-card-input-shell input {
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 100% !important;
    border: 0 !important;
    outline: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    color: var(--qbl-green-dark) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    box-shadow: none !important;
}

.qbl-checkout-page .qbl-card-field-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 28px !important;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #f4fbf4;
    color: #2fa52f;
}

.qbl-checkout-page .qbl-card-input-shell input::placeholder {
    color: #9aa69d !important;
    font-weight: 700 !important;
}

.qbl-checkout-page .qbl-card-mini-badge {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    justify-content: center;
    min-width: 92px;
    height: 40px;
    padding: 3px 6px;
    border: 1px solid #dbe6df;
    border-radius: 8px;
    background: #fff;
    color: transparent;
    font-size: 0;
    font-weight: 0;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(7, 61, 33, .06);
    transition: border-color .14s ease, background .14s ease, color .14s ease;
}

.qbl-checkout-page .qbl-card-mini-badge .qbl-brand-visa,
.qbl-checkout-page .qbl-card-mini-badge .qbl-brand-amex,
.qbl-checkout-page .qbl-card-mini-badge .qbl-brand-mastercard {
    width: 82px !important;
    height: 30px !important;
}

.qbl-checkout-page .qbl-card-mini-badge .qbl-brand-mastercard {
    width: 108px !important;
}

.qbl-checkout-page .qbl-card-mini-badge.is-visa {
    border-color: #d8defb;
}

.qbl-checkout-page .qbl-card-mini-badge.is-mastercard {
    border-color: #f7dfc1;
}

.qbl-checkout-page .qbl-card-mini-badge.is-amex {
    border-color: #cfe1f1;
}

.qbl-checkout-page .qbl-card-security-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 2px 0 0 !important;
    padding: 12px 14px;
    border: 1px solid #dfeadf;
    border-radius: 13px;
    background: rgba(255, 255, 255, .78);
    color: #647067;
    font-size: 13px;
    line-height: 1.55;
}

.qbl-checkout-page .qbl-security-dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2fa52f;
    box-shadow: 0 0 0 4px rgba(47, 165, 47, .12);
}

.qbl-checkout-page .qbl-paypal-panel {
    display: flex;
    align-items: center;
    gap: 14px;
    width: calc(100% - 56px);
    margin: 14px auto 4px;
    padding: 18px;
    border: 1px solid #bfdbff;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
    box-shadow: 0 16px 34px rgba(0, 48, 135, .08);
}

.qbl-checkout-page .qbl-paypal-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 84px;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 12px;
    background: #ffc439;
    color: #003087;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 48, 135, .12);
}

.qbl-checkout-page .qbl-paypal-panel strong {
    display: block;
    color: #003087;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.qbl-checkout-page .qbl-paypal-panel span {
    display: block;
    margin-top: 4px;
    color: #5f6570;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.qbl-paypal-summary-heading {
    margin-bottom: 14px;
    padding: 13px 14px;
    border: 1px solid #bfdbff;
    border-radius: 14px;
    background: #f8fbff;
}

.qbl-paypal-summary-heading strong {
    display: block;
    color: #003087;
    font-size: 15px;
    font-weight: 900;
}

.qbl-paypal-summary-heading span {
    display: block;
    margin-top: 3px;
    color: #5f6570;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.qbl-paypal-fallback {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 14px;
    border: 1px solid #bfdbff;
    border-radius: 14px;
    background: #fff;
}

.qbl-summary-card .paypal-button-container:not(:empty) + .qbl-paypal-fallback {
    display: none;
}

.qbl-paypal-fallback-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 86px;
    min-height: 38px;
    border-radius: 10px;
    background: #ffc439;
    color: #003087;
    font-size: 16px;
    font-style: italic;
    font-weight: 900;
}

.qbl-paypal-fallback strong {
    display: block;
    color: #003087;
    font-size: 14px;
    font-weight: 900;
}

.qbl-paypal-fallback span {
    display: block;
    margin-top: 3px;
    color: #5f6570;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.qbl-summary-card .paypal-button-container {
    overflow: hidden;
    border-radius: 14px;
}

.qbl-summary-column {
    position: sticky;
    top: 28px;
    width: 405px;
    max-width: 100%;
}

.qbl-summary-card {
    border: 1px solid #d9edd9;
    border-radius: 22px;
    background: #f4fbf4;
    padding: 32px;
}

.qbl-summary-heading {
    margin: 0 0 24px;
    color: var(--qbl-green-dark);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
}

.qbl-summary-products {
    display: grid;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid #dcebdd;
}

.qbl-summary-product-name {
    margin: 0;
    color: var(--qbl-green-dark);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
}

.qbl-summary-product-meta {
    margin: 4px 0 0;
    color: var(--qbl-muted);
    font-size: 13px;
}

.qbl-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 50px;
    border-bottom: 1px solid #dcebdd;
    color: var(--qbl-muted);
    font-size: 15px;
}

.qbl-summary-row strong {
    color: var(--qbl-green-dark);
    font-weight: 900;
    text-align: right;
}

.qbl-summary-total {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 28px 0 24px;
}

.qbl-summary-total span {
    color: var(--qbl-green-dark);
    font-size: 19px;
    font-weight: 900;
}

.qbl-summary-total strong {
    color: #2fa52f;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.qbl-summary-button,
.qbl-summary-button-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    border-radius: 14px;
    border: 0;
    background: var(--qbl-green-dark);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.qbl-summary-button-disabled {
    opacity: .55;
    cursor: not-allowed;
}

.qbl-summary-note {
    margin-top: 16px;
    padding: 13px;
    border: 1px solid #e7ece7;
    border-radius: 14px;
    background: #fff;
    color: #707780;
    font-size: 13px;
    line-height: 1.55;
}

.qbl-mobile-summary {
    display: none;
}

.qbl-checkout-footer {
    background: #062a18;
    color: #fff;
    padding: 56px 0 24px;
}

.qbl-checkout-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}

.qbl-checkout-footer a {
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
}

.qbl-checkout-footer p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.65;
}

.qbl-checkout-footer h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.qbl-checkout-footer-links {
    display: grid;
    gap: 10px;
    font-size: 14px;
}

.qbl-checkout-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

.qbl-checkout-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    border-radius: 12px;
    background: #fff;
    padding: 6px 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.qbl-checkout-footer-logo strong {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.qbl-checkout-footer-logo span span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .78);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

@media (max-width: 1180px) {
    .qbl-checkout-header-inner {
        gap: 16px;
    }

    .qbl-checkout-nav {
        gap: 0;
        font-size: 12px;
    }

    .qbl-checkout-nav a + a {
        margin-left: 4px;
    }

    .qbl-checkout-email {
        display: none;
    }

    .qbl-checkout-grid {
        grid-template-columns: 1fr;
    }

    .qbl-summary-column {
        position: static;
        width: 100%;
    }
}

@media (max-width: 980px) {
    .qbl-checkout-nav {
        display: none;
    }

    .qbl-checkout-header-inner {
        width: min(100% - 36px, 1280px);
    }
}

@media (max-width: 768px) {
    .qbl-checkout-header-inner,
    .qbl-checkout-wrap {
        width: min(100% - 28px, 1280px);
    }

    .qbl-checkout-main {
        padding: 40px 0 56px;
    }

    .qbl-checkout-title {
        margin-bottom: 28px;
    }

    .qbl-checkout-title p {
        font-size: 15px;
    }

    .qbl-checkout-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .qbl-checkout-panel {
        order: 1;
        width: 100%;
    }

    .qbl-step-tabs {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        border-radius: 16px;
    }

    .qbl-checkout-panel-inner,
    .qbl-summary-card {
        padding: 26px;
    }

    .qbl-checkout-panel,
    .qbl-summary-card {
        border-radius: 18px;
    }

    .qbl-payment-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: flex-start;
        gap: 10px 14px;
        min-height: 86px;
        padding: 19px 16px 19px 52px;
    }

    .qbl-payment-badge {
        align-self: start;
        padding: 7px 10px;
        font-size: 11px;
    }

    .qbl-checkout-page .qbl-card-entry-panel {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        margin: 18px 0 6px !important;
        padding: 24px;
        gap: 19px;
    }

    .qbl-checkout-page .qbl-card-field,
    .qbl-checkout-page .qbl-card-field-full {
        grid-column: 1 / -1;
    }

    .qbl-checkout-page .qbl-paypal-panel {
        width: 100% !important;
        margin: 18px 0 6px !important;
        padding: 20px !important;
    }

    .qbl-checkout-page .qbl-card-entry-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .qbl-checkout-page .qbl-card-brands {
        justify-content: flex-start;
    }

    .qbl-checkout-page .qbl-brand-visa,
    .qbl-checkout-page .qbl-brand-amex {
        width: 78px !important;
        height: 28px !important;
    }

    .qbl-checkout-page .qbl-brand-mastercard {
        width: 106px !important;
        height: 28px !important;
    }

    .qbl-checkout-page .qbl-card-input-shell {
        min-height: 60px !important;
        height: 60px !important;
    }

    .qbl-native-address-fields {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .qbl-mobile-summary {
        display: block;
        order: 2;
        width: 100%;
        margin: 0;
    }

    .qbl-desktop-summary {
        display: none;
    }

    .qbl-checkout-email {
        display: none;
    }

    .qbl-checkout-shop-btn {
        min-height: 36px;
        padding: 0 13px;
        font-size: 12px;
    }

    .qbl-checkout-footer-grid {
        grid-template-columns: 1fr;
    }

    .qbl-checkout-footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .qbl-checkout-header-inner {
        width: min(100% - 20px, 1280px);
        min-height: 66px;
        gap: 12px;
    }

    .qbl-checkout-logo {
        gap: 7px;
    }

    .qbl-brand-logo-img {
        width: 152px;
    }

    .qbl-checkout-logo-mark {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 12px;
    }

    .qbl-checkout-logo strong {
        font-size: 14px;
        line-height: 18px;
    }

    .qbl-checkout-logo span span {
        max-width: 118px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .qbl-checkout-shop-btn {
        min-height: 42px;
        border-radius: 8px;
        padding: 0 13px;
        font-size: 13px;
        white-space: nowrap;
    }

    .qbl-checkout-title h1 {
        font-size: 34px;
        line-height: 39px;
    }

    .qbl-checkout-title p,
    .qbl-checkout-panel p,
    .qbl-summary-card p,
    .qbl-delivery-card,
    .qbl-payment-card {
        font-size: 15px;
        line-height: 24px;
    }

    .qbl-checkout-panel-inner,
    .qbl-summary-card {
        padding: 24px;
    }

    .qbl-checkout-page .primary-button,
    .qbl-checkout-page .secondary-button,
    .qbl-checkout-shop-btn,
    .qbl-paypal-button,
    .qbl-stripe-button {
        min-height: 50px !important;
        font-size: 15px !important;
    }

    .qbl-checkout-panel input,
    .qbl-checkout-panel select,
    .qbl-checkout-panel textarea {
        min-height: 52px !important;
        font-size: 15px !important;
    }

    .qbl-checkout-page .qbl-card-field label {
        font-size: 12px !important;
    }

    .qbl-checkout-page .qbl-card-field-icon {
        flex-basis: 30px !important;
        width: 30px;
        height: 30px;
    }

    .qbl-payment-card {
        grid-template-columns: 1fr;
        min-height: 92px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .qbl-payment-badge {
        justify-self: start;
    }

    .qbl-checkout-page .qbl-card-brands {
        width: 100%;
        justify-content: flex-start;
    }

    .qbl-checkout-page .qbl-card-mini-badge {
        min-width: 68px;
        height: 36px;
    }

    .qbl-checkout-page .qbl-card-mini-badge .qbl-brand-visa,
    .qbl-checkout-page .qbl-card-mini-badge .qbl-brand-amex {
        width: 58px !important;
        height: 24px !important;
    }

    .qbl-checkout-page .qbl-card-mini-badge .qbl-brand-mastercard {
        width: 76px !important;
        height: 24px !important;
    }
}

@media (max-width: 370px) {
    .qbl-brand-logo-img {
        width: 142px;
    }

    .qbl-checkout-logo span span {
        display: none;
    }

    .qbl-checkout-shop-btn {
        min-height: 42px;
        padding: 0 11px;
        font-size: 12px;
    }

    .qbl-checkout-header-inner,
    .qbl-checkout-wrap {
        width: min(100% - 18px, 1280px);
    }

    .qbl-checkout-page .qbl-card-entry-panel {
        padding: 16px;
    }

    .qbl-checkout-page .qbl-card-brands span {
        padding: 4px 5px;
    }

    .qbl-checkout-page .qbl-brand-visa,
    .qbl-checkout-page .qbl-brand-amex {
        width: 70px !important;
        height: 26px !important;
    }

    .qbl-checkout-page .qbl-brand-mastercard {
        width: 96px !important;
        height: 26px !important;
    }

    .qbl-checkout-page .qbl-card-input-shell {
        gap: 8px !important;
        padding: 0 12px !important;
    }
}
