/*
Theme Name: HH Child
Theme URI: https://helm-hearing.co.uk
Description: Helm Hearing Child Theme
Author: Helm Hearing
Template: astra
Version: 1.0.0
Text Domain: hh-child
*/

/* =========================================================
   HELM HEARING — CONSOLIDATED CHILD THEME CSS V1
   Purpose: Consolidated from child style.css, WordPress Additional CSS,
   and Custom CSS & JS. Preserves current Elementor/plugin classes
   while reducing duplicate declarations and grouping related styles.
   ========================================================= */

:root {
  --hh-white: #ffffff;
  --hh-teal: #008080;
  --hh-teal-solid: #00847f;
  --hh-teal-dark: #006D6D;
  --hh-blue: #4D9BFF;
  --hh-blue-hover: #3D8EF5;
  --hh-text-dark: #244047;
  --hh-teal-form: #238b85;
  --hh-grey-button: #e5e5e5;
  --hh-grey-button-border: #d0d0d0;
  --hh-border-light: #dce8e8;

  --hh-shadow-header: 0 2px 8px rgba(0,0,0,0.08);
  --hh-shadow-button-blue: 0 10px 24px rgba(77,155,255,0.22);
  --hh-shadow-button-blue-hover: 0 6px 18px rgba(77,155,255,0.18);
  --hh-radius-button: 10px;

  --hh-transition-fast: 0.25s ease;
  --hh-transition-header: 0.3s ease;
}

/* =========================================================
   GLOBAL / TYPOGRAPHY
   ========================================================= */

html,
body {
  margin: 0 !important;
  overflow-x: hidden;
}

p:last-child {
  margin-bottom: 0;
}

.elementor-widget-text-editor p {
  margin-bottom: 0.8em;
}

.elementor-button,
.elementor-button:visited,
.elementor-button:hover,
.elementor-button:focus {
  color: var(--hh-white) !important;
}

/* Hide Complianz Manage Cookies button */
.cmplz-manage-consent {
  display: none !important;
}

/* =========================================================
   HEADER — HERO / TRANSPARENT / SCROLLED
   ========================================================= */

.hh-hero-header {
  position: fixed !important;
  inset: 0 0 auto 0;
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  z-index: 9999;
  padding: 24px 20px !important;
  background: transparent;
  box-shadow: none;
  box-sizing: border-box;
  overflow: visible;
  transition:
    background-color var(--hh-transition-header),
    box-shadow var(--hh-transition-header),
    padding var(--hh-transition-header);
}

.hh-hero-header-inner {
  max-width: none !important;
  width: 100%;
  min-width: 0;
  margin-inline: auto;
  box-sizing: border-box;
}

.hh-hero-header.hh-scrolled {
  background: var(--hh-teal-solid);
  box-shadow: var(--hh-shadow-header);
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.hh-header-logo {
  flex: 0 1 auto;
  min-width: 0;
}

.hh-header-logo img {
  width: 190px !important;
  max-width: 190px !important;
  height: auto !important;
  transition:
    width var(--hh-transition-header),
    max-width var(--hh-transition-header),
    transform var(--hh-transition-header);
}

.hh-hero-header.hh-scrolled .hh-header-logo img {
  width: 170px !important;
  max-width: 170px !important;
}

.hh-hero-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hh-hero-nav a {
  color: var(--hh-white);
  text-decoration: none;
  font-weight: 600;
  transition: opacity var(--hh-transition-fast);
}

.hh-hero-nav a:hover {
  opacity: 0.78;
}

.hh-mobile-menu-trigger {
  display: none;
}

/* Solid header pages */
body:has(.solid-header-page) .hh-hero-header {
  background: var(--hh-teal-solid) !important;
  box-shadow: var(--hh-shadow-header) !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

body:has(.solid-header-page) .entry-content {
  padding-top: 80px;
}

/* Dedicated solid internal page header */
.hh-solid-header {
  position: fixed !important;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 9999;
  padding: 6px 20px !important;
  background: var(--hh-teal);
  box-shadow: var(--hh-shadow-header);
}

.hh-solid-header .hh-hero-header-inner {
  max-width: none !important;
  width: 100%;
  margin-inline: auto;
}

.hh-solid-header .hh-header-logo img {
  width: 150px !important;
  max-width: 150px !important;
}

@media (max-width: 1024px) {
  .hh-hero-header {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    padding-left: 14px !important;
    padding-right: 5px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .hh-hero-header-inner {
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    margin-inline: 0 !important;
    box-sizing: border-box !important;
  }

  .hh-hero-nav,
  .hh-header-book-button {
    display: none !important;
  }

  .hh-header-logo {
    flex: 0 1 auto !important;
    min-width: 0 !important;
  }

  .hh-header-logo img {
    width: 135px !important;
    max-width: 135px !important;
  }

  .hh-hero-header.hh-scrolled .hh-header-logo img {
    width: 125px !important;
    max-width: 125px !important;
  }

  body:has(.solid-header-page) .entry-content {
    padding-top: 72px;
  }
}

@media (max-width: 767px) {
  body:has(.solid-header-page) .entry-content {
    padding-top: 64px;
  }
}

/* ==========================================================
   HERO: Short viewport fix for laptops and floating windows

   Purpose:
   Prevent hero content overlapping the transparent fixed
   header on short-height desktop viewports such as:

   - MacBook Safari windows
   - Split-screen desktops
   - Non-maximised browser windows

   Applies only to desktop widths with limited height.
   ========================================================== */

@media (min-width: 1025px) and (max-height: 820px) {

    /* Add space beneath the fixed header */
    .hero-main .hero-inner {
        padding-top: 80px !important;
    }

    /* Reduce heading size slightly */
    .hero-main .hero-title {
        font-size: clamp(3rem, 4.8vw, 4.5rem) !important;
        line-height: 1.05 !important;
    }

    /* Push content lower within the hero */
    .hero-main .hero-content {
        justify-content: flex-end;
    }
}

/* =========================================================
   MOBILE HEADER / HAMBURGER
   ========================================================= */

@media (max-width: 1024px) {
  .hh-mobile-menu-trigger {
    display: flex !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    flex: 0 0 44px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 999999 !important;
    cursor: pointer !important;
  }

  .hh-mobile-menu-trigger .hh-hamburger-button,
  .hh-mobile-menu-trigger button.hh-hamburger-button,
  .hh-mobile-menu-trigger button {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: var(--hh-white) !important;
    box-shadow: none !important;
    text-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    cursor: pointer !important;
  }

  .hh-mobile-menu-trigger .hh-hamburger-button:hover,
  .hh-mobile-menu-trigger .hh-hamburger-button:focus,
  .hh-mobile-menu-trigger .hh-hamburger-button:active,
  .hh-mobile-menu-trigger button:hover,
  .hh-mobile-menu-trigger button:focus,
  .hh-mobile-menu-trigger button:active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: var(--hh-white) !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .hh-mobile-menu-trigger .hh-hamburger-button::before,
  .hh-mobile-menu-trigger .hh-hamburger-button::after,
  .hh-mobile-menu-trigger button::before,
  .hh-mobile-menu-trigger button::after {
    display: none !important;
    content: none !important;
  }

  .hh-mobile-menu-trigger .hh-hamburger-button span,
  .hh-mobile-menu-trigger button span {
    display: block !important;
    width: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    height: 2px !important;
    min-height: 2px !important;
    max-height: 2px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: var(--hh-white) !important;
    background-color: var(--hh-white) !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
  }
}

/* =========================================================
   POPUP MAKER MOBILE MENU
   ========================================================= */

.hh-popup-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 28px 28px;
  text-align: left;
}

.hh-popup-menu a {
  color: var(--hh-white) !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: opacity var(--hh-transition-fast);
}

.hh-popup-menu a:hover {
  opacity: 0.78;
}

.hh-popup-menu-label {
  align-self: flex-start;
  color: var(--hh-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.24);
}

.hh-popup-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.16);
  margin: 2px 0 4px;
}

