/* Simple header: blue bar, logo only, breadcrumb, Back to Hotels */
.simple-header {
  background: #2d84fe !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.simple-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.simple-header-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.simple-header-brand img {
  height: 55px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.simple-header-breadcrumb {
  display: none !important;
}

.simple-header-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.simple-header-breadcrumb a:hover {
  text-decoration: underline;
  opacity: 0.95;
}

.simple-header-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.8);
  user-select: none;
}

.simple-header-breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

.simple-header-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  flex-grow: 0;
  max-width: 180px;
  min-width: fit-content;
}

.simple-header-back:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.simple-header-back svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  flex-shrink: 0;
  flex-grow: 0;
}

@media (min-width: 641px) {
  .simple-header-breadcrumb {
    display: none;
  }
}

@media (max-width: 640px) {
  .simple-header-inner {
    padding: 10px 16px;
    min-height: 52px;
  }
  .simple-header-brand {
    font-size: 16px;
  }
  .simple-header-brand img {
    height: 47px;
  }
  .simple-header-breadcrumb {
    display: none;
  }
  .simple-header-back {
    font-size: 14px;
    padding: 6px 12px;
  }
}
