/* PG / Hotel business switcher — shared across both sites */

.business-toggle {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.business-toggle__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #64748b;
  line-height: 1;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.business-toggle__option:hover,
.business-toggle__option:focus-visible {
  color: #312e81;
  background: rgba(124, 58, 237, 0.08);
  outline: none;
}

.business-toggle__option.is-active {
  color: #fff;
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
  box-shadow: 0 4px 14px rgba(67, 56, 202, 0.28);
  cursor: default;
}

.site-header--hotel .business-toggle__option.is-active {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.28);
}

.site-header--hotel .business-toggle__option:hover,
.site-header--hotel .business-toggle__option:focus-visible {
  color: #92400e;
  background: rgba(217, 119, 6, 0.1);
}

.header-start {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 14px);
  flex-shrink: 0;
  min-width: 0;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 979px) {
  .header-start {
    flex: 1;
    min-width: 0;
  }

  .header-end {
    margin-left: auto;
  }
}

@media (min-width: 980px) {
  .site-header .nav-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: clamp(10px, 1.2vw, 18px);
    min-height: 72px;
    height: auto !important;
    padding-block: 8px;
  }

  .header-start {
    flex: 0 0 auto;
    max-width: none;
    align-self: center;
  }

  .site-header .nav {
    flex: 0 1 auto;
    margin-left: auto;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center !important;
    align-content: center;
    align-self: center !important;
    justify-content: flex-end;
    gap: 2px 4px;
    row-gap: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-header .nav a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 10px !important;
    line-height: 1 !important;
    margin: 0 !important;
    border-radius: 6px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-header .nav a.nav-cta {
    margin-left: 4px !important;
    height: 40px !important;
    min-height: 40px !important;
  }

  .header-end {
    flex: 0 0 auto;
    margin-left: 0 !important;
    align-self: center !important;
  }

  .site-header .nav-close {
    display: none !important;
  }

  .header-login-btn {
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding-block: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.business-toggle__option.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  color: #94a3b8;
}