.pum-close {
  top: 12px !important;
  right: 12px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  color: var(--hh-white) !important;
  font-size: 28px !important;
  line-height: 1 !important;
  padding: 4px 8px !important;
  transition: opacity var(--hh-transition-fast);
}

.pum-close:hover,
.pum-close:focus,
.pum-close:active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  color: var(--hh-white) !important;
  opacity: 0.78;
}

html.pum-open,
html.pum-open.pum-open-overlay,
body.pum-open,
body.pum-open-overlay,
.pum-open-overlay {
  overflow: visible !important;
  padding-right: 0 !important;
}

@media (min-width: 1025px) {
  #pum-1309 {
    display: none !important;
  }
}

/* =========================================================
   MOTION / ATMOSPHERE
   ========================================================= */

.hh-cinematic {
  opacity: 0.88;
  transform: translateY(28px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hh-cinematic.hh-cinematic-visible {
  opacity: 1;
  transform: translateY(0);
}

body.elementor-editor-active .hh-cinematic {
  opacity: 1 !important;
  transform: none !important;
}

.hh-depth-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hh-depth-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(0,128,128,0.06);
  filter: blur(80px);
  top: 50%;
  right: -180px;
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hh-cinematic {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   CTA BUTTON ICONS
   ========================================================= */

.hh-button-calendar,
.hh-button-phone,
.hh-button-phone-blue {
  display: inline-flex;
  align-items: center;
  color: var(--hh-white) !important;
}

.hh-button-calendar a,
.hh-button-phone a,
.hh-button-phone-blue a {
  color: var(--hh-white) !important;
}

.hh-button-calendar::before,
.hh-button-phone::before,
.hh-button-phone-blue::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 18px;
  flex: 0 0 30px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: left center;
  transform: translateY(3px);
}

.hh-button-calendar::before {
  background-image: url("/wp-content/uploads/2026/05/calendar-days.png");
}

.hh-button-phone::before {
  background-image: url("/wp-content/uploads/2026/05/phone.png");
}

.hh-button-phone-blue::before {
  background-image: url("/wp-content/uploads/2026/05/phone-1.png");
}

/* =========================================================
   ANCHORS / HOME VISITS LEGACY
   ========================================================= */

.hh-home-visits-section {
  background: var(--hh-white);
}

.hh-home-visits-section .elementor-icon-list-items {
  margin-bottom: 0;
}

.hh-home-visits-section .elementor-icon-list-item {
  align-items: flex-start;
}

.hh-home-visits-section .elementor-icon-list-icon {
  margin-top: 3px;
}

.hh-home-visits-section .elementor-button {
  margin-top: 4px;
}

#home-visits,
#mobile,
#faq {
  scroll-margin-top: 120px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.hh-footer {
  background: var(--hh-teal-dark);
}

.hh-footer p,
.hh-footer .elementor-widget-text-editor,
.hh-footer .elementor-icon-list-text,
.hh-footer a {
  color: rgba(255,255,255,0.78);
}

.hh-footer a {
  text-decoration: none;
  transition:
    color var(--hh-transition-fast),
    opacity var(--hh-transition-fast);
}

.hh-footer a:hover,
.hh-footer a:focus,
.hh-footer .hh-footer-muted a:hover,
.hh-footer .hh-footer-muted a:focus {
  color: var(--hh-white);
}

.hh-footer h2,
.hh-footer h3,
.hh-footer h4,
.hh-footer .elementor-heading-title {
  color: var(--hh-white);
}

.hh-footer .hh-footer-muted,
.hh-footer .hh-footer-muted a {
  color: rgba(255,255,255,0.65);
}

.hh-footer .elementor-button,
.hh-footer .elementor-button:visited,
.hh-footer .elementor-button:hover,
.hh-footer .elementor-button:focus {
  color: var(--hh-white) !important;
}

@media (max-width: 767px) {
  .hh-footer {
    text-align: left;
  }
}

/* =========================================================
   SYMPTOMS SECTION
   ========================================================= */

.symptoms-modern-section {
  background: linear-gradient(135deg, #f4fbfb 0%, var(--hh-white) 45%, #eef8f8 100%);
  position: relative;
  overflow: hidden;
}

.symptoms-modern-section::before,
.symptoms-modern-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.symptoms-modern-section::before {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(0, 124, 122, 0.08);
  top: 35px;
  left: 40px;
}

.symptoms-modern-section::after {
  width: 120%;
  height: 160px;
  background: rgba(0, 124, 122, 0.05);
  bottom: -95px;
  left: -10%;
  border-radius: 50% 50% 0 0;
}

.symptoms-modern-section > * {
  position: relative;
  z-index: 1;
}

.symptoms-modern-inner {
  width: 100%;
}

.symptoms-modern-image-column,
.symptoms-modern-content {
  min-width: 0;
}

.symptoms-modern-image-column img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
  border-radius: 28px;
  display: block;
  box-shadow: 0 24px 60px rgba(0, 80, 80, 0.10);
}

.symptoms-modern-intro {
  max-width: 560px;
}

.symptoms-modern-list .elementor-icon-list-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.symptoms-modern-reassurance {
  margin-top: -4px;
}

.symptoms-modern-button .elementor-button {
  border-radius: var(--hh-radius-button);
  box-shadow: 0 14px 30px rgba(0, 124, 122, 0.22);
  transition: all var(--hh-transition-fast);
}

.symptoms-modern-button .elementor-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 124, 122, 0.28);
}

