/* ============================================================
   Valens Clinic — Header v2
   Upload to: themes/valensclinic/assets/css/valens-header-v2.css
   ============================================================ */

:root {
  --v2-navy: hsl(218, 70%, 16%);
  --v2-navy-deep: hsl(218, 55%, 9%);
  --v2-navy-panel: hsl(218, 50%, 12%);
  --v2-cyan: hsl(196, 90%, 55%);
  --v2-cyan-hover: hsl(196, 90%, 65%);
  --v2-cyan-rgb: 36, 188, 244;
  --v2-text: #ffffff;
  --v2-text-muted: rgba(255, 255, 255, 0.72);
  --v2-bar-h: 72px;
  --v2-logo-h: 96px;
  --v2-logo-h-compact: 56px;
  --v2-radius: 14px;
  --v2-radius-mega: 20px;
  --v2-mega-hover: rgba(var(--v2-cyan-rgb), 0.12);
  --v2-font: inherit;
}

/* Hide legacy hamburger header */
.header:not(.header-v2),
.nav-button,
.navigation {
  display: none !important;
}

/* ---- Shell ---- */
.header-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-family: var(--v2-font);
}

.header-v2__bar {
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: visible;
}

.header-v2__bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.header-v2.is-scrolled .header-v2__bar::before,
body:not(.home) .header-v2__bar::before,
.header-v2.is-mobile-open .header-v2__bar::before {
  background: var(--v2-navy);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-v2.is-scrolled .header-v2__bar,
body:not(.home) .header-v2__bar,
.header-v2.is-mobile-open .header-v2__bar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.header-v2__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--v2-bar-h);
  position: relative;
  z-index: 1;
}

/* ---- Logo ---- */
.header-v2__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: auto;
}

.header-v2__logo-img,
.header-v2__logo img {
  width: auto;
  height: var(--v2-logo-h);
  max-height: none;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease;
}

.header-v2.is-scrolled .header-v2__logo-img,
.header-v2.is-scrolled .header-v2__logo img,
.header-v2.is-mobile-open .header-v2__logo-img,
.header-v2.is-mobile-open .header-v2__logo img,
body:not(.home) .header-v2__logo-img,
body:not(.home) .header-v2__logo img {
  height: var(--v2-logo-h-compact);
  max-height: calc(var(--v2-bar-h) - 12px);
}

/* ---- Nav ---- */
.header-v2__nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--v2-bar-h);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 992px) {
  .header-v2__nav {
    position: static;
    flex: 1 1 auto;
    min-width: 0;
    height: auto;
    pointer-events: auto;
  }

  .header-v2__nav-inner {
    justify-content: flex-end;
    pointer-events: auto;
  }

  .header-v2__menu {
    pointer-events: auto;
    gap: 0;
  }
}

.header-v2__nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.header-v2__menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: auto;
}

.header-v2__item {
  position: static;
  margin: 0;
  pointer-events: auto;
}

.header-v2__item--has-mega {
  position: relative;
}

.header-v2__logo,
.header-v2__actions,
.header-v2__toggle {
  position: relative;
  z-index: 2;
}

.header-v2__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.header-v2__link:hover,
.header-v2__item.is-open > .header-v2__link,
.header-v2__item:hover > .header-v2__link {
  color: var(--v2-cyan);
}

.header-v2__chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  opacity: 0.85;
  flex-shrink: 0;
}

.header-v2__item.is-open > .header-v2__link .header-v2__chevron {
  transform: rotate(180deg);
}

@media (min-width: 992px) and (hover: hover) {
  .header-v2__item--has-mega:hover > .header-v2__link .header-v2__chevron {
    transform: rotate(180deg);
  }
}

/* ---- Actions ---- */
.header-v2__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-v2__call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--v2-text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.header-v2__call:hover {
  border-color: var(--v2-cyan);
  color: var(--v2-cyan);
}

