/* Woomx Lead Funnel Widget Frontend Styles */
.woomx-theme-wrapper {
    --woomx-primary: #4f46e5;
    --woomx-secondary: #6366f1;
    --woomx-primary-dark: #312e81;
    --woomx-emerald: #059669;
    --woomx-emerald-light: #d1fae5;
    --woomx-slate-50: #f8fafc;
    --woomx-slate-100: #f1f5f9;
    --woomx-slate-200: #e2e8f0;
    --woomx-slate-300: #cbd5e1;
    --woomx-slate-400: #94a3b8;
    --woomx-slate-500: #64748b;
    --woomx-slate-700: #334155;
    --woomx-slate-800: #1e293b;
    --woomx-slate-900: #0f172a;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--woomx-slate-800);
    box-sizing: border-box;
    width: 100%;
}

.woomx-theme-wrapper * {
    box-sizing: border-box;
}

/* Helpers */
.woomx-hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Main Grid Layout */
.woomx-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    position: relative;
    z-index: 10;
}

@media (min-width: 992px) {
    .woomx-main-grid.has-sidebar {
        grid-template-columns: 1fr 340px;
    }
}

/* Cards Base */
.woomx-card {
    background: #ffffff;
    border: 1px solid var(--woomx-slate-200);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

@media (max-width: 640px) {
    .woomx-card {
        padding: 16px;
        border-radius: 12px;
    }
}

/* Step Indicator Bar */
.woomx-step-nav {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--woomx-slate-100);
    padding-bottom: 20px;
}

.woomx-step-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.woomx-step-line-bg {
    position: absolute;
    left: 0;
    top: 20px;
    height: 3px;
    width: 100%;
    background: var(--woomx-slate-200);
    z-index: 1;
}

.woomx-step-progress-bar {
    position: absolute;
    left: 0;
    top: 20px;
    height: 3px;
    width: 0%;
    background: var(--woomx-primary);
    z-index: 1;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.woomx-step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.woomx-step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--woomx-slate-200);
    color: var(--woomx-slate-500);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
    font-size: 14px;
}

@media (max-width: 640px) {
    .woomx-step-dot {
        width: 32px;
        height: 32px;
        font-size: 12px;
        border-width: 3px;
    }
    .woomx-step-line-bg,
    .woomx-step-progress-bar {
        top: 16px;
    }
}

.woomx-step-item.active .woomx-step-dot {
    background: var(--woomx-primary);
    color: #ffffff;
}

.woomx-step-item.completed .woomx-step-dot {
    background: var(--woomx-emerald);
    color: #ffffff;
}

.woomx-step-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--woomx-slate-400);
    margin-top: 6px;
    text-align: center;
}

@media (max-width: 480px) {
    .woomx-step-text {
        font-size: 10px;
    }
}

.woomx-step-item.active .woomx-step-text {
    color: var(--woomx-primary);
    font-weight: 700;
}

.woomx-step-item.completed .woomx-step-text {
    color: var(--woomx-emerald);
}

/* Step Panes & Content */
.woomx-pane-head {
    margin-bottom: 20px;
}

.woomx-pane-head h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--woomx-slate-900);
    margin: 0 0 4px 0;
}

.woomx-pane-head p {
    font-size: 13px;
    color: var(--woomx-slate-500);
    margin: 0;
}

/* Service Selection Cards Grid */
.woomx-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 25px;
}

@media (max-width: 640px) {
    .woomx-service-grid {
        grid-template-columns: 1fr;
    }
}

.woomx-service-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid var(--woomx-slate-200);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.woomx-service-card:hover {
    border-color: var(--woomx-secondary);
}

.woomx-service-card.selected {
    border-color: var(--woomx-primary);
    background: rgba(99, 102, 241, 0.04);
}