@media (max-width: 1024px) {
  .symptoms-modern-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 45px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .symptoms-modern-image-column,
  .symptoms-modern-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  .symptoms-modern-image-column img {
    height: 420px;
  }

  .symptoms-modern-section::before {
    width: 320px;
    height: 320px;
    top: 40px;
    left: -60px;
  }
}

@media (max-width: 767px) {
  .symptoms-modern-section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .symptoms-modern-inner {
    gap: 36px !important;
  }

  .symptoms-modern-image-column img {
    height: 300px;
    border-radius: 22px;
  }

  .symptoms-modern-heading h2,
  .symptoms-modern-heading .elementor-heading-title {
    font-size: 29px !important;
    line-height: 1.12em !important;
    max-width: 100%;
  }

  .symptoms-modern-intro {
    max-width: 100%;
    font-size: 16px !important;
    line-height: 1.55em !important;
  }

  .symptoms-modern-button,
  .symptoms-modern-button .elementor-button {
    width: 100%;
  }

  .symptoms-modern-button .elementor-button {
    justify-content: center;
  }

  .symptoms-modern-section::before {
    width: 260px;
    height: 260px;
    top: 30px;
    left: -90px;
  }

  .symptoms-modern-section::after {
    height: 120px;
    bottom: -75px;
  }
}

/* =========================================================
   TRUST BAND
   ========================================================= */

.trust-band-section {
  width: 100%;
  background: linear-gradient(135deg, #f8ffff 0%, var(--hh-white) 50%, #f6fcfc 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 124, 122, 0.10);
}

.trust-band-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  align-items: start;
  column-gap: 0;
}

.trust-band-main {
  width: auto !important;
  max-width: none !important;
  padding: 0 34px 0 0;
  border-right: 1px solid rgba(0, 124, 122, 0.22);
}

.trust-band-item {
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  padding: 0 34px;
  text-align: center;
  border-right: 1px solid rgba(0, 124, 122, 0.18);
}

.trust-band-item:last-child {
  border-right: none;
}

.trust-band-item .elementor-widget-icon,
.trust-band-item .elementor-widget-heading,
.trust-band-item .elementor-widget-text-editor,
.trust-band-main .elementor-widget-icon,
.trust-band-main .elementor-widget-heading,
.trust-band-main .elementor-widget-text-editor {
  margin-bottom: 0 !important;
}

.trust-band-item p,
.trust-band-main p {
  margin-bottom: 0;
}

.trust-band-item .elementor-icon,
.trust-band-main .elementor-icon {
  line-height: 1;
}

@media (max-width: 1024px) {
  .trust-band-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .trust-band-main {
    grid-column: 1 / -1;
    padding: 0 0 28px 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 124, 122, 0.18);
  }

  .trust-band-item {
    padding: 0 28px;
  }

  .trust-band-item:nth-child(3),
  .trust-band-item:nth-child(5) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  .trust-band-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-band-main {
    padding: 0 0 24px 0;
    border-bottom: 1px solid rgba(0, 124, 122, 0.18);
  }

  .trust-band-item {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 124, 122, 0.14);
    text-align: left;
  }

  .trust-band-item:last-child {
    border-bottom: none;
  }

  .trust-band-item .elementor-widget-icon,
  .trust-band-item .elementor-icon-wrapper {
    justify-content: flex-start;
    text-align: left;
  }
}

/* =========================================================
   HOME VISIT SECTION
   ========================================================= */

.hh-home-visit-card {
  max-width: 1450px;
  margin: 0 auto;
  box-shadow: 0 18px 55px rgba(23, 59, 66, 0.08);
}

.hh-home-visit-left {
  max-width: 720px;
}

.hh-home-visit-header-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.hh-home-visit-heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hh-home-visit-icon {
  flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.hh-home-visit-divider {
  width: 90px;
  max-width: 90px;
}

.hh-home-visit-divider,
.hh-home-visit-divider * {
  border-color: rgba(0, 132, 132, 0.28) !important;
}

.hh-home-visit-checklist {
  position: relative;
  overflow: hidden;
}

.hh-home-visit-icon-list .elementor-icon-list-items {
  display: flex;
  flex-direction: column;
}

.hh-home-visit-icon-list .elementor-icon-list-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 132, 132, 0.12);
}

