/* ==================================================
   TRAFFT FIX: FORCE HIDE DURATIONS
   ================================================== */

/* --- 1. HIDE SERVICE DURATION (Estimated Time) --- */
/* Hides the 'Duration' row (1st row) on the Main Service List */
/* AND the 'Selected Service' box on the Extras page */
.service-card-dc > div:first-child,
.service-card-dc .service-card-dc_item:first-child {
    display: none !important;
}

/* --- 2. HIDE THE DURATION ROW (1 ชม) IN SUMMARY --- */
/* Targets the container 'bs-service-card-dc' and hides the FIRST row inside it */
[class*="bs-service-card-dc"] > div:nth-of-type(1),
.bs-service-card-dc .bs-service-card-dc__item:first-child {
    display: none !important;
}

/* --- 3. HIDE THE (+5 นาที) IN EXTRAS --- */
/* Matches any element with "footer__left__duration" in its name */
[class*="footer__left__duration"],
span[class*="bs-extra__extras__item__footer__left__duration"] {
    display: none !important;
}

/* --- 4. HIDE END TIMES IN SCHEDULE --- */
/* Keeps "9:00" but hides "- 10:00" */
.bs-dt .booking-ts div:last-child, 
.bs-dt .booking-ts > span { 
    display: none !important;
}
