/* Скрытие нижней части страницы на этапах бронирования */
.booking-mode .info__list,
.booking-mode footer {
   display: none !important;
}

/* Дополнительная защита - скрываем footer если видны элементы бронирования */
body:has(.cars_list:not([style*="display: none"])) footer,
body:has(.insurance:not([style*="display: none"])) footer,
body:has(.personalInfo:not([style*="display: none"])) footer,
body:has(.cars_list:not([style*="display: none"])) .info__list,
body:has(.insurance:not([style*="display: none"])) .info__list,
body:has(.personalInfo:not([style*="display: none"])) .info__list {
   display: none !important;
}