#vd-shower-builder {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.vd-builder-title {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.vd-section {
    margin-bottom: 18px;
}

.vd-section-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.vd-base-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vd-base-option {
    flex: 1;
    min-width: 120px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all .2s ease;
    background: #fafafa;
}

.vd-base-option input {
    display: none;
}

.vd-base-option.vd-active {
    border-color: #958e09;
    background: #E9E8E6;
    box-shadow: 0 0 0 1px #958e09;
}

.vd-base-label small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #777;
}

.vd-size-row input[type="number"] {
    width: 120px;
    margin-top: 4px;
    margin-inline-start: 8px;
}

.vd-size-row small {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}

.vd-extras-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vd-extra-option {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    flex: 1 1 45%;
    font-size: 14px;
    background: #fafafa;
}

.vd-extra-option input {
    margin-inline-end: 6px;
}

.vd-total {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.vd-total-price {
    font-size: 24px;
    font-weight: 700;
    color: #958e09;
    font-family: 'Assistant' !important;
    font-size: 1.45em important;
}

@media (max-width: 767px) {
    .vd-base-options,
    .vd-extras-grid {
        flex-direction: column;
    }
}
/* עטיפה של קלט מספרי עם כפתורי + / - */
#vd-shower-builder .vd-number-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    margin-bottom: 4px;
}

#vd-shower-builder .vd-number-wrapper input[type="number"] {
    max-width: 80px;
    text-align: center;
    -moz-appearance: textfield;
}

/* הסתרת חיצים פנימיים בדפדפנים שונים (נראה יותר נקי כשיש כפתורי + / - משלנו) */
#vd-shower-builder .vd-number-wrapper input[type="number"]::-webkit-outer-spin-button,
#vd-shower-builder .vd-number-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#vd-shower-builder .vd-step {
    border: 1px solid #ccc;
    background: #f7f7f7;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

#vd-shower-builder .vd-step:active {
    background: #e0e0e0;
}
