/* Runtime-only behavior helpers for homepage mirror without plugin runtime JS. */
html,
body {
  margin: 0;
  padding: 0;
}

body > .ph-homepage-mirror {
  margin-top: 0 !important;
  padding-top: 0 !important;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body > .ph-homepage-mirror {
    overflow-x: hidden;
  }
}

/* Prevent the leading skip-link anchor from reserving space above header. */
body > .ph-homepage-mirror > a.skip-link.screen-reader-text,
body > .ph-homepage-mirror > a[href="#content"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
}

.ph-site-header,
.ph-location-header {
  margin-top: 0 !important;
  top: 0;
}

:is(.ph-site-header, .ph-location-header) .ph-element.ph-element-bb8108d {
  flex: 0 0 auto;
  width: clamp(148px, 13vw, 178px);
  min-width: clamp(148px, 13vw, 178px);
}

:is(.ph-site-header, .ph-location-header) .ph-element.ph-element-bb8108d > a {
  display: block;
  width: 100%;
  max-width: 178px;
  aspect-ratio: 178 / 54;
}

:is(.ph-site-header, .ph-location-header) .ph-element.ph-element-bb8108d > a > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 178 / 54;
}

.ph-homepage-mirror img[alt="Rating"] {
  display: block;
  width: 130px;
  max-width: 130px;
  height: 20px;
}

:is(.ph-site-header, .ph-location-header) .marquee .item {
  min-height: 21px;
}

.ph-nav-wrapper.is-open {
  display: flex;
  flex-direction: column;
}

