input[name="_hp_start_date"],
input[name="_hp_end_date"],
input[name="_hp_start_time"],
input[name="_hp_end_time"] {
    display: none !important;
}

.hp-field--start_date,
.hp-field--end_date,
.hp-field--start_time,
.hp-field--end_time {
    display: none !important;
}

.vrum-wrapper {
    margin-top: 12px;
}

.vrum-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.vrum-periods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.vrum-period-btn {
    padding: 12px 14px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: 0.2s ease;
}

.vrum-period-btn:hover:not(:disabled) {
    background: #ebebeb;
}

.vrum-period-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.vrum-period-btn--loading {
    opacity: 0.65;
}

.vrum-period-btn--available {
    background: #f5f5f5;
    color: #111;
    border-color: #ddd;
}

.vrum-period-btn--unavailable {
    background: #ececec;
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.8;
}

.vrum-period-message {
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

#vrum-start-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.vrum-slot {
    padding: 12px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.vrum-slot:hover {
    background: #eaeaea;
}

.vrum-slot.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.vrum-slot--unavailable {
    background: #ececec;
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.8;
}

.vrum-slot--loading {
    opacity: 0.6;
}

.vrum-summary {
    margin-top: 12px;
    padding: 10px;
    background: #f0f4ff;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .vrum-periods {
        grid-template-columns: 1fr;
    }

    #vrum-start-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}