/* Site header + offcanvas only for booking.html — does not restyle booking UI */

body.booking-with-site-header {
  padding-top: 0;
}

body.booking-with-site-header .booking-page-content {
  padding-top: 88px;
}

body.booking-with-site-header #back-btn {
  top: 6.5rem !important;
}

/* Fixed light header */
body.booking-with-site-header #header-sticky.header-1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.15) 0 4px 16px;
}

body.booking-with-site-header #header-sticky .container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 16px;
}

body.booking-with-site-header #header-sticky .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}

body.booking-with-site-header #header-sticky .logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

body.booking-with-site-header #header-sticky .logo img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

body.booking-with-site-header #header-sticky .logo .rr-logo--dark {
  display: block !important;
}

body.booking-with-site-header #header-sticky .logo .rr-logo--light {
  display: none !important;
}

body.booking-with-site-header #header-sticky .header-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

body.booking-with-site-header #header-sticky .main-menu ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.booking-with-site-header #header-sticky .main-menu ul li {
  position: relative;
  list-style: none;
}

body.booking-with-site-header #header-sticky .main-menu ul li a {
  display: inline-block;
  padding: 10px 14px;
  color: #030523 !important;
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
}

body.booking-with-site-header #header-sticky .main-menu ul li a:hover,
body.booking-with-site-header #header-sticky .main-menu ul li.active > a {
  color: #fe5900 !important;
}

body.booking-with-site-header #header-sticky .main-menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  z-index: 20;
  flex-direction: column;
}

body.booking-with-site-header #header-sticky .main-menu li.has-dropdown:hover > .submenu {
  display: flex;
}

body.booking-with-site-header #header-sticky .main-menu .submenu li a {
  display: block;
  width: 100%;
  text-transform: none;
}

body.booking-with-site-header #header-sticky .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

body.booking-with-site-header #header-sticky .theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fe5900 !important;
  color: #fff !important;
  font-family: "Chakra Petch", "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  line-height: 1;
}

body.booking-with-site-header #header-sticky .theme-btn:hover {
  background: #e04f00 !important;
}

body.booking-with-site-header #header-sticky .sidebar__toggle {
  cursor: pointer;
  padding: 8px;
}

body.booking-with-site-header #header-sticky .header-bar {
  position: relative;
  width: 28px;
  height: 14px;
}

body.booking-with-site-header #header-sticky .header-bar span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #030523 !important;
}

body.booking-with-site-header #header-sticky .header-bar span:first-child { top: 0; }
body.booking-with-site-header #header-sticky .header-bar span:last-child { bottom: 0; }

@media (max-width: 1199px) {
  body.booking-with-site-header #header-sticky .header-left {
    display: none;
  }
  body.booking-with-site-header #header-sticky .theme-btn#startMatchBtn {
    display: none !important;
  }
}

/* Offcanvas */
body.booking-with-site-header .fix-area {
  position: relative;
  z-index: 100000;
}

body.booking-with-site-header .offcanvas__info {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 92vw);
  height: 100%;
  background: #fff;
  z-index: 100001;
  transform: translateX(110%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  border-left: 2px solid #fe5900;
}

body.booking-with-site-header .offcanvas__info.info-open {
  transform: translateX(0);
}

body.booking-with-site-header .offcanvas__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.booking-with-site-header .offcanvas__overlay.overlay-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.booking-with-site-header .offcanvas__wrapper {
  padding: 24px;
}

body.booking-with-site-header .offcanvas__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

body.booking-with-site-header .offcanvas__logo img {
  max-height: 40px;
  width: auto;
}

body.booking-with-site-header .offcanvas__close button {
  font-size: 22px;
  color: #030523;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

body.booking-with-site-header .mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.booking-with-site-header .mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #030523 !important;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

body.booking-with-site-header .mobile-menu ul li a:hover {
  color: #fe5900 !important;
}

body.booking-with-site-header .d-none { display: none !important; }
@media (min-width: 1200px) {
  body.booking-with-site-header .d-xl-inline-flex { display: inline-flex !important; }
  body.booking-with-site-header .d-xl-block { display: block !important; }
}
body.booking-with-site-header .align-items-center { align-items: center !important; }
body.booking-with-site-header .justify-content-end { justify-content: flex-end !important; }
body.booking-with-site-header .me-2 { margin-right: 0.5rem !important; }
body.booking-with-site-header .my-auto { margin-top: auto !important; margin-bottom: auto !important; }