.ph-invisible {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.ph-nav-item .ph-nav-content {
  display: none;
}

.ph-nav-item:hover > .ph-nav-content,
.ph-nav-item:focus-within > .ph-nav-content,
.ph-nav-item.is-open > .ph-nav-content,
.ph-nav-content.is-open {
  display: flex;
  flex-direction: column;
}

[id^="ph-nav-content-"].is-open,
[id^="ph-nav-content-"].is-active {
  display: flex;
}

/* Ensure desktop hover works instantly even before JS class toggles run. */
.ph-nav-item:hover > .ph-nav-content > [id^="ph-nav-content-"],
.ph-nav-item:focus-within > .ph-nav-content > [id^="ph-nav-content-"],
.ph-nav-item.is-open > .ph-nav-content > [id^="ph-nav-content-"] {
  display: flex;
}

/* Reduce perceived mega-menu delay on open. */
.header-menu {
  --n-menu-open-animation-duration: 0ms;
}

@media (min-width: 1025px) {
  .header-menu,
  .header-menu .ph-nav-menu,
  .header-menu .e-n-menu {
    --ph-mega-menu-panel-offset: 14px;
    --stretch-left: calc(50% - 50vw);
    --stretch-right: auto;
    --stretch-width: 100vw;
  }

  .header-menu .ph-nav-menu {
    position: relative;
  }

  .header-menu .ph-nav-item,
  .header-menu .e-n-menu-item {
    position: static;
  }

  .header-menu .ph-nav-item > .ph-nav-content,
  .header-menu .e-n-menu-item > .e-n-menu-content {
    position: absolute;
    top: 100%;
    left: var(--stretch-left, 0);
    right: auto;
    width: var(--stretch-width, 100vw);
    max-width: var(--stretch-width, 100vw);
    box-sizing: border-box;
    padding-top: var(--ph-mega-menu-panel-offset, 14px);
    overflow: visible;
    background: transparent;
    z-index: 2147483620;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -6px, 0);
    transform-origin: top center;
    transition:
      opacity 220ms ease,
      transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 220ms;
    will-change: opacity, transform;
  }

  .header-menu .ph-nav-item > .ph-nav-content::before,
  .header-menu .e-n-menu-item > .e-n-menu-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--ph-mega-menu-panel-offset, 14px) + 12px);
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(180deg, rgba(24, 29, 35, 0.28) 0%, rgba(24, 29, 35, 0.12) 56%, rgba(24, 29, 35, 0) 100%);
    transition: opacity 220ms ease;
  }

  .header-menu .ph-nav-item:hover > .ph-nav-content,
  .header-menu .ph-nav-item:focus-within > .ph-nav-content,
  .header-menu .ph-nav-item.is-open > .ph-nav-content,
  .header-menu .ph-nav-content.is-open,
  .header-menu .e-n-menu-item:hover > .e-n-menu-content,
  .header-menu .e-n-menu-item:focus-within > .e-n-menu-content,
  .header-menu .e-n-menu-item.is-open > .e-n-menu-content,
  .header-menu .e-n-menu-content.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .header-menu .ph-nav-item:hover > .ph-nav-content::before,
  .header-menu .ph-nav-item:focus-within > .ph-nav-content::before,
  .header-menu .ph-nav-item.is-open > .ph-nav-content::before,
  .header-menu .ph-nav-content.is-open::before,
  .header-menu .e-n-menu-item:hover > .e-n-menu-content::before,
  .header-menu .e-n-menu-item:focus-within > .e-n-menu-content::before,
  .header-menu .e-n-menu-item.is-open > .e-n-menu-content::before,
  .header-menu .e-n-menu-content.is-open::before {
    opacity: 1;
  }

  .header-menu .ph-nav-item > .ph-nav-content::before,
  .header-menu .e-n-menu-item > .e-n-menu-content::before {
    content: none !important;
    display: none !important;
  }

  .header-menu .ph-nav-item > .ph-nav-content > [id^="ph-nav-content-"],
  .header-menu .e-n-menu-item > .e-n-menu-content > [id^="e-n-menu-content-"] {
    width: 100%;
    max-width: none;
    margin-top: 0;
    position: relative;
    z-index: 1;
    animation: none !important;
    border-top: 0;
    opacity: 0;
    transform: translate3d(0, -8px, 0) scale(0.988);
    transform-origin: top center;
    transition:
      opacity 240ms ease,
      transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 320ms ease,
      border-color 320ms ease;
    will-change: opacity, transform;
  }

  body.ph-transparent-sticky-page .ph-site-header .header-menu .ph-nav-content > .ph-layout-container::before,
  body.ph-transparent-sticky-page .ph-site-header .header-menu .ph-nav-content > [id^="ph-nav-content-"]::before,
  body.ph-transparent-sticky-page .ph-site-header .header-menu .e-n-menu-content > [id^="e-n-menu-content-"]::before {
    content: none !important;
    display: none !important;
  }

  .header-menu .ph-nav-item:hover > .ph-nav-content > [id^="ph-nav-content-"],
  .header-menu .ph-nav-item:focus-within > .ph-nav-content > [id^="ph-nav-content-"],
  .header-menu .ph-nav-item.is-open > .ph-nav-content > [id^="ph-nav-content-"],
  .header-menu .ph-nav-content.is-open > [id^="ph-nav-content-"],
  .header-menu .e-n-menu-item:hover > .e-n-menu-content > [id^="e-n-menu-content-"],
  .header-menu .e-n-menu-item:focus-within > .e-n-menu-content > [id^="e-n-menu-content-"],
  .header-menu .e-n-menu-item.is-open > .e-n-menu-content > [id^="e-n-menu-content-"],
  .header-menu .e-n-menu-content.is-open > [id^="e-n-menu-content-"] {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .header-menu .ph-element.ph-element-74647c9 {
    --ph-mega-card-image-height: 96px;
  }

  .header-menu .ph-element.ph-element-74647c9 .ph-widget-image-box .ph-image-box-wrapper .ph-image-box-img {
    width: 25%;
    flex: 0 0 25%;
  }

  .header-menu .ph-element.ph-element-74647c9 .ph-widget-image-box .ph-image-box-wrapper .ph-image-box-img img {
    display: block;
    width: 100%;
    height: var(--ph-mega-card-image-height) !important;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 1024px) {
  .header-menu .ph-element.ph-element-74647c9 {
    --ph-mega-card-image-height: 88px;
  }
}

@media (max-width: 576px) {
  .header-menu .ph-element.ph-element-74647c9 {
    --ph-mega-card-image-height: 70px;
  }
}

.header-menu .ph-element.ph-element-fa820bd {
  --container-widget-height: initial;
  --container-widget-align-self: flex-start;
  --gap: 10px 10px;
  align-self: flex-start !important;
  height: auto !important;
  min-height: 0 !important;
  gap: 10px !important;
}

.header-menu .ph-element.ph-element-fa820bd .ph-element-785290a .ph-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-menu .ph-element.ph-element-fa820bd .ph-element-785290a .ph-heading-title::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ph-gold-button-start, #efb33e);
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-list {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px !important;
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item {
  padding: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.035) 100%) !important;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item:hover,
.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item:focus-within {
  transform: translateY(-1px);
  border-color: rgba(255, 197, 58, 0.38);
  background: linear-gradient(135deg, rgba(255, 197, 58, 0.11) 0%, rgba(255, 255, 255, 0.045) 100%) !important;
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item .product-content-menu-arrow {
  align-items: center;
  gap: 10px;
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item .product-content-menu-arrow > div:first-child {
  min-width: 0;
  flex: 1 1 auto;
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-title {
  margin: 0 0 3px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-desc {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  -webkit-line-clamp: 1;
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item .product-view-more {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  margin-top: 0 !important;
  padding: 0;
  border: 1px solid rgba(255, 197, 58, 0.28);
  border-radius: 9px;
  background: rgba(255, 197, 58, 0.13);
  opacity: 1;
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item .product-view-more svg {
  width: 15px;
  height: 15px;
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item .product-view-more svg,
.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item .product-view-more path {
  fill: var(--ph-gold-button-start, #efb33e) !important;
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item:hover .product-view-more,
.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item:focus-within .product-view-more {
  border-color: transparent;
  background: var(--ph-gold-button-start, #efb33e);
}

.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item:hover .product-view-more svg,
.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item:hover .product-view-more path,
.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item:focus-within .product-view-more svg,
.header-menu .ph-element.ph-element-fa820bd .resources-menu-section-item:focus-within .product-view-more path {
  fill: var(--ph-gold-button-text, #1b2b3c) !important;
}

.header-menu .ph-element.ph-element-fa820bd .ph-element-c3214f4 .ph-button.ph-button-link.ph-size-sm {
  min-height: 42px !important;
  padding: 12px 18px !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1 !important;
  text-shadow: none !important;
}

.header-menu .ph-element.ph-element-fa820bd .ph-element-c3214f4 .ph-button.ph-button-link.ph-size-sm:hover,
.header-menu .ph-element.ph-element-fa820bd .ph-element-c3214f4 .ph-button.ph-button-link.ph-size-sm:focus {
  border-color: rgba(255, 197, 58, 0.62) !important;
  background: rgba(255, 197, 58, 0.12) !important;
  box-shadow: none !important;
  color: #ffffff !important;
  text-shadow: none !important;
}

.header-menu .ph-element.ph-element-fa820bd .ph-element-c3214f4 .ph-button.ph-button-link.ph-size-sm:active {
  box-shadow: none !important;
  text-shadow: none !important;
}

.header-menu .ph-element.ph-element-fa820bd .ph-element-c3214f4 .ph-button.ph-button-link.ph-size-sm .ph-button-content-wrapper,
.header-menu .ph-element.ph-element-fa820bd .ph-element-c3214f4 .ph-button.ph-button-link.ph-size-sm .ph-button-text {
  font-size: inherit !important;
  line-height: 1 !important;
}

.header-menu .ph-element.ph-element-18763e9 {
  --ph-research-card-thumb-size: 60px;
  --container-widget-height: initial;
  --container-widget-align-self: flex-start;
  --gap: 10px 10px;
  align-self: flex-start !important;
  height: auto !important;
  min-height: 0 !important;
  gap: 10px !important;
}

.header-menu .ph-element.ph-element-18763e9 .ph-element-ee32ab0 .ph-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-menu .ph-element.ph-element-18763e9 .ph-element-ee32ab0 .ph-heading-title::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ph-gold-button-start, #efb33e);
}

.header-menu .ph-element.ph-element-18763e9 .ph-element-74647c9 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px !important;
  padding: 0 !important;
  background: transparent !important;
}

.header-menu .ph-element.ph-element-18763e9 :is(.ph-element-1e9e3bb, .ph-element-b7f2cb3, .ph-element-b24aa63) {
  padding: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.035) 100%) !important;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-menu .ph-element.ph-element-18763e9 :is(.ph-element-1e9e3bb, .ph-element-b7f2cb3, .ph-element-b24aa63):hover,
.header-menu .ph-element.ph-element-18763e9 :is(.ph-element-1e9e3bb, .ph-element-b7f2cb3, .ph-element-b24aa63):focus-within {
  transform: translateY(-1px);
  border-color: rgba(255, 197, 58, 0.38);
  background: linear-gradient(135deg, rgba(255, 197, 58, 0.11) 0%, rgba(255, 255, 255, 0.045) 100%) !important;
}

.header-menu .ph-element.ph-element-18763e9 .ph-image-box-wrapper {
  display: grid !important;
  grid-template-columns: var(--ph-research-card-thumb-size) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  text-align: left !important;
}

.header-menu .ph-element.ph-element-18763e9 .ph-widget-image-box .ph-image-box-wrapper .ph-image-box-img {
  width: var(--ph-research-card-thumb-size) !important;
  height: var(--ph-research-card-thumb-size) !important;
  flex: 0 0 var(--ph-research-card-thumb-size) !important;
  margin: 0 !important;
}

.header-menu .ph-element.ph-element-18763e9 .ph-widget-image-box .ph-image-box-wrapper .ph-image-box-img img {
  display: block;
  width: var(--ph-research-card-thumb-size) !important;
  height: var(--ph-research-card-thumb-size) !important;
  aspect-ratio: 1 / 1;
  border-radius: 8px !important;
  object-fit: cover;
  object-position: center;
}

.header-menu .ph-element.ph-element-18763e9 .ph-image-box-content {
  min-width: 0;
}

.header-menu .ph-element.ph-element-18763e9 .ph-image-box-title {
  margin: 0 0 3px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
}

.header-menu .ph-element.ph-element-18763e9 .ph-image-box-title a {
  color: inherit !important;
}

.header-menu .ph-element.ph-element-18763e9 .ph-image-box-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 576px) {
  .header-menu .ph-element.ph-element-18763e9 {
    --ph-research-card-thumb-size: 54px;
  }
}

.header-menu .ph-element.ph-element-a0370c2 {
  --container-widget-height: initial;
  --container-widget-align-self: stretch;
  --flex-wrap: nowrap;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch !important;
  gap: 20px !important;
  min-height: 0 !important;
}

.header-menu .ph-element.ph-element-a0370c2 > :is(.ph-element-fa820bd, .ph-element-18763e9, .ph-element-2297a6a) {
  --container-widget-height: initial;
  --container-widget-align-self: stretch;
  align-self: stretch !important;
  height: auto !important;
  min-height: 100% !important;
}

.header-menu .ph-element.ph-element-a0370c2 > :is(.ph-element-fa820bd, .ph-element-18763e9, .ph-element-2297a6a) > .ph-widget-heading {
  flex: 0 0 auto;
}

.header-menu .ph-element.ph-element-a0370c2 .ph-element-83ac78f,
.header-menu .ph-element.ph-element-a0370c2 .ph-element-74647c9,
.header-menu .ph-element.ph-element-a0370c2 .ph-header-quick-actions {
  flex: 1 1 auto !important;
  min-height: 0 !important;
}

.header-menu .ph-element.ph-element-a0370c2 .ph-element-83ac78f,
.header-menu .ph-element.ph-element-a0370c2 .ph-element-83ac78f .ph-shortcode {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.header-menu .ph-element.ph-element-a0370c2 .ph-element-83ac78f .ph-shortcode,
.header-menu .ph-element.ph-element-a0370c2 .ph-element-83ac78f .resources-menu-section-list {
  flex: 1 1 auto;
}

.header-menu .ph-element.ph-element-a0370c2 .resources-menu-section-list,
.header-menu .ph-element.ph-element-a0370c2 .ph-element-74647c9 {
  height: 100%;
  align-content: stretch;
}

.header-menu .ph-element.ph-element-a0370c2 .ph-element-74647c9 > .ph-widget-image-box,
.header-menu .ph-element.ph-element-a0370c2 .resources-menu-section-item {
  display: flex !important;
  align-items: stretch;
}

.header-menu .ph-element.ph-element-a0370c2 .resources-menu-section-item .product-content-menu-arrow,
.header-menu .ph-element.ph-element-a0370c2 .ph-image-box-wrapper {
  flex: 1 1 auto;
}

.header-menu .ph-element.ph-element-a0370c2 .ph-header-quick-actions {
  height: 100%;
}

.header-menu .ph-element.ph-element-a0370c2 > .ph-element-2297a6a {
  gap: 10px !important;
}

.header-menu .ph-element.ph-element-2297a6a {
  --container-widget-height: initial;
  --container-widget-align-self: stretch;
  --gap: 10px 10px;
  gap: 10px !important;
  min-height: 0 !important;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-4bc5152 .ph-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-4bc5152 .ph-heading-title::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ph-gold-button-start, #efb33e);
}

.header-menu .ph-element.ph-element-2297a6a .ph-header-quick-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 8px !important;
  height: 100%;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.header-menu .ph-element.ph-element-2297a6a .ph-header-quick-actions > .ph-widget {
  margin: 0 !important;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 {
  grid-column: 1 / -1;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-items {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.035) 100%) !important;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-item:hover,
.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-item:focus-within {
  transform: translateY(-1px);
  border-color: rgba(255, 197, 58, 0.38);
  background: linear-gradient(135deg, rgba(255, 197, 58, 0.11) 0%, rgba(255, 255, 255, 0.045) 100%) !important;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-item > a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: inherit !important;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-item > .ph-icon-list-icon {
  margin-right: 0;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-icon {
  position: relative;
  display: grid !important;
  place-items: center;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
  text-align: center;
  border: 1px solid rgba(255, 197, 58, 0.28);
  border-radius: 9px;
  background: rgba(255, 197, 58, 0.13);
  overflow: hidden;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block !important;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin: 0 !important;
  transform: translate(-50%, -50%);
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-icon svg,
.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-icon path {
  fill: var(--ph-gold-button-start, #efb33e) !important;
}

.header-menu .ph-element.ph-element-2297a6a .ph-element-7d78ae7 .ph-icon-list-text {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.header-menu .ph-element.ph-element-2297a6a .ph-header-quick-action .ph-button.ph-header-quick-btn {
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.header-menu .ph-element.ph-element-2297a6a .ph-header-quick-action .ph-button.ph-header-quick-btn .ph-button-content-wrapper,
.header-menu .ph-element.ph-element-2297a6a .ph-header-quick-action .ph-button.ph-header-quick-btn .ph-button-text {
  font-size: inherit !important;
  font-weight: inherit !important;
  gap: 7px;
  line-height: 1 !important;
}

.header-menu .ph-element.ph-element-2297a6a .ph-header-quick-action .ph-button.ph-header-quick-btn .ph-header-quick-btn__icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.header-menu .ph-element.ph-element-2297a6a .ph-header-quick-action .ph-button.ph-header-quick-btn .ph-header-quick-btn__icon svg {
  width: 11px;
  height: 11px;
}

@media (max-width: 1024px) {
  .header-menu .ph-element.ph-element-a0370c2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.header-menu .ph-element.ph-element-5c4e49e {
  --ph-treatments-tab-rail-width: clamp(280px, 25vw, 330px);
  --ph-treatments-card-image-height: 134px;
  --ph-treatments-menu-card-height: 236px;
  --container-widget-height: initial;
  --container-widget-align-self: flex-start;
  align-self: flex-start !important;
  height: auto !important;
  min-height: 0 !important;
  gap: 10px !important;
}

.header-menu .ph-element.ph-element-5c4e49e .ph-element-adfb22c {
  min-height: 0;
  gap: 0 !important;
}

.header-menu .ph-element.ph-element-5c4e49e .ph-element-40633db .ph-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-menu .ph-element.ph-element-5c4e49e .ph-element-40633db .ph-heading-title::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ph-gold-button-start, #efb33e);
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu {
  --n-tabs-gap: 14px;
  --n-tabs-heading-width: var(--ph-treatments-tab-rail-width);
  --n-tabs-title-flex-basis: auto;
  --n-tabs-title-width: 100%;
  width: 100%;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu.ph-treatments-menu--dynamic-pending {
  min-height: var(--ph-treatments-menu-panel-min-height, 292px);
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu.ph-treatments-menu--dynamic-pending > .ph-tabs {
  visibility: hidden;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tabs {
  display: grid !important;
  grid-template-columns: var(--ph-treatments-tab-rail-width) minmax(0, 1fr);
  align-items: flex-start;
  gap: 14px !important;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tabs-heading {
  width: var(--ph-treatments-tab-rail-width) !important;
  min-width: 0;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: stretch;
  gap: 8px !important;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tab-title {
  position: relative;
  min-height: 52px;
  height: auto;
  width: 100% !important;
  max-width: none !important;
  flex-basis: auto !important;
  align-items: center;
  justify-content: flex-start;
  gap: 9px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  line-height: 1.1 !important;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tab-title::before {
  width: 48px;
  height: 34px;
  padding: 6px;
  border-radius: 8px;
  flex: 0 0 48px;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tab-title::after {
  left: 19px;
  width: 30px;
  height: 22px;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tab-title#testosterone-img::after {
  background-image: url("/assets/media/2025/08/perfomance-img.webp");
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tab-title#weight-loss-img::after {
  background-image: url("/assets/media/2025/08/weight-loss-img.webp");
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tab-title#peptides-img::after {
  background-image: url("/assets/media/2026/06/peptides-vial-molecule-tab-icon.svg");
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tab-title#vitamins-img::after {
  background-image: url("/assets/media/2025/08/vitality-img.webp");
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tab-title#men-img::after,
.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tab-title#women-img::after {
  height: 26px;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tab-title-text {
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1.12 !important;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tabs-content {
  min-width: 0;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] > .ph-element > .ph-layout-inner {
  gap: 8px;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] {
  align-self: flex-start;
  height: auto;
  min-height: 0;
  gap: 8px !important;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .mega-menu-slider .ph-shortcode {
  gap: 8px;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .custom-product-grid-menu-slider {
  width: 100%;
  min-width: 0;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .custom-product-grid-menu-slider > .swiper-wrapper {
  align-items: stretch !important;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .custom-product-grid-menu-slider > .swiper-wrapper > .product-card-menu {
  display: flex !important;
  height: auto !important;
  min-height: var(--ph-treatments-menu-card-height);
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .slide-arrow-wrapper.mega-menu-arrow-set {
  flex: 0 0 44px;
  min-width: 44px;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .slide-arrow-wrapper.mega-menu-arrow-set .slide-arrow {
  border-radius: 10px;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .slide-arrow-wrapper.mega-menu-arrow-set svg {
  width: 20px;
  height: 20px;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-card-menu-inner {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: var(--ph-treatments-menu-card-height);
  box-sizing: border-box;
  padding: 8px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.032) 100%);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-card-menu-inner:hover,
.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-card-menu-inner:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 197, 58, 0.34);
  background: linear-gradient(145deg, rgba(255, 197, 58, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-image-menu {
  flex: 0 0 var(--ph-treatments-card-image-height);
  height: var(--ph-treatments-card-image-height);
  min-height: var(--ph-treatments-card-image-height);
  padding: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-title-menu {
  margin: 0;
  min-height: calc(14px * 1.16);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.16;
  -webkit-line-clamp: 1;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-desc-menu {
  flex: 0 0 auto;
  margin: 0;
  min-height: 0;
  font-size: 11.5px;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.78);
  -webkit-line-clamp: 1;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-content-menu-arrow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  margin-top: 0;
  padding: 8px;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(14, 17, 20, 0.22) 0%, rgba(14, 17, 20, 0.08) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-info-menu {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  margin-top: 0 !important;
  min-height: 0;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-meta-menu {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 2px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 197, 58, 0.24);
  border-radius: 999px;
  background: rgba(255, 197, 58, 0.1);
  color: rgba(255, 255, 255, 0.76);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-view-more {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  justify-content: center;
  align-self: center;
  margin-top: 0;
  padding: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(255, 197, 58, 0.96) 0%, rgba(255, 215, 126, 0.96) 100%);
  color: #1b2b3c;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .product-view-more svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] .treatments-view-more .ph-button.ph-button-link.ph-size-sm {
  min-width: 136px !important;
  min-height: 42px !important;
  padding: 12px 18px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] .treatments-view-more .ph-button.ph-button-link.ph-size-sm .ph-button-content-wrapper,
.header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] .treatments-view-more .ph-button.ph-button-link.ph-size-sm .ph-button-text {
  font-size: inherit !important;
  line-height: 1 !important;
}

@media (max-width: 1024px) {
  .header-menu .ph-element.ph-element-5c4e49e {
    --ph-treatments-card-image-height: 120px;
    --ph-treatments-menu-card-height: 226px;
  }

  .header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .custom-product-grid-menu-slider > .swiper-wrapper > .product-card-menu {
    flex: 0 0 clamp(238px, 44vw, 276px) !important;
    width: clamp(238px, 44vw, 276px) !important;
    max-width: 276px;
  }
}

@media (max-width: 767px) {
  .header-menu .ph-element.ph-element-5c4e49e {
    --ph-treatments-tab-rail-width: 100%;
    --ph-treatments-card-image-height: 110px;
    --ph-treatments-menu-card-height: 218px;
  }

  .header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .custom-product-grid-menu-slider > .swiper-wrapper > .product-card-menu {
    flex-basis: min(82vw, 276px) !important;
    width: min(82vw, 276px) !important;
  }

  .header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tabs {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-menu .ph-element.ph-element-5c4e49e .treatments-mega-menu .ph-tabs-heading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ph-tabs .ph-tab-title {
  cursor: pointer;
}

/* Treatments tabs: lock active state contrast so selected category is always readable. */
.treatments-mega-menu .ph-tab-title[aria-selected="false"]:hover,
.treatments-mega-menu .ph-tab-title[aria-selected="true"],
.treatments-mega-menu .e-n-tab-title[aria-selected="false"]:hover,
.treatments-mega-menu .e-n-tab-title[aria-selected="true"] {
  background: linear-gradient(135deg, var(--ph-gold-button-start, #efb33e) 0%, var(--ph-gold-button-end, #ffd072) 100%) !important;
  background-color: var(--ph-gold-button-start, #efb33e) !important;
  border-color: var(--ph-gold-button-border, rgba(214, 150, 28, 0.68)) !important;
  box-shadow: var(--ph-gold-button-shadow, 0 14px 30px rgba(239, 179, 62, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.44)) !important;
  color: var(--ph-gold-button-text, #1b2b3c) !important;
}

.treatments-mega-menu .ph-tab-title[aria-selected="false"]:hover .ph-tab-title-text,
.treatments-mega-menu .ph-tab-title[aria-selected="true"] .ph-tab-title-text,
.treatments-mega-menu .e-n-tab-title[aria-selected="false"]:hover .e-n-tab-title-text,
.treatments-mega-menu .e-n-tab-title[aria-selected="true"] .e-n-tab-title-text {
  color: var(--ph-gold-button-text, #1b2b3c) !important;
}

.treatments-mega-menu .ph-tab-title[aria-selected="false"],
.treatments-mega-menu .e-n-tab-title[aria-selected="false"] {
  color: #e2e8f0;
}

.treatments-mega-menu .ph-tab-title[aria-selected="false"] .ph-tab-title-text,
.treatments-mega-menu .e-n-tab-title[aria-selected="false"] .e-n-tab-title-text {
  color: #e2e8f0;
}

/* Global CTA contrast guard:
   button-style links should keep their intended foreground color instead of
   falling back to generic anchor colors in nested spans/icons or pseudo-states. */
a.ph-labs-btn,
a.ph-labs-btn:visited,
a.ph-labs-btn:hover,
a.ph-labs-btn:focus-visible,
a.ph-labs-btn:active,
a.ph-treatments-btn,
a.ph-treatments-btn:visited,
a.ph-treatments-btn:hover,
a.ph-treatments-btn:focus-visible,
a.ph-treatments-btn:active,
a.ph-button.ph-button-link,
a.ph-button.ph-button-link:visited,
a.ph-button.ph-button-link:hover,
a.ph-button.ph-button-link:focus-visible,
a.ph-button.ph-button-link:active,
a.get-started-btn,
a.get-started-btn:visited,
a.get-started-btn:hover,
a.get-started-btn:focus-visible,
a.get-started-btn:active,
a.login-btn,
a.login-btn:visited,
a.login-btn:hover,
a.login-btn:focus-visible,
a.login-btn:active {
  -webkit-text-fill-color: currentColor;
  text-decoration: none;
}

a.ph-labs-btn > span,
a.ph-labs-btn .ph-button-text,
a.ph-labs-btn .ph-button-content-wrapper,
a.ph-labs-btn svg,
a.ph-labs-btn i,
a.ph-treatments-btn > span,
a.ph-treatments-btn .ph-button-text,
a.ph-treatments-btn .ph-button-content-wrapper,
a.ph-treatments-btn svg,
a.ph-treatments-btn i,
a.ph-button.ph-button-link > span,
a.ph-button.ph-button-link .ph-button-text,
a.ph-button.ph-button-link .ph-button-content-wrapper,
a.ph-button.ph-button-link svg,
a.ph-button.ph-button-link i,
a.get-started-btn > span,
a.get-started-btn svg,
a.get-started-btn i,
a.login-btn > span,
a.login-btn svg,
a.login-btn i {
  color: inherit !important;
  fill: currentColor;
}

a.get-started-btn,
a.get-started-btn:visited {
  color: #1f211d !important;
}

/* Header CTA layout. */
.ph-header-cta-stack {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

html.ph-mobile-menu-open,
body.ph-mobile-menu-open {
  overflow: hidden;
}

.ph-header-mobile-actions {
  display: none;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-panel {
  display: none;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-panel__eyebrow {
  margin: 0 0 14px;
  color: #efb33e;
  font-family: "Montserrat", Sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-panel__grid {
  display: grid;
  gap: 14px;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-card,
:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-card:visited {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  color: #ffffff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-card__eyebrow {
  color: rgba(255, 255, 255, 0.56);
  font-family: "Montserrat", Sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-card__title {
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-transform: uppercase;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-card__copy {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Lato", Sans-serif;
  font-size: 0.97rem;
  line-height: 1.55;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: #efb33e;
  font-family: "Montserrat", Sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-card__cta svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-panel__quick-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-panel__quick-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Montserrat", Sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-chip,
:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-chip:visited {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-panel__actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-action,
:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-action:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ph-gold-button-gap, 10px);
  min-height: var(--ph-gold-button-min-height, 56px);
  padding: var(--ph-gold-button-padding-block, 14px) var(--ph-gold-button-padding-inline, 20px);
  border-radius: var(--ph-gold-button-radius, 12px);
  border: 1px solid transparent;
  font-family: var(--ph-gold-button-font-family, "Montserrat", Sans-serif);
  font-size: var(--ph-gold-button-font-size, 16px);
  font-weight: var(--ph-gold-button-font-weight, 700);
  letter-spacing: var(--ph-gold-button-letter-spacing, 0.12em);
  line-height: var(--ph-gold-button-line-height, 1);
  text-align: center;
  text-decoration: none;
  text-transform: var(--ph-gold-button-text-transform, uppercase);
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-action--primary,
:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-action--primary:visited {
  border-color: var(--ph-gold-button-border, rgba(214, 150, 28, 0.68));
  background: linear-gradient(135deg, var(--ph-gold-button-start, #efb33e), var(--ph-gold-button-end, #ffd072));
  color: var(--ph-gold-button-text, #1b2b3c);
  box-shadow: var(--ph-gold-button-shadow, 0 14px 30px rgba(239, 179, 62, 0.32));
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-action--secondary,
:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-action--secondary:visited {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-action--ghost,
:is(.ph-site-header, .ph-location-header) .ph-mobile-nav-action--ghost:visited {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
}

:is(.ph-site-header, .ph-location-header) .ph-element.ph-element-09467f2 {
  align-items: center;
  gap: clamp(14px, 1.6vw, 28px);
}

:is(.ph-site-header, .ph-location-header) .ph-element.ph-element-abcf13c.header-menu {
  flex: 1 1 auto;
  min-width: 0;
}

:is(.ph-site-header, .ph-location-header) .ph-element.ph-element-95aee84 {
  flex: 0 0 auto;
  margin-left: auto;
}

:is(.ph-site-header, .ph-location-header) .ph-header-mobile-call,
:is(.ph-site-header, .ph-location-header) .ph-header-mobile-call:visited,
:is(.ph-site-header, .ph-location-header) .ph-header-mobile-call:hover,
:is(.ph-site-header, .ph-location-header) .ph-header-mobile-call:focus-visible,
:is(.ph-site-header, .ph-location-header) .ph-header-mobile-call:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(31, 33, 29, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: #0f3f92;
  box-shadow: 0 10px 22px rgba(15, 39, 65, 0.1);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

:is(.ph-site-header, .ph-location-header) .ph-header-mobile-call:hover,
:is(.ph-site-header, .ph-location-header) .ph-header-mobile-call:focus-visible {
  color: #0b326f;
  border-color: rgba(15, 79, 139, 0.32);
  box-shadow: 0 14px 28px rgba(15, 39, 65, 0.16);
  transform: translateY(-1px);
}

:is(.ph-site-header, .ph-location-header) .ph-header-mobile-call__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-nav {
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
  white-space: nowrap;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-link,
:is(.ph-site-header, .ph-location-header) .ph-header-utility-link:visited,
:is(.ph-site-header, .ph-location-header) .ph-header-utility-link:hover,
:is(.ph-site-header, .ph-location-header) .ph-header-utility-link:focus-visible,
:is(.ph-site-header, .ph-location-header) .ph-header-utility-link:active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-link:hover,
:is(.ph-site-header, .ph-location-header) .ph-header-utility-link:focus-visible {
  color: #efb33e;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-link:focus-visible {
  outline: 2px solid rgba(239, 179, 62, 0.28);
  outline-offset: 4px;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-link__icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.22);
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta {
  margin-left: 4px;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta,
:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta:visited,
:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta:hover,
:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta:focus-visible,
:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta:active {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 0 !important;
  padding: 11px 15px !important;
  background: linear-gradient(135deg, var(--ph-gold-button-start), var(--ph-gold-button-end)) !important;
  border: 1px solid var(--ph-gold-button-border) !important;
  border-radius: 8px !important;
  box-shadow: var(--ph-gold-button-shadow) !important;
  color: var(--ph-gold-button-text) !important;
  fill: currentColor !important;
  font-family: "Montserrat", Sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: normal !important;
  text-align: center !important;
  text-decoration: none !important;
  text-shadow: none !important;
  text-transform: uppercase !important;
  transform: none !important;
  white-space: nowrap !important;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta:hover,
:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta:focus-visible {
  background: linear-gradient(135deg, var(--ph-gold-button-start-hover), var(--ph-gold-button-end-hover)) !important;
  border-color: var(--ph-gold-button-border-hover) !important;
  box-shadow: var(--ph-gold-button-shadow-hover) !important;
  color: var(--ph-gold-button-text-hover) !important;
  transform: translateY(-1px) !important;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta:active {
  background: linear-gradient(135deg, var(--ph-gold-button-start-hover), var(--ph-gold-button-end-hover)) !important;
  border-color: var(--ph-gold-button-border-hover) !important;
  box-shadow: var(--ph-gold-button-shadow-active) !important;
  color: var(--ph-gold-button-text-hover) !important;
  transform: translateY(0) !important;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta:focus-visible {
  outline: 2px solid var(--ph-gold-button-focus-ring) !important;
  outline-offset: 3px !important;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta > span {
  color: inherit !important;
}

:is(.ph-site-header, .ph-location-header) .ph-header-utility-cta svg {
  display: none !important;
}

body.ph-transparent-sticky-page .ph-site-header .ph-header-utility-link,
body.ph-transparent-sticky-page .ph-site-header .ph-header-utility-link:visited,
body.ph-transparent-sticky-page .ph-site-header .ph-header-utility-link:hover,
body.ph-transparent-sticky-page .ph-site-header .ph-header-utility-link:focus-visible,
body.ph-transparent-sticky-page .ph-site-header .ph-header-utility-link:active {
  color: #ffffff;
}

body.ph-transparent-sticky-page .ph-site-header .ph-header-utility-link:hover,
body.ph-transparent-sticky-page .ph-site-header .ph-header-utility-link:focus-visible {
  color: #efb33e;
}

body.ph-transparent-sticky-page .ph-site-header .ph-header-utility-divider {
  background: rgba(255, 255, 255, 0.22);
}

body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav > :not(.ph-header-utility-cta) {
  color: #ffffff !important;
}

body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-link,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-link:visited,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-link:hover,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-link:focus-visible,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-link:active,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-link span,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-link svg,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-link path {
  color: #ffffff !important;
  fill: currentColor;
  stroke: currentColor;
}

body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-cta,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-cta:visited,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-cta:hover,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-cta:focus-visible,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-cta:active,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-cta > span,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-cta svg,
body.ph-transparent-sticky-page .ph-site-header .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav .ph-header-utility-cta path {
  color: #1f211d !important;
  fill: currentColor;
  stroke: currentColor;
}

body.ph-transparent-sticky-page .ph-site-header .ph-header-mobile-call,
body.ph-transparent-sticky-page .ph-site-header .ph-header-mobile-call:visited,
body.ph-transparent-sticky-page .ph-site-header .ph-header-mobile-call:hover,
body.ph-transparent-sticky-page .ph-site-header .ph-header-mobile-call:focus-visible,
body.ph-transparent-sticky-page .ph-site-header .ph-header-mobile-call:active {
  background: rgba(11, 20, 37, 0.2);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(2, 10, 24, 0.18);
}

@media (max-width: 1024px) {
  body > .ph-homepage-mirror,
  body > .ph-homepage-mirror main,
  body > .ph-homepage-mirror section,
  body > .ph-homepage-mirror .ph-layout-container,
  body > .ph-homepage-mirror .ph-layout-inner {
    max-width: 100%;
    overflow-x: clip;
  }

  @supports not (overflow: clip) {
    body > .ph-homepage-mirror,
    body > .ph-homepage-mirror main,
    body > .ph-homepage-mirror section,
    body > .ph-homepage-mirror .ph-layout-container,
    body > .ph-homepage-mirror .ph-layout-inner {
      overflow-x: hidden;
    }
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-c2cb9c7 {
    --ph-mobile-menu-top: calc(72px + env(safe-area-inset-top));
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-09467f2 {
    gap: 10px;
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-bb8108d {
    order: 1;
    margin-right: auto;
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-95aee84 {
    order: 2;
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-abcf13c.header-menu {
    order: 3;
    flex: 0 0 auto;
    min-width: auto;
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-abcf13c.header-menu .ph-nav-menu {
    position: static;
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-abcf13c.header-menu .ph-nav-toggle {
    position: relative;
    z-index: 2147483644;
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-abcf13c.header-menu .ph-nav-wrapper {
    position: fixed;
    inset: 0;
    display: none !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100dvh;
    max-height: 100dvh;
    border: 0 !important;
    border-top: 0 !important;
    border-radius: 0 !important;
    padding: calc(var(--ph-mobile-menu-top) + 18px) 16px calc(24px + env(safe-area-inset-bottom));
    background:
      linear-gradient(180deg, rgba(13, 18, 25, 0.98) 0%, rgba(17, 24, 30, 0.98) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    box-shadow: 0 24px 44px rgba(7, 12, 18, 0.28);
    z-index: 2147483642;
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-abcf13c.header-menu .ph-nav-wrapper.is-open {
    display: block !important;
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-abcf13c.header-menu .ph-nav-heading {
    display: none !important;
  }

  :is(.ph-site-header, .ph-location-header) .ph-mobile-nav-panel {
    display: block;
    width: min(100%, 520px);
    margin: 0 auto;
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-95aee84 {
    display: flex !important;
    align-items: center;
    flex: 0 0 auto;
    margin-left: 0;
  }

  :is(.ph-site-header, .ph-location-header) .ph-header-utility-nav,
  :is(.ph-site-header, .ph-location-header) .ph-shortcode.ph-header-cta-stack.ph-header-utility-nav {
    display: none !important;
  }

  :is(.ph-site-header, .ph-location-header) .ph-header-mobile-actions {
    display: inline-flex;
    align-items: center;
  }

  .ph-header-cta-stack {
    gap: 6px;
  }
}

@media (max-width: 576px) {
  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-c2cb9c7 {
    --ph-mobile-menu-top: calc(68px + env(safe-area-inset-top));
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-abcf13c.header-menu .ph-nav-wrapper {
    padding-inline: 14px;
  }

  :is(.ph-site-header, .ph-location-header) .ph-mobile-nav-card {
    padding: 17px 16px 15px;
  }

  body.home .home-hero-main-carousel .swiper-slide > .ph-layout-container > .ph-layout-container.ph-layout-boxed {
    --padding-bottom: 12px;
    padding-bottom: 12px;
  }
}

@media (min-width: 1025px) and (max-width: 1240px) {
  :is(.ph-site-header, .ph-location-header) .ph-header-utility-nav {
    gap: 10px;
  }

  :is(.ph-site-header, .ph-location-header) .ph-header-utility-link,
  :is(.ph-site-header, .ph-location-header) .ph-header-utility-link:visited,
  :is(.ph-site-header, .ph-location-header) .ph-header-utility-link:hover,
  :is(.ph-site-header, .ph-location-header) .ph-header-utility-link:focus-visible,
  :is(.ph-site-header, .ph-location-header) .ph-header-utility-link:active {
    font-size: 0.8125rem;
    gap: 6px;
  }

  :is(.ph-site-header, .ph-location-header) .ph-header-utility-link__icon {
    width: 15px;
    height: 15px;
  }

  :is(.ph-site-header, .ph-location-header) .ph-header-utility-cta {
    padding-inline: 15px !important;
  }
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-actions > .ph-widget {
  margin-block-end: 0 !important;
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-actions > .ph-widget-icon-list {
  grid-column: 1 / -1;
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-actions > .ph-widget-icon-list .ph-icon-list-items {
  display: grid;
  gap: 10px;
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action {
  min-width: 0;
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn {
  align-items: center;
  border-radius: var(--ph-gold-button-radius, 12px);
  border-style: solid;
  border-width: 1px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.035em;
  min-height: 52px;
  padding: 14px 18px;
  text-decoration: none;
  text-transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  width: 100%;
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn-primary,
:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn-primary:visited {
  background: linear-gradient(135deg, rgba(239, 179, 62, 0.98) 0%, rgba(255, 208, 114, 0.98) 100%);
  border-color: var(--ph-gold-button-border, rgba(214, 150, 28, 0.68));
  box-shadow: 0 14px 30px rgba(239, 179, 62, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  color: var(--ph-gold-button-text, #1b2b3c) !important;
  fill: var(--ph-gold-button-text, #1b2b3c);
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn-primary:hover,
:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--ph-gold-button-start-hover, #f5c357) 0%, var(--ph-gold-button-end-hover, #ffe08a) 100%);
  border-color: var(--ph-gold-button-border-hover, rgba(214, 150, 28, 0.82));
  box-shadow: 0 18px 34px rgba(239, 179, 62, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: var(--ph-gold-button-text-hover, #17283a) !important;
  transform: translateY(-1px);
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn-secondary,
:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn-secondary:visited {
  background: linear-gradient(135deg, rgba(255, 197, 58, 0.12) 0%, rgba(255, 224, 138, 0.04) 100%);
  border-color: rgba(255, 197, 58, 0.4);
  box-shadow: 0 12px 24px rgba(8, 12, 18, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #ffd975 !important;
  fill: #ffd975;
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn-secondary:hover,
:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn-secondary:focus-visible {
  background: linear-gradient(135deg, rgba(255, 197, 58, 0.18) 0%, rgba(255, 224, 138, 0.08) 100%);
  border-color: rgba(255, 208, 114, 0.72);
  box-shadow: 0 16px 28px rgba(8, 12, 18, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #ffebaa !important;
  transform: translateY(-1px);
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn .ph-button-content-wrapper,
:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn .ph-button-text {
  color: inherit !important;
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn .ph-header-quick-btn__icon {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 28px;
  justify-content: center;
  width: 28px;
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn .ph-header-quick-btn__icon svg {
  display: block;
  height: 14px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
  width: 14px;
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn-primary .ph-header-quick-btn__icon {
  background: rgba(27, 43, 60, 0.12);
  border: 1px solid rgba(27, 43, 60, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

:is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn:focus-visible {
  outline: 2px solid var(--ph-gold-button-focus-ring, rgba(239, 179, 62, 0.28));
  outline-offset: 2px;
}

@media (max-width: 767px) {
  :is(.ph-site-header, .ph-location-header) .ph-header-quick-actions {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  :is(.ph-site-header, .ph-location-header) .ph-header-quick-action .ph-button.ph-header-quick-btn {
    min-height: 48px;
    padding: 12px 16px;
  }
}

a.ph-labs-btn-primary,
a.ph-labs-btn-primary:visited,
a.ph-labs-btn-primary:hover,
a.ph-labs-btn-primary:focus-visible,
a.ph-labs-btn-primary:active {
  color: #121212 !important;
}

a.ph-labs-btn-secondary,
a.ph-labs-btn-secondary:visited,
a.ph-labs-btn-secondary:hover,
a.ph-labs-btn-secondary:focus-visible,
a.ph-labs-btn-secondary:active {
  color: #ffffff !important;
}

a.ph-treatments-btn-primary,
a.ph-treatments-btn-primary:visited,
a.ph-treatments-btn-primary:hover,
a.ph-treatments-btn-primary:focus-visible,
a.ph-treatments-btn-primary:active {
  color: #1f211d !important;
}

a.ph-treatments-btn-secondary,
a.ph-treatments-btn-secondary:visited,
a.ph-treatments-btn-secondary:hover,
a.ph-treatments-btn-secondary:focus-visible,
a.ph-treatments-btn-secondary:active {
  color: #ffc53a !important;
}

a.ph-treatments-btn-secondary:hover {
  color: #1f211d !important;
}

/* Keep product rail full-width and keep CTA under cards on desktop. */
.treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] > .ph-element > .ph-layout-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
}

.treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] > .ph-element > .ph-layout-inner > .ph-layout-container {
  width: 100%;
  flex: 0 0 auto;
  min-height: 0;
}

.treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] > .ph-element > .ph-layout-inner > .ph-layout-container:first-child {
  width: 100%;
}

.treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] > .ph-element > .ph-layout-inner > .ph-layout-container:last-child {
  width: 100%;
  margin-top: 0;
  align-items: flex-start;
}

.treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] .treatments-view-more {
  width: auto;
}

.treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] .treatments-view-more .ph-button {
  width: auto;
  min-width: 168px;
}

.treatments-mega-menu .mega-menu-slider .ph-shortcode {
  align-items: stretch;
}

.treatments-mega-menu .slide-arrow-wrapper.mega-menu-arrow-set {
  align-self: stretch;
  display: flex;
  flex: 0 0 58px;
  min-width: 58px;
}

.treatments-mega-menu .slide-arrow-wrapper.mega-menu-arrow-set .slide-arrow {
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding-block: 0;
}

.ph-tabs-content > [id^="ph-tab-content-"] {
  display: none;
}

.ph-tabs-content > .is-active {
  display: block;
}

/* Safety guard: never render multiple treatment panes at once. */
.treatments-mega-menu .ph-tabs-content > .ph-layout-container,
.treatments-mega-menu .ph-tabs-content > [id^="ph-tab-content-"] {
  display: none !important;
}

.treatments-mega-menu .ph-tabs-content > .is-active,
.treatments-mega-menu .ph-tabs-content > .e-active,
.treatments-mega-menu .ph-tabs-content > .is-active.e-active {
  display: flex !important;
}

/* Global treatments mega-menu image sizing:
   keep all product art in a consistent visual box across categories/devices. */
.treatments-mega-menu .product-image-menu {
  height: 176px;
  min-height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.treatments-mega-menu .product-image-menu img.main-image,
.treatments-mega-menu .product-image-menu img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center 42%;
  image-rendering: auto;
  display: block;
  margin: 0 auto;
  transform: none;
  transform-origin: center;
}

@media (max-width: 1024px) {
  .treatments-mega-menu .product-image-menu {
    height: 164px;
    min-height: 164px;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .treatments-mega-menu .product-image-menu {
    height: 152px;
    min-height: 152px;
    padding: 0;
  }
}

/* Footer patient quick links + LegitScript badge */
.ph-site-footer .ph-element-f2c2c62 {
  --container-max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent !important;
  box-shadow: none;
  border: 0;
  overflow: hidden;
}

.ph-site-footer .ph-element-f2c2c62 > .ph-section-prime-turn,
.ph-site-footer .ph-element-f2c2c62 > .ph-optimal-cta-section {
  width: 100%;
  margin: 0;
  display: block;
}

.ph-site-footer .ph-element-b6e9100 {
  align-items: center;
  text-align: center;
}

.ph-site-footer .ph-element-b6e9100 > .ph-element {
  width: auto;
  max-width: 100%;
}

/* CLS guards:
   reserve stable first-paint geometry for the mirrored header and homepage
   carousels so Swiper/runtime JS do not snap layouts after load. */
:is(.ph-site-header, .ph-location-header) .ph-element.ph-element-c2cb9c7 {
  min-height: 78px;
}

:is(.ph-site-header, .ph-location-header) .ph-element.ph-element-c2cb9c7 > .ph-layout-inner,
:is(.ph-site-header, .ph-location-header) .ph-element.ph-element-09467f2 {
  min-height: 58px;
}

@media (max-width: 1024px) {
  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-c2cb9c7 {
    min-height: 72px;
  }

  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-c2cb9c7 > .ph-layout-inner,
  :is(.ph-site-header, .ph-location-header) .ph-element.ph-element-09467f2 {
    min-height: 54px;
  }
}

.home-banner-thumb-slide .swiper {
  min-height: 108px;
}

body.home .home-hero-section {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
}

body.home .home-banner-slide,
body.home .home-hero-main-carousel,
body.home .home-banner-slide .swiper,
body.home .home-banner-slide .swiper-wrapper,
body.home .home-banner-slide .swiper-slide {
  height: 100%;
  min-height: 100%;
}

body.home .home-hero-main-carousel .swiper-slide > .ph-element {
  min-height: 100%;
}

body.home .home-hero-thumb-rail {
  z-index: 3;
}

.home-banner-thumb-slide .swiper:not(.swiper-initialized) > .swiper-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  transform: none !important;
}

.home-banner-thumb-slide .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
  height: auto;
  flex: 0 0 calc((100% - 40px) / 5) !important;
  width: calc((100% - 40px) / 5) !important;
  max-width: calc((100% - 40px) / 5) !important;
  min-width: calc((100% - 40px) / 5) !important;
  margin-right: 0 !important;
}

@media (max-width: 1023px) {
  .home-banner-thumb-slide .swiper:not(.swiper-initialized) > .swiper-wrapper {
    display: flex !important;
  }

  .home-banner-thumb-slide .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
    flex: 0 0 calc((100% - 30px) / 4) !important;
    width: calc((100% - 30px) / 4) !important;
    max-width: calc((100% - 30px) / 4) !important;
    min-width: calc((100% - 30px) / 4) !important;
  }
}

@media (max-width: 767px) {
  body.home .home-hero-section {
    --ph-home-hero-top-space: calc(var(--ph-overlay-header-height, 0px) + 18px);
    --ph-home-hero-bottom-space: calc(172px + env(safe-area-inset-bottom, 0px));
  }

  body.home .home-hero-main-carousel .swiper-slide > .ph-element {
    padding-top: var(--ph-home-hero-top-space) !important;
    padding-bottom: var(--ph-home-hero-bottom-space) !important;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-image-box .ph-image-box-wrapper {
    align-items: center;
    gap: 8px;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-image-box .ph-image-box-title {
    line-height: 1.2;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-heading h2.ph-heading-title {
    max-width: 100%;
    font-size: clamp(2.45rem, 11.5vw, 3.5rem) !important;
    line-height: 0.98 !important;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-heading p.ph-heading-title {
    font-size: clamp(1rem, 5.4vw, 1.38rem) !important;
    line-height: 1.28 !important;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-button .ph-button {
    min-height: 56px;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-element[class*="ph-element-"][class*="bacd9e7"] .ph-heading-title,
  body.home .home-hero-main-carousel .swiper-slide .ph-element[class*="ph-element-"][class*="d86a44d"] .ph-heading-title,
  body.home .home-hero-main-carousel .swiper-slide .ph-element[class*="ph-element-"][class*="17d8b96"] .ph-heading-title,
  body.home .home-hero-main-carousel .swiper-slide .ph-element[class*="ph-element-"][class*="d99e60a"] .ph-heading-title,
  body.home .home-hero-main-carousel .swiper-slide .ph-element[class*="ph-element-"][class*="f6c655f"] .ph-heading-title {
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
  }

  .home-banner-thumb-slide .swiper {
    min-height: 102px;
  }

  .home-banner-thumb-slide .swiper:not(.swiper-initialized) > .swiper-wrapper {
    display: flex !important;
  }

  .home-banner-thumb-slide .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
    flex: 0 0 calc((100% - 30px) / 4) !important;
    width: calc((100% - 30px) / 4) !important;
    max-width: calc((100% - 30px) / 4) !important;
    min-width: calc((100% - 30px) / 4) !important;
  }
}

@media (max-width: 575px) {
  body.home .home-hero-section {
    --ph-home-hero-top-space: calc(var(--ph-overlay-header-height, 0px) + 20px);
    --ph-home-hero-bottom-space: calc(162px + env(safe-area-inset-bottom, 0px));
  }

  .home-banner-thumb-slide .swiper {
    min-height: 96px;
  }

  .home-banner-thumb-slide .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
    flex: 0 0 calc((100% - 20px) / 3) !important;
    width: calc((100% - 20px) / 3) !important;
    max-width: calc((100% - 20px) / 3) !important;
    min-width: calc((100% - 20px) / 3) !important;
  }
}

@media (max-width: 767px) and (max-height: 740px) {
  body.home .home-hero-section {
    --ph-home-hero-top-space: calc(var(--ph-overlay-header-height, 0px) + 24px);
    --ph-home-hero-bottom-space: calc(148px + env(safe-area-inset-bottom, 0px));
  }

  body.home .home-hero-main-carousel .swiper-slide > .ph-element {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-image-box .ph-image-box-title {
    font-size: 0.92rem !important;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-heading h2.ph-heading-title {
    font-size: clamp(2.25rem, 10.8vw, 3rem) !important;
    line-height: 0.98 !important;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-heading p.ph-heading-title {
    font-size: 0.94rem !important;
    line-height: 1.22 !important;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-button .ph-button {
    min-height: 52px;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    font-size: 1rem !important;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-heading .ph-heading-title {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  body.home .home-hero-main-carousel .swiper-slide .ph-widget-heading {
    width: 100% !important;
    max-width: 100% !important;
    --container-widget-width: 100%;
  }

  body.home .home-hero-main-carousel .swiper-slide .ph-widget-heading h2.ph-heading-title {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.4vw, 2.78rem) !important;
    line-height: 0.98 !important;
    overflow-wrap: normal;
    text-wrap: balance;
  }
}

.treatments-mega-menu .custom-product-grid-menu-slider:not(.swiper-initialized) {
  min-height: 286px;
}

.treatments-mega-menu .custom-product-grid-menu-slider:not(.swiper-initialized) > .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  transform: none !important;
}

.treatments-mega-menu .custom-product-grid-menu-slider:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
  height: auto !important;
  margin-right: 0 !important;
  width: auto !important;
}

.treatments-mega-menu .custom-product-grid-menu-slider:has(> .swiper-wrapper > .swiper-slide:first-child:last-child),
.treatments-mega-menu .custom-product-grid-menu-slider:has(> .swiper-wrapper > .swiper-slide:nth-child(2):last-child) {
  min-height: 0;
}

.treatments-mega-menu .custom-product-grid-menu-slider.no-slider {
  min-height: 0;
}

.treatments-mega-menu .custom-product-grid-menu-slider.no-slider > .swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  height: auto;
  gap: 12px;
  transform: none !important;
}

.treatments-mega-menu .custom-product-grid-menu-slider.no-slider > .swiper-wrapper > .swiper-slide {
  height: auto !important;
  width: auto !important;
  max-width: none !important;
  margin-right: 0 !important;
}

@media (max-width: 575px) {
  .treatments-mega-menu .custom-product-grid-menu-slider:not(.swiper-initialized) {
    min-height: 0;
  }

  .treatments-mega-menu .custom-product-grid-menu-slider:not(.swiper-initialized) > .swiper-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .treatments-mega-menu .custom-product-grid-menu-slider.no-slider > .swiper-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}

.ph-site-footer .ph-element-b6e9100 .ph-widget-image > a {
  display: inline-flex;
  justify-content: center;
}

.ph-site-footer .ph-footer-patient-actions {
  width: auto;
  margin-top: 8px;
}

.ph-site-footer .ph-footer-patient-actions .ph-icon-list-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
}

.ph-site-footer .ph-footer-patient-actions .ph-icon-list-item {
  margin: 0;
  padding: 0;
}

.ph-site-footer .ph-footer-patient-actions .ph-icon-list-item > a {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1px;
  color: #95a0b0;
  transition: color 0.2s ease;
}

.ph-site-footer .ph-footer-patient-actions .ph-icon-list-item > a:hover,
.ph-site-footer .ph-footer-patient-actions .ph-icon-list-item > a:focus-visible {
  color: #ffc53a;
}

.ph-site-footer .ph-element-19440de .ph-footer-legitscript {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.ph-site-footer .ph-element-19440de .ph-footer-legitscript a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ph-site-footer .ph-element-19440de .ph-footer-legitscript img {
  width: 140px;
  height: auto;
  max-width: 100%;
  opacity: 0.52;
  filter: grayscale(1) brightness(0.82) contrast(0.9);
  mix-blend-mode: normal;
}

.ph-site-footer .ph-footer-disclosure-heading .ph-heading-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
  letter-spacing: 0;
}

.ph-site-footer .ph-footer-disclosures {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.ph-site-footer .ph-footer-disclosure-block {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.ph-site-footer .ph-footer-disclosure-block h3.ph-heading-title {
  margin: 0 0 6px;
  color: #ffc53a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.ph-site-footer .ph-footer-disclosure-block p.ph-heading-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .ph-site-footer .ph-element-272bfb0 > .ph-layout-inner {
    padding-inline: 20px;
  }

  .ph-site-footer .ph-element-467f947 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    align-items: start;
  }

  .ph-site-footer .ph-element-467f947 > .ph-element {
    width: 100%;
    min-width: 0;
  }

  .ph-site-footer .ph-element-b6e9100,
  .ph-site-footer .ph-element-4523ef2,
  .ph-site-footer .ph-element-a95183b {
    grid-column: 1 / -1;
  }

  .ph-site-footer .ph-element-25c011f,
  .ph-site-footer .ph-element-0d7e008,
  .ph-site-footer .ph-element-4523ef2 {
    align-self: stretch;
  }

  .ph-site-footer .ph-element-75ec80c,
  .ph-site-footer .ph-element-0d7e008,
  .ph-site-footer .ph-element-4523ef2,
  .ph-site-footer .ph-element-97a8f5a,
  .ph-site-footer .ph-element-2e09cc5 {
    text-align: center;
    align-items: center;
  }

  .ph-site-footer .ph-element-75ec80c .ph-icon-list-items,
  .ph-site-footer .ph-element-0d7e008 .ph-icon-list-items,
  .ph-site-footer .ph-element-97a8f5a .ph-icon-list-items,
  .ph-site-footer .ph-element-2e09cc5 .ph-icon-list-items {
    align-items: center;
    text-align: center;
  }

  .ph-site-footer .ph-element-75ec80c .ph-icon-list-item > a,
  .ph-site-footer .ph-element-0d7e008 .ph-icon-list-item > a,
  .ph-site-footer .ph-element-97a8f5a .ph-icon-list-item > a,
  .ph-site-footer .ph-element-2e09cc5 .ph-icon-list-item > a,
  .ph-site-footer .ph-element-97a8f5a .ph-icon-list-text,
  .ph-site-footer .ph-element-2e09cc5 .ph-icon-list-text {
    justify-content: center;
    text-align: center;
  }

  .ph-site-footer .ph-element-4523ef2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    align-items: start;
  }

  .ph-site-footer .ph-element-4523ef2 > .ph-element-3114687,
  .ph-site-footer .ph-element-4523ef2 > .ph-element-087d1e1 {
    grid-column: 1 / -1;
  }

  .ph-site-footer .ph-element-4523ef2 .ph-social-icons-wrapper {
    justify-content: center;
  }

  .ph-site-footer .ph-footer-patient-actions .ph-icon-list-items {
    justify-content: center;
  }

  .ph-site-footer .ph-footer-disclosure-heading {
    text-align: left;
  }

  .ph-site-footer .ph-footer-disclosures {
    grid-template-columns: 1fr;
  }

  .ph-site-footer .ph-footer-disclosure-block {
    padding: 13px 14px;
  }

}

/* Keep generated homepage CTA widgets on the shared primary gold button system. */
.ph-homepage-mirror .ph-108 .ph-widget-button a.ph-button.ph-button-link.ph-cta-primary-lg,
.ph-homepage-mirror .ph-108 .ph-widget-button a.ph-button.ph-button-link.ph-cta-primary-lg:visited {
  min-width: 0 !important;
  min-height: var(--ph-gold-button-min-height) !important;
  padding: var(--ph-gold-button-padding-block) var(--ph-gold-button-padding-inline) !important;
  background: linear-gradient(135deg, var(--ph-gold-button-start), var(--ph-gold-button-end)) !important;
  border: 1px solid var(--ph-gold-button-border) !important;
  border-radius: var(--ph-gold-button-radius) !important;
  box-shadow: var(--ph-gold-button-shadow) !important;
  color: var(--ph-gold-button-text) !important;
  fill: currentColor !important;
  font-family: var(--ph-gold-button-font-family) !important;
  font-size: var(--ph-gold-button-font-size) !important;
  font-weight: var(--ph-gold-button-font-weight) !important;
  letter-spacing: var(--ph-gold-button-letter-spacing) !important;
  line-height: var(--ph-gold-button-line-height) !important;
  text-shadow: none !important;
  text-transform: var(--ph-gold-button-text-transform) !important;
  transform: none !important;
}

.ph-homepage-mirror .ph-108 .ph-widget-button a.ph-button.ph-button-link.ph-cta-primary-lg:hover,
.ph-homepage-mirror .ph-108 .ph-widget-button a.ph-button.ph-button-link.ph-cta-primary-lg:focus-visible {
  background: linear-gradient(135deg, var(--ph-gold-button-start-hover), var(--ph-gold-button-end-hover)) !important;
  border-color: var(--ph-gold-button-border-hover) !important;
  box-shadow: var(--ph-gold-button-shadow-hover) !important;
  color: var(--ph-gold-button-text-hover) !important;
  filter: none !important;
  transform: translateY(-1px) !important;
}