.hh-home-visit-icon-list .elementor-icon-list-item:first-child {
  padding-top: 0;
}

.hh-home-visit-icon-list .elementor-icon-list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hh-home-visit-icon-list .elementor-icon-list-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #dff1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}

.hh-home-visit-icon-list .elementor-icon-list-icon i,
.hh-home-visit-icon-list .elementor-icon-list-icon svg {
  font-size: 26px;
  width: 26px;
  height: 26px;
  display: block;
}

.hh-home-visit-icon-list .elementor-icon-list-text {
  line-height: 1.45;
}

.hh-home-visit-button .elementor-button {
  min-width: 360px;
  justify-content: center;
}

.hh-home-visit-note {
  max-width: 500px;
  flex-wrap: nowrap;
}

.hh-home-visit-note-icon {
  flex: 0 0 80px;
  width: 80px;
  min-width: 80px;
  height: 80px;
  min-height: 80px;
  max-width: 80px;
  max-height: 80px;
  padding: 0 !important;
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.hh-home-visit-note-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.hh-home-visit-note p {
  margin: 0;
  color: var(--hh-text-dark);
  line-height: 1.5;
}

.hh-home-visit-section::before,
.hh-home-visit-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hh-home-visit-section::before {
  inset: 0;
  background:
    linear-gradient(225deg, rgba(0, 128, 128, 0.035) 0%, rgba(0, 128, 128, 0.018) 22%, transparent 42%),
    linear-gradient(225deg, transparent 0%, transparent 34%, rgba(0, 128, 128, 0.07) 39%, rgba(0, 128, 128, 0.025) 68%, transparent 68%, transparent 100%);
  opacity: 0.65;
}

.hh-home-visit-section::after {
  left: -10%;
  top: -20%;
  width: 120%;
  height: 42%;
  background: radial-gradient(ellipse at center, rgba(0, 128, 128, 0.10) 0%, rgba(0, 128, 128, 0.035) 42%, transparent 72%);
}

.hh-home-visit-section > .e-con-inner,
.hh-home-visit-section > .elementor-element {
  position: relative;
  z-index: 1;
}

/* =========================================================
   FAQ
   ========================================================= */

.hh-faq-accordion .e-n-accordion-item-title {
  display: flex;
  align-items: center;
}

.hh-faq-accordion .e-n-accordion-item-title-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #DFF1F1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.hh-faq-accordion .e-n-accordion-item-title-icon svg,
.hh-faq-accordion svg.e-font-icon-svg.e-fas-plus {
  width: 14px;
  height: 14px;
  color: var(--hh-teal);
  fill: var(--hh-teal);
}

/* =========================================================
   WHY SECTION ATMOSPHERIC WASH
   ========================================================= */

.hh-why-left,
.hh-why-right {
  position: relative;
  z-index: 1;
}

.hh-why-left::before,
.hh-why-right::before {
  content: "";
  position: absolute;
  top: -15px;
  z-index: -1;
  pointer-events: none;
}

.hh-why-left::before {
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.70) 45%, rgba(255,255,255,0.18) 82%, rgba(255,255,255,0) 100%);
  filter: blur(18px);
}

.hh-why-right::before {
  left: -15px;
  width: 88%;
  height: calc(100% + 50px);
  background: linear-gradient(90deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.48) 55%, rgba(255,255,255,0.12) 82%, rgba(255,255,255,0) 100%);
  filter: blur(22px);
}

.hh-why-right,
.hh-why-row {
  min-width: 0;
}

.hh-why-row {
  position: relative;
  width: 100%;
  padding: 24px 0;
  border-bottom: none !important;
}

.hh-why-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(525px, 75%, 620px);
  height: 1px;
  background: rgba(0,128,128,0.30);
}

.hh-why-row:last-child::after {
  display: none;
}

.hh-why-row * {
  white-space: normal;
}

/* =========================================================
   BOOKING CALENDAR — TERMS FIELD
   ========================================================= */

.wpbc_container_booking_form label.wpbc_inline_checkbox {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  margin-top: 10px !important;
  text-align: right !important;
  column-gap: 6px !important;
  row-gap: 0 !important;
}

.wpbc_container_booking_form label.wpbc_inline_checkbox .wpdev-list-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
}

.wpbc_container_booking_form label.wpbc_inline_checkbox .wpbc_wrap_checkbox,
.wpbc_container_booking_form label.wpbc_inline_checkbox .hh_bc_terms {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
}

.wpbc_container_booking_form label.wpbc_inline_checkbox input[type="checkbox"] {
  margin: 0 !important;
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 auto !important;
}

.wpbc_container_booking_form label.wpbc_inline_checkbox a {
  display: inline !important;
  color: #007c7a !important;
  text-decoration: underline !important;
  margin: 0 2px !important;
  white-space: nowrap !important;
}

/* =========================================================
   BOOKING CALENDAR — BUTTONS / DATEPICKER
   ========================================================= */

.wpbc_container_booking_form a.wpbc_button_light,
.wpbc_container_booking_form a.wpbc_button_dark {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  background: var(--hh-blue) !important;
  background-color: var(--hh-blue) !important;
  color: var(--hh-white) !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: var(--hh-radius-button) !important;
  font-weight: 600 !important;
  box-shadow: var(--hh-shadow-button-blue) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease !important;
}

.wpbc_container_booking_form a.wpbc_button_light:hover,
.wpbc_container_booking_form a.wpbc_button_dark:hover {
  background: var(--hh-blue-hover) !important;
  background-color: var(--hh-blue-hover) !important;
  box-shadow: var(--hh-shadow-button-blue-hover) !important;
  opacity: 1 !important;
}