.woomx-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.woomx-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--woomx-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.woomx-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.woomx-badge.emerald { background: var(--woomx-emerald-light); color: var(--woomx-emerald); }
.woomx-badge.purple { background: #f3e8ff; color: #7e22ce; }
.woomx-badge.blue { background: #dbeafe; color: #1d4ed8; }
.woomx-badge.amber { background: #fef3c7; color: #b45309; }
.woomx-badge.rose { background: #ffe4e6; color: #be123c; }

.woomx-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--woomx-slate-900);
}

.woomx-card-desc {
    font-size: 11px;
    color: var(--woomx-slate-500);
    margin-top: 2px;
}

.woomx-card-price {
    font-size: 12px;
    font-weight: 600;
    color: var(--woomx-primary);
    margin-top: 10px;
}

/* Package Tiers Grid */
.woomx-tiers-section {
    border-top: 1px solid var(--woomx-slate-100);
    padding-top: 20px;
    margin-bottom: 20px;
}

.woomx-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

@media (max-width: 640px) {
    .woomx-tiers-grid {
        grid-template-columns: 1fr;
    }
}

.woomx-tier-card {
    display: flex;
    flex-direction: column;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid var(--woomx-slate-200);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.woomx-tier-card.selected {
    border-color: var(--woomx-primary);
    background: rgba(99, 102, 241, 0.04);
}

.woomx-tier-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.woomx-tier-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--woomx-slate-900);
}

.woomx-tier-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--woomx-primary);
}

.woomx-tier-price small {
    font-size: 10px;
    color: var(--woomx-slate-400);
    font-weight: 400;
}

.woomx-tier-desc {
    font-size: 11px;
    color: var(--woomx-slate-500);
    line-height: 1.3;
}

/* Form Inputs & Fields */
.woomx-field-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--woomx-slate-700);
    margin-bottom: 6px;
}

.woomx-field-label .required { color: #e11d48; }
.woomx-field-label .optional { font-weight: 400; color: var(--woomx-slate-400); }

.woomx-fields-row-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 640px) {
    .woomx-fields-row-2 {
        grid-template-columns: 1fr;
    }
}

.woomx-field-block {
    margin-bottom: 16px;
}

.woomx-input,
.woomx-select,
.woomx-textarea {
    width: 100%;
    background: var(--woomx-slate-50);
    border: 1px solid var(--woomx-slate-300);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px !important;
    color: var(--woomx-slate-800);
    font-family: inherit;
    transition: all 0.2s ease;
    min-height: 44px;
}

.woomx-input::placeholder,
.woomx-textarea::placeholder {
    font-size: 14px !important;
}

.woomx-input:focus,
.woomx-select:focus,
.woomx-textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--woomx-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* Radio Pills */
.woomx-radio-pills-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (max-width: 640px) {
    .woomx-radio-pills-3 {
        grid-template-columns: 1fr;
    }
}

.woomx-pill-card {
    border: 1px solid var(--woomx-slate-200);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    background: var(--woomx-slate-50);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-height: 48px;
}

.woomx-pill-card.horizontal {
    flex-direction: row;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.woomx-pill-card:hover {
    background: var(--woomx-slate-100);
}

.woomx-pill-card input:checked + span,
.woomx-pill-card:has(input:checked) {
    border-color: var(--woomx-primary);
    background: rgba(79, 70, 229, 0.05);
}

.woomx-pill-title { font-size: 13px; font-weight: 700; color: var(--woomx-slate-800); }
.woomx-pill-sub { font-size: 10px; color: var(--woomx-slate-500); }

/* Preferred Channel Colored Action Buttons (No Radios) */
.woomx-channel-btn-group {
    display: flex;
    gap: 10px;
}

@media (max-width: 640px) {
    .woomx-channel-btn-group {
        flex-direction: column;
    }
}

.woomx-channel-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid var(--woomx-slate-200) !important;
    background: var(--woomx-slate-100) !important;
    color: var(--woomx-slate-700) !important;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    min-height: 48px;
}

.woomx-channel-btn:hover {
    background: var(--woomx-slate-200) !important;
    color: var(--woomx-slate-800) !important;
}

