*,
*::before,
*::after {
    box-sizing: border-box;
}

.licenzo-checkout-body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f3f4f6;
    color: #111827;
    -webkit-font-smoothing: antialiased;
}

.lzs-preview-banner {
    background: #fef3c7;
    color: #92400e;
    border-bottom: 1px solid #fde68a;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 6px 12px;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.lzco {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.lzco-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.lzco-header__brand {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

.lzco-header__secure {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #059669;
    font-weight: 500;
}

.lzco-layout {
    flex: 1;
    display: grid;
    grid-template-columns: 380px 1fr;
    max-width: 1000px;
    width: 100%;
    margin: 32px auto;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.lzco-summary {
    padding: 32px 28px;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
}

.lzco-summary__title {
    margin: 0 0 20px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lzco-summary__product {
    margin-bottom: 20px;
}

.lzco-summary__product-name {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.lzco-summary__product-desc {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.lzco-summary__plan {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
}

.lzco-summary__plan-name {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.lzco-summary__plan-price {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.lzco-summary__plan-cycle {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
}

.lzco-summary__trial {
    margin: 0 0 16px;
    font-size: 13px;
    color: #059669;
    font-weight: 500;
}

.lzco-summary__totals {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 16px;
}

.lzco-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #6b7280;
}

.lzco-summary__row--discount {
    color: #059669;
}

.lzco-summary__row--total {
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.lzco-summary__totals--loading {
    opacity: 0.92;
}

.lzco-summary__totals--loading .lzco-summary__row--total {
    opacity: 0.55;
}

.lzco-summary__value--loading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.lzco-summary__value--loading::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #cbd5e1;
    border-top-color: #64748b;
    border-radius: 50%;
    animation: lzco-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes lzco-spin {
    to {
        transform: rotate(360deg);
    }
}

.lzco-form-section {
    padding: 32px 28px;
}

.lzco-step__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.lzco-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #4f46e5;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.lzco-form__field {
    margin-bottom: 16px;
}

.lzco-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lzco-form__label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.lzco-form__optional {
    color: #9ca3af;
    font-weight: 400;
}

.lzco-form__input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.lzco-form__input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.lzco-form__input:disabled {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.lzco-form__select {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.lzco-form__select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.lzco-form__select:disabled {
    background-color: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.lzco-form__error {
    padding: 10px 14px;
    margin-bottom: 16px;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    font-size: 13px;
    color: #991b1b;
}

.lzco-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #4f46e5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
}

.lzco-form__submit:hover {
    background: #4338ca;
}

.lzco-form__submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.lzco-step__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lzco-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #4f46e5;
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.lzco-back-link:hover {
    background: #f5f3ff;
    border-color: #c7d2fe;
}

.lzco-step--payment {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.lzco-step--payment.lzco-step--inactive {
    opacity: 0.4;
    pointer-events: none;
}

.lzco-checkout-frame {
    min-height: 400px;
}

.lzco-footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #9ca3af;
}

.lzco-combobox {
    position: relative;
}

.lzco-combobox::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: transform 0.15s ease;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20' fill='%2364748b'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.lzco-combobox--open::after {
    transform: translateY(-50%) rotate(180deg);
}

.lzco-combobox__input {
    padding-right: 40px;
}

.lzco-combobox__input[readonly] {
    cursor: pointer;
}

.lzco-combobox__native {
    display: none;
}

.lzco-combobox__list {
    position: absolute;
    z-index: 30;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 4px;
    list-style: none;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.lzco-combobox__option {
    padding: 8px 12px;
    font-size: 14px;
    color: #374151;
    border-radius: 6px;
    cursor: pointer;
}

.lzco-combobox__option:hover,
.lzco-combobox__option--active {
    background: #eef2ff;
    color: #4338ca;
}

.lzco-combobox__empty {
    padding: 8px 12px;
    font-size: 13px;
    color: #9ca3af;
}

.lzco-summary__discount {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 16px;
}

.lzco-summary__discount-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.lzco-discount-row {
    display: flex;
    gap: 8px;
}

.lzco-discount-row .lzco-form__input {
    flex: 1;
}

.lzco-discount-apply {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #4f46e5;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}

.lzco-discount-apply:hover {
    background: #e0e7ff;
}

.lzco-discount-apply:disabled {
    color: #9ca3af;
    background: #f3f4f6;
    border-color: #d1d5db;
    cursor: not-allowed;
}

.lzco-discount-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #065f46;
}

.lzco-discount-remove {
    margin-left: auto;
    padding: 0 4px;
    font-size: 18px;
    line-height: 1;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.lzco-discount-remove:hover {
    color: #ef4444;
    background: #fee2e2;
}

.lzco-discount-error {
    margin-top: 6px;
    font-size: 13px;
    color: #dc2626;
}

@media (max-width: 768px) {
    .lzco-layout {
        grid-template-columns: 1fr;
        margin: 16px;
        border-radius: 8px;
    }

    .lzco-summary {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 24px 20px;
    }

    .lzco-form-section {
        padding: 24px 20px;
    }

    .lzco-form__row {
        grid-template-columns: 1fr;
    }

    .lzco-header {
        padding: 12px 16px;
    }
}

/* Preview / View-path merchandise v2 — additional scoped rules; global .lzco rules above apply to production too */
.licenzo-checkout-main {
    width: 100%;
}

body.licenzo-checkout-page .lzco--merchandise-v2,
.licenzo-checkout-main .lzco--merchandise-v2 {
    min-height: auto;
    /* Neutral, transparent breathing room — the grey backdrop lives on the
       contained card below, so this space stays theme-background. Clamps on mobile. */
    padding: clamp(48px, 12vh, 150px) 16px;
    background: transparent;
}

/*
 * Block themes cap direct children of .is-layout-constrained to content-size unless
 * they carry .alignfull (WP core convention). We opt in via alignfull on the template
 * wrapper, then set checkout-owned width here — no theme-specific overrides.
 */
.lzco.lzco--merchandise-v2.lzco--theme-shell {
    --lzco-checkout-max-width: 72rem;
    width: 100%;
    max-width: var(--lzco-checkout-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
}

body.licenzo-checkout-page .lzco--theme-shell .lzco-header,
.lzco--theme-shell .lzco-header {
    display: none !important;
}

.lzco--merchandise-v2 .lzco-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    /* Slim contained grey backdrop hugging the card. Contained (not full-bleed)
       so it can't conflict with the theme's full-width layout / root padding. */
    background: #f1f5f9;
    border: none;
    border-radius: 16px;
    box-shadow: none;
    overflow: visible;
    padding: 20px;
}

.lzco--merchandise-v2 .lzco-main-card,
.lzco--merchandise-v2 .lzco-summary--card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.lzco--merchandise-v2 .lzco-form-section {
    padding: 0;
}

.lzco--merchandise-v2 .lzco-main-card {
    order: 2;
    padding: 28px 28px 32px;
}

.lzco--merchandise-v2 .lzco-summary--card {
    order: 1;
    padding: 0;
    border-right: none;
    background: #fff;
}

.lzco--merchandise-v2 .lzco-summary__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    font: inherit;
    color: #0f172a;
    background: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.lzco--merchandise-v2 .lzco-summary__toggle-label {
    font-size: 15px;
    font-weight: 600;
}

.lzco--merchandise-v2 .lzco-summary__toggle-total {
    margin-left: auto;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.lzco--merchandise-v2 .lzco-summary__toggle-icon {
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.2s ease;
}

.lzco--merchandise-v2 .lzco-summary--collapsed .lzco-summary__toggle-icon {
    transform: rotate(-90deg);
}

.lzco--merchandise-v2 .lzco-summary__body {
    padding: 0 20px 20px;
}

.lzco--merchandise-v2 .lzco-summary--collapsed .lzco-summary__body {
    display: none;
}

.lzco--merchandise-v2 .lzco-summary__title {
    display: none;
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    text-transform: none;
    letter-spacing: normal;
}

.lzco--merchandise-v2 .lzco-line-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.lzco--merchandise-v2 .lzco-line-item__thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.lzco--merchandise-v2 .lzco-line-item__thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.lzco--merchandise-v2 .lzco-line-item__name {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
}

.lzco--merchandise-v2 .lzco-line-item__plan {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.lzco--merchandise-v2 .lzco-line-item__price {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
}

/* Sale context (Model B) — line-item only; never part of the totals block. */
.lzco-line-item__sale {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.4;
}

.lzco-line-item__regular {
    color: #94a3b8;
}

.lzco-line-item__now {
    color: #475569;
    font-weight: 600;
}

.lzco-line-item__save {
    color: #059669;
    font-weight: 600;
    background: #ecfdf5;
    border-radius: 999px;
    padding: 1px 8px;
}

.lzco--merchandise-v2 .lzco-section-title {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.lzco--merchandise-v2 .lzco-form__required {
    color: #dc2626;
}

.lzco--merchandise-v2 .lzco-combobox__input {
    min-height: 44px;
}

.lzco--merchandise-v2 .lzco-combobox__list {
    z-index: 50;
}

.lzco--merchandise-v2 .lzco-form__input,
.lzco--merchandise-v2 .lzco-form__select,
.lzco--merchandise-v2 .lzco-select {
    border-color: #cbd5e1;
    border-radius: 8px;
    min-height: 44px;
}

.lzco--merchandise-v2 .lzco-form__input:focus,
.lzco--merchandise-v2 .lzco-form__select:focus,
.lzco--merchandise-v2 .lzco-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.lzco--merchandise-v2 .lzco-form__submit {
    background: #2563eb;
    border-radius: 8px;
    min-height: 48px;
}

.lzco--merchandise-v2 .lzco-form__submit:hover {
    background: #1d4ed8;
}

.lzco--merchandise-v2 .lzco-step--payment {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
}

.lzco--merchandise-v2 .lzco-main-card--payment-active .lzco-step--payment {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.lzco--merchandise-v2 .lzco-step__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.lzco--merchandise-v2 .lzco-step__header .lzco-section-title {
    margin: 0;
}

.lzco--merchandise-v2 .lzco-step--payment.lzco-step--inactive {
    display: none;
}

.lzco--merchandise-v2 .lzco-payment-error {
    margin-top: 12px;
    margin-bottom: 0;
}

.lzco--merchandise-v2 .lzco-step--details .lzco-form__submit {
    margin-top: 24px;
}

.lzco--merchandise-v2 .lzco-step--details .lzco-form__submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.lzco--merchandise-v2 .lzco-field-error {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.4;
    color: #dc2626;
}

.lzco--merchandise-v2 .lzco-back-link--text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: #2563eb;
    background: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

.lzco--merchandise-v2 .lzco-back-link--text:hover {
    background: none;
    text-decoration: underline;
}

.lzco--merchandise-v2 .lzco-step--payment:not(.lzco-step--inactive) .lzco-checkout-frame--card {
    min-height: 320px;
    padding: 4px 0;
}

.lzco--merchandise-v2 .lzco-summary__totals {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.lzco--merchandise-v2 .lzco-summary__row {
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
}

.lzco--merchandise-v2 .lzco-summary__row--total {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.lzco--merchandise-v2 .lzco-summary__row--total span:first-child {
    color: #0f172a;
}

.lzco--merchandise-v2 .lzco-summary__trial {
    margin: 4px 0 0;
    font-size: 12px;
}

.lzco--merchandise-v2 .lzco-summary__product-desc {
    display: none;
}

.lzco--merchandise-v2 .lzco-field-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
}

.lzco--merchandise-v2 .lzco-select {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 0;
}

.lzco--merchandise-v2 .lzco-summary__plan-picker {
    margin-bottom: 16px;
}

.lzco--merchandise-v2 .lzco-summary__discount {
    border-top: none;
    padding: 8px 0 4px;
    margin-top: 0;
}

.lzco--merchandise-v2 .lzco-discount-toggle {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
}

.lzco--merchandise-v2 .lzco-discount-toggle:hover {
    background: #f1f5f9;
    text-decoration: none;
}

.lzco--merchandise-v2 .lzco-discount-panel {
    margin-top: 10px;
}

.lzco--merchandise-v2 .lzco-discount-apply {
    color: #2563eb;
    background: #eff6ff;
    border-color: #bfdbfe;
}

.lzco--merchandise-v2 .lzco-footer {
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 0 0;
}

.lzco--merchandise-v2 .lzco-main-card__extension {
    margin-top: 20px;
}

.lzco--merchandise-v2 .lzco-summary__footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.lzco--merchandise-v2 .lzco-summary__extension + .lzco-summary__branding {
    margin-top: 12px;
}

.lzco--merchandise-v2 .lzco-summary__branding {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}

@media (min-width: 900px) {
    body.licenzo-checkout-page .lzco--merchandise-v2,
    .licenzo-checkout-main .lzco--merchandise-v2 {
        padding: clamp(48px, 12vh, 150px) 24px;
    }

    .lzco--merchandise-v2 .lzco-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
        gap: 24px;
        align-items: start;
    }

    .lzco--merchandise-v2 .lzco-main-card {
        order: 1;
    }

    .lzco--merchandise-v2 .lzco-summary--card {
        order: 2;
        position: sticky;
        top: 24px;
    }

    .lzco--merchandise-v2 .lzco-summary__toggle {
        display: none;
    }

    .lzco--merchandise-v2 .lzco-summary__title {
        display: block;
    }

    .lzco--merchandise-v2 .lzco-summary__body {
        padding: 24px;
    }

    .lzco--merchandise-v2 .lzco-summary--collapsed .lzco-summary__body {
        display: block;
    }
}

@media (max-width: 899px) {
    .lzco--merchandise-v2 .lzco-form__row {
        grid-template-columns: 1fr;
    }

    .lzco--merchandise-v2 .lzco-main-card {
        padding: 24px 20px 28px;
    }
}