.wpbc_container_booking_form .datepick-days-cell.date_available .wpbc-cell-box,
.wpbc_container_booking_form .datepick-days-cell.date_available.timespartly .wpbc-cell-box {
  border-color: var(--hh-teal) !important;
  background: rgba(0, 128, 128, 0.08) !important;
}

.wpbc_container_booking_form .datepick-days-cell.date_available a {
  color: var(--hh-teal) !important;
  font-weight: 700 !important;
}

.wpbc_container_booking_form .datepick-days-cell.date_available.datepick-current-day .wpbc-cell-box {
  background: var(--hh-teal) !important;
  border-color: var(--hh-teal) !important;
}

.wpbc_container_booking_form .datepick-days-cell.date_available.datepick-current-day a,
.wpbc_container_booking_form .datepick-days-cell.date_available.datepick-current-day .wpbc_time_dots {
  color: var(--hh-white) !important;
}

.wpbc_container_booking_form .datepick-days-cell.date_available .wpbc_time_dots {
  color: var(--hh-teal) !important;
}

.wpbc_container_booking_form {
  isolation: isolate;
  position: relative;
  z-index: 1;
}

.hh-hero-header,
.hh-solid-header {
  z-index: 999999 !important;
}

/* =========================================================
   BOOKING CALENDAR — WIZARD STEPS
   ========================================================= */

.wpbc_container_booking_form .wpbc_wizard_step2 {
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.wpbc_container_booking_form .wpbc_wizard_step3 {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.wpbc_container_booking_form .wpbc_wizard_step4 {
  max-width: none !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.wpbc_container_booking_form .wpbc_wizard_step4 .wpbc_row {
  gap: 32px !important;
}

.wpbc_container_booking_form .wpbc_wizard_step4 .wpbc__field {
  margin-bottom: 24px !important;
}

.wpbc_container_booking_form .wpbc_wizard_step4 label {
  display: block !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}

.wpbc_container_booking_form .wpbc_wizard_step4 select.hh_bc_dropdown {
  min-height: 44px !important;
}

.wpbc_container_booking_form .wpbc_wizard_step1 .wpbc_calendar_wrapper,
.wpbc_container_booking_form .wpbc_wizard_step1 .wpbc_cal_container,
.wpbc_container_booking_form .wpbc_wizard_step1 .datepick-one-month,
.wpbc_container_booking_form .wpbc_wizard_step1 table.wpbc_calendar {
  width: 90% !important;
  min-width: 320px !important;
  max-width: 420px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 767px) {
  .wpbc_container_booking_form .wpbc_wizard_step4 .wpbc__field {
    flex-basis: 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc__field:has(.wpbc_calendar_wraper) {
    flex-basis: 100% !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    --wpbc-bfb-col-jc: center !important;
    --wpbc-bfb-col-ai: center !important;
  }

  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc_calendar_wraper {
    display: block !important;
    width: 100% !important;
    max-width: 341px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
  }

  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc_cal_container,
  .wpbc_container_booking_form .wpbc_wizard_step1 .datepick-inline,
  .wpbc_container_booking_form .wpbc_wizard_step1 .datepick-one-month,
  .wpbc_container_booking_form .wpbc_wizard_step1 table.wpbc_calendar {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .wpbc_container_booking_form .wpbc_wizard_step1 .block_hints.datepick {
    display: block !important;
    width: 100% !important;
    max-width: 341px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 18px !important;
  }

  .wpbc_container_booking_form .wpbc_wizard_step1 .wpdev_hint_with_text {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }
}
/* =========================================================
   BOOKING CALENDAR — STEP 5 CONFIRMATION WIDTH
   ========================================================= */

.wpbc_container_booking_form:has(.wpbc_wizard_step5[style*="display: block"]) {
  width: 120% !important;
  max-width: 120% !important;
  margin-left: -10% !important;
  margin-right: -10% !important;
}

.wpbc_container_booking_form:has(.wpbc_wizard_step5[style*="display: block"]) .wpbc_wizard_step5 .wpbc_row,
.wpbc_container_booking_form:has(.wpbc_wizard_step5[style*="display: block"]) .wpbc_wizard_step5 .wpbc__row {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 70px !important;
}

.wpbc_container_booking_form:has(.wpbc_wizard_step5[style*="display: block"]) .wpbc_wizard_step5 .wpbc__field {
  width: auto !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
}



/* ==========================================================
   HELM HEARING - DATE OF BIRTH DATEPICKER STYLING
   ----------------------------------------------------------
   Styles the jQuery UI datepicker attached to:
   input[name="date_of_birth1"]

   Notes:
   - Removes previous/next arrows to reduce confusion.
   - Separates month and year dropdowns.
   - Improves day visibility.
   - Matches Helm Hearing brand teal.
   ========================================================== */


/* DOB input field */
input[name="date_of_birth1"] {
    border: 2px solid var(--hh-teal-form) !important;
    border-radius: 8px !important;
}

input[name="date_of_birth1"]:focus {
    border-color: var(--hh-teal-form) !important;
    box-shadow: 0 0 0 3px rgba(35, 139, 133, 0.15) !important;
    outline: none !important;
}


/* Main datepicker box */
#ui-datepicker-div.ui-datepicker {
    width: 280px !important;
    background: var(--hh-white) !important;
    border: 1px solid #dce8e8 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.14) !important;
    padding: 0 0 10px 0 !important;
    font-family: inherit !important;
    z-index: 999999 !important;
    overflow: hidden !important;
}


/* Header area */
#ui-datepicker-div .ui-datepicker-header {
    background: var(--hh-teal-form) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 12px 14px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}


/* Remove previous/next buttons completely */
#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
    display: none !important;
}


/* Month/year wrapper */
#ui-datepicker-div .ui-datepicker-title {
    display: flex !important;
    gap: 10px !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
}


/* Month and year dropdowns */
#ui-datepicker-div .ui-datepicker-title select {
    width: auto !important;
    min-width: 92px !important;
    height: 38px !important;
    background: var(--hh-white) !important;
    color: #263b3b !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    margin: 0 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
}


