:root {
  --cyan: #18F5FA;
  --alt: #009B8F;

  --black_aa: #101010;
  --black_alt: #1a1a1a;
  --black_text: #121212;

  --white: #ffffff;
  --grey_light: #e5e5e5;

  --vertical_rythm: 7px;
  --container: 1728px;
  --container_padding: 20px;

  --header_font: 'Aeonik', sans-serif;
  --body_font: 'TT Commons Pro', sans-serif;

  --h1_font_size: 35px;
  --h1_line_height: 42px;

  --h2_font_size: 42px;
  --h2_line_height: 49px;

  --h3_font_size: 24px;
  --h3_line_height: 28px;

  --h4_font_size: 20px;
  --h4_line_height: 28px;

  --h5_font_size: 18px;
  --h5_line_height: 21px;

  --h6_font_size: 16px;
  --h6_line_height: 21px;

  --p_font_size: 18px;
  --p_line_height: 28px;

  --button_font_size: 18px;
  --button_line_height: 18px;

  --button_sm_font_size: 12px;
  --button_sm_line_height: 22px;

  --psmall_font_size: 16px;
  --psmall_line_height: 21px;

  --ptiny_font_size: 14px;
  --ptiny_line_height: 21px;

  --border_color: #222222;
}

.otslr-booking-wrapper {
    padding-top: 42px;
    display: flex;
    gap: 70px;
    padding-bottom: 280px;
}

.otslr-booking-container {
    width: calc(90% - 65px);
    margin: auto;
}

.otsrl-booking-menu {
    background-color: var(--cyan);
    width: 61px;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
}

.otsrl-booking-menu__inner {
    display: flex;
    padding-top: 70px;
    flex-wrap: wrap;
}

.otslr-booking-menu__logo {
    margin-bottom: 28px;
}

.otslr-booking-menu__logo,
.otslr-booking-menu__hamburger {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.otslr-booking-menu__hamburger-inner {
   display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.5px;
}

.otslr-booking-menu__logo img {
    height: 49px;
    border-radius: 50%;
}

.otslr-booking-menu__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.5px;
  height: auto;
  cursor: pointer;
}

.otslr-booking-menu__hamburger span {
  display: block;
  width: 40px;
  height: 7px;
  background-color: #1A1A1A;
  border-radius: 7px;
}


.otslr-booking-search__common {
    display: flex;
    background: var(--white);
    width: 685px;
    height: 63px;
    font-size: 21px;
    line-height: 21px;
    align-items: center;
    padding-right: 10px;
}

.otslr-booking-search__common .otslr-button--search {
    background: transparent;
    border: none;
    outline: none;
}

.otslr-booking-search__common input,
.otslr-booking-search__common span {
    font-size: 21px;
    line-height: 21px;
    color: var(--black_text);
}

.otslr-booking-search__common input[type="search"] {
    height: 63px;
    border: none;
    outline: none;
    width: 75%;
    padding-right: 10px;
    padding-left: 10px;
}

.otslr-booking-search__common input[type="search"]:focus,
.otslr-booking-search__common input[type="search"]:active {
    height: 63px;
    border: none;
    outline: none;
}

.otslr-search-select {
    position: relative;
    display: flex;
    align-items: center;
    width: 25%;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    justify-content: center;
}

.otslr-search-select:before {
    position: absolute;
    width: 3px;
    background: var(--grey_light);
    height: 49px;
    left: 0;
    content: '';
    display: inline-block;
}

.otslr-search-select-options {
    display: none;
}


/** Location Nav */

h2#location-heading {
    font-size: 35px;
    line-height: 35px;
    font-family: var(--body_font);
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

h2#location-heading img {
    margin-left: 7px;
}

nav.otslr-location-nav a {
    font-size: 21px;
    line-height: 21px;
    color: var(--alt);
    text-decoration: none;
    font-family: var(--body_font);
    font-weight: bold;
    text-transform: lowercase;
}

.otslr-filters {
    max-width: 358px;
    padding-top: 42px;
}

.otslr-filters__clear-wrapper {
 margin-bottom: 35px;
}

.otslr-filters__clear  {
    margin-bottom: 14px;
}
.otslr-filters__clear a {
    font-size: 21px;
    line-height: 21px;
    color: var(--alt);
    text-decoration: none;
    font-family: var(--body_font);
    font-weight: bold;
    text-transform: capitalize;
}

.otslr-filters__current-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px; /* optional spacing between filters */
}

.otslr-filters__current-filters > div {
  display: inline-flex; /* key: inline-flex avoids full width */
  align-items: center;
  height: 42px;
  padding: 0 10px;
  background-color: rgba(26, 26, 26, 0.0667); /* var(--black_alt @ 6.67%) */
  border: 1px solid var(--grey_light); /* #e5e5e5 */
  border-radius: 7px;
  width: auto;
}

.otslr-filters__current-filters > div span {
  color: white;
  font-family: var(--body_font);
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
}

.otslr-close-filter {
  margin-left: 10px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--header_font);
  font-size: 35px;
  line-height: 35px;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
 
}

.otslr-filters__filter {
     margin-bottom: 35px;
}

.otslr-filters__option-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    align-items: center;
}

.otslr-filters__option-header h4 {
    font-size: 16px;
    line-height: 16px;
    color: var(--grey_light);
    font-family: var(--body_font);
}

