/* ==========================================================================
   VLClean Calculator — Front-end Styles
   High specificity to override Elementor theme
   ========================================================================== */

/* ---------- Reset & Container ---------- */
/* Kill Elementor container padding around calculator */
.elementor-widget-shortcode:has(#vlcalc),
.elementor-widget-shortcode:has(#vlcalc) > .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
}
#vlcalc.vlcalc {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.5;
}
#vlcalc.vlcalc *, #vlcalc.vlcalc *::before, #vlcalc.vlcalc *::after {
    box-sizing: border-box;
}

/* ---------- Header ---------- */
#vlcalc .vlcalc-header {
    background: #37755c;
    padding: 24px 28px 20px;
    color: #fff;
    text-align: center;
}
#vlcalc .vlcalc-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 4px;
    color: #fff !important;
    line-height: 1.2;
}
#vlcalc .vlcalc-subtitle {
    font-size: 0.85rem;
    opacity: 0.75;
    margin: 0;
    color: #fff !important;
}

/* ---------- Type Selection ---------- */
#vlcalc .vlcalc-types {
    padding: 16px 20px;
    background: #fafaf5;
    border-bottom: 1px solid #e8e4d8;
}
#vlcalc .vlcalc-type-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
#vlcalc button.vlcalc-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 6px;
    min-height: 44px;
    background: #fff !important;
    border: 2px solid #e4e0d4 !important;
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none !important;
    appearance: none !important;
    font-family: 'Montserrat', inherit;
    font-size: 0.72rem;
    font-weight: 600;
    color: #444 !important;
    text-align: center;
    line-height: 1.2;
    outline: none;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
#vlcalc button.vlcalc-type-card:hover {
    border-color: #4a7c59 !important;
}
#vlcalc button.vlcalc-type-card.is-active {
    border-color: #4a7c59 !important;
    background: linear-gradient(135deg, #eaf5ed, #d4edda) !important;
    box-shadow: 0 2px 8px rgba(74,124,89,0.15) !important;
    color: #2d5a3f !important;
}
#vlcalc .vlcalc-type-icon {
    font-size: 1.5rem;
    line-height: 1;
}
#vlcalc .vlcalc-type-name {
    display: block;
}

/* ---------- Params Section ---------- */
#vlcalc .vlcalc-params {
    padding: 0 24px;
}
#vlcalc .vlcalc-row {
    padding: 20px 0;
    border-bottom: 1px solid #e8e4d8;
}
#vlcalc .vlcalc-row:last-child {
    border-bottom: none;
}
#vlcalc .vlcalc-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ---------- Pills ---------- */
#vlcalc .vlcalc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
#vlcalc button.vlcalc-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    min-height: 44px;
    border: 2px solid #e0dcd0 !important;
    border-radius: 24px !important;
    background: #fff !important;
    color: #666 !important;
    font-family: 'Montserrat', inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none !important;
    appearance: none !important;
    white-space: nowrap;
    outline: none;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.3;
}
#vlcalc button.vlcalc-pill:hover {
    border-color: #37755c !important;
    color: #37755c !important;
}
#vlcalc button.vlcalc-pill.is-active {
    background: #37755c !important;
    border-color: #37755c !important;
    color: #fff !important;
}
#vlcalc .vlcalc-row--sub-services {
    padding-top: 0;
    border-bottom: none;
}
#vlcalc .vlcalc-row--sub-services .vlcalc-pills {
    margin-top: 8px;
}

/* ---------- Area Slider ---------- */
#vlcalc .vlcalc-area-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 4px;
}
#vlcalc .vlcalc-area-header .vlcalc-label {
    margin-bottom: 0;
}
#vlcalc .vlcalc-area-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2d5a3f;
}
#vlcalc .vlcalc-area-price {
    font-size: 0.8rem;
    color: #4a7c59;
    font-weight: 600;
    margin-bottom: 10px;
}
#vlcalc .vlcalc-slider {
    margin: 0 8px;
}
#vlcalc .vlcalc-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #bbb;
    margin-top: 6px;
}

/* noUiSlider Overrides */
#vlcalc .noUi-target {
    height: 8px;
    border: none !important;
    border-radius: 4px;
    background: #e8e4d8 !important;
    box-shadow: none !important;
}
#vlcalc .noUi-connect {
    background: #1fc107 !important;
}
#vlcalc .noUi-handle {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 3px solid #1fc107 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
    top: -8px !important;
    right: -12px !important;
    cursor: grab;
}
#vlcalc .noUi-handle:active {
    cursor: grabbing;
}
#vlcalc .noUi-handle::before,
#vlcalc .noUi-handle::after {
    display: none !important;
}