.header-v2__book-btn,
.header-v2__book .round-anchor,
.header-v2__book a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 16px !important;
  background: linear-gradient(135deg, #25bcf4 0%, #6adefb 100%) !important;
  color: hsl(218, 55%, 9%) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  border: none !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s !important;
  margin: 0 !important;
}

.header-v2__book-btn:hover,
.header-v2__book a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(var(--v2-cyan-rgb), 0.35);
}

.header-v2__book-btn .arrow-wrapper,
.header-v2__book a .arrow-wrapper,
.header-v2__actions .header-v2__book .arrow-wrapper,
.header-v2__mobile-actions .header-v2__book .arrow-wrapper {
  position: static !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  min-height: 8px !important;
  margin: 0 0 0 5px !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
  flex-shrink: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.header-v2__book-btn .arrow-wrapper img,
.header-v2__book-btn .arrow-wrapper svg,
.header-v2__book a .arrow-wrapper img,
.header-v2__book a .arrow-wrapper svg,
.header-v2__book-btn .svg-convert,
.header-v2__book a .svg-convert,
.header-v2__actions .header-v2__book .arrow-wrapper img,
.header-v2__actions .header-v2__book .arrow-wrapper svg,
.header-v2__mobile-actions .header-v2__book .arrow-wrapper img,
.header-v2__mobile-actions .header-v2__book .arrow-wrapper svg {
  width: 8px !important;
  height: 8px !important;
  max-width: 8px !important;
  max-height: 8px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  display: block !important;
}

.header-v2__book-btn:hover .arrow-wrapper,
.header-v2__book a:hover .arrow-wrapper {
  transform: none !important;
}

.header-v2__book-btn:hover .arrow-wrapper svg,
.header-v2__book a:hover .arrow-wrapper svg {
  opacity: 1 !important;
}

/* ---- Mobile toggle ---- */
.header-v2__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
  margin-left: auto;
}

.header-v2__toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header-v2.is-mobile-open .header-v2__toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header-v2.is-mobile-open .header-v2__toggle span:nth-child(2) {
  opacity: 0;
}
.header-v2.is-mobile-open .header-v2__toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---- Mega menu shared ---- */
.header-v2__mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100vw - 48px));
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 1001;
}

@media (min-width: 992px) {
  .header-v2__mega {
    position: fixed;
    top: var(--v2-bar-h);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

.header-v2__item--has-mega.is-open > .header-v2__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 992px) and (hover: hover) {
  .header-v2__item--has-mega:hover > .header-v2__mega,
  .header-v2__item--has-mega.is-open > .header-v2__mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.header-v2__mega-inner {
  background: rgba(10, 18, 30, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--v2-radius-mega);
  padding: 28px 36px 32px;
  box-shadow:
    0 0 0 1px rgba(var(--v2-cyan-rgb), 0.05),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(var(--v2-cyan-rgb), 0.06);
  backdrop-filter: blur(20px);
}

.header-v2__mega-label {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-cyan);
}

/* ---- List mega (Services / Specialties) ---- */
.header-v2__mega--list {
  width: min(920px, calc(100vw - 48px));
}

.header-v2__mega-grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 64px;
}

.header-v2__mega-col {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-v2__mega-row {
  margin: 0;
}

.header-v2__mega--list .header-v2__mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--v2-cyan);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-v2__mega--list .header-v2__mega-link:hover,
.header-v2__mega--list .header-v2__mega-link:focus-visible {
  background: var(--v2-mega-hover);
  color: var(--v2-cyan-hover);
}

.header-v2__mega--list .header-v2__mega-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: transparent;
  color: var(--v2-cyan);
  flex-shrink: 0;
}

.header-v2__mega--list .header-v2__mega-icon svg {
  width: 18px;
  height: 18px;
}

/* ---- Card mega (Academic / About Us) ---- */
.header-v2__mega-grid--cards {
  display: grid;
  gap: 16px;
}

.header-v2__mega--cards-3 .header-v2__mega-grid--cards {
  grid-template-columns: repeat(3, 1fr);
}

.header-v2__mega--cards-4 .header-v2__mega-grid--cards {
  grid-template-columns: repeat(4, 1fr);
}

