.ps-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.ps-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.ps-col {
    flex: 1 0 0;
}

.ps-col-auto {
    flex: 0 0 auto;
    width: auto;
}

@media (max-width: 600px) {
    .ps-row {
        display: block;
    }
}

.ps-row label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #222;
    margin-bottom: 10px;
}

/* Поле даты */
input[name="booking-date"] {
    width: 180px;
    padding: 5px 12px;
    height: 40px;
    margin-top: 6px;
    font-size: 15px;
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    outline: none;
    transition: 0.25s border-color;
}

/* Поле времени (div.wpcf7 .form-style-3 select) */
div.wpcf7 .form-style-3 select[name="booking-time"] {
    width: 180px;
    padding: 5px 12px;
    height: 40px;
    margin-top: 6px;
    font-size: 15px;
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    outline: none;
    transition: 0.25s border-color;
}

/* Focus эффект */
input[name="booking-date"]:focus, div.wpcf7 .form-style-3 select[name="booking-time"]:focus {
    border-color: #0099cc;
    box-shadow: 0 0 0 2px rgba(0,153,204,0.15);
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    input[name="booking-date"], div.wpcf7 .form-style-3 select[name="booking-time"] {
        width: 100%;
    }
}

.ps-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.ps-qty p {
    display: block;
    margin: 0;
    padding: 0;
}

.ps-qty-btn {
    border: 1px solid #ccc;
    padding: 6px 12px;
    cursor: pointer;
    background: #f5f5f5;
    line-height: 1;
    user-select: none;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.wpcf7 .form-style-3 input[type="number"].ps-qty-input, .ps-qty-input {
    width: 40px;
    height: 38px;
    text-align: center;
    padding: 5px;
}

.ps-qty-fieldwrap {
    border: 1px solid #ccc;
}