.woomx-channel-btn.active.email {
    background: #4f46e5 !important;
    color: #ffffff !important;
    border-color: #4f46e5 !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.woomx-channel-btn.active.whatsapp {
    background: #25d366 !important;
    color: #ffffff !important;
    border-color: #25d366 !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.woomx-channel-btn.active.meet {
    background: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Phone Country Selector Styles */
.woomx-phone-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.woomx-select-country {
    background: var(--woomx-slate-50);
    border: 1px solid var(--woomx-slate-300);
    border-radius: 10px;
    padding: 12px 10px;
    font-size: 13px;
    color: var(--woomx-slate-800);
    font-family: inherit;
    transition: all 0.2s ease;
    min-height: 44px;
    width: 110px;
    flex-shrink: 0;
}

.woomx-select-country:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--woomx-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.woomx-phone-input {
    flex-grow: 1;
}

.woomx-addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.woomx-checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--woomx-slate-200);
    background: rgba(248, 250, 252, 0.5);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--woomx-slate-700);
    transition: all 0.2s ease;
    min-height: 46px;
}

.woomx-checkbox-card input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.woomx-checkbox-label-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.woomx-checkbox-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--woomx-slate-800);
    line-height: 1.3;
}

.woomx-checkbox-desc {
    font-size: 11px;
    font-weight: 400;
    color: var(--woomx-slate-500);
    line-height: 1.3;
}

.woomx-checkbox-card:hover {
    background: var(--woomx-slate-100);
}

.woomx-terms-box {
    background: var(--woomx-slate-50);
    border: 1px solid var(--woomx-slate-200);
    border-radius: 10px;
    padding: 14px;
    font-size: 12px;
    color: var(--woomx-slate-600);
    margin-bottom: 16px;
}

.woomx-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.woomx-checkbox-label input[type="checkbox"] {
    margin: 3px 0 0 0;
    flex-shrink: 0;
}

.woomx-error-msg {
    color: #e11d48;
    font-size: 11px;
    margin-top: 4px;
    display: block;
}

.woomx-notice-error {
    background: #ffe4e6;
    border: 1px solid #f43f5e;
    color: #9f1239;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    margin-bottom: 16px;
}

/* Action Buttons */
.woomx-action-bar {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--woomx-slate-100);
}

.woomx-action-bar.flex-end { justify-content: flex-end; }
.woomx-action-bar.flex-between { justify-content: space-between; }

@media (max-width: 480px) {
    .woomx-action-bar.flex-between {
        flex-direction: column-reverse;
        gap: 10px;
    }
    .woomx-action-bar.flex-between button {
        width: 100%;
        justify-content: center;
    }
}

.woomx-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 48px;
}

.woomx-btn-primary {
    background: var(--woomx-primary);
    color: #ffffff;
}

.woomx-btn-primary:hover {
    background: var(--woomx-secondary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.woomx-btn-submit {
    background: var(--woomx-emerald);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
}

.woomx-btn-submit:hover {
    background: #047857;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.woomx-btn-secondary {
    background: transparent;
    color: var(--woomx-slate-600);
}

.woomx-btn-secondary:hover {
    color: var(--woomx-slate-900);
}

/* Sidebar & Summary Cards */
.woomx-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.woomx-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--woomx-slate-100);
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.woomx-summary-head h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--woomx-slate-900);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.woomx-summary-head i { color: var(--woomx-primary); }

.woomx-fixed-badge {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--woomx-emerald-light);
    color: var(--woomx-emerald);
    padding: 2px 8px;
    border-radius: 4px;
}

.woomx-summary-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
}

.woomx-sum-row {
    display: flex;
    justify-content: space-between;
    color: var(--woomx-slate-600);
}

.woomx-sum-row strong {
    color: var(--woomx-slate-900);
}

.woomx-sum-addons-box,
.woomx-sum-global-list {
    border-top: 1px dashed var(--woomx-slate-200);
    padding-top: 8px;
    margin-top: 4px;
}

.woomx-sum-addons-box .label {
    font-size: 11px;
    font-weight: 600;
    color: var(--woomx-slate-400);
    display: block;
    margin-bottom: 4px;
}

.woomx-sum-total {
    border-top: 1px solid var(--woomx-slate-200);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-weight: 700;
}

.price-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.woomx-price-split {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.split-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 6px;
}

.split-row .amount {
    font-size: 18px !important;
    font-weight: 900 !important;
    color: var(--woomx-primary) !important;
}

