.tp-rental-box {
    margin: 20px 0 18px;
    padding: 20px;
    border: 1px solid #e5e5e1;
    border-radius: 12px;
    background: #fff;
    color: #1d1d1b;
}
.tp-rental-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #76766f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.tp-rental-box h3 { margin: 0 0 15px; font-size: 22px; line-height: 1.2; }
.tp-rental-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    margin-bottom: 14px;
}
.tp-rental-type { position: relative; display: block; cursor: pointer; }
.tp-rental-type input { position: absolute; opacity: 0; pointer-events: none; }
.tp-rental-type > span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 70px;
    padding: 13px 14px;
    border: 1px solid #deded9;
    border-radius: 9px;
    background: #fff;
}
.tp-rental-type.is-selected > span {
    border-color: #f2a300;
    background: #fffaf0;
    box-shadow: 0 0 0 1px #f2a300;
}
.tp-rental-type strong { font-size: 14px; }
.tp-rental-type small { color: #676761; font-size: 13px; }
.tp-rental-date-row label > span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
}
.tp-rental-date-row input[type="date"] {
    width: 100%;
    min-height: 48px;
    padding: 9px 12px;
    border: 1px solid #dcdcd7;
    border-radius: 8px;
    background: #fff;
}
.tp-rental-period {
    margin: 9px 0 0;
    color: #6f6f69;
    font-size: 12px;
    line-height: 1.5;
}
.tp-rental-included {
    margin: 10px 0 0;
    padding: 9px 11px;
    border-radius: 7px;
    background: #f5f5f2;
    color: #53534e;
    font-size: 12px;
}
.tp-rental-availability {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
}
.tp-rental-availability.is-success { background: #edf8f0; color: #27653a; }
.tp-rental-availability.is-error { background: #fff0ef; color: #9d302a; }
.tp-rental-availability.is-loading { background: #f5f5f2; color: #64645f; }
@media (max-width: 560px) {
    .tp-rental-types { grid-template-columns: 1fr; }
}