/* Calendar table */
#ui-datepicker-div table.ui-datepicker-calendar {
    width: calc(100% - 20px) !important;
    margin: 10px auto 0 auto !important;
    border-collapse: separate !important;
    border-spacing: 4px !important;
}


/* Day name row */
#ui-datepicker-div .ui-datepicker-calendar th {
    color: #1d2f2f !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 6px 0 !important;
    text-align: center !important;
}


/* Day cells */
#ui-datepicker-div .ui-datepicker-calendar td {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}


/* Clickable date numbers */
#ui-datepicker-div .ui-datepicker-calendar td a {
    display: block !important;
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    padding: 0 !important;
    text-align: center !important;
    background: var(--hh-white) !important;
    border: 1px solid #d8e1e1 !important;
    border-radius: 7px !important;
    color: #333333 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}


/* Hover state */
#ui-datepicker-div .ui-datepicker-calendar td a:hover {
    background: #e8f6f5 !important;
    border-color: var(--hh-teal-form) !important;
    color: var(--hh-teal-form) !important;
}


/* Selected date */
#ui-datepicker-div .ui-datepicker-calendar .ui-state-active {
    background: var(--hh-teal-form) !important;
    border-color: var(--hh-teal-form) !important;
    color: var(--hh-white) !important;
}


/* Today's date */
#ui-datepicker-div .ui-datepicker-calendar .ui-state-highlight {
    background: var(--hh-white) !important;
    border-color: var(--hh-teal-form) !important;
    color: var(--hh-teal-form) !important;
}


/* Disabled/future dates */
#ui-datepicker-div .ui-datepicker-calendar .ui-state-disabled span {
    display: block !important;
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    text-align: center !important;
    background: #f7f7f7 !important;
    border: 1px solid #eeeeee !important;
    border-radius: 7px !important;
    color: #c7c7c7 !important;
    font-size: 14px !important;
}

/* ==========================================================
   HELM HEARING - BOOKING FORM STEP 2 FIELD SPACING
   ----------------------------------------------------------
   Adds spacing only to the details step of the Booking Calendar
   wizard, so the main appointment calendar is not affected.
   ========================================================== */

.wpbc_wizard_step2 .wpbc_field_description {
    margin-top: 8px !important;
    margin-bottom: 18px !important;
    display: block !important;
}

.wpbc_wizard_step2 .wpbc_field label,
.wpbc_wizard_step2 .bfb_element label {
    margin-bottom: 8px !important;
    display: inline-block !important;
}

/* ==========================================================
   HELM HEARING - BOOKING FOR RADIO CARDS
   ----------------------------------------------------------
   Styles the "Who is this appointment for?" options as
   clean branded selection cards using the Helm ear icon.
   ========================================================== */

/* Hide original radio circles */
.wpbc_wizard_step2 input[name="booking_for"],
.wpbc_wizard_step2 input[name="booking_for1"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    pointer-events: none !important;
}

/* Card style */
.wpbc_wizard_step2 input[name="booking_for"] + label,
.wpbc_wizard_step2 input[name="booking_for1"] + label {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100%;
    max-width: 330px;
    padding: 16px 18px !important;
    margin: 10px 0 !important;
    border: 1px solid #dce8e8 !important;
    border-radius: 14px !important;
    background: var(--hh-white) !important;
    color: #102030 !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    transition: all .2s ease !important;
}

