/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com/hello-elementor-child
 Description:  Child theme for Hello Elementor. Add your customizations here.
 Author:       Focus Hair Image
 Author URI:   https://example.com
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hello-elementor-child
*/

/* Add your custom styles below. The parent theme's styles are loaded automatically. */

/* ----- Staff selection (booking) ----- */
.fhi_staff_area--cards .fhi_staff_heading {
  margin-bottom: 0.75rem;
}

.fhi_staff_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.fhi_staff_card {
  display: block;
  cursor: pointer;
  margin: 0;
}

.fhi_staff_radio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fhi_staff_card_inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fhi_staff_card:hover .fhi_staff_card_inner {
  border-color: #999;
}

.fhi_staff_radio:focus + .fhi_staff_card_inner {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.fhi_staff_radio:checked + .fhi_staff_card_inner {
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
}

.fhi_staff_card_inner--flex {
  display: flex !important;
  align-items: center;
  flex-direction: row;
  gap: 5px !important;
}

.fhi_staff_thumb_wrap {
  display: block;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #eee;
  flex-shrink: 0;
}

.fhi_staff_thumb_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

/* Legacy background-image thumbs (if still used elsewhere) */
.fhi_staff_thumb {
  display: block;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #eee;
}

.fhi_staff_name {
  font-weight: 500;
  color: #1a1a1a;
}

.fhi_optional_heading {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Time slot busy state (staff booking) */
.mpwpb_time_btn.fhi-busy {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
}
@media (max-width: 600px) {
  .mpwpb-static-template .mpwpb_static_area #mpwpb_make_static_booking {
      display: block !important;
  }
}
@media (max-width: 600px) {
  .mpwpb-static-template .mpwpb_static_area #mpwpb_mobile_booking_mobile {
      display: none !important;
  }
}