.split-row .type {
    font-size: 10px !important;
    color: var(--woomx-slate-500) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.woomx-sum-total .amount {
    font-size: 24px;
    font-weight: 900;
    color: var(--woomx-primary);
}

.woomx-sum-total .type {
    font-size: 10px;
    color: var(--woomx-slate-500);
    display: block;
    text-align: right;
    font-weight: 400;
}

/* Guarantee & Contact Cards Color Fixes */
.woomx-guarantee-card {
    background: linear-gradient(135deg, var(--woomx-slate-900) 0%, var(--woomx-slate-800) 100%);
    color: #ffffff !important;
    border: 1px solid var(--woomx-slate-700);
}

.woomx-guar-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.woomx-guar-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.woomx-guarantee-card .woomx-guar-head h4,
.woomx-theme-wrapper .woomx-guarantee-card h4 {
    font-size: 14px;
    margin: 0;
    font-weight: 700;
    color: #ffffff !important;
}

.woomx-guar-head p { font-size: 11px; color: var(--woomx-slate-400); margin: 0; }

.woomx-guar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    color: var(--woomx-slate-300);
}

.woomx-guar-list i { color: #34d399; }

.woomx-contact-card h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--woomx-slate-500); margin: 0 0 6px 0; }
.woomx-contact-card p { font-size: 12px; color: var(--woomx-slate-600); margin: 0 0 12px 0; }

.woomx-contact-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.woomx-btn-wa,
.woomx-theme-wrapper .woomx-btn-wa,
.woomx-contact-btns .woomx-btn-wa {
    background: var(--woomx-emerald) !important;
    color: #ffffff !important;
    justify-content: center;
    font-size: 12px;
}

.woomx-btn-mail {
    background: var(--woomx-slate-100);
    color: var(--woomx-slate-800);
    justify-content: center;
    font-size: 12px;
}

/* Success View & WhatsApp Dispatch Button */
.woomx-success-view {
    text-align: center;
    padding: 25px 10px;
}

.woomx-check-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--woomx-emerald-light);
    color: var(--woomx-emerald);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.woomx-roadmap-box {
    background: var(--woomx-slate-50);
    border: 1px solid var(--woomx-slate-200);
    border-radius: 14px;
    padding: 20px;
    text-align: left;
    margin: 20px auto;
    max-width: 550px;
}

.woomx-roadmap-box h3 {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--woomx-slate-400);
    margin: 0 0 14px 0;
    letter-spacing: 0.05em;
}

.woomx-roadmap-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.woomx-rm-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.woomx-rm-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--woomx-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.woomx-rm-title { font-size: 13px; font-weight: 700; color: var(--woomx-slate-900); margin: 0; }
.woomx-rm-desc { font-size: 11px; color: var(--woomx-slate-500); margin: 2px 0 0 0; }

.woomx-success-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

@media (max-width: 640px) {
    .woomx-success-actions {
        flex-direction: column;
    }
    .woomx-success-actions button {
        width: 100%;
        justify-content: center;
    }
}

.woomx-btn-wa-dispatch {
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
}

.woomx-btn-wa-dispatch:hover {
    background: #128c7e;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.woomx-btn-dark { background: var(--woomx-slate-900); color: #ffffff; }
.woomx-btn-light { background: var(--woomx-slate-100); color: var(--woomx-slate-700); }

/* Layout Splits */
.woomx-global-fields-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}
.woomx-col-50 {
    width: 100%;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .woomx-col-50 {
        width: calc(50% - 8px) !important;
        flex: 0 0 calc(50% - 8px) !important;
    }
}

/* Mobile Service & Package Description Accordion Expand */
@media (max-width: 768px) {
    .woomx-service-card .woomx-card-desc {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    }
    
    .woomx-service-card.selected .woomx-card-desc {
        max-height: 120px;
        opacity: 1;
        margin-top: 6px;
    }

    .woomx-tier-card .woomx-tier-desc {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0;
        margin-bottom: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, margin-bottom 0.3s ease;
    }

    .woomx-tier-card.selected .woomx-tier-desc {
        max-height: 120px;
        opacity: 1;
        margin-top: 6px;
        margin-bottom: 4px;
    }
}

.woomx-field-helper {
    display: block;
    font-size: 11px;
    color: var(--woomx-slate-400);
    margin-top: 4px;
    font-weight: 500;
}