/* ---------- Items Grid ---------- */
#vlcalc .vlcalc-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
#vlcalc .vlcalc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 2px solid #eeebe0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.85rem;
    background: #fff;
}
#vlcalc .vlcalc-item:hover {
    border-color: #c0d8c8;
}
#vlcalc .vlcalc-item.is-on {
    border-color: #4a7c59;
    background: #f2faf5;
}
#vlcalc .vlcalc-item-check {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: transparent;
    transition: all 0.15s;
    line-height: 1;
}
#vlcalc .vlcalc-item.is-on .vlcalc-item-check {
    background: #4a7c59;
    border-color: #4a7c59;
    color: #fff;
}
#vlcalc .vlcalc-item-name {
    flex: 1;
    font-weight: 500;
}
#vlcalc .vlcalc-item-counter {
    display: flex;
    align-items: center;
    gap: 4px;
}
#vlcalc button.vlcalc-item-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: 1.5px solid #ddd !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8f8f2 !important;
    font-weight: 700;
    color: #666 !important;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.15s;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1;
    font-family: 'Montserrat', inherit;
}
#vlcalc button.vlcalc-item-btn:hover {
    border-color: #4a7c59 !important;
    color: #4a7c59 !important;
}
#vlcalc .vlcalc-item-qty {
    font-weight: 700;
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}
#vlcalc .vlcalc-item-price {
    font-weight: 700;
    color: #4a7c59;
    font-size: 0.82rem;
    white-space: nowrap;
}

/* ---------- Extras ---------- */
#vlcalc .vlcalc-extras {
    padding: 0 24px;
    border-top: 1px solid #e8e4d8;
}
#vlcalc button.vlcalc-extras-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    min-height: 44px;
    border: none !important;
    background: none !important;
    cursor: pointer;
    -webkit-appearance: none !important;
    appearance: none !important;
    font-family: 'Montserrat', inherit;
    gap: 10px;
    box-shadow: none !important;
    text-transform: none !important;
    outline: none;
}
#vlcalc .vlcalc-extras-toggle-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#vlcalc .vlcalc-extras-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 12px;
    background: #4a7c59;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
}
#vlcalc .vlcalc-extras-badge:empty,
#vlcalc .vlcalc-extras-badge[data-count="0"] {
    display: none;
}
#vlcalc .vlcalc-extras-chevron {
    margin-left: auto;
    font-size: 0.75rem;
    color: #999;
    transition: transform 0.3s;
}
#vlcalc .vlcalc-extras.is-open .vlcalc-extras-chevron {
    transform: rotate(180deg);
}
#vlcalc .vlcalc-extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-bottom: 16px;
}

/* Extras items reuse .vlcalc-item styles */

/* ---------- Disclaimer ---------- */
/* ---------- Min Order Notice ---------- */
.vlcalc-min-order {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #ffc107;
    color: #37755c;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0;
}
#vlcalc .vlcalc-min-order {
    border-radius: 0;
    margin: 0;
}
.vlcalc-min-order-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
}
.vlcalc-min-order-text {
    line-height: 1.4;
}
.vlcalc-min-order-text strong {
    font-weight: 800;
    font-size: 1.05rem;
}
.vlcalc-pricing .vlcalc-min-order {
    border-radius: 10px;
    margin: 0 0 20px;
    padding: 12px 18px;
}

#vlcalc .vlcalc-disclaimer {
    padding: 12px 24px;
    background: #fef9e7;
    border-top: 1px solid #f0e6b0;
    display: flex;
    align-items: center;
    gap: 8px;
}
#vlcalc .vlcalc-disclaimer-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1;
}
#vlcalc .vlcalc-disclaimer-text {
    margin: 0;
    font-size: 0.78rem;
    color: #8a7a3a;
    line-height: 1.5;
}

/* ---------- Footer (sticky) ---------- */
#vlcalc .vlcalc-footer {
    padding: 18px 24px;
    background: #ffc107;
    position: sticky;
    bottom: 0;
    z-index: 10;
}
#vlcalc .vlcalc-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
#vlcalc .vlcalc-price-label {
    font-size: 0.75rem;
    color: #37755c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}