.otslr-filters__dropdown-arrow {
    height: 7px;
    display: flex;
}

.otslr-filters__dropdown-arrow img {
    height: 7px;
     width: 21px;
}

.otslr-filters__pph-wrapper {
  display: flex;
  gap: 7px;
  justify-content: space-between;
}

.otslr-filters__pph-wrapper > div {
    display: flex;
    align-items: center;
    height: 49px;
    padding: 0 10px;
    background-color: rgba(229, 229, 229, 0.2); /* #E5E5E5 @ 20% */
    border: 0.7px solid rgba(229, 229, 229, 0.5); /* #E5E5E5 @ 50% */
    border-radius: 7px;
    flex: 1;  
    width: 167px;
}

.otslr-filters__pph-wrapper > div label {
    font-size: 16px;
    line-height: 16px;
    font-family: var(--body_font);
    color: white;
    margin-right: 7px;
    white-space: nowrap;
}

.otslr-filters__pph-wrapper > div input[type=number] {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 16px;
    line-height: 16px;
    font-family: var(--body_font);
    color: white;
    padding: 0;
    margin: 0;
    outline: none;

}

/* Hide number input steppers (Chrome, Safari, Edge) */
.otslr-filters__pph-wrapper input::-webkit-outer-spin-button,
.otslr-filters__pph-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide number input steppers (Firefox) */
.otslr-filters__pph-wrapper input[type=number] {
  -moz-appearance: textfield;
}

/* Placeholder color */
.otslr-filters__pph-wrapper input::placeholder {
  color: #e5e5e5;
  opacity: 1; /* override browser default */
}
.otslr-filters__eq-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.otslr-filters__eq-wrapper > div {
  display: flex;
  align-items: center;
  width: 100%;
}

/* Custom checkbox styles */
.otslr-filters__eq-wrapper input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  background-color: rgba(229, 229, 229, 0.2); /* #e5e5e5 @ 20% */
  border: 0.7px solid rgba(229, 229, 229, 0.5); /* #e5e5e5 @ 50% */
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
  padding: 0;
}

/* Checkbox label */
.otslr-filters__eq-wrapper label {
  font-size: 21px;
  line-height: 21px;
  font-family: var(--header_font);
  color: white;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Checked state */
.otslr-filters__eq-wrapper input[type="checkbox"]:checked {
  background-color: var(--alt);
  border-color: var(--alt);
}

/* Checkmark */
.otslr-filters__eq-wrapper input[type="checkbox"]:checked::after {
  content: '✔';
  color: #fff;
  font-size: 16px;
  font-family: Arial, sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.otslr-results-container {
  width: 100%;
  max-width: 3138px; /* 9 full-width cards including borders + gaps */
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 3138px) {
  .otslr-results-container { max-width: 3138px; }
}

@media (max-width: 2085px) {
  .otslr-results-container { max-width: 2085px; }
}

@media (max-width: 1032px) {
  .otslr-results-container { max-width: 1032px; }
}


.otslr-results {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}

.otslr-results-overview {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 21px;
  gap: 14px;
  font-family: var(--body_font);
  font-size: 21px;
  line-height: 28px;
  color: var(--grey_light);
}

.otslr-results-overview p, 
.otslr-results-overview span {
  font-family: var(--body_font);
  font-size: 21px;
  line-height: 28px;
  color: var(--grey_light);
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 0;
}

.otslr-results-overview__text {
  display: flex;
  align-items: center;
  gap: 7px;
}

.otslr-results-overview__text--saved {
    position: relative;
    padding-left: 14px;
    margin-left: 14px;
    align-items: center;
    display: flex;
}

.otslr-results-overview__text--saved:before {
    content: '';
    width: 2px;
    background-color: var(--grey_light);
    height: 21px;
    display: block;
    left: 11px;
    position: absolute;
    left: -7px;
    box-sizing: border-box;
    border-radius: 7;
    opacity: .2;
    }


.otslr-results-overview__arrow {
  width: 18px;
  height: 21px;
  vertical-align: middle;
}



.otslr-studio-card {
  width: 323px;
  border: 3.5px solid var(--cyan);
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);

}

.otslr-studio-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.otsrl-studio-card__image {
  height: 140px; /* closest multiple of 7 to 139 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.otslr-studio-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  background: var(--grey_light);
}

/* Studio name */
.otslr-studio-card__studio-name h3 {
  font-size: 21px;
  line-height: 28px;
  color: var(--black_text);
  text-transform: uppercase;
  font-family: var(--header_font);
  margin: 0;
  min-height: 63px; /* consistent height */
  font-weight: bold;
}

/* Locale */
.otslr-studio-card__locale {
  display: flex;
  align-items: center;
  gap: 14px;
    min-height: 42px;   
}
.otslr-studio-card__locale h5 {
    font-size: 18px;
  line-height: 35px;
  color: var(--black_text);
  font-family: var(--header_font);
  
  font-weight: 100;

}

.otslr-studio-card__marker-icon img {
  height: 42px;
}

/* PPH */
.otslr-studio-card__pph {
    border-top: 3.5px solid var(--alt);
    padding-top: 14px;
    margin-top: 14px;
}
.otslr-studio-card__pph span {
  font-size: 28px;
  line-height: 28px;
  color: var(--alt);
  font-family: var(--header_font);
  margin-top: 10px;
  font-weight: bold;
  
}