.header-v2__card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.header-v2__card:hover {
  border-color: rgba(var(--v2-cyan-rgb), 0.35);
  transform: translateY(-2px);
}

.header-v2__card:hover .header-v2__card-arrow {
  opacity: 1;
  color: var(--v2-cyan);
  transform: translate(0, 0);
}

.header-v2__card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.header-v2__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-v2__card-body {
  padding: 14px 14px 16px;
}

.header-v2__card-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.header-v2__card-icon {
  display: flex;
  color: var(--v2-cyan);
  flex-shrink: 0;
}

.header-v2__card-title {
  flex: 1;
  color: var(--v2-text);
  font-size: 14px;
  font-weight: 600;
}

.header-v2__card-arrow {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.header-v2__card-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--v2-text-muted);
}

/* ---- Simple dropdown fallback ---- */
.header-v2__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: var(--v2-navy-panel);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.header-v2__item:hover > .header-v2__dropdown {
  opacity: 1;
  visibility: visible;
}

.header-v2__dropdown a {
  display: block;
  padding: 10px 14px;
  color: var(--v2-text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
}

.header-v2__dropdown a:hover {
  background: rgba(var(--v2-cyan-rgb), 0.1);
  color: var(--v2-cyan);
}

/* ---- Overlay (mobile) ---- */
.header-v2__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.header-v2.is-mobile-open .header-v2__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-v2__mobile-actions {
  display: none;
}

.header-v2__mobile-call {
  display: none;
}

/* ---- Body offset ---- */
body {
  padding-top: var(--v2-bar-h);
}

body.home {
  padding-top: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1280px) {
  .header-v2__link {
    padding: 6px 7px;
    font-size: 12px;
  }
  .header-v2__call span {
    display: none;
  }
  .header-v2__call {
    padding: 7px 10px;
  }
  .header-v2__book-btn,
  .header-v2__book a {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 1100px) {
  .header-v2__mega-grid--cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 991px) {
  .header-v2__toggle {
    display: flex;
  }

  :root {
    --v2-bar-h: 72px;
    --v2-logo-h: 5.2rem;
    --v2-logo-h-compact: 52px;
    --v2-mobile-gutter: 20px;
  }

  .header-v2 .container-s.header-v2__inner {
    padding-left: var(--v2-mobile-gutter);
    padding-right: var(--v2-mobile-gutter);
  }

  /* Fixed bar when drawer open: logo left, close right (matches Lovable) */
  .header-v2.is-mobile-open .header-v2__bar {
    z-index: 1004;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-v2.is-mobile-open .header-v2__bar::before {
    background: var(--v2-navy);
  }

  .header-v2__overlay {
    top: var(--v2-bar-h);
    inset: auto 0 0 0;
    height: calc(100vh - var(--v2-bar-h));
    height: calc(100dvh - var(--v2-bar-h));
  }

  /* Right-side drawer below the bar */
  .header-v2__nav {
    position: fixed;
    top: var(--v2-bar-h);
    right: 0;
    bottom: 0;
    left: auto;
    width: 85%;
    max-width: 24rem;
    height: auto;
    flex: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    background: var(--v2-navy);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    visibility: hidden;
    pointer-events: none;
    z-index: 1001;
  }

  .header-v2__nav-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 24px 20px 32px;
    pointer-events: auto;
  }

  .header-v2.is-mobile-open .header-v2__nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .header-v2__menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    flex: 0 0 auto;
    pointer-events: auto;
    list-style: none;
    padding-left: 0;
  }

  .header-v2__menu > li {
    list-style: none;
  }

  .header-v2__menu > li::marker {
    content: none;
  }

  .header-v2__mega-col,
  .header-v2__mega-row {
    list-style: none;
    padding-left: 0;
  }

  .header-v2__item {
    width: 100%;
  }

  .header-v2__item--has-mega {
    overflow: visible;
  }

  .header-v2__link {
    padding: 12px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    width: 100%;
    justify-content: space-between;
    transition: color 0.2s ease;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .header-v2__item--has-mega.is-open > .header-v2__link {
    color: var(--v2-cyan);
    border-bottom-color: transparent;
  }

  .header-v2__link--has-chevron .header-v2__chevron {
    opacity: 1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  }

  .header-v2__item--has-mega.is-open > .header-v2__link .header-v2__chevron {
    transform: rotate(180deg);
    color: var(--v2-cyan);
  }

  /* Accordion: expand downward in place (Radix-style grid) */
  .header-v2__mega {
    position: static;
    transform: none !important;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-v2__item.is-open > .header-v2__mega {
    pointer-events: auto;
    grid-template-rows: 1fr;
  }

  .header-v2__mega > .header-v2__mega-inner {
    min-height: 0;
    overflow: hidden;
  }

  /* Prevent collapsed accordion content from peeking through (cyan icon dot) */
  .header-v2__item:not(.is-open) > .header-v2__mega {
    margin: 0;
    padding: 0;
    border: 0;
    clip-path: inset(0 0 100% 0);
  }

  .header-v2__item:not(.is-open) > .header-v2__mega > .header-v2__mega-inner {
    visibility: hidden;
  }

  .header-v2__item.is-open > .header-v2__mega {
    clip-path: none;
  }

  .header-v2__item.is-open > .header-v2__mega > .header-v2__mega-inner {
    visibility: visible;
  }

  .header-v2__mega-inner {
    padding: 0 0 12px 12px;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .header-v2__mega-label {
    display: none;
  }

  .header-v2__mega-grid--2,
  .header-v2__mega-grid--cards {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  /* Card megas: list-style on mobile (no large image blocks) */
  .header-v2__card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    padding: 10px 12px;
    margin: 0;
  }

  .header-v2__card:hover {
    background: rgba(var(--v2-cyan-rgb), 0.1);
  }

  .header-v2__card-img {
    display: none;
  }

  .header-v2__card-body {
    padding: 0;
  }

  .header-v2__card-title-row {
    margin-bottom: 0;
  }

  .header-v2__card-desc {
    display: none;
  }

  .header-v2__card-arrow {
    display: none;
  }

  .header-v2__mega--list .header-v2__mega-link {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: none;
    border-radius: 8px;
    gap: 12px;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .header-v2__mega--list .header-v2__mega-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(var(--v2-cyan-rgb), 0.1);
    color: var(--v2-cyan);
  }

  .header-v2__mega--list .header-v2__mega-icon svg {
    width: 16px;
    height: 16px;
  }

  .header-v2__mega--list .header-v2__mega-link:hover {
    background: rgba(var(--v2-cyan-rgb), 0.1);
    color: var(--v2-cyan);
  }

  .header-v2__mega-grid--2 {
    gap: 4px;
  }

  .header-v2__actions .header-v2__call,
  .header-v2__actions .header-v2__book {
    display: none;
  }

  .header-v2__mobile-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
  }

  .header-v2__mobile-call:hover {
    color: var(--v2-cyan);
  }

  .header-v2__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 0;
    flex-shrink: 0;
    font-size: 0;
  }

  .header-v2__mobile-actions .header-v2__book {
    margin: 0;
    padding: 0;
    font-size: 13px;
  }

  .header-v2__mobile-actions .header-v2__book-btn,
  .header-v2__mobile-actions .header-v2__book a {
    display: inline-flex !important;
    justify-content: center;
    width: 100%;
    padding: 12px 18px !important;
    font-size: 13px !important;
  }

  .header-v2__inner {
    gap: 8px;
  }

  .header-v2__bar {
    z-index: 1002;
  }
}

@media (max-width: 767px) {
  :root {
    --v2-bar-h: 68px;
    --v2-logo-h: 4.75rem;
    --v2-logo-h-compact: 48px;
  }
}

@media (max-width: 991px) and (prefers-reduced-motion: reduce) {
  .header-v2__mega,
  .header-v2__chevron,
  .header-v2__nav,
  .header-v2__overlay {
    transition: none !important;
  }
}