#vlcalc .vlcalc-price-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: #37755c !important;
    line-height: 1.1;
}
#vlcalc button.vlcalc-order-btn {
    padding: 14px 32px !important;
    background: #37755c !important;
    color: #fff !important;
    border: none !important;
    border-radius: 14px !important;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(55,117,92,0.3) !important;
    transition: all 0.2s;
    font-family: 'Montserrat', inherit;
    white-space: nowrap;
    -webkit-appearance: none !important;
    appearance: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.3;
}
#vlcalc button.vlcalc-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55,117,92,0.4) !important;
    background: #2d5a3f !important;
}

/* ==========================================================================
   Pricing Table (below calculator) — [vlclean_pricing]
   ========================================================================== */
.vlcalc-pricing {
    width: 100%;
    margin: 60px 0 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
}
.vlcalc-pricing-header {
    text-align: center;
    margin-bottom: 40px;
}
.vlcalc-pricing-title {
    font-size: 2rem;
    font-weight: 800;
    color: #37755c;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.vlcalc-pricing-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}
.vlcalc-pricing-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}
.vlcalc-pricing-left {
    padding: 10px 0;
}
.vlcalc-pricing-desc {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
    margin: 0 0 16px;
}
.vlcalc-pricing-from {
    font-size: 1.2rem;
    color: #222;
    margin: 0 0 20px;
    font-weight: 600;
}
.vlcalc-pricing-from strong {
    font-size: 1.5rem;
    color: #37755c;
    font-weight: 800;
}
.vlcalc-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.vlcalc-pricing-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: #333;
    line-height: 1.6;
}
.vlcalc-pricing-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-size: 0.9rem;
}
.vlcalc-pricing-note {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

/* Table */
.vlcalc-pricing-table-wrap {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e8e4d8;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    background: #fff;
}
.vlcalc-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: #fff;
    margin-bottom: 0;
    display: table;
}
.vlcalc-pricing-table thead tr {
    background: #ffc107;
}
.vlcalc-pricing-table th {
    padding: 14px 18px;
    font-weight: 700;
    text-align: center;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #37755c;
}
.vlcalc-pricing-table th:first-child {
    text-align: left;
}
.vlcalc-pricing-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    text-align: center;
    color: #333;
}
.vlcalc-pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #222;
}
.vlcalc-pricing-table td:nth-child(2) {
    font-weight: 700;
    color: #37755c;
}
.vlcalc-pricing-table tbody tr:nth-child(even) {
    background: #fafaf5;
}
.vlcalc-pricing-table tbody tr:hover {
    background: #eaf5ed;
}
.vlcalc-pricing-table tbody tr:last-child td {
    border-bottom: none;
    padding-bottom: 16px;
}
.vlcalc-pricing-table tbody tr {
    background: #fff;
}