/* Branded ear icon */
.wpbc_wizard_step2 input[name="booking_for"] + label::before,
.wpbc_wizard_step2 input[name="booking_for1"] + label::before {
    content: "" !important;
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    background-image: url('/wp-content/uploads/2026/05/ear.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}

/* Hover state */
.wpbc_wizard_step2 input[name="booking_for"] + label:hover,
.wpbc_wizard_step2 input[name="booking_for1"] + label:hover {
    border-color: var(--hh-teal-form) !important;
    box-shadow: 0 8px 22px rgba(35,139,133,.12) !important;
    transform: translateY(-1px);
}

/* Selected state */
.wpbc_wizard_step2 input[name="booking_for"]:checked + label,
.wpbc_wizard_step2 input[name="booking_for1"]:checked + label {
    border-color: var(--hh-teal-form) !important;
    background: #e8f6f5 !important;
    box-shadow: 0 0 0 3px rgba(35,139,133,.14) !important;
}

/* Keyboard focus */
.wpbc_wizard_step2 input[name="booking_for"]:focus + label,
.wpbc_wizard_step2 input[name="booking_for1"]:focus + label {
    outline: 2px solid var(--hh-teal-form) !important;
    outline-offset: 3px !important;
}

/* ==========================================================
   HELM HEARING - STEP 4 MEDICAL QUESTIONNAIRE SUBTLE POLISH
   ----------------------------------------------------------
   Adds small premium refinements and centres the Step 4
   questionnaire content without breaking the builder columns.
   ========================================================== */

.wpbc_container_booking_form .wpbc_wizard_step4 .wpbc__row {
    justify-content: center !important;
    gap: 24px 90px !important;
}

.wpbc_container_booking_form .wpbc_wizard_step4 .wpbc__field {
    flex: 0 1 calc(50% - 45px) !important;
    max-width: 520px !important;
    margin-bottom: 18px !important;
}

.wpbc_container_booking_form .wpbc_wizard_step4 .bfb_element label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #102030 !important;
}

/* WPBC Step 4: small breathing room between each question block */
.wpbc_container_booking_form .wpbc_wizard_step4 .bfb_element {
  padding: 3px !important;
}

/* ==========================================================
   HELM HEARING - STEP 4 MEDICAL DROPDOWNS
   ----------------------------------------------------------
   Keeps dropdowns compact and clean.
   ========================================================== */

.wpbc_container_booking_form .wpbc_wizard_step4 select.step4-medical-question {
    width: 100% !important;
    max-width: 300px !important;
    min-height: 42px !important;
    border-radius: 8px !important;
    border: 1px solid #d4e0e0 !important;
    background-color: var(--hh-white) !important;
}

/* ==========================================================
   HELM HEARING - STEP 4 MEDICAL DROPDOWN FOCUS
   ----------------------------------------------------------
   Adds subtle Helm branded focus styling.
   ========================================================== */

.wpbc_container_booking_form .wpbc_wizard_step4 select.step4-medical-question:focus {
    border-color: var(--hh-teal-form) !important;
    box-shadow: 0 0 0 3px rgba(35,139,133,.10) !important;
    outline: none !important;
}

/* ==========================================================
   HELM HEARING - STEP 4 MOBILE LAYOUT
   ----------------------------------------------------------
   Returns Step 4 questions to single column on smaller screens.
   ========================================================== */

@media (max-width: 767px) {
    .wpbc_container_booking_form .wpbc_wizard_step4 .wpbc__field {
        flex: 0 1 100% !important;
        max-width: 100% !important;
    }
}

/* ==========================================================
   HELM HEARING - STEP 4 BUTTON ALIGNMENT FIX
   ----------------------------------------------------------
   Restores Back and Next buttons to the bottom-right corner.
   ========================================================== */

.wpbc_wizard_step4 .wpbc__row:last-child {
    justify-content: flex-end !important;
}

/* ==========================================================
   BOOKING CONFIRMATION PAGE — FULL WIDTH SHORTCODE OUTPUT
   ----------------------------------------------------------
   Purpose:
   Prevents Booking Calendar confirmation content from centring
   or offsetting itself inside the Elementor shortcode widget.
   Keeps the confirmation box aligned with the rest of the page.
   ========================================================== */

.hh-booking-confirmation-page .elementor-shortcode > * {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ==========================================================
   HELM HEARING - CONFIRMATION PAGE PATIENT DETAILS HIDE FLASH
   ----------------------------------------------------------
   Prevents the empty Patient Details block flashing briefly
   before JavaScript checks whether it should be shown.
   ========================================================== */

#confirmation_patient_details {
    display: none;
}

/* ==========================================================
   HELM HEARING - CONFIRMATION PAGE CLEAN LAYOUT AND SPACING
========================================================== 
   */

/* Booking Calendar confirmation layout */
.wpbc_after_booking_thank_you_section .wpbc_ty_container {
    justify-content: center !important;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__content {
    justify-content: space-between !important;
		padding: 0 3rem;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__content_text.wpbc_cols_2 {
    flex: 0 0 15em !important;
    width: auto !important;
}


/* =========================================================
   ASTRA / IOS PAGE EDGE FIXES
   ========================================================= */

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  background-color: var(--hh-teal-solid) !important;
}

#page,
.site,
.hfeed,
.ast-separate-container,
.ast-page-builder-template {
  margin: 0 !important;
  background-color: var(--hh-teal-solid) !important;
}

#content,
.site-content,
.ast-container,
.ast-article-single,
.ast-article-post,
.entry-content {
  background-color: var(--hh-white);
}

#colophon,
.site-footer,
.footer-width-fixer,
.elementor-location-footer,
.hh-footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  background-color: var(--hh-teal-solid) !important;
}

#page,
.site,
#content,
.site-content,
.ast-container,
.entry-content {
  margin-bottom: 0 !important;
}

@supports (-webkit-touch-callout: none) {
  .hh-parallax,
  .hh-depth-section,
  .your-parallax-section-class {
    background-attachment: scroll !important;
  }
}

/* =========================================================
   MOBILE MENU PANEL
   ========================================================= */

.hh-mobile-menu-panel {
  position: fixed !important;
  inset: 0 0 0 auto !important;
  z-index: 10001 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  width: 88vw !important;
  max-width: 420px !important;
  padding: 30px 28px 36px !important;
  background: var(--hh-teal-solid) !important;
  transform: translateX(100%) !important;
  transition: transform 0.22s ease !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

body.hh-mobile-menu-open .hh-mobile-menu-panel {
  transform: translateX(0) !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

body.hh-mobile-menu-open {
  overflow: hidden;
}

.hh-mobile-menu-close {
  display: none !important;
  position: relative !important;
  z-index: 10003 !important;
  color: var(--hh-white) !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 40px !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

body.hh-mobile-menu-open .hh-mobile-menu-close {
  display: block !important;
}

.hh-mobile-menu-links {
  position: relative !important;
  top: 0 !important;
  left: 20px !important;
  z-index: 10002 !important;
}

.hh-mobile-menu-panel .elementor-heading-title,
.hh-mobile-menu-panel .elementor-heading-title a {
  color: var(--hh-white) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.8 !important;
  text-decoration: none !important;
}

.hh-mobile-menu-links .hh-button-calendar {
  margin-top: 40px !important;
  border-top: 1px solid rgba(255,255,255,0.2) !important;
}

.hh-mobile-menu-panel .elementor-button {
  width: 100% !important;
  justify-content: center !important;
  margin-top: 40px !important;
}

.hh-mobile-menu-panel .elementor-heading-title a {
  transition: opacity 0.2s ease;
}

@media (max-height: 600px) and (orientation: landscape) {
  .hh-hero-header {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    background: var(--hh-teal-solid) !important;
    box-shadow: var(--hh-shadow-header) !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .hh-hero-header .hh-header-logo img {
    width: 135px !important;
    max-width: 135px !important;
  }
}

/* =========================================================
   BOOKING CALENDAR — BACK / CONFIRM BUTTONS
   ========================================================= */

.wpbc_container.wpbc_form a.wpbc_button_light.hh-wpbc-back,
.wpbc_container.wpbc_form a.wpbc_button_light.hh-wpbc-back:hover,
.wpbc_container.wpbc_form a.wpbc_button_light.hh-wpbc-back:focus {
  background: var(--hh-grey-button) !important;
  background-color: var(--hh-grey-button) !important;
  border-color: var(--hh-grey-button-border) !important;
  color: var(--hh-text-dark) !important;
  box-shadow: none !important;
}

.wpbc_container.wpbc_form .hh-wpbc-confirm input.wpbc_button_light,
.wpbc_container.wpbc_form .hh-wpbc-confirm input.wpbc_button_light:hover,
.wpbc_container.wpbc_form .hh-wpbc-confirm input.wpbc_button_light:focus {
  background: var(--hh-blue) !important;
  background-color: var(--hh-blue) !important;
  border-color: var(--hh-blue) !important;
  color: var(--hh-white) !important;
  box-shadow: var(--hh-shadow-button-blue) !important;
}

/* =========================================================
   BOOKING CALENDAR — STEP 1 MOBILE WIDTH / ALIGNMENT
   ========================================================= */

@media (max-width: 1024px) {
  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc_calendar_wraper {
    width: 100% !important;
    max-width: 330px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
  }

  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc_cal_container,
  .wpbc_container_booking_form .wpbc_wizard_step1 .datepick-inline,
  .wpbc_container_booking_form .wpbc_wizard_step1 .datepick-one-month,
  .wpbc_container_booking_form .wpbc_wizard_step1 table.wpbc_calendar {
    width: 320px !important;
    max-width: 320px !important;
    min-width: 30px !important;
  }
}

@media (min-width: 453px) and (max-width: 767px) {
  .wpbc_container_booking_form .wpbc_wizard_step1,
  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc__row,
  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc_row,
  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc__field,
  .wpbc_container_booking_form .wpbc_wizard_step1 .bfb_element {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc_calendar_wraper,
  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc_calendar_wrapper,
  .wpbc_container_booking_form .wpbc_wizard_step1 .wpbc_cal_container,
  .wpbc_container_booking_form .wpbc_wizard_step1 .datepick-inline,
  .wpbc_container_booking_form .wpbc_wizard_step1 .datepick-one-month {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 768px) {
  .wpbc_container_booking_form .wpbc_wizard_step1 .block_hints.datepick .wpdev_hint_with_text {
    transform: translateX(18px) !important;
  }
}

.wpbc_container_booking_form label.wpbc_inline_checkbox .wpbc_front_end__message_container_right {
  display: none !important;
}

/* =========================================================
   BOOKING CONFIRMATION — COLUMN RATIO
   ========================================================= */

.wpbc_after_booking_thank_you_section .wpbc_ty__content {
  display: grid !important;
  grid-template-columns: 50% 46% !important;
  column-gap: 40px !important;
  align-items: start !important;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__content_text {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__content_text:first-child {
  word-break: normal !important;
  overflow-wrap: normal !important;
}

/* =========================================================
   BOOKING CALENDAR — ADD TO CALENDAR BUTTON
   ========================================================= */

.wpbc_after_booking_thank_you_section .wpbc_ty__container button.hh-add-to-calendar.hh-ical-button,
.wpbc_after_booking_thank_you_section .wpbc_ty__container button.hh-add-to-calendar.hh-ical-button * {
  color: var(--hh-white) !important;
  -webkit-text-fill-color: var(--hh-white) !important;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__container button.hh-add-to-calendar.hh-ical-button {
  padding: 10px 16px !important;
}

.wpbc_after_booking_thank_you_section .wpbc_ty__container button.hh-add-to-calendar.hh-ical-button::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-image: url("/wp-content/uploads/2026/05/calendar-days.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.hh-calendar-options {
  width: 188px;
  margin-top: 12px;
}

.hh-calendar-option {
  display: block;
  width: 188px;
  margin-bottom: 8px;
  padding: 10px 16px !important;
  background: var(--hh-teal);
  color: var(--hh-white) !important;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}

.hh-calendar-option:hover {
  opacity: 0.9;
  color: var(--hh-white) !important;
}

.hh-calendar-option:last-child {
  margin-bottom: 0;
}

.hh-calendar-options p {
  margin: 0 0 4px !important;
}

/* =========================================================
   ELEMENTOR EDITOR SAFETY OVERRIDES
   ---------------------------------------------------------
   Front end is working, so these rules only apply inside the
   Elementor editor. They prevent fixed/sticky header/footer and
   global button rules from distorting the editing canvas.
   ========================================================= */

body.elementor-editor-active .hh-hero-header,
body.elementor-editor-active .hh-solid-header {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  transform: none !important;
}

body.elementor-editor-active .hh-hero-header-inner,
body.elementor-editor-active .hh-solid-header .hh-hero-header-inner {
  max-width: 100% !important;
}

body.elementor-editor-active .hh-header-logo img,
body.elementor-editor-active .hh-hero-header.hh-scrolled .hh-header-logo img,
body.elementor-editor-active .hh-solid-header .hh-header-logo img {
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
}

body.elementor-editor-active .hh-footer img {
  max-width: 320px !important;
  height: auto !important;
}

body.elementor-editor-active .hh-mobile-menu-panel {
  position: relative !important;
  transform: none !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

body.elementor-editor-active .elementor-button,
body.elementor-editor-active .elementor-button:visited,
body.elementor-editor-active .elementor-button:hover,
body.elementor-editor-active .elementor-button:focus {
  -webkit-text-fill-color: currentColor;
}
