/* ============================================================
   StorageKeys — Furniture Storage (space estimator)
============================================================ */

#estimator .estimator {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 28px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

#estimator .cat-list {
    display: grid;
    gap: 12px;
}

#estimator .cat-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--sk-line);
    border-radius: 16px;
    padding: 16px 18px;
    transition: border-color .2s, box-shadow .2s;
}

#estimator .cat-row.has-items {
    border-color: rgba(255, 138, 30, .45);
    box-shadow: 0 8px 22px rgba(23, 42, 69, .06);
}

#estimator .cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sk-soft);
    color: var(--sk-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

#estimator .cat-icon svg {
    width: 24px;
    height: 24px;
}

#estimator .cat-info .h4 {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--sk-dark);
}

#estimator .cat-info p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--sk-muted);
}

#estimator .stepper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sk-soft);
    border-radius: 999px;
    padding: 4px;
}

#estimator .step-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--sk-dark);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(23, 42, 69, .08);
    transition: background .15s, color .15s, transform .15s;
    font-family: inherit;
}

#estimator .step-btn:hover {
    background: var(--sk-accent);
    color: #fff;
}

#estimator .step-btn:active {
    transform: scale(.94);
}

#estimator .step-count {
    min-width: 22px;
    text-align: center;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--sk-dark);
}

#estimator .estimate-panel {
    background: var(--sk-primary);
    color: #fff;
    border-radius: 22px;
    padding: 28px 26px;
    box-shadow: var(--sk-shadow);
    position: sticky;
    top: 96px;
}

#estimator .estimate-panel .sk-eyebrow {
    color: #ffcf9e;
    margin-bottom: 14px;
}

#estimator .unit-visual {
    position: relative;
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    overflow: hidden;
    margin-bottom: 10px;
}

#estimator .unit-fill {
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--sk-accent), #ffcf9e);
    transition: width .35s ease;
}

#estimator .unit-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 18px;
}

#estimator .rec-size {
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

#estimator .rec-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
    margin: 0 0 20px;
}

#estimator .estimate-panel .sk-btn {
    width: 100%;
    justify-content: center;
}

#estimator .item-total {
    margin: 14px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    text-align: center;
}

@media (max-width: 991px) {
    #estimator .estimator {
        grid-template-columns: 1fr;
    }

    #estimator .estimate-panel {
        position: static;
        order: -1;
    }
}

@media (max-width: 575px) {
    #estimator .cat-row {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }

    #estimator .stepper {
        grid-column: 1 / -1;
        justify-self: end;
    }

    #estimator .cat-icon {
        width: 40px;
        height: 40px;
    }

    #estimator .cat-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ---------- Moving & renovation split ---------- */
.fs-moving .ps-split {
    align-items: start;
}

.fs-moving .ps-media {
    min-height: 520px;
    position: sticky;
    top: 100px;
}

.fs-useful-label {
    margin: 8px 0 14px;
    font-size: 15px;
    color: var(--sk-dark);
}

.fs-use-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 22px;
}

.fs-use {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--sk-line);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--sk-dark);
    line-height: 1.4;
}

.fs-use i {
    color: var(--sk-muted);
    margin-top: 2px;
    flex: 0 0 auto;
    font-size: 12px;
}

.fs-facilities-note {
    max-width: 820px;
    margin: 28px auto 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: var(--sk-muted);
}

/* ---------- Plan your space (checklist split) ---------- */
.fs-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.fs-plan-copy h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    margin-bottom: 16px;
}

.fs-plan-copy p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--sk-body);
    margin: 0 0 14px;
}

.fs-plan-callout {
    margin-top: 22px !important;
    padding: 4px 0 4px 18px;
    border-left: 3px solid var(--sk-accent-2, #c45c26);
    color: var(--sk-muted) !important;
    font-size: 14.5px !important;
    line-height: 1.75 !important;
}

.fs-plan-check .ps-progress {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 18px;
}

.fs-plan-check .ps-progress .bar {
    flex: none;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, .08);
    border-radius: 0;
}

.fs-plan-check .ps-progress .bar i {
    background: var(--sk-accent-2, #c45c26);
    border-radius: 0;
}

.fs-plan-check .ps-progress .lbl {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--sk-accent-2, #c45c26);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.fs-plan-check .ps-check {
    gap: 10px;
}

.fs-plan-check .ps-check li {
    background: #fff;
    border: 1px solid var(--sk-line);
    border-radius: 10px;
    padding: 15px 16px;
    font-size: 14px;
    line-height: 1.45;
}

.fs-plan-check .ps-check li .box {
    border-radius: 6px;
    border-width: 1.5px;
    background: #fff;
    color: transparent;
}

.fs-plan-check .ps-check li.done {
    background: #fff;
    border-color: var(--sk-accent);
}

.fs-plan-check .ps-check li.done .box {
    background: var(--sk-accent);
    border-color: var(--sk-accent);
    color: #fff;
}

.fs-plan-check .ps-check li.done .t {
    text-decoration: none;
    color: var(--sk-dark);
}

.fs-plan-foot {
    margin: 18px 0 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--sk-muted);
}

/* Quote CTA contacts */
.ps-quote .contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ps-quote .contacts a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ps-quote .contacts a i {
    color: #fff;
    width: 20px;
    opacity: .95;
}

@media (max-width: 991px) {
    .fs-moving .ps-media {
        position: static;
        min-height: 280px;
        order: -1;
    }

    .fs-use-grid {
        grid-template-columns: 1fr;
    }

    .fs-plan-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