/* Pricing — mobile */
@media (max-width: 768px) {
    .vlcalc-pricing { margin-top: 40px; }
    .vlcalc-pricing-header { margin-bottom: 24px; }
    .vlcalc-pricing-title { font-size: 1.35rem; }
    .vlcalc-pricing-subtitle { font-size: 0.88rem; }
    .vlcalc-pricing-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .vlcalc-pricing-left { padding: 0 4px; }
    .vlcalc-pricing-from strong { font-size: 1.3rem; }
    .vlcalc-pricing-table-wrap { border-radius: 8px; }
    .vlcalc-pricing-table th,
    .vlcalc-pricing-table td { padding: 10px 12px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
    .vlcalc-pricing-title { font-size: 1.15rem; }
    .vlcalc-pricing-table th,
    .vlcalc-pricing-table td { padding: 8px 8px; font-size: 0.75rem; }
    .vlcalc-pricing-features li { font-size: 0.8rem; }
    .vlcalc-pricing-desc { font-size: 0.82rem; }
}

/* ==========================================================================
   Modal
   ========================================================================== */
.vlcalc-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.vlcalc-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.vlcalc-modal-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
}
.vlcalc-modal button.vlcalc-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none !important;
    border: none !important;
    font-size: 1.8rem;
    color: #999 !important;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    box-shadow: none !important;
    -webkit-appearance: none !important;
}
.vlcalc-modal .vlcalc-modal-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2d5a3f !important;
    margin: 0 0 8px;
}
.vlcalc-modal .vlcalc-modal-summary {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 20px;
    padding: 14px 16px;
    background: #fafaf5;
    border-radius: 10px;
    line-height: 1.5;
}
.vlcalc-modal .vlcalc-form-group {
    margin-bottom: 16px;
}
.vlcalc-modal .vlcalc-form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}
.vlcalc-modal .vlcalc-required { color: #c0392b; }
.vlcalc-modal .vlcalc-form-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0dcd0 !important;
    border-radius: 10px !important;
    font-size: 0.9rem;
    font-family: 'Montserrat', inherit;
    transition: border-color 0.2s;
    background: #fff !important;
    color: #333 !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
}
.vlcalc-modal .vlcalc-form-input:focus {
    outline: none;
    border-color: #4a7c59 !important;
    box-shadow: 0 0 0 3px rgba(74,124,89,0.15) !important;
}
.vlcalc-modal .vlcalc-form-textarea {
    resize: vertical;
    min-height: 80px;
}
.vlcalc-modal .vlcalc-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: #666;
    cursor: pointer;
}
.vlcalc-modal .vlcalc-checkbox {
    margin-top: 3px;
    accent-color: #4a7c59;
}
.vlcalc-modal button.vlcalc-submit-btn {
    width: 100% !important;
    padding: 14px !important;
    background: linear-gradient(135deg, #4a7c59, #2d5a3f) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', inherit;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    text-transform: none !important;
    margin-top: 20px;
}
.vlcalc-modal button.vlcalc-submit-btn:hover {
    opacity: 0.9;
}
.vlcalc-modal button.vlcalc-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.vlcalc-modal .vlcalc-modal-message {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
}
.vlcalc-modal .vlcalc-modal-message.is-success {
    background: #d4edda;
    color: #2d5a3f;
}
.vlcalc-modal .vlcalc-modal-message.is-error {
    background: #f8d7da;
    color: #721c24;
}

/* ==========================================================================
   Responsive — 768px
   ========================================================================== */
@media (max-width: 768px) {
    #vlcalc .vlcalc-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    #vlcalc .vlcalc-header { padding: 18px 16px 14px; }
    #vlcalc .vlcalc-title { font-size: 1.15rem; }
    #vlcalc .vlcalc-types { padding: 14px 12px; overflow: visible; }
    #vlcalc .vlcalc-params { padding: 0 14px; }
    #vlcalc .vlcalc-extras { padding: 0 14px; }
    #vlcalc .vlcalc-extras-grid { grid-template-columns: 1fr; }
    #vlcalc .vlcalc-disclaimer { padding: 10px 14px; }
    #vlcalc .vlcalc-disclaimer-text { font-size: 0.72rem; }
    #vlcalc .vlcalc-footer { padding: 14px; }
    #vlcalc .vlcalc-price-amount { font-size: 1.3rem; }
    #vlcalc button.vlcalc-order-btn { padding: 12px 20px !important; font-size: 0.88rem; }
    #vlcalc .vlcalc-pills { gap: 6px; }
    #vlcalc button.vlcalc-pill {
        padding: 7px 14px;
        font-size: 0.78rem;
        min-height: 38px;
        white-space: normal !important;
        text-align: center;
    }
    .vlcalc-modal-card { padding: 24px 16px; }
}

/* ==========================================================================
   Responsive — 480px
   ========================================================================== */
@media (max-width: 480px) {
    #vlcalc.vlcalc { border-radius: 12px; }
    #vlcalc .vlcalc-types { padding: 10px 8px; }
    #vlcalc .vlcalc-type-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    #vlcalc button.vlcalc-type-card {
        padding: 10px 6px;
        font-size: 0.68rem;
    }
    #vlcalc .vlcalc-type-icon { font-size: 1.2rem; }
    #vlcalc .vlcalc-type-name { word-break: normal; }
    #vlcalc button.vlcalc-pill {
        padding: 6px 10px;
        font-size: 0.72rem;
        min-height: 34px;
    }
    #vlcalc .vlcalc-area-value { font-size: 1.3rem; }
    #vlcalc .vlcalc-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    #vlcalc .vlcalc-price { align-items: center; }
    #vlcalc .vlcalc-price-amount { font-size: 1.4rem; }
    #vlcalc button.vlcalc-order-btn {
        width: 100% !important;
        padding: 12px 16px !important;
        font-size: 0.9rem;
        border-radius: 10px !important;
    }
    #vlcalc .vlcalc-item {
        gap: 8px;
        padding: 8px 10px;
        font-size: 0.78rem;
    }
    #vlcalc .vlcalc-item-name { font-size: 0.75rem; }
    #vlcalc .vlcalc-item-price { font-size: 0.72rem; }
    #vlcalc button.vlcalc-item-btn {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
        font-size: 0.85rem;
    }
    .vlcalc-modal-card { padding: 20px 14px; margin: 8px; }
    .vlcalc-modal .vlcalc-modal-title { font-size: 1.05rem; }
}
