/* =====================================================================
   DESIGN TOKENS — single :root for entire site
   ===================================================================== */
:root {
  /* Brand colours */
  --c-brand-1: #0E5F4B;
  --c-brand-2: #D0FFF3;
  --c-brand-3: #2FA4A9;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F0F7F4;
  --c-bg-dark: #0C3A32;
  --c-text: #1E2B28;
  --c-text-inverse: #FFFFFF;
  --c-btn-primary: #F09350;
  --c-btn-hover: #FFA15E;
  --c-btn-text: #FFFFFF;
  --c-link: #0E5F4B;
  --c-link-hover: #327766;
  --c-divider: #D6E5E0;
  
    .legal-page{line-height:1.7}
    .legal-page p{margin:.75rem 0 1rem;line-height:1.7}
    .legal-page h1,.legal-page h2,.legal-page h3,.legal-page h4{line-height:1.3;font-weight:700}
    .legal-page h1{margin:0 0 1.25rem}
    .legal-page h2{margin:1.5rem 0 1rem}
    .legal-page h3{margin:1.25rem 0 .75rem}
    .legal-page h4{margin:1rem 0 .5rem}
    .legal-page ul,.legal-page ol{display:block;margin:.75rem 0 1.25rem 1.5rem;padding-left:1.25rem}
    .legal-page ul{list-style-type:disc}
    .legal-page ol{list-style-type:decimal}
    .legal-page li{display:list-item;margin-bottom:.5rem;line-height:1.6}
    .legal-page li::marker{font-weight:400}
    .legal-page a{text-decoration:underline}
    .legal-page strong{font-weight:700}
    .legal-page hr{margin:2rem 0;border:0;border-top:1px solid currentColor;opacity:.2}
    .legal-page table{width:100%;border-collapse:collapse;margin:1rem 0}
    .legal-page th,.legal-page td{border:1px solid #ddd;padding:.75rem;text-align:left;vertical-align:top}
    .legal-page th{font-weight:700}
    .legal-page blockquote{margin:1rem 0;padding:.75rem 1rem;border-left:4px solid currentColor;opacity:.9}

  /* Highlight / Global primary */
  mark,.highlight,.text-highlight{background:#DDF3EC!important;color:#0A4638!important}::selection{background:#0A4638;color:#fff}::-moz-selection{background:#0A4638;color:#fff}

  /* Derived brand aliases */
  --brand-green: var(--c-brand-1);
  --brand-green-dk: color-mix(in srgb, var(--c-brand-1) 78%, #000);
  --brand-green-lt: color-mix(in srgb, var(--c-brand-2) 60%, var(--c-bg));
  --brand-green-md: color-mix(in srgb, var(--c-divider) 85%, var(--c-brand-1));
  --ph-green: var(--c-brand-1);
  --ph-green-dark: color-mix(in srgb, var(--c-brand-1) 80%, #000);
  --ph-green-pale: color-mix(in srgb, var(--c-brand-2) 55%, var(--c-bg));
  --ph-green-border: var(--c-divider);
  --ph-orange: var(--c-btn-primary);
  --ph-orange-hover: var(--c-btn-hover);
  --ph-blue: #1a56a0;
  --ph-blue-pale: #e8f0fa;
  --ph-purple: #5b3fa0;
  --ph-purple-pale: #f0ecfa;
  --ph-text: var(--c-text);
  --ph-text-muted: color-mix(in srgb, var(--c-text) 65%, #000);
  --ph-border: var(--c-divider);
  --ph-white: var(--c-bg);
  --ph-bg: #f7faf9;

  /* Semantic tokens */
  --btn-primary: var(--c-btn-hover);
  --btn-hover: var(--c-text);
  --text-primary: color-mix(in srgb, var(--c-text) 92%, #000);
  --text-secondary: color-mix(in srgb, var(--c-text) 70%, #000);
  --text-muted: color-mix(in srgb, var(--c-text) 55%, #000);
  --surface: var(--c-bg);
  --surface-alt: color-mix(in srgb, var(--c-bg-alt) 80%, var(--c-bg));
  --border: var(--c-divider);
  --shadow-sm: 0 2px 8px rgba(14, 95, 75, 0.07);
  --shadow-md: 0 8px 32px rgba(14, 95, 75, 0.12);
  --shadow-lg: 0 20px 60px rgba(14, 95, 75, 0.16);
  --shadow-lift: 0 10px 24px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 12px 28px rgba(0, 0, 0, .08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 180ms ease;
  --t-med: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography families */
  --ff-sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ff-inter: 'Inter', sans-serif;
  --ff-montserrat: 'Montserrat', sans-serif;
}

/* =====================================================================
   GLOBAL UTILITIES
   ===================================================================== */
.padding-150 { padding: 100px 0 }   /* NOTE: mobile below */
.padding-100 { padding: 100px 0 }
.padding-50  { padding: 50px 0 }

@media (max-width: 767px) {
  .padding-150 { padding: 90px 0 }
  .padding-100 { padding: 70px 0 }
  .padding-50  { padding: 40px 0 }
  .btn-full    { width: 100% }
}

/* Shared button transitions */
.btn-nav, .btn-primary, .btn-secondary {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
@media (hover: hover) {
  .btn-nav:hover, .btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
  }
}
.btn-nav:active, .btn-primary:active, .btn-secondary:active {
  transform: translateY(0);
  filter: brightness(0.95);
}
.btn-nav:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 94, 184, 0.18);
}

/* =====================================================================
   FINAL SAFE SITE GUTTER — 767px to 1300px
   Adds spacing to main sections, including reviews/team sections,
   without changing actual card padding, slider maths, or inner card layouts.
   ===================================================================== */

@media (min-width:767px) and (max-width:1300px){

  html,
  body{
    overflow-x:hidden!important;
  }

  body{
    --wrp-site-gutter:clamp(18px,2.2vw,32px)!important;
  }

  /* Header / nav */
  .wrp-header-container,
  .wrp-nav-container{
    width:100%!important;
    max-width:1300px!important;
    margin-left:auto!important;
    margin-right:auto!important;
    padding-left:var(--wrp-site-gutter)!important;
    padding-right:var(--wrp-site-gutter)!important;
    box-sizing:border-box!important;
  }

  /*
    Do not pad the full Elementor canvas.
    This avoids white side bars beside coloured sections.
  */
  body .entry-content > .elementor,
  body .page-content > .elementor,
  body .site-main > .elementor,
  body main > .elementor,
  body article > .elementor{
    padding-left:0!important;
    padding-right:0!important;
    box-sizing:border-box!important;
  }

  /*
    Standard top-level sections.
    These get outer spacing only.
  */
  body .entry-content > .elementor > .elementor-element.e-con:not(.elementor-element-9aa9012),
  body .page-content > .elementor > .elementor-element.e-con:not(.elementor-element-9aa9012),
  body .site-main > .elementor > .elementor-element.e-con:not(.elementor-element-9aa9012),
  body main > .elementor > .elementor-element.e-con:not(.elementor-element-9aa9012),
  body article > .elementor > .elementor-element.e-con:not(.elementor-element-9aa9012){
    --padding-left:var(--wrp-site-gutter)!important;
    --padding-right:var(--wrp-site-gutter)!important;
    --padding-inline-start:var(--wrp-site-gutter)!important;
    --padding-inline-end:var(--wrp-site-gutter)!important;
    padding-left:var(--wrp-site-gutter)!important;
    padding-right:var(--wrp-site-gutter)!important;
    padding-inline-start:var(--wrp-site-gutter)!important;
    padding-inline-end:var(--wrp-site-gutter)!important;
    width:100%!important;
    max-width:100%!important;
    box-sizing:border-box!important;
  }

  /*
    Classic Elementor fallback.
  */
  body .entry-content > .elementor > .elementor-section,
  body .page-content > .elementor > .elementor-section,
  body .site-main > .elementor > .elementor-section,
  body main > .elementor > .elementor-section,
  body article > .elementor > .elementor-section{
    padding-left:var(--wrp-site-gutter)!important;
    padding-right:var(--wrp-site-gutter)!important;
    width:100%!important;
    max-width:100%!important;
    box-sizing:border-box!important;
  }

  /*
    IMPORTANT:
    Review slider SECTION spacing.
    This targets the outer section only.
    It does NOT change the cards.
  */
  body .entry-content > .elementor > .elementor-element.e-con:has(.reviews-slider-container),
  body .page-content > .elementor > .elementor-element.e-con:has(.reviews-slider-container),
  body .site-main > .elementor > .elementor-element.e-con:has(.reviews-slider-container),
  body main > .elementor > .elementor-element.e-con:has(.reviews-slider-container),
  body article > .elementor > .elementor-element.e-con:has(.reviews-slider-container){
    --padding-left:var(--wrp-site-gutter)!important;
    --padding-right:var(--wrp-site-gutter)!important;
    --padding-inline-start:var(--wrp-site-gutter)!important;
    --padding-inline-end:var(--wrp-site-gutter)!important;
    padding-left:var(--wrp-site-gutter)!important;
    padding-right:var(--wrp-site-gutter)!important;
    padding-inline-start:var(--wrp-site-gutter)!important;
    padding-inline-end:var(--wrp-site-gutter)!important;
    box-sizing:border-box!important;
  }

  /*
    Team member SECTION spacing.
    This targets the outer section containing the team card only.
    It does NOT change the actual card/container padding.
  */
  body .entry-content > .elementor > .elementor-element.e-con:has(.elementor-element-0dd429b),
  body .page-content > .elementor > .elementor-element.e-con:has(.elementor-element-0dd429b),
  body .site-main > .elementor > .elementor-element.e-con:has(.elementor-element-0dd429b),
  body main > .elementor > .elementor-element.e-con:has(.elementor-element-0dd429b),
  body article > .elementor > .elementor-element.e-con:has(.elementor-element-0dd429b){
    --padding-left:var(--wrp-site-gutter)!important;
    --padding-right:var(--wrp-site-gutter)!important;
    --padding-inline-start:var(--wrp-site-gutter)!important;
    --padding-inline-end:var(--wrp-site-gutter)!important;
    padding-left:var(--wrp-site-gutter)!important;
    padding-right:var(--wrp-site-gutter)!important;
    padding-inline-start:var(--wrp-site-gutter)!important;
    padding-inline-end:var(--wrp-site-gutter)!important;
    box-sizing:border-box!important;
  }

  /*
    Protect review slider internals.
    These must keep original values because the JS calculates movement
    from the card width + 24px spacing.
  */
  .reviews-slider-section,
  .reviews-slider-container,
  .reviews-slider-wrapper,
  .reviews-nav-buttons,
  .reviews-dots{
    box-sizing:border-box!important;
  }

  .reviews-slider-container{
    padding-left:0!important;
    padding-right:0!important;
    padding-inline-start:0!important;
    padding-inline-end:0!important;
  }

  .reviews-slider-card{
    min-width:calc(25% - 24px)!important;
    margin-left:12px!important;
    margin-right:12px!important;
    padding:24px!important;
    box-sizing:border-box!important;
  }

  .reviews-card-header{
    padding-left:86px!important;
  }

  /*
    Protect team card internals.
    Do not apply section gutter to the card itself.
  */
  .elementor-element-0dd429b,
  .elementor-element-0dd429b > .e-con-inner,
  .elementor-element-0dd429b .e-con-inner,
  .elementor-element-0dd429b .e-con,
  .elementor-element-0dd429b .elementor-widget-container{
    box-sizing:border-box!important;
  }

  /*
    Excluded small section.
  */
  .elementor-element-9aa9012{
    --padding-left:initial!important;
    --padding-right:initial!important;
    --padding-inline-start:initial!important;
    --padding-inline-end:initial!important;
    padding-left:initial!important;
    padding-right:initial!important;
    padding-inline-start:initial!important;
    padding-inline-end:initial!important;
  }

  /*
    Section-level custom wrappers only.
    Do not include cards or slider tracks here.
  */
  .treatments-wrapper,
  .wrp-delivery__container,
  .wrp-stats .wrp-stats__inner,
  .wrp-contact-methods,
  .wrp-express,
  .wrp-faqs,
  .scene-wrapper,
  .pay-section{
    padding-left:var(--wrp-site-gutter)!important;
    padding-right:var(--wrp-site-gutter)!important;
    box-sizing:border-box!important;
  }

  /*
    Do not touch card components.
  */
  .ph-card,
  .ph-card-body,
  .wrp-hiw-item,
  .wrp-hiw-content,
  .wrp-delivery-card,
  .assurance__card,
  .wrp-vax-wrap,
  .pay-card{
    box-sizing:border-box!important;
  }

  /*
    Banners stay full-width inside their sections.
  */
  .trx-banner,
  .nhs-banner,
  .rm-banner{
    max-width:100%!important;
    box-sizing:border-box!important;
  }
}

/* =====================================================================
   HEADER / NAV — Top bar + logo + hamburger
   ===================================================================== */
.wrp-main-header {
  padding: 0;
  font-family: var(--ff-montserrat);
  position: sticky;
  top: 0;
  z-index: 999;
  animation: headerSlideDown 0.6s ease-out;
}
.wrp-header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.wrp-header-logo a { display: block; line-height: 0 }
.wrp-logo-img { height: 45px; width: 340px; max-width: 340px; display: block }

.wrp-header-links-desktop { display: flex; align-items: center; gap: 16px }
.wrp-header-link { color: var(--c-bg) !important; text-decoration: none; font-size: 13px; font-weight: 500; padding: 8px 0; transition: opacity 0.2s ease }
.wrp-header-link:hover { color: var(--c-bg) !important; opacity: 0.8 }
.wrp-link-dot { color: rgba(255,255,255,0.4); font-size: 12px; line-height: 1 }

.wrp-hamburger { display: none; flex-direction: column; gap: 5px; background: transparent !important; border: none; cursor: pointer; padding: 8px; z-index: 1001; transition: all 0.3s ease }
.wrp-hamburger:is(:focus, :hover, :active) { outline: none; background: transparent !important }
.wrp-hamburger-line { width: 26px; height: 2.5px; background: var(--c-bg); border-radius: 2px; transition: all 0.3s ease; display: block }
.wrp-hamburger:hover .wrp-hamburger-line { background: rgba(255,255,255,0.8) }

/* Hamburger → X when menu is open */
.wrp-hamburger.is-open .wrp-hamburger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg) }
.wrp-hamburger.is-open .wrp-hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0) }
.wrp-hamburger.is-open .wrp-hamburger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg) }

@media (max-width: 1024px) {
  .wrp-main-header { padding: 14px 0 }
  .wrp-header-container { padding: 0 12px }
  .wrp-logo-img { height: 36px; width: auto; max-width: 280px }
  .wrp-header-links-desktop { display: none }
  .wrp-hamburger { display: flex }
}
@media (max-width: 767px) {
  .wrp-header-container { padding: 0 10px }
  .wrp-logo-img { height: 32px; width: auto; max-width: 220px }
}
@media (max-width: 480px) {
  .wrp-header-container { padding: 0 8px }
  .wrp-logo-img { height: 28px; max-width: 180px }
}

/* ── Navigation bar with mega menu ── */
.wrp-navigation-bar {
  background: transparent;
  border-bottom: none;
  font-family: var(--ff-montserrat);
  position: relative;
  z-index: 998;
}
.wrp-nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
}
.wrp-main-nav { display: flex; gap: 0; align-items: center }
.wrp-nav-item { position: relative }
.wrp-nav-link {
  display: block;
  padding: 12px 18px;
  color: white !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
  border-radius: 8px;
}
.wrp-nav-link:hover { color: white !important; background: rgba(255,255,255,0.15) }

/* Dropdown chevron */
.wrp-nav-item.wrp-has-dropdown > .wrp-nav-link::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid white;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.wrp-nav-item.wrp-has-dropdown:hover > .wrp-nav-link::after { transform: rotate(180deg) }

/* Mega menu */
.wrp-mega-menu {
  position: absolute;
  top: 100%; left: 0;
  transform: translateY(10px);
  background: #fcfcfc;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  padding: 32px;
  width: 1300px;          /* ← was: calc(100vw - 60px) */
  max-width: 1300px;      /* ← was: 1340px              */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 1000;
  margin-top: 8px;
}
.wrp-nav-item.wrp-has-dropdown:hover .wrp-mega-menu { opacity: 1; visibility: visible; transform: translateY(0) }

.wrp-mega-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  row-gap: 20px;
}
.wrp-section-header {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #6b7280;
  padding-bottom: 6px;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: -4px;
}

/* Mega menu link — also mirrors .hero-banner-btn structure */
.wrp-mega-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #4b5563;
  text-decoration: none;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  background: #f9fafb;
  border: 2px solid transparent;
}
.wrp-mega-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--c-brand-1);
  transform: scaleY(0);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  transform-origin: bottom;
}
.wrp-mega-link:hover::before { transform: scaleY(1); transform-origin: top }
.wrp-mega-link:hover {
  background: white;
  border-color: var(--c-brand-1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14,95,75,0.12);
}

/* Icon wrapper (mega menu + hero btn shared) */
.wrp-icon-wrapper {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--c-brand-1) 0%, #0a4a3a 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 12px rgba(14,95,75,0.2);
}
.wrp-icon-wrapper.wrp-private {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  box-shadow: 0 4px 12px rgba(124,58,237,0.2);
}
.wrp-mega-link:hover .wrp-icon-wrapper { transform: scale(1.1) rotate(3deg); box-shadow: 0 6px 16px rgba(14,95,75,0.3) }
.wrp-mega-link:hover .wrp-icon-wrapper.wrp-private { box-shadow: 0 6px 16px rgba(124,58,237,0.3) }
.wrp-icon-wrapper svg { max-width: 28px; max-height: 24px; stroke: white }

.wrp-link-content { display: flex; flex-direction: column; gap: 4px; flex: 1 }
.wrp-link-title { font-size: 14px; font-weight: 700; color: #1f2937; transition: color 0.25s ease; line-height: 1.3 }
.wrp-mega-link:hover .wrp-link-title { color: var(--c-brand-1) }
.wrp-link-desc { font-size: 12px; color: #6b7280; line-height: 1.4; transition: color 0.25s ease }
.wrp-mega-link:hover .wrp-link-desc { color: #4b5563 }

/* View all link */
.wrp-mega-link.wrp-view-all .wrp-icon-wrapper { background: linear-gradient(135deg, #059669 0%, #047857 100%) }
.wrp-mega-link.wrp-view-all { background: linear-gradient(135deg, rgba(5,150,105,0.08) 0%, rgba(4,120,87,0.08) 100%); border-color: rgba(5,150,105,0.2) }
.wrp-mega-link.wrp-view-all:hover { border-color: #059669; background: white }
.wrp-mega-link.wrp-view-all:hover .wrp-link-title { color: #059669 }

/* Stagger animation */
.wrp-nav-item.wrp-has-dropdown:hover .wrp-mega-link:nth-child(2) { transition-delay: 0.03s }
.wrp-nav-item.wrp-has-dropdown:hover .wrp-mega-link:nth-child(3) { transition-delay: 0.06s }
.wrp-nav-item.wrp-has-dropdown:hover .wrp-mega-link:nth-child(4) { transition-delay: 0.09s }
.wrp-nav-item.wrp-has-dropdown:hover .wrp-mega-link:nth-child(6) { transition-delay: 0.12s }
.wrp-nav-item.wrp-has-dropdown:hover .wrp-mega-link:nth-child(7) { transition-delay: 0.15s }
.wrp-nav-item.wrp-has-dropdown:hover .wrp-mega-link:nth-child(8) { transition-delay: 0.18s }
.wrp-nav-item.wrp-has-dropdown:hover .wrp-mega-link:nth-child(9) { transition-delay: 0.21s }

/* Account button */
.wrp-account-button {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  color: white !important;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid rgba(255,255,255,0.2);
}
.wrp-account-button:hover { background: rgba(255,255,255,0.25); color: white !important; border-color: rgba(255,255,255,0.3) }
.wrp-account-button svg { width: 18px; height: 18px; flex-shrink: 0 }

@media (max-width: 1024px) { .wrp-navigation-bar { display: none } }

/* Clean Breadcrumb / Back to Home Link */
.wrp-breadcrumb{font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:14px;line-height:1.4;margin:0;padding:0}.wrp-breadcrumb__list{display:flex;align-items:center;gap:8px;list-style:none;margin:0;padding:0}.wrp-breadcrumb__item{position:relative;display:flex;align-items:center;gap:8px}.wrp-breadcrumb__item::after{content:"";position:absolute;left:0;bottom:-3px;width:100%;height:1px;background:#fff;transform:scaleX(0);transform-origin:left;transition:transform .25s ease}.wrp-breadcrumb__item:hover::after,.wrp-breadcrumb__item:focus-within::after{transform:scaleX(1)}.wrp-breadcrumb__icon{color:#fff;font-size:15px;line-height:1}.wrp-breadcrumb__link{color:#fff;text-decoration:none;font-weight:500}.wrp-breadcrumb__link:hover,.wrp-breadcrumb__link:focus{color:#fff}.wrp-breadcrumb__link:focus{outline:2px solid rgba(255,255,255,.75);outline-offset:4px;border-radius:3px}

/* =====================================================================
   MOBILE FLYOUT MENU — .wrp-mobile-menu
   Injected via Code Snippets plugin (HTML only, no inline style/script)
   ===================================================================== */

/* Overlay */
.wrp-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: opacity 0.4s ease;
}
.wrp-menu-overlay.active { opacity: 1; visibility: visible }

/* Flyout panel */
.wrp-mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -5px 0 30px rgba(0,0,0,0.2);
  overflow: hidden;
}
.wrp-mobile-menu.active { right: 0 }
body.wrp-menu-open { overflow: hidden }

/* Panel header */
.wrp-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--c-brand-1);
  border-bottom: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  min-height: 85px;
}
.wrp-mobile-logo { flex: 1 }
.wrp-mobile-logo-img { height: 70px; width: auto; max-width: 420px; display: block }

/* Close button */
.wrp-menu-close {
  background: rgba(255,255,255,0.25) !important;
  border: 2px solid rgba(255,255,255,0.45) !important;
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 20px;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wrp-menu-close:hover  { background: rgba(255,255,255,0.4) !important; transform: scale(1.05) }
.wrp-menu-close:active { transform: scale(0.95) }
.wrp-menu-close:focus  { outline: none }

/* Force close SVG icon to show */
.wrp-menu-close svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
  pointer-events: none;
}

.wrp-menu-close svg line {
  stroke: #ffffff !important;
  stroke-width: 3 !important;
  stroke-linecap: round !important;
}

/* Scrollable nav area */
.wrp-mobile-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

/* Featured All Treatments block */
.wrp-featured-section { padding: 16px 20px; background: #fff; flex-shrink: 0 }
.wrp-featured-dropdown {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(14,95,75,0.12);
  border: 2px solid rgba(14,95,75,0.10);
}
.wrp-featured-button {
  width: 100%;
  background: linear-gradient(135deg, var(--c-brand-1) 0%, #0a4a3a 100%) !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.wrp-featured-button:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(14,95,75,0.2) !important }
.wrp-featured-button:active { transform: translateY(0) }
.wrp-featured-button:focus  { outline: none }
.wrp-featured-button-content {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; min-height: 62px;
}
.wrp-featured-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.wrp-featured-text { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; flex: 1 }
.wrp-featured-title    { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.2px }
.wrp-featured-subtitle { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.85); line-height: 1.3 }
.wrp-dropdown-arrow { flex-shrink: 0; transition: transform 0.3s ease }
.wrp-mobile-dropdown.active .wrp-dropdown-arrow { transform: rotate(180deg) }

/* Dropdown content */
.wrp-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  background: #f9fafb;
}
.wrp-mobile-dropdown.active .wrp-dropdown-content { max-height: 700px }

.wrp-dropdown-section-header {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: #6b7280;
  padding: 10px 16px 6px 28px;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}
.wrp-dropdown-section-header:first-child { padding-top: 12px }

.wrp-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 28px;
  color: #4b5563 !important;
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  border-left: 4px solid transparent;
  background: transparent !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.wrp-dropdown-item:hover {
  background: #fff !important;
  border-left-color: var(--c-brand-1);
  color: var(--c-brand-1) !important;
  padding-left: 32px;
}

/* Small icon inside dropdown */
.wrp-mobile-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--c-brand-1) 0%, #0a4a3a 100%);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.wrp-mobile-icon.wrp-private { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) }
.wrp-dropdown-item:hover .wrp-mobile-icon { transform: scale(1.1) rotate(4deg) }
.wrp-mobile-icon svg { stroke: white; display: block }

/* View All row */
.wrp-dropdown-item.wrp-view-all-mobile {
  margin-top: 6px;
  border-top: 2px solid #e5e7eb;
  padding-top: 12px;
  background: #f3f4f6 !important;
}
.wrp-dropdown-item.wrp-view-all-mobile .wrp-mobile-icon { background: linear-gradient(135deg, #059669 0%, #047857 100%) }
.wrp-dropdown-item.wrp-view-all-mobile:hover { background: #fff !important }

/* Nav divider */
.wrp-nav-divider { height: 6px; background: #f3f4f6; flex-shrink: 0 }

/* Regular nav links */
.wrp-mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  color: #1f2937 !important;
  text-decoration: none;
  font-size: 15px; font-weight: 500;
  border-left: 4px solid transparent;
  border-bottom: 1px solid #f3f4f6;
  background: transparent !important;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.wrp-mobile-link:focus  { outline: none }
.wrp-mobile-link:hover  { background: #f9fafb !important; border-left-color: var(--c-brand-1); color: var(--c-brand-1) !important }
.wrp-mobile-link:active { background: #f3f4f6 !important }
.wrp-mobile-link svg { stroke: #9ca3af; flex-shrink: 0; transition: transform 0.2s ease, stroke 0.2s ease }
.wrp-mobile-link:hover svg { transform: translateX(4px); stroke: var(--c-brand-1) }

/* CTA buttons */
.wrp-mobile-cta {
  padding: 14px 20px;
  background: #f9fafb;
  border-top: 2px solid #e5e7eb;
  display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0;
}
.wrp-mobile-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px; font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.wrp-cta-primary {
  background: linear-gradient(135deg, var(--c-brand-1) 0%, #0a4a3a 100%) !important;
  color: #fff !important; border: none !important;
  box-shadow: 0 3px 10px rgba(14,95,75,0.25);
}
.wrp-cta-primary:hover  { background: linear-gradient(135deg, #0a4a3a 0%, #083828 100%) !important; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(14,95,75,0.35) }
.wrp-cta-primary:active { transform: translateY(0) }
.wrp-cta-secondary {
  background: #fff !important;
  color: var(--c-brand-1) !important;
  border: 2px solid var(--c-brand-1) !important;
}
.wrp-cta-secondary:hover  { background: var(--c-brand-1) !important; color: #fff !important; transform: translateY(-2px) }
.wrp-cta-secondary:active { background: #0a4a3a !important; color: #fff !important; transform: translateY(0) }
.wrp-cta-secondary svg { transition: stroke 0.2s ease }
.wrp-cta-secondary:hover svg { stroke: #fff }

/* Show menu only ≤1024px */
@media (max-width: 1024px) {
  .wrp-mobile-menu  { display: flex }
  .wrp-menu-overlay { display: block }
  .wrp-mobile-menu-header { padding: 16px; min-height: 80px }
  .wrp-mobile-logo-img { height: 62px; max-width: 380px }
  .wrp-menu-close { width: 40px; height: 40px; margin-left: 16px }
  .wrp-featured-section { padding: 14px 16px }
  .wrp-featured-button-content { padding: 12px 14px; min-height: 58px }
  .wrp-mobile-link { padding: 11px 16px; font-size: 14px }
  .wrp-dropdown-section-header { padding: 9px 14px 5px 24px }
  .wrp-dropdown-item { padding: 9px 14px 9px 24px; font-size: 13px }
  .wrp-dropdown-item:hover { padding-left: 28px }
  .wrp-mobile-cta { padding: 12px 16px }
  .wrp-mobile-cta-btn { padding: 11px 16px; font-size: 14px }
}
@media (max-width: 767px) {
  .wrp-mobile-menu-header { padding: 14px 12px; min-height: 75px }
  .wrp-mobile-logo-img { height: 56px; max-width: 340px }
  .wrp-menu-close { width: 38px; height: 38px; margin-left: 14px }
  .wrp-featured-section { padding: 12px }
  .wrp-featured-button-content { padding: 11px 12px; min-height: 54px }
  .wrp-featured-icon { width: 38px; height: 38px }
  .wrp-featured-title { font-size: 16px }
  .wrp-featured-subtitle { font-size: 11px }
  .wrp-mobile-link { padding: 10px 12px }
  .wrp-dropdown-section-header { padding: 8px 12px 5px 20px; font-size: 10px }
  .wrp-dropdown-item { padding: 8px 12px 8px 20px; font-size: 13px }
  .wrp-dropdown-item:hover { padding-left: 24px }
  .wrp-mobile-icon { width: 28px; height: 28px }
  .wrp-mobile-cta { padding: 11px 12px }
  .wrp-mobile-cta-btn { padding: 10px 14px; font-size: 14px }
}
@media (max-width: 480px) {
  .wrp-mobile-menu-header { padding: 12px 10px; min-height: 68px }
  .wrp-mobile-logo-img { height: 50px; max-width: 280px }
  .wrp-menu-close { width: 36px; height: 36px; margin-left: 12px }
  .wrp-featured-section { padding: 10px }
  .wrp-featured-button-content { padding: 10px 11px; min-height: 50px; gap: 10px }
  .wrp-featured-icon { width: 36px; height: 36px }
  .wrp-featured-title { font-size: 15px }
  .wrp-featured-subtitle { font-size: 10px }
  .wrp-mobile-link { padding: 9px 10px; font-size: 13px }
  .wrp-dropdown-section-header { padding: 7px 10px 4px 18px }
  .wrp-dropdown-item { padding: 7px 10px 7px 18px; font-size: 12px }
  .wrp-dropdown-item:hover { padding-left: 22px }
  .wrp-mobile-icon { width: 26px; height: 26px }
  .wrp-mobile-cta { padding: 10px }
  .wrp-mobile-cta-btn { padding: 9px 12px; font-size: 13px }
}
@media (prefers-reduced-motion: reduce) {
  .wrp-mobile-menu, .wrp-menu-overlay, .wrp-dropdown-content, .wrp-dropdown-arrow { transition: none !important }
}

/* =====================================================================
   HERO BANNER — image slider + floating icons
   ===================================================================== */

.wrp-heroart {
  position: relative;
  width: 90%;
  max-width: 820px;
  margin: 0 auto;
  margin-top: auto;
  isolation: isolate;
  overflow: visible;
  box-sizing: border-box;
}

.wrp-heroimg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-width: 80%;
  margin: 0 auto;
  object-fit: contain;
  object-position: bottom center;
  opacity: 0;
  transform: translateY(40px);
  transition: none;
  box-sizing: border-box;
}

.wrp-heroimg:first-child {
  position: relative;
}

.wrp-heroimg.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.wrp-heroimg.exiting {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.8s ease-out;
}

.wrp-heroicon {
  position: absolute;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.16));
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  animation: wrpIconEntrance 0.8s ease-out forwards, wrpFloat 7.2s ease-in-out infinite;
  box-sizing: border-box;
}

.wrp-h1 {
  top: 16%;
  left: 0;
  animation-delay: 0.2s, 0.8s;
  animation-duration: 0.8s, 6.6s;
}

.wrp-h2 {
  top: 10%;
  right: 2%;
  animation-delay: 0.4s, 0.6s;
  animation-duration: 0.8s, 7.5s;
}

.wrp-h3 {
  bottom: 20%;
  right: 12%;
  animation-delay: 0.6s, 0.4s;
  animation-duration: 0.8s, 7.1s;
}

@keyframes wrpIconEntrance {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 0.98;
    transform: translateY(0);
  }
}

@keyframes wrpFloat {
  0%,
  100% {
    transform: translate3d(0,0,0);
  }

  50% {
    transform: translate3d(0,-14px,0);
  }
}

@media (max-width: 1024px) {
  .wrp-heroart {
    max-width: 700px;
  }

  .wrp-heroicon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .wrp-heroart {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .wrp-heroimg {
    max-width: 88%;
  }

  .wrp-heroicon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.12));
  }

  .wrp-h1 {
    top: 12%;
    left: 12%;
  }

  .wrp-h2 {
    top: 8%;
    right: 12%;
  }

  .wrp-h3 {
    bottom: 14%;
    right: 16%;
  }
}

@media (max-width: 420px) {
  .wrp-heroart {
    padding-left: 14px;
    padding-right: 14px;
  }

  .wrp-heroimg {
    max-width: 90%;
  }

  .wrp-heroicon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .wrp-h1 {
    left: 10%;
  }

  .wrp-h2 {
    right: 10%;
  }

  .wrp-h3 {
    right: 14%;
  }
}

/* =====================================================================
   STEPS — sidebar step-by-step process
   ===================================================================== */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 340px }
.step { display: flex; align-items: center; gap: 14px; padding: 13px 0; position: relative }
.step:not(:last-child)::after {
  content: ''; position: absolute; left: 15px; top: calc(50% + 15px);
  width: 1.5px; height: calc(100% - 16px); background: #c8dede;
}
.step-number {
  width: 30px; height: 30px; border-radius: 50%; background: #1a6b6b;
  color: #fff; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-text { font-size: 14px; color: #2c3440; line-height: 1.4 }

/* =====================================================================
   HERO BANNER BUTTON — .hero-banner-btn
   ===================================================================== */
.hero-banner-btn {
  display: flex; align-items: flex-start; gap: 14px;
  color: #4b5563; text-decoration: none;
  padding: 16px 20px; border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
  background: #f9fafb;
  border: 2px solid var(--c-brand-1);
  min-width: 260px;
}
.hero-banner-btn::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--c-brand-1); transform: scaleY(0);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1); transform-origin: bottom;
}
.hero-banner-btn:hover::before { transform: scaleY(1); transform-origin: top }
.hero-banner-btn:hover { background: white; border-color: var(--c-brand-1); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(14,95,75,0.12) }

.hbb-icon {
  flex-shrink: 0; width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--c-brand-1) 0%, #0a4a3a 100%);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 12px rgba(14,95,75,0.2); overflow: hidden;
}
.hbb-icon img { width: 38px; height: 38px; object-fit: contain }
.hero-banner-btn:hover .hbb-icon { transform: scale(1.1) rotate(3deg); box-shadow: 0 6px 16px rgba(14,95,75,0.3) }

.hbb-text { display: flex; flex-direction: column; gap: 4px; flex: 1 }
.hbb-title { font-size: 14px; font-weight: 700; color: #1f2937; transition: color 0.25s ease; line-height: 1.3 }
.hero-banner-btn:hover .hbb-title { color: var(--c-brand-1) }
.hbb-divider { display: none }
.hbb-sub { font-size: 12px; color: #6b7280; line-height: 1.4; transition: color 0.25s ease }
.hero-banner-btn:hover .hbb-sub { color: #4b5563 }

/* =====================================================================
   REVIEW BADGE — .wrp-rating
   ===================================================================== */
.wrp-rating, .wrp-rating * { text-decoration: none !important }
.wrp-rating {
  display: inline-flex; align-items: center;
  border-radius: 999px; border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.80); backdrop-filter: saturate(140%) blur(6px); overflow: hidden;
}
.wrp-rating-left { display: flex; align-items: baseline; gap: 6px; padding: 10px 12px; border-right: 1px solid rgba(0,0,0,.08) }
.wrp-rating-num  { font-weight: 900; line-height: 1 }
.wrp-rating-out  { opacity: .75; font-weight: 700; line-height: 1 }
.wrp-rating-right { display: flex; align-items: center; gap: 10px; padding: 10px 14px }
.wrp-rating-stars { display: inline-flex; gap: 3px; line-height: 1; color: #f4c430 }
.wrp-rating-copy  { display: flex; flex-direction: column; gap: 2px; line-height: 1.1 }
.wrp-rating-top   { font-weight: 800; font-size: 13px }
.wrp-rating-sub   { font-size: 12px; opacity: .75 }

/* =====================================================================
   TRUST BADGES — animated pulse dot
   ===================================================================== */
.trust-badges {
  display: flex !important; align-items: center !important; flex-wrap: wrap !important;
  gap: 24px !important; margin: 0 !important; padding: 0 !important;
  background: transparent !important; list-style: none !important;
}
.trust-badge { display: flex !important; align-items: center !important; gap: 8px !important; margin: 0 !important; padding: 0 !important; background: transparent !important }
.trust-badge__dot {
  position: relative !important; width: 8px !important; height: 8px !important;
  border-radius: 50% !important; background: var(--c-brand-1) !important;
  flex-shrink: 0 !important; display: block !important;
}
.trust-badge__dot::before {
  content: '' !important; position: absolute !important; inset: -4px !important;
  border-radius: 50% !important; border: 1.5px solid var(--c-brand-1) !important;
  opacity: 0 !important; animation: trustPulse 2.4s ease-out infinite !important;
}
.trust-badge:nth-child(2) .trust-badge__dot::before { animation-delay: 1.2s !important }
@keyframes trustPulse {
  0%   { transform: scale(0.6); opacity: 0.7 }
  70%  { transform: scale(2);   opacity: 0 }
  100% { transform: scale(2);   opacity: 0 }
}
.trust-badge__text {
  font-family: var(--ff-inter) !important; font-size: 13px !important;
  font-weight: 500 !important; color: var(--c-text) !important; line-height: 1.4 !important;
  white-space: nowrap !important; margin: 0 !important; padding: 0 !important; background: transparent !important;
}
.trust-badges--light .trust-badge__text { color: var(--c-bg) !important }
.trust-badges--light .trust-badge__dot  { background: var(--c-bg) !important }
.trust-badges--light .trust-badge__dot::before { border-color: var(--c-bg) !important }
@media (max-width: 480px) { .trust-badges { gap: 16px !important } .trust-badge__text { font-size: 12px !important } }

/* =====================================================================
   BADGES — pill style (.wrp-page-badge / .wrp-page-badge-alt)
   ===================================================================== */
.wrp-page-badge, .wrp-page-badge * ,
.wrp-page-badge-alt, .wrp-page-badge-alt * { box-sizing: border-box }

.wrp-page-badge, .wrp-page-badge-alt {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0;
}
.wrp-page-badge     { background: #fff4e9; color: #ff6a2b }
.wrp-page-badge-alt { background: var(--c-link-hover); color: var(--c-bg) }

/* =====================================================================
   SAFETY / CLINICAL CHECK CARDS — .wrp-check
   ===================================================================== */
.wrp-check {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; border-radius: 16px;
  background: rgba(255,255,255,.92); border: 1px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow-card);
}
.wrp-check-ic { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.04); color: var(--e-global-color-primary) }
.wrp-check-t  { font-weight: 800; font-size: 15px; margin-top: 2px }
.wrp-check-s  { font-size: 13px; line-height: 1.45; opacity: .82; margin-top: 4px }

/* =====================================================================
   ABOUT — LEGAL INFO CARDS
   ===================================================================== */
.wrp-aboutlegal-scope  { gap: 18px }
.wrp-aboutlegal-top    { gap: 10px; max-width: 860px }
.wrp-aboutlegal-top .elementor-widget-text-editor p { margin: 0; color: rgba(15,23,42,.72); line-height: 1.7; font-weight: 550 }
.wrp-aboutlegal-grid   { gap: 18px }

.wrp-aboutlegal-card,
.wrp-aboutlegal-reg {
  background: var(--c-bg); border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px; padding: 18px; gap: 10px;
  box-shadow: 0 14px 28px rgba(15,23,42,.06);
}
.wrp-aboutlegal-reg { margin-top: 6px; gap: 12px }
.wrp-aboutlegal-card .elementor-widget-heading,
.wrp-aboutlegal-reg .elementor-widget-heading  { padding-bottom: 10px; border-bottom: 1px solid rgba(15,23,42,.14) }

.wrp-aboutlegal-lines p { margin: 0 0 12px; line-height: 1.75; color: rgba(15,23,42,.78); font-weight: 560 }
.wrp-aboutlegal-lines a { color: var(--e-global-color-721b164); text-decoration: underline }

.wrp-aboutlegal-pres { margin-top: 26px; gap: 12px }
.wrp-aboutlegal-pres .elementor-widget-heading { padding-bottom: 10px; border-bottom: 1px solid rgba(15,23,42,.14) }
.wrp-aboutlegal-note { margin: 0 0 10px; line-height: 1.75; color: rgba(15,23,42,.74); font-weight: 560; max-width: 920px }

.wrp-pres-list { margin: 8px 0 0; padding-left: 18px; column-count: 3; column-gap: 34px }
.wrp-pres-list li { break-inside: avoid; margin: 0 0 10px; color: rgba(15,23,42,.78); font-weight: 650 }
@media (max-width: 1024px) { .wrp-pres-list { column-count: 2 } }
@media (max-width: 767px) {
  .wrp-aboutlegal-card, .wrp-aboutlegal-reg { padding: 16px }
  .wrp-pres-list { column-count: 1 }
}

/* =============================================
   ASSURANCE CARDS SECTION
   Brand colours: #1a3a2a (dark green), #e8834a (orange)
   Font: Inter (pre-installed)
   ============================================= */

/* Section wrapper */
.assurance {
  padding: 48px 40px;
  font-family: 'Inter', sans-serif;
}

/* Inner max-width container */
.assurance__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 4-column card grid */
.assurance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Individual card */
.assurance__card {
  background: #ffffff;
  border: 1px solid #ddeee5;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Icon circle */
.assurance__icon {
  width: 40px;
  height: 40px;
  background: #e4f2eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card title */
.assurance__card-title {
  color: #1a3a2a;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* Card body text */
.assurance__card-text {
  color: #555555;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive: 2 cols on tablet */
@media (max-width: 768px) {
  .assurance__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 col on mobile */
@media (max-width: 480px) {
  .assurance {
    padding: 36px 20px;
  }
  .assurance__grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   TREATMENTS BANNER — .trx-banner
   ===================================================================== */
.trx-banner {
  width: 100%; max-width: 1300px; margin: 0 auto;
  border-radius: 12px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 16px 56px rgba(0,0,0,.22), 0 2px 8px rgba(0,0,0,.12);
  -webkit-font-smoothing: antialiased;
}
.trx-banner__left {
  background: linear-gradient(135deg, #0C3A32 0%, var(--c-brand-1) 60%, #0a5244 100%);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.trx-banner__left::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(47,164,169,.10) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.trx-banner__left::after {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--c-brand-3), rgba(47,164,169,0));
  pointer-events: none;
}
.trx-banner__body { display: grid; grid-template-columns: minmax(0,1fr) 1px 120px; flex: 1; position: relative; z-index: 1 }
.trx-banner__copy {
  padding: 2.6rem 3rem 2rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: .75rem;
}
.trx-banner__copy .wrp-page-badge-alt {
  display: inline-block !important; width: auto !important; max-width: none !important;
  white-space: nowrap !important; align-self: flex-start !important;
}
.trx-banner__heading { font-size: 40px; font-weight: 700; letter-spacing: -.04em; line-height: 1.15; color: #fff; margin: 0 }
.trx-banner__sub     { font-size: .775rem; font-weight: 400; line-height: 1.70; color: rgba(255,255,255,.70); margin: 0 }
.trx-banner__divider { background: rgba(255,255,255,.07); margin: 1.8rem 0 }
.trx-banner__stats   { padding: 2rem 1.5rem; display: flex; flex-direction: column; justify-content: center }
.trx-banner__stat {
  padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; transition: padding-left .18s ease; cursor: default;
}
.trx-banner__stat:first-child { border-top: 1px solid rgba(255,255,255,.06) }
.trx-banner__stat:hover        { padding-left: 4px }
.trx-banner__stat-num { font-size: 1.2rem; font-weight: 700; letter-spacing: -.05em; color: #fff; line-height: 1; margin-bottom: .2rem }
.trx-banner__stat-lbl { font-size: .58rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.40) }

.trx-banner__footer {
  background: rgba(0,0,0,.18); border-top: 1px solid rgba(255,255,255,.07);
  padding: .9rem 2.4rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; position: relative; z-index: 1;
}
.trx-banner__tags { display: flex; align-items: center; gap: .45rem; flex-shrink: 0 }
.trx-banner__tag {
  font-size: .60rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.45); background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10); border-radius: 4px;
  padding: .24rem .6rem; white-space: nowrap;
}
.trx-banner__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--c-btn-primary); color: #fff !important; text-decoration: none;
  font-size: .73rem; font-weight: 600; letter-spacing: .02em;
  padding: 12px 40px !important; border-radius: 6px; white-space: nowrap;
  transition: background .18s ease, transform .18s ease;
}
.trx-banner__cta:hover, .trx-banner__cta:focus, .trx-banner__cta:active, .trx-banner__cta:visited {
  color: #fff !important; background: var(--c-btn-hover); transform: translateY(-4px);
}
.trx-banner__cta svg { flex-shrink: 0 }

.trx-banner__right { position: relative; overflow: hidden; min-height: 220px }
.trx-banner__right img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%; display: block;
  filter: saturate(.78) brightness(.82);
}
.trx-banner__right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, #0C3A32 0%, rgba(12,58,50,.55) 30%, rgba(12,58,50,.15) 60%, transparent 85%);
  z-index: 1; pointer-events: none;
}

/* GPhC badge */
.trx-banner__badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem; width: auto; white-space: nowrap;
  background: rgba(12,58,50,.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(47,164,169,.28); border-radius: 6px; padding: .5rem .8rem;
  z-index: 2; display: flex; align-items: center; gap: .6rem;
  opacity: 0; transform: translateY(5px); transition: opacity .5s .35s, transform .5s .35s;
}
.trx-banner--visible .trx-banner__badge { opacity: 1; transform: translateY(0) }
.trx-banner__badge-icon {
  width: 26px; height: 26px; border-radius: 4px;
  background: rgba(47,164,169,.18); border: 1px solid rgba(47,164,169,.38);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trx-banner__badge-top { font-size: .55rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .1rem }
.trx-banner__badge-val { font-size: .73rem; font-weight: 600; color: #fff }

@media (max-width: 767px) {
  .trx-banner { grid-template-columns: 1fr; border-radius: 0 }
  .trx-banner__right, .trx-banner__divider, .trx-banner__stats, .trx-banner__tags { display: none }
  .trx-banner__body   { grid-template-columns: 1fr }
  .trx-banner__copy   { padding: 1.8rem 1.6rem 1.4rem }
  .trx-banner__sub    { max-width: 100% }
  .trx-banner__footer { padding: .85rem 1.6rem }
  .trx-banner__cta    { width: 100%; justify-content: center }
}

/* Hide CTA / justify footer for specific banner variants */
.trx-banner--alcohol-rx .trx-banner__cta,
.trx-banner--wl-rx .trx-banner__cta,
.trx-banner--ed-rx .trx-banner__cta,
.trx-banner--pd-rx .trx-banner__cta,
.trx-banner--tv .trx-banner__cta,
.trx-banner--b12 .trx-banner__cta,
.trx-banner--pf .trx-banner__cta { display: none }

.trx-banner--alcohol-rx .trx-banner__footer,
.trx-banner--wl-rx .trx-banner__footer,
.trx-banner--ed-rx .trx-banner__footer,
.trx-banner--pd-rx .trx-banner__footer,
.trx-banner--tv .trx-banner__footer,
.trx-banner--b12 .trx-banner__footer,
.trx-banner--pf .trx-banner__footer { justify-content: flex-start }

/* =====================================================================
   ALCOHOL DOSE CALCULATOR — .adc-card
   ===================================================================== */
.adc-card {
  font-family: var(--ff-inter); -webkit-font-smoothing: antialiased;
  display: grid; grid-template-columns: 1fr auto 1fr;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  width: 100%; max-width: 800px;
}
.adc-panel       { padding: 24px 28px; display: flex; flex-direction: column; gap: 12px }
.adc-panel--right { background: var(--surface-alt); justify-content: center }
.adc-vdivider    { width: 1px; background: var(--border); margin: 20px 0 }

.adc-eyebrow     { display: flex; align-items: center; gap: 6px; font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--c-brand-1) }
.adc-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-btn-primary); flex-shrink: 0; animation: adc-pulse 1.6s ease-out infinite }
@keyframes adc-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(240,147,80,.55) }
  70%  { box-shadow: 0 0 0 6px rgba(240,147,80,0)   }
  100% { box-shadow: 0 0 0 0   rgba(240,147,80,0)   }
}

.adc-units-row   { display: flex; align-items: baseline; gap: 5px; line-height: 1 }
.adc-units-num   { font-size: 2.6rem; font-weight: 800; letter-spacing: -.04em; color: var(--c-brand-1) }
.adc-units-label { font-size: .82rem; font-weight: 500; color: var(--text-muted) }

/* Shared slider base */
.adc-slider, .wlc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 999px; outline: none; cursor: pointer;
}
.adc-slider { background: var(--brand-green-md) }
.wlc-slider { height: 5px; background: rgba(14,95,75,.12) }

.adc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-btn-primary); border: 2px solid var(--c-bg);
  box-shadow: 0 2px 8px rgba(240,147,80,.40); cursor: grab;
  transition: transform var(--t-fast);
}
.adc-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15) }
.adc-slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--c-btn-primary); border: 2px solid var(--c-bg); cursor: grab }

.adc-slider-bounds { display: flex; justify-content: space-between; font-size: .62rem; color: var(--text-secondary); font-weight: 500; margin-top: -6px }

.adc-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-btn-primary); color: var(--c-btn-text);
  font-family: var(--ff-inter); font-size: .75rem; font-weight: 600;
  padding: 10px 22px; border-radius: var(--radius-sm);
  border: none; box-shadow: var(--shadow-sm); cursor: pointer; text-decoration: none;
  width: fit-content; transition: background var(--t-fast), transform var(--t-fast);
}
.adc-cta:hover { background: var(--c-btn-hover); transform: translateY(-1px); color: var(--c-btn-text) }

.adc-result-label { font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted) }
.adc-bars-wrap    { display: flex; flex-direction: column; gap: 10px }
.adc-bar-row      { display: flex; align-items: center; gap: 10px }
.adc-bar-row-label { font-size: .65rem; font-weight: 600; color: var(--text-muted); width: 68px; flex-shrink: 0; line-height: 1.3 }
.adc-bar-track    { flex: 1; height: 8px; background: var(--brand-green-md); border-radius: 999px; overflow: hidden }
.adc-bar-fill     { height: 100%; border-radius: 999px; transition: width var(--t-med) }
.adc-bar-fill--before { background: var(--brand-green-lt) }
.adc-bar-fill--after  { background: linear-gradient(90deg, var(--c-brand-1), var(--c-brand-3)) }
.adc-bar-val      { font-size: .70rem; font-weight: 700; color: var(--text-primary); width: 32px; text-align: right; flex-shrink: 0 }
.adc-result-text  { font-size: .74rem; color: var(--text-muted); line-height: 1.55; min-height: 2.4em }
.adc-result-text strong { color: var(--text-primary); font-weight: 700 }
.adc-disclaimer   { font-size: .58rem; color: var(--text-secondary); line-height: 1.5 }

@media (max-width: 580px) {
  .adc-card { grid-template-columns: 1fr }
  .adc-vdivider { width: auto; height: 1px; margin: 0 20px }
  .adc-panel { padding: 20px }
  .adc-panel--right { justify-content: flex-start }
  .adc-units-num { font-size: 2.2rem }
}

/* =====================================================================
   WEIGHT LOSS CALCULATOR — .wlc-card
   ===================================================================== */
.wlc-card {
  --wlc-brand:     #0E5F4B;
  --wlc-brand-mid: #1A7A60;
  --wlc-accent:    #F09350;
  --wlc-bg:        #ffffff;
  --wlc-bg-right:  #F4FAF7;
  --wlc-border:    rgba(14,95,75,.10);
  --wlc-text:      #0C3A2C;
  --wlc-muted:     rgba(12,58,44,.50);
  --wlc-subtle:    rgba(12,58,44,.32);

  -webkit-font-smoothing: antialiased;
  display: grid; grid-template-columns: 1fr auto 1fr;
  background: var(--wlc-bg); border: 1px solid var(--wlc-border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(14,95,75,.06), 0 8px 32px rgba(14,95,75,.08);
  width: 100%; max-width: 860px; box-sizing: border-box;
}
.wlc-card *, .wlc-card *::before, .wlc-card *::after { box-sizing: border-box; margin: 0; padding: 0 }

.wlc-panel         { padding: 32px 36px; display: flex; flex-direction: column }
.wlc-panel--right  { background: var(--wlc-bg-right); justify-content: center }
.wlc-vdivider      { width: 1px; background: var(--wlc-border); margin: 24px 0 }

.wlc-eyebrow     { display: flex; align-items: center; gap: 7px; font-size: 0.60rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wlc-brand); margin-bottom: 8px }
.wlc-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wlc-accent); flex-shrink: 0; animation: wlcPulse 1.6s ease-out infinite }
@keyframes wlcPulse {
  0%   { box-shadow: 0 0 0 0   rgba(240,147,80,.55) }
  70%  { box-shadow: 0 0 0 7px rgba(240,147,80,0)   }
  100% { box-shadow: 0 0 0 0   rgba(240,147,80,0)   }
}

.wlc-instruction { font-size: 0.82rem; font-weight: 400; color: var(--wlc-muted); margin-bottom: 18px; line-height: 1.5 }

.wlc-weight-display { display: flex; align-items: baseline; gap: 5px; margin-bottom: 16px; line-height: 1 }
.wlc-weight-num  { font-size: 3.8rem; font-weight: 800; letter-spacing: -0.05em; color: var(--wlc-brand); transition: opacity 0.08s ease }
.wlc-weight-unit { font-size: 1.2rem; font-weight: 500; color: var(--wlc-muted) }

.wlc-slider-wrap { margin-bottom: 6px }
.wlc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--wlc-accent); border: 2.5px solid #fff;
  box-shadow: 0 2px 10px rgba(240,147,80,.40); cursor: grab;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wlc-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); box-shadow: 0 3px 18px rgba(240,147,80,.60) }
.wlc-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--wlc-accent); border: 2.5px solid #fff; box-shadow: 0 2px 10px rgba(240,147,80,.40); cursor: grab }

.wlc-slider-bounds { display: flex; justify-content: space-between; font-size: 0.65rem; color: var(--wlc-subtle); font-weight: 500; margin-top: 5px; margin-bottom: 20px }

.wlc-unit-toggle,
.wlc-unit-toggle:link,
.wlc-unit-toggle:visited {
  all: unset !important; display: inline-block !important; background: none !important;
  border: none !important; box-shadow: none !important; border-radius: 0 !important;
  color: var(--wlc-muted) !important; font-size: 0.70rem !important; font-weight: 500 !important;
  cursor: pointer !important; padding: 0 !important;
  text-decoration: underline !important; text-decoration-style: dotted !important;
  text-underline-offset: 3px !important; text-decoration-color: var(--wlc-subtle) !important;
  transition: color 0.15s ease !important; margin-top: auto !important; width: auto !important; transform: none !important;
}
.wlc-unit-toggle:hover, .wlc-unit-toggle:focus {
  color: var(--wlc-brand) !important; background: none !important;
  border: none !important; box-shadow: none !important; transform: none !important; outline: none !important;
}

.wlc-result-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wlc-muted); margin-bottom: 10px }
.wlc-result-row   { display: flex; align-items: baseline; gap: 5px; margin-bottom: 10px }
.wlc-result-num   { font-size: 3.8rem; font-weight: 800; letter-spacing: -0.05em; color: var(--wlc-brand); line-height: 1; transition: opacity 0.08s ease }
.wlc-result-unit  { font-size: 1.2rem; font-weight: 500; color: var(--wlc-muted) }
.wlc-result-pct   { display: inline-block; font-size: 0.70rem; font-weight: 700; color: var(--wlc-brand); background: rgba(14,95,75,.09); border: 1px solid rgba(14,95,75,.14); padding: 3px 10px; border-radius: 999px; margin-bottom: 20px; letter-spacing: 0.02em }

.wlc-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px }
.wlc-badge  { font-size: 0.60rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wlc-muted); border: 1px solid var(--wlc-border); border-radius: 4px; padding: 3px 8px }

.wlc-disclaimer { font-size: 0.63rem; color: var(--wlc-subtle); line-height: 1.6; margin-top: auto; font-style: normal !important }
.wlc-disclaimer em { font-style: italic; font-weight: 500; color: var(--wlc-muted) }

@media (max-width: 640px) {
  .wlc-card { grid-template-columns: 1fr; grid-template-rows: auto auto auto }
  .wlc-vdivider { width: auto; height: 1px; margin: 0 24px }
  .wlc-panel { padding: 24px }
  .wlc-panel--right { justify-content: flex-start }
  .wlc-weight-num, .wlc-result-num { font-size: 3rem }
}

/* =====================================================================
   WARNING / ALERT CARDS
   ===================================================================== */
.alert-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 26px; border-radius: 12px; border-left: 6px solid transparent;
  margin: 16px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  animation: cardIn 0.3s ease-out;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(-6px) } to { opacity: 1; transform: translateY(0) } }

.alert-card__icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff; margin-top: 2px;
}
.alert-card__content { flex: 1 }
.alert-card__label   { font-size: 10px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 5px }
.alert-card__title   { font-size: 15px; font-weight: 700; margin: 0 0 6px; line-height: 1.3 }
.alert-card__message { font-size: 14px; font-weight: 400; line-height: 1.65; margin: 0 }
.alert-card__message strong { font-weight: 600 }

/* Variant — block (cannot continue) */
.alert-card--block                   { background-color: #fff5f5; border-left-color: #e53e3e }
.alert-card--block .alert-card__icon { background-color: #e53e3e }
.alert-card--block .alert-card__label { color: #c53030 }
.alert-card--block .alert-card__title { color: #9b2c2c }
.alert-card--block .alert-card__message { color: #742a2a }

/* Variant — caution (can continue) */
.alert-card--caution                   { background-color: #fffbeb; border-left-color: #d97706 }
.alert-card--caution .alert-card__icon { background-color: #d97706 }
.alert-card--caution .alert-card__label { color: #b45309 }
.alert-card--caution .alert-card__title { color: #92400e }
.alert-card--caution .alert-card__message { color: #78350f }

/* Variant — info */
.alert-card--info                   { background-color: #eff6ff; border-left-color: #3b82f6 }
.alert-card--info .alert-card__icon { background-color: #3b82f6 }
.alert-card--info .alert-card__label { color: #2563eb }
.alert-card--info .alert-card__title { color: #1d4ed8 }
.alert-card--info .alert-card__message { color: #1e3a8a }

.alert-card--hidden { display: none }
@media (max-width: 480px) {
  .alert-card { padding: 16px; gap: 12px }
  .alert-card__title   { font-size: 14px }
  .alert-card__message { font-size: 13px }
}

/* =====================================================================
   TRAVEL HEALTH PACKAGE CARDS — .wrp-vax
   ===================================================================== */
.wrp-vax-wrap{text-decoration:none !important}
.wrp-vax-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.wrp-vax-row2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;width:66.66%;margin:16px auto 0}
.wrp-vax-wrap{display:block;position:relative;width:100%;height:210px;border-radius:18px;overflow:hidden;background-image:var(--bg);background-size:cover;background-position:center;transition:transform .18s ease;cursor:pointer}
.wrp-vax-wrap::before{content:"";position:absolute;inset:0;background:rgba(10,95,75,.62)}
.wrp-vax-wrap:hover{transform:translate3d(0,-3px,0)}
.wrp-vax-inner{position:absolute;inset:0;z-index:2;padding:18px 20px 20px;text-align:center;color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;font-family:'Inter',sans-serif}
.wrp-vax-title{font-weight:900;letter-spacing:.6px;text-transform:uppercase;font-size:17px;line-height:1.2;text-shadow:0 1px 6px rgba(0,0,0,.4)}
.wrp-vax-sub{font-weight:600;font-size:12.5px;line-height:1.55;max-width:260px;text-shadow:0 1px 4px rgba(0,0,0,.35)}
.wrp-vax-price{font-weight:800;font-size:12px;text-shadow:0 1px 4px rgba(0,0,0,.35)}
.wrp-vax-btn{display:inline-flex;align-items:center;justify-content:center;padding:8px 18px;border-radius:10px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(6px);font-weight:900;font-size:12px;letter-spacing:.5px;color:#fff;margin-top:2px}
.wrp-vax-disclaimer{margin:20px auto 0;max-width:520px;padding:12px 20px;border-radius:12px;background:rgba(10,95,75,.07);border:1px solid rgba(10,95,75,.18);font-family:'Inter',sans-serif;font-size:13px;font-weight:500;color:#0a5f4b;line-height:1.6;text-align:center}
.wrp-vax-disclaimer strong{font-weight:700}
@media(max-width:1024px){.wrp-vax-grid{grid-template-columns:repeat(2,1fr)}.wrp-vax-row2{width:100%}}
@media(max-width:767px){.wrp-vax-grid{grid-template-columns:1fr}.wrp-vax-row2{grid-template-columns:1fr;width:100%}.wrp-vax-wrap{height:190px}.wrp-vax-title{font-size:15px}.wrp-vax-disclaimer{max-width:100%}}

/* =====================================================================
   TRAVEL HEALTH CARDS — .wrp-pl
   ===================================================================== */
.wrp-pl {
  font-family: 'Inter', sans-serif !important;
  margin-top: 20px;
}

.wrp-pl-filters {
  display: flex !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
  margin-bottom: 14px !important;
  padding: 0 !important;
  list-style: none !important;
}

.wrp-pl-tab {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 5px 14px !important;
  border-radius: 50px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  border: 1px solid rgba(10, 95, 75, 0.22) !important;
  background: #fff !important;
  color: #5a7a72 !important;
  cursor: pointer !important;
  transition: all 0.12s !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1 !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.wrp-pl-tab:hover {
  border-color: #0a5f4b !important;
  color: #0a5f4b !important;
  background: #fff !important;
  box-shadow: none !important;
}

.wrp-pl-tab.active {
  background: #0a5f4b !important;
  color: #fff !important;
  border-color: #0a5f4b !important;
  box-shadow: none !important;
}

.wrp-pl-tab:focus {
  outline: none !important;
  box-shadow: none !important;
}

.wrp-pl-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 6px !important;
}

.wrp-pl-card {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  border: 1px solid rgba(10, 95, 75, 0.13) !important;
  border-radius: 10px !important;
  padding: 9px 12px !important;
  background: #fff !important;
  transition: border-color 0.12s, box-shadow 0.12s !important;
  position: relative !important;
  overflow: hidden !important;
}

.wrp-pl-card::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 2px !important;
  background: #0a5f4b !important;
  opacity: 0 !important;
  transition: opacity 0.12s !important;
}

.wrp-pl-card:hover {
  border-color: rgba(10, 95, 75, 0.3) !important;
  box-shadow: 0 2px 8px rgba(10, 95, 75, 0.08) !important;
}

.wrp-pl-card:hover::before {
  opacity: 1 !important;
}

.wrp-pl-l {
  min-width: 0 !important;
  flex: 1 !important;
}

.wrp-pl-name {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #0d1f1a !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wrp-pl-course {
  font-size: 10px !important;
  color: #5a7a72 !important;
  margin-top: 1px !important;
  padding: 0 !important;
}

.wrp-pl-pkgs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 3px !important;
  margin-top: 4px !important;
  padding: 0 !important;
}

.wrp-pl-pkg {
  font-size: 9px !important;
  font-weight: 700 !important;
  color: #0a5f4b !important;
  background: rgba(10, 95, 75, 0.08) !important;
  border-radius: 50px !important;
  padding: 1.5px 6px !important;
  white-space: nowrap !important;
  border: 1px solid rgba(10, 95, 75, 0.12) !important;
}

.wrp-pl-r {
  flex-shrink: 0 !important;
  text-align: right !important;
}

.wrp-pl-price {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #0a5f4b !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wrp-pl-unit {
  font-size: 9px !important;
  color: #5a7a72 !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wrp-pl-none {
  grid-column: 1 / -1 !important;
  text-align: center !important;
  padding: 20px !important;
  font-size: 12px !important;
  color: #5a7a72 !important;
}

@media (max-width: 1024px) {
  .wrp-pl-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .wrp-pl-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .wrp-pl-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =====================================================================
   SEARCH BAR — .ph-search-bar (page search bar)
   ===================================================================== */
.ph-search-bar { background: transparent !important; border-bottom: none !important; margin: 0 !important; padding: 0 !important; width: 100% !important; box-sizing: border-box !important }
.ph-search-bar__inner { max-width: 1200px !important; margin: 0 auto !important; padding: 10px 24px !important; position: relative !important; box-sizing: border-box !important }
.ph-search-bar__field { position: relative !important; display: flex !important; align-items: center !important; max-width: 100% !important; background: #f7faf9 !important; border: 1.5px solid var(--c-divider) !important; border-radius: 10px !important; box-sizing: border-box !important; transition: border-color 0.2s ease, box-shadow 0.2s ease !important }
.ph-search-bar__field:focus-within { border-color: var(--c-brand-1) !important; box-shadow: 0 0 0 3px rgba(14,95,75,0.09) !important }
.ph-search-bar__icon { position: absolute !important; left: 13px !important; top: 50% !important; transform: translateY(-50%) !important; width: 15px !important; height: 15px !important; color: #8aada7 !important; pointer-events: none !important; flex-shrink: 0 !important; transition: color 0.2s ease !important; display: block !important }
.ph-search-bar__field:focus-within .ph-search-bar__icon { color: var(--c-brand-1) !important }
.ph-search-bar__input { all: unset !important; display: block !important; width: 100% !important; padding: 10px 36px 10px 38px !important; font-family: var(--ff-inter) !important; font-size: 14px !important; font-weight: 400 !important; color: var(--c-text) !important; line-height: 1.5 !important; box-sizing: border-box !important; cursor: text !important; background: transparent !important }
.ph-search-bar__input::placeholder { color: #a8bebb !important; font-weight: 400 !important }
.ph-search-bar__clear { all: unset !important; position: absolute !important; right: 9px !important; top: 50% !important; transform: translateY(-50%) !important; width: 22px !important; height: 22px !important; display: none !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; border-radius: 50% !important; color: #8aada7 !important; transition: background 0.15s, color 0.15s !important; flex-shrink: 0 !important }
.ph-search-bar__clear svg { width: 11px !important; height: 11px !important; display: block !important }
.ph-search-bar__clear:hover { background: #e0f0ea !important; color: var(--c-brand-1) !important }
.ph-search-bar__clear--visible { display: flex !important }
.ph-search-bar__suggestions { position: absolute !important; top: calc(100% + 2px) !important; left: 0 !important; right: 0 !important; max-width: 100% !important; background: var(--c-bg) !important; border: 1.5px solid var(--c-divider) !important; border-radius: 10px !important; box-shadow: 0 8px 28px rgba(14,95,75,0.11) !important; z-index: 9999 !important; overflow: hidden !important; list-style: none !important; margin: 0 !important; padding: 5px 0 !important; display: none !important }
.ph-search-bar__suggestions--open { display: block !important }
.ph-search-bar__suggestion { display: flex !important; align-items: center !important; gap: 9px !important; padding: 9px 14px !important; cursor: pointer !important; transition: background 0.1s ease !important; list-style: none !important; margin: 0 !important; box-sizing: border-box !important }
.ph-search-bar__suggestion:hover,
.ph-search-bar__suggestion--active { background: #f0f8f5 !important }
.ph-search-bar__badge { font-size: 9px !important; font-weight: 700 !important; letter-spacing: 0.07em !important; text-transform: uppercase !important; padding: 2px 7px !important; border-radius: 20px !important; white-space: nowrap !important; flex-shrink: 0 !important; font-family: var(--ff-inter) !important; line-height: 1.6 !important }
.ph-search-bar__badge--nhs     { background: #e8f0fa !important; color: #1a56a0 !important }
.ph-search-bar__badge--private { background: #f0ecfa !important; color: #5b3fa0 !important }
.ph-search-bar__label { font-size: 13px !important; color: var(--c-text) !important; font-family: var(--ff-inter) !important; font-weight: 400 !important; flex: 1 !important; line-height: 1.4 !important }
.ph-search-bar__label mark { background: transparent !important; color: var(--c-brand-1) !important; font-weight: 700 !important; padding: 0 !important; margin: 0 !important }
.ph-search-bar__no-results { padding: 10px 14px !important; font-size: 13px !important; color: #5a6d69 !important; font-family: var(--ff-inter) !important }
.ph-card--search-hidden { display: none !important }
@keyframes phSearchPulse {
  0%   { box-shadow: 0 0 0 0px  rgba(14,95,75,0.4) }
  50%  { box-shadow: 0 0 0 6px  rgba(14,95,75,0.15) }
  100% { box-shadow: 0 0 0 0px  rgba(14,95,75,0) }
}
.ph-card--search-found { animation: phSearchPulse 1.2s ease forwards !important }
@media (max-width: 768px) { .ph-search-bar__inner { padding: 10px 16px 12px !important } .ph-search-bar__field, .ph-search-bar__suggestions { max-width: 100% !important } }

/* =====================================================================
   FILTER TABS — .ph-filter-section
   ===================================================================== */
.ph-filter-section { background: var(--c-bg) !important; border-top: none !important; border-left: none !important; border-right: none !important; border-bottom: 1px solid var(--c-divider) !important; border-radius: 0 !important; margin: 0 !important; padding: 0 !important; box-shadow: none !important; width: 100% !important }
.ph-filter-inner   { max-width: 1300px !important; margin: 0 auto !important; display: flex !important; gap: 0 !important; overflow-x: auto !important; scrollbar-width: none !important; list-style: none !important; background: transparent !important; border: none !important; box-shadow: none !important }
.ph-filter-inner::-webkit-scrollbar { display: none !important }
.ph-filter-tab {
  appearance: none !important; -webkit-appearance: none !important; -moz-appearance: none !important;
  display: inline-block !important; padding: 14px 20px 12px !important; margin: 0 !important; cursor: pointer !important;
  white-space: nowrap !important; vertical-align: bottom !important;
  font-family: var(--ff-inter) !important; font-size: 14px !important; font-weight: 500 !important; line-height: 1.4 !important;
  letter-spacing: normal !important; text-align: left !important; text-decoration: none !important; text-transform: none !important;
  color: var(--c-text) !important; background: transparent !important; background-color: transparent !important; background-image: none !important;
  border-top: none !important; border-left: none !important; border-right: none !important;
  border-bottom: 2px solid transparent !important; border-radius: 0 !important;
  outline: none !important; box-shadow: none !important; transition: border-bottom-color 0.15s ease, font-weight 0.15s ease !important;
}
.ph-filter-tab:hover { color: var(--c-text) !important; background: transparent !important; background-color: transparent !important; background-image: none !important; border-bottom: 2px solid #b8d4cc !important; box-shadow: none !important }
.ph-filter-tab.ph-tab-active { color: var(--c-text) !important; font-weight: 600 !important; background: transparent !important; background-color: transparent !important; background-image: none !important; border-bottom: 2px solid var(--c-brand-1) !important; box-shadow: none !important }
.ph-filter-tab:focus-visible { outline: 2px solid var(--c-brand-1) !important; outline-offset: 2px !important }
@media (max-width: 768px) { .ph-filter-inner { padding: 0 16px !important } .ph-filter-tab { padding: 12px 14px 10px !important; font-size: 13px !important } }

/* =====================================================================
   DELIVERY SCENE — discreet packaging illustration
   ===================================================================== */
.scene-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 40px 20px;
  box-sizing: border-box;
}

.scene-inner {
  position: relative;
  width: 500px;
  flex-shrink: 0;
}

.scene-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── FLOATING INFO CARDS ───────────────────────────── */
.scene-wrapper .info-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(14,95,75,0.14), 0 2px 8px rgba(14,95,75,0.06);
  padding: 14px 18px;
  border: 1.5px solid var(--c-divider);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  animation: scene-float 4s ease-in-out infinite;
  z-index: 20;
  box-sizing: border-box;
}

/* Positions */
.scene-wrapper .info-card--track {
  top: 8%;
  right: -15%;
  animation-delay: 0s;
}

.scene-wrapper .info-card--seal {
  top: 35%;
  left: -12%;
  animation-delay: 1.3s;
}

.scene-wrapper .info-card--branding {
  bottom: 12%;
  right: -15%;
  animation-delay: 2.2s;
}

/* Float animation */
@keyframes scene-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── CARD CONTENT ───────────────────────────── */
.scene-wrapper .card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scene-wrapper .card-content {
  flex: 1;
  min-width: 0;
}

/* 🔴 HARD OVERRIDE — THIS FIXES YOUR ISSUE */
.scene-wrapper .card-title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--c-text);
  line-height: 1.2 !important;
  margin: 0 !important;
  letter-spacing: -0.01em !important;
}

.scene-wrapper .card-subtitle {
  font-size: 11px !important;
  color: #7A9B91;
  margin: 3px 0 0 !important;
  line-height: 1.3 !important;
}

/* ── TABLET FIXES ───────────────────────────── */
@media (max-width: 900px) {
  .scene-inner {
    width: 340px;
  }

  .scene-wrapper .info-card {
    min-width: 150px;
    padding: 10px 12px;
  }

  .scene-wrapper .info-card--track,
  .scene-wrapper .info-card--seal,
  .scene-wrapper .info-card--branding {
    right: -42%;
    left: -42%;
  }

  .scene-wrapper .info-card--seal {
    right: auto;
  }

  .scene-wrapper .info-card--track,
  .scene-wrapper .info-card--branding {
    left: auto;
  }
}

/* ── MOBILE OPTIMISED ───────────────────────────── */
@media (max-width: 600px) {
  .scene-wrapper {
    flex-direction: column;
    gap: 14px;
    padding: 28px 14px;
  }

  .scene-inner {
    width: 240px;
    max-width: 100%;
  }

  .scene-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
  }

  .scene-wrapper .info-card {
    position: static;
    animation: none;
    width: 100%;
    max-width: 260px;
    min-width: 0;
    margin: 0 auto;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(14,95,75,0.10), 0 2px 6px rgba(14,95,75,0.05);
  }

  .scene-wrapper .card-icon {
    width: 34px;
    height: 34px;
  }

  /* 🔴 MOBILE TITLE FIX */
  .scene-wrapper .card-title {
    font-size: 12.5px !important;
    font-weight: 600 !important;
  }
}

/* ── SMALL MOBILE ───────────────────────────── */
@media (max-width: 420px) {
  .scene-inner {
    width: 220px;
  }

  .scene-wrapper .info-card {
    max-width: 245px;
    padding: 9px 11px;
  }

  .scene-wrapper .card-title {
    font-size: 12px !important;
  }

  .scene-wrapper .card-subtitle {
    font-size: 10.5px !important;
  }
}

/* =====================================================================
   NHS PAYMENT SECTION (NHS PAGE)
   ===================================================================== */
/* ── COLOUR TOKENS (from brand scheme) ──────────────────
   #0E5F4B  Brand 1   → borders, icons, prices, featured
   #2FA4A8  Brand 3   → badge, accent highlights
   #F0F7F4  Bg Alt    → card background
   #1E2B28  Default Text
   #F09B50  Button Primary
   #FFA15E  Button Hover
   #FFFFFF  Button Text / Text Inverse
   #0E5F4B  Link
   #327766  Link Hover
   #D6E5E0  Divider
   ───────────────────────────────────────────────────── */

.pay-section{padding:48px 0;width:100%}
.pay-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;width:100%;align-items:stretch}

/* Cards — equal height via stretch + flex column */
.pay-card{background:#F0F7F4;border-radius:16px;padding:32px 26px 28px;border:1.5px solid #D6E5E0;box-shadow:0 3px 16px rgba(14,95,75,.07);display:flex;flex-direction:column;position:relative;transition:box-shadow .25s,transform .25s,border-color .25s;height:100%}
.pay-card:hover{box-shadow:0 8px 32px rgba(14,95,75,.14);transform:translateY(-3px);border-color:#0E5F4B}
.pay-card--featured{border:2px solid #0E5F4B;background:#fff;box-shadow:0 6px 32px rgba(14,95,75,.16);padding-top:50px}
.pay-card--featured:hover{box-shadow:0 12px 48px rgba(14,95,75,.22)}

/* Badge */
.pay-badge{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:#2FA4A8;color:#fff;font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:5px 16px;border-radius:20px;white-space:nowrap;display:flex;align-items:center;gap:5px;box-shadow:0 3px 10px rgba(47,164,168,.35)}

/* Icon */
.pay-icon{width:48px;height:48px;background:#fff;border:1.5px solid #D6E5E0;border-radius:12px;display:flex;align-items:center;justify-content:center;color:#0E5F4B;margin-bottom:16px;flex-shrink:0}
.pay-card--featured .pay-icon{background:#F0F7F4;border-color:#0E5F4B}

/* Typography */
.pay-card h3{font-size:1.05rem;font-weight:700;color:#1E2B28;margin-bottom:10px;line-height:1.3}
.pay-card p{font-size:.88rem;color:#3d5450;line-height:1.65;margin-bottom:18px}

/* Price */
.pay-price{display:flex;align-items:baseline;gap:5px;margin-bottom:18px;font-size:.8rem;color:#6a8880}
.pay-price span{font-size:2rem;font-weight:800;color:#0E5F4B;line-height:1}
.pay-card--featured .pay-price span{font-size:2.1rem}

/* Checklist — flex:1 pushes button to bottom */
.pay-card ul{list-style:none;padding:0;margin:0 0 22px;display:flex;flex-direction:column;gap:8px;flex:1}
.pay-card ul li{display:flex;align-items:flex-start;gap:10px;font-size:.86rem;color:#2d4642;line-height:1.5}
.pay-card ul li::before{content:'';width:17px;height:17px;flex-shrink:0;margin-top:1px;border-radius:50%;background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%230E5F4B' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/9px;border:1.5px solid #D6E5E0}

/* Footer note (card 1 — sits at bottom) */
.pay-note{display:flex;align-items:flex-start;gap:8px;font-size:.79rem;color:#0E5F4B;background:#fff;border:1px solid #D6E5E0;border-radius:8px;padding:10px 12px;line-height:1.5;margin-top:auto}

/* Secure note */
.pay-secure{display:flex;align-items:center;gap:6px;font-size:.76rem;color:#6a8880;margin-top:10px}

/* Buttons — always white text, both states */
.pay-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-family:inherit;font-size:.92rem;font-weight:700;border-radius:9px;border:none;cursor:pointer;text-decoration:none;padding:13px 20px;width:100%;transition:background .2s,transform .15s,box-shadow .2s;color:#fff!important}
.pay-btn--primary{background:#F09B50;color:#fff!important;box-shadow:0 4px 14px rgba(240,155,80,.3)}
.pay-btn--primary:hover{background:#FFA15E;color:#fff!important;transform:translateY(-1px);box-shadow:0 6px 20px rgba(255,161,94,.4)}
.pay-btn--brand{background:#0E5F4B;color:#fff!important;box-shadow:0 4px 14px rgba(14,95,75,.28)}
.pay-btn--brand:hover{background:#327766;color:#fff!important;transform:translateY(-1px);box-shadow:0 6px 20px rgba(50,119,102,.38)}
.pay-btn--full{width:100%}

/* Modal overlay */
.pay-modal{display:none;position:fixed;inset:0;background:rgba(14,43,40,.65);z-index:1000;align-items:center;justify-content:center;padding:24px;backdrop-filter:blur(3px)}
.pay-modal.open{display:flex}
.pay-modal-box{background:#fff;border-radius:18px;padding:38px 34px 34px;max-width:500px;width:100%;position:relative;box-shadow:0 24px 80px rgba(0,0,0,.26);border:1.5px solid #D6E5E0;max-height:90vh;overflow-y:auto}
.pay-modal-close{position:absolute;top:14px;right:14px;background:#F0F7F4;border:1px solid #D6E5E0;border-radius:8px;width:34px;height:34px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#3d5450;font-size:1rem;transition:background .2s}
.pay-modal-close:hover{background:#D6E5E0;color:#0E5F4B}
.pay-modal-box h3{font-size:1.25rem;font-weight:700;color:#1E2B28;margin-bottom:6px}
.pay-modal-sub{font-size:.88rem;color:#6a8880;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #D6E5E0}

/* Modal form */
.pay-modal-box label{display:flex;flex-direction:column;font-size:.84rem;font-weight:600;color:#2d4642;gap:5px;margin-bottom:13px}
.pay-modal-box input,.pay-modal-box select{width:100%;padding:11px 13px;border:1.5px solid #D6E5E0;border-radius:8px;font-size:.95rem;font-family:inherit;color:#1E2B28;background:#F0F7F4;transition:border-color .2s,box-shadow .2s;appearance:none}
.pay-modal-box input:focus,.pay-modal-box select:focus{outline:none;border-color:#0E5F4B;box-shadow:0 0 0 3px rgba(14,95,75,.1);background:#fff}
.pay-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.pay-card-wrap{display:flex;align-items:center;border:1.5px solid #D6E5E0;border-radius:8px;background:#F0F7F4;padding:0 12px;gap:8px;transition:border-color .2s,box-shadow .2s}
.pay-card-wrap:focus-within{border-color:#0E5F4B;box-shadow:0 0 0 3px rgba(14,95,75,.1);background:#fff}
.pay-card-wrap input{border:none;background:transparent;padding:11px 0;flex:1;box-shadow:none!important}
.pay-total-row{display:flex;align-items:center;justify-content:space-between;background:#F0F7F4;border:1.5px solid #D6E5E0;border-radius:9px;padding:12px 16px;margin-bottom:16px;font-size:.9rem;font-weight:600;color:#2d4642}
.pay-total-row strong{font-size:1.3rem;font-weight:800;color:#0E5F4B}
.pay-warning{display:flex;align-items:flex-start;gap:9px;background:#fff9f0;border:1.5px solid #F09B50;border-radius:8px;padding:11px 14px;font-size:.81rem;color:#7a4200;line-height:1.55;margin-bottom:18px}
.pay-warning svg{flex-shrink:0;margin-top:1px;color:#F09B50}

/* Success */
.pay-success-icon{width:68px;height:68px;background:#F0F7F4;border:2px solid #D6E5E0;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 18px;color:#0E5F4B}

/* Responsive */
@media(max-width:900px){.pay-grid{grid-template-columns:1fr}.pay-card--featured{order:-1}}
@media(max-width:560px){.pay-section{padding:32px 0}.pay-modal-box{padding:30px 18px 26px}.pay-form-row{grid-template-columns:1fr}}
@media(prefers-reduced-motion:reduce){*{transition:none!important;transform:none!important}}

/* =====================================================================
   NHS BANNER
   ===================================================================== */
.nhs-banner {
  --nhs-blue-dark: #003087; --nhs-blue: #0051C2;
  max-width: 1400px; margin: 0 auto;
  background: linear-gradient(130deg, var(--nhs-blue-dark) 0%, var(--nhs-blue) 100%);
  border-radius: 22px; padding: 56px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  box-sizing: border-box;
}
.nhs-banner__content    { max-width: 620px }
.nhs-banner__logo       { display: block; margin-bottom: 18px; width: 90px; height: auto }
.nhs-banner__title      { font-size: clamp(28px,3.5vw,40px); font-weight: 900; line-height: 1.15; color: #fff; margin: 0 0 14px }
.nhs-banner__desc       { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.85); max-width: 520px; margin: 0 0 28px }
.nhs-banner__badge      { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 18px; padding: 28px 32px; text-align: center; min-width: 220px; flex-shrink: 0 }
.nhs-banner__badge-mark { display: inline-block; background: rgba(255,255,255,.18); color: #fff; font-weight: 900; font-size: 28px; letter-spacing: .05em; border-radius: 12px; padding: 10px 26px; margin-bottom: 10px }
.nhs-banner__badge-label { font-size: 12px; font-weight: 700; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.75) }

/* Shared CTA style (NHS + Royal Mail banners) */
.nhs-banner__cta, .rm-banner__cta {
  display: inline-block; background: var(--c-btn-primary); color: var(--c-bg) !important;
  font-size: 15px; font-weight: 700; text-decoration: none; border: none; border-radius: 10px;
  padding: 14px 28px; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; white-space: nowrap;
}
.nhs-banner__cta:hover, .nhs-banner__cta:focus, .nhs-banner__cta:active, .nhs-banner__cta:visited,
.rm-banner__cta:hover,  .rm-banner__cta:focus,  .rm-banner__cta:active,  .rm-banner__cta:visited { background: var(--c-btn-hover); color: var(--c-bg) !important; text-decoration: none }
.nhs-banner__cta:hover, .rm-banner__cta:hover   { transform: translateY(-4px) }

@media (max-width: 900px) { .nhs-banner { flex-direction: column; align-items: flex-start; padding: 44px 32px; border-radius: 0 } .nhs-banner__badge { width: 100%; text-align: left; box-sizing: border-box } }
@media (max-width: 480px) { .nhs-banner { padding: 36px 24px } }

/* =====================================================================
   ROYAL MAIL BANNER
   ===================================================================== */
.rm-banner {
  --rm-red: #C32C2F; --rm-red-dark: #A02225;
  max-width: 1400px; margin: 0 auto; margin-top: -8px;
  background: linear-gradient(130deg, var(--rm-red-dark) 0%, var(--rm-red) 100%);
  border-radius: 22px; padding: 56px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  box-sizing: border-box;
}
.rm-banner__content       { max-width: 620px }
.rm-banner__eyebrow       { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.75); margin: 0 0 14px }
.rm-banner__logo          { display: block; margin-bottom: 18px; width: 90px; height: auto }
.rm-banner__title         { font-size: clamp(28px,3.5vw,40px); font-weight: 900; line-height: 1.15; color: #fff; margin: 0 0 14px }
.rm-banner__desc          { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.85); max-width: 520px }
.rm-banner__badge         { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 18px; padding: 28px 32px; text-align: center; min-width: 220px; flex-shrink: 0 }
.rm-banner__badge-icons   { display: flex; justify-content: center; gap: 18px; margin-bottom: 14px }
.rm-banner__badge-icon    { display: flex; flex-direction: column; align-items: center; gap: 5px }
.rm-banner__badge-icon svg { width: 28px; height: 28px; fill: rgba(255,255,255,.9) }
.rm-banner__badge-icon-label { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7) }
.rm-banner__badge-label   { font-size: 12px; font-weight: 700; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.75); margin-top: 10px }
@media (max-width: 900px) { .rm-banner { flex-direction: column; align-items: flex-start; padding: 44px 32px; border-radius: 0 } .rm-banner__badge { width: 100%; text-align: left; box-sizing: border-box } .rm-banner__badge-icons { justify-content: flex-start } }
@media (max-width: 480px) { .rm-banner { padding: 36px 24px } }

/* =====================================================================
   TREATMENT CARD SLIDER — .slider-wrapper / .cards-track
   ===================================================================== */

.slider-wrapper{position:relative;width:100%;box-sizing:border-box}
.cards-track{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;width:100%;box-sizing:border-box}
.slider-arrow,.slider-dots{display:none}

/* Arrows — review slider style */
.slider-arrow{
  position:absolute;z-index:10;left:auto;right:auto;background:var(--c-bg)!important;color:var(--c-brand-1)!important;border:none!important;
  width:48px!important;height:48px!important;min-width:48px!important;min-height:48px!important;max-width:48px!important;max-height:48px!important;
  border-radius:50%!important;cursor:pointer!important;font-size:24px!important;font-weight:600!important;line-height:1!important;
  box-shadow:0 2px 8px rgba(14,95,75,.10)!important;transition:all .3s ease!important;align-items:center!important;justify-content:center!important;
  padding:0!important;margin:0!important;appearance:none!important;-webkit-appearance:none!important;outline:none!important;text-decoration:none!important
}
.slider-arrow:hover{background:var(--c-brand-1)!important;color:var(--c-bg)!important;transform:scale(1.05)!important;box-shadow:0 4px 16px rgba(14,95,75,.20)!important}
.slider-arrow:active{transform:scale(.95)!important}
.slider-arrow:focus,.slider-arrow:focus-visible{outline:none!important;box-shadow:0 4px 16px rgba(14,95,75,.20),0 0 0 4px rgba(14,95,75,.12)!important}
.slider-arrow svg{width:18px!important;height:18px!important;display:block!important;pointer-events:none!important}
.slider-arrow--prev{left:calc(50% - 56px);right:auto}
.slider-arrow--next{left:calc(50% + 8px);right:auto}

/* Cards */
.treatment-card{
  position:relative;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:28px 26px 26px;
  display:flex;flex-direction:column;gap:20px;overflow:hidden;transition:transform var(--transition),border-color var(--transition);
  cursor:default;box-sizing:border-box;box-shadow:none!important
}
.treatment-card::after{content:'';position:absolute;inset:0;border-radius:var(--radius);border:2px solid transparent;transition:border-color var(--transition);pointer-events:none}
.treatment-card:hover{box-shadow:none!important;transform:translateY(-5px);border-color:transparent}
.treatment-card:hover::after{border-color:var(--brand-green-md)}

.card-accent{position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--brand-green) 0%,#2a9d7a 100%);border-radius:var(--radius) var(--radius) 0 0}
.card-top{display:flex;flex-direction:column;gap:12px}
.card-header{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:8px}

.rx-badge{
  display:inline-flex;align-items:center;gap:5px;font-size:10.5px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  color:var(--brand-green);background:var(--brand-green-lt);border:1px solid var(--brand-green-md);padding:4px 10px;border-radius:100px
}
.efficacy-tag{font-size:11px;font-weight:500;color:var(--text-secondary);background:#f8f8f6;border:1px solid #e8e8e2;padding:4px 9px;border-radius:100px}
.efficacy-tag strong{color:var(--brand-green)}
.otc-tag{background:#fff8f0;border-color:#ffd8b0;color:#c06010}

.card-title{font-size:26px;font-weight:700;color:var(--text-primary);line-height:1.1}
.card-title sup{font-size:13px;vertical-align:super}
.card-desc{font-size:13.5px;line-height:1.65;color:var(--text-secondary);font-weight:300}

.card-image-wrap{display:flex;align-items:center;justify-content:center;padding:8px 0}
.image-bg-glow{display:none}
.card-image{width:100%;max-height:320px;object-fit:contain;transition:transform var(--transition)}
.treatment-card:hover .card-image{transform:scale(1.04)}

.card-footer{display:flex;flex-direction:column;gap:12px;margin-top:auto}
.card-meta{display:flex;gap:16px;flex-wrap:wrap}
.meta-item{display:flex;align-items:center;gap:5px;font-size:12px;color:var(--text-muted);font-weight:400}
.meta-dot{width:5px;height:5px;border-radius:50%;background:var(--brand-green-md)}

.btn-primary{
  display:flex;align-items:center;justify-content:center;gap:8px;background:var(--btn-primary);color:#fff!important;text-decoration:none;
  font-size:14px;font-weight:600;letter-spacing:.01em;padding:13px 20px;border-radius:10px;
  transition:background var(--transition),transform var(--transition),box-shadow var(--transition);box-shadow:0 4px 14px rgba(255,161,94,.35)
}
.btn-primary:hover{background:var(--c-btn-hover);color:#fff!important;transform:translateY(-1px);box-shadow:0 6px 20px rgba(255,161,94,.45)}
.btn-primary svg{flex-shrink:0;transition:transform var(--transition)}
.btn-primary:hover svg{transform:translateX(3px)}

.btn-learn{text-align:center;font-size:12.5px;color:var(--c-brand-1);text-decoration:none;font-weight:500;transition:color var(--transition)}
.btn-learn:hover{color:var(--c-link-hover);text-decoration:underline}

/* Dots — above arrows and below cards */
.slider-dots{
  position:absolute;left:50%;transform:translateX(-50%);z-index:9;width:auto;margin:0!important;padding:0!important;
  justify-content:center!important;align-items:center!important;gap:8px!important
}
.dot{
  width:10px!important;height:10px!important;min-width:10px!important;min-height:10px!important;max-width:10px!important;max-height:10px!important;
  border-radius:50%!important;background:rgba(14,95,75,.3)!important;cursor:pointer!important;transition:all .3s ease!important;
  border:none!important;padding:0!important;margin:0!important;display:block!important;appearance:none!important;-webkit-appearance:none!important;outline:none!important;box-shadow:none!important
}
.dot.active{background:var(--c-brand-1)!important;width:32px!important;min-width:32px!important;max-width:32px!important;height:10px!important;border-radius:5px!important}
.dot:hover:not(.active){background:rgba(14,95,75,.5)!important}
.dot:focus,.dot:focus-visible{outline:none!important;box-shadow:0 0 0 4px rgba(14,95,75,.12)!important}

/* Tablet: 2 cards */
@media (max-width:1024px) and (min-width:768px){
  .treatments-section{padding:32px 0 120px}
  .slider-wrapper{padding:0 28px 135px;overflow:hidden}
  .slider-arrow{display:flex!important;bottom:46px}
  .slider-dots{display:flex!important;bottom:108px}
  .cards-track{display:flex!important;flex-direction:row!important;gap:20px!important;width:100%!important;transition:transform .42s cubic-bezier(.4,0,.2,1)!important;will-change:transform}
  .treatment-card{min-width:calc((100% - 20px)/2);width:calc((100% - 20px)/2);flex:0 0 calc((100% - 20px)/2);padding:26px 22px 24px;gap:18px;transform:none!important;box-shadow:none!important}
  .treatment-card:hover{transform:none!important;box-shadow:none!important;border-color:var(--border)}
  .treatment-card:hover::after{border-color:transparent}
  .treatment-card:hover .card-image{transform:none!important}
  .card-header{gap:6px}
  .rx-badge{font-size:9.5px;padding:4px 9px}
  .efficacy-tag{font-size:10px;padding:4px 8px}
  .card-title{font-size:22px;line-height:1.15}
  .card-title sup{font-size:11px}
  .card-desc{font-size:13px;line-height:1.6}
  .card-image-wrap{padding:4px 0}
  .card-image{max-height:240px}
  .card-meta{gap:12px}
  .meta-item{font-size:11.5px}
  .btn-primary{font-size:13px;padding:12px 18px}
  .btn-learn{font-size:12px}
}

/* Mobile: 1 card */
@media (max-width:767px){
  .treatments-section{padding:28px 0 120px}
  .slider-wrapper{padding:0 16px 135px;overflow:hidden}
  .slider-arrow{display:flex!important;bottom:46px}
  .slider-dots{display:flex!important;bottom:108px}
  .slider-arrow--prev{left:calc(50% - 56px)}
  .slider-arrow--next{left:calc(50% + 8px)}
  .cards-track{display:flex!important;flex-direction:row!important;gap:16px!important;width:100%!important;transition:transform .42s cubic-bezier(.4,0,.2,1)!important;will-change:transform}
  .treatment-card{min-width:calc(100vw - 64px);width:calc(100vw - 64px);flex:0 0 calc(100vw - 64px);padding:24px 20px 22px;gap:18px;transform:none!important;box-shadow:none!important}
  .treatment-card:hover{transform:none!important;box-shadow:none!important;border-color:var(--border)}
  .treatment-card:hover::after{border-color:transparent}
  .treatment-card:hover .card-image{transform:none!important}
  .card-header{gap:6px}
  .rx-badge{font-size:9.5px;padding:4px 9px}
  .efficacy-tag{font-size:10px;padding:4px 8px}
  .card-title{font-size:22px;line-height:1.15}
  .card-title sup{font-size:11px}
  .card-desc{font-size:13px;line-height:1.6}
  .card-image-wrap{padding:4px 0}
  .card-image{max-height:230px}
  .card-meta{gap:12px}
  .meta-item{font-size:11.5px}
  .btn-primary{font-size:13px;padding:12px 18px}
  .btn-learn{font-size:12px}
}

/* Small mobile */
@media (max-width:420px){
  .slider-wrapper{padding-left:14px;padding-right:14px}
  .treatment-card{min-width:calc(100vw - 52px);width:calc(100vw - 52px);flex-basis:calc(100vw - 52px);padding:22px 18px 20px;box-shadow:none!important}
  .card-title{font-size:21px}
  .card-desc{font-size:12.5px}
  .card-image{max-height:210px}
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  .cards-track,.slider-arrow,.dot,.treatment-card,.card-image,.btn-primary{transition:none!important}
}

/* =====================================================================
   TREATMENTS WRAPPER — NHS & Private service cards (.ph-card)
   ===================================================================== */
.treatments-wrapper { max-width: 1300px !important; margin: 0 auto !important; padding-top: 0 !important; padding-bottom: 0 !important; font-family: var(--ff-inter) !important; color: var(--c-text) !important; box-sizing: border-box !important }
.treatments-wrapper *, .treatments-wrapper *::before, .treatments-wrapper *::after { box-sizing: border-box !important }

.ph-block           { padding-top: 48px !important; padding-bottom: 48px !important }
.ph-block--first    { padding-top: 12px !important; padding-bottom: 48px !important }
.ph-block--first-private { padding-top: 0 !important; padding-bottom: 48px !important }
.ph-block--divider  { padding-top: 0 !important; padding-bottom: 0 !important }

.ph-hidden {
  display: none !important; padding: 0 !important; margin: 0 !important;
  height: 0 !important; min-height: 0 !important; max-height: 0 !important;
  overflow: hidden !important; border: none !important; visibility: hidden !important; pointer-events: none !important;
}
.elementor-widget:has(.ph-hidden) { padding: 0 !important; margin: 0 !important; height: 0 !important; min-height: 0 !important; max-height: 0 !important; overflow: hidden !important; display: block !important }
.elementor-widget:has(.ph-hidden) .elementor-widget-container { padding: 0 !important; margin: 0 !important }

.treatments-wrapper .ph-section          { margin: 0 !important; padding: 0 !important }
.treatments-wrapper .ph-section-header   { display: flex !important; align-items: flex-end !important; justify-content: space-between !important; margin: 0 0 28px !important; padding: 0 !important; gap: 16px !important; flex-wrap: wrap !important }
.treatments-wrapper .ph-section-divider  { height: 1px !important; background: var(--c-divider) !important; border: none !important; margin: 0 !important; padding: 0 !important; display: block !important }
.treatments-wrapper .ph-section-label    { display: inline-flex !important; align-items: center !important; font-size: 11px !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; padding: 4px 12px !important; border-radius: 20px !important; margin: 0 0 8px !important; font-family: var(--ff-inter) !important }
.treatments-wrapper .ph-nhs-label        { background: #e8f0fa !important; color: #1a56a0 !important }
.treatments-wrapper .ph-private-label    { background: #f0ecfa !important; color: #5b3fa0 !important }
.treatments-wrapper .ph-section-title    { font-size: 26px !important; font-weight: 700 !important; color: var(--c-text) !important; line-height: 1.2 !important; letter-spacing: -0.02em !important; font-family: var(--ff-inter) !important; margin: 0 0 4px !important; padding: 0 !important }
.treatments-wrapper .ph-section-desc     { font-size: 15px !important; color: #5a6d69 !important; margin: 0 !important; padding: 0 !important; font-family: var(--ff-inter) !important }
.treatments-wrapper .ph-tag              { font-size: 11px !important; padding: 3px 9px !important; border-radius: 20px !important; font-weight: 500 !important; font-family: var(--ff-inter) !important; display: inline-block !important; line-height: 1.5 !important; margin: 0 !important }
.treatments-wrapper .ph-tag-green        { background: #e6f2ef !important; color: var(--c-brand-1) !important }
.treatments-wrapper .ph-tag-blue         { background: #e8f0fa !important; color: #1a56a0 !important }
.treatments-wrapper .ph-tag-purple       { background: #f0ecfa !important; color: #5b3fa0 !important }

/* Cards grid */
.treatments-wrapper .ph-cards-grid { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important; gap: 20px !important; list-style: none !important; padding: 0 !important; margin: 0 !important }

/* Card shell */
.treatments-wrapper .ph-card {
  background: var(--c-bg) !important; border-radius: 12px !important; border: 1.5px solid var(--c-divider) !important;
  overflow: hidden !important; cursor: pointer !important; text-decoration: none !important;
  color: var(--c-text) !important; display: flex !important; flex-direction: column !important;
  position: relative !important; isolation: isolate !important;
  transform: translateY(0) !important; transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1) !important;
  animation: phCardFadeUp 0.4s ease both !important;
}
.treatments-wrapper .ph-card::after {
  content: '' !important; position: absolute !important; inset: 0 !important; border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(14,95,75,0.14) !important; opacity: 0 !important;
  transition: opacity 0.45s cubic-bezier(0.34,1.56,0.64,1) !important; pointer-events: none !important; z-index: 0 !important;
}
.treatments-wrapper .ph-card:hover { transform: translateY(-5px) !important }
.treatments-wrapper .ph-card:hover::after { opacity: 1 !important }
.treatments-wrapper .ph-card:nth-child(1) { animation-delay: 0.04s !important }
.treatments-wrapper .ph-card:nth-child(2) { animation-delay: 0.09s !important }
.treatments-wrapper .ph-card:nth-child(3) { animation-delay: 0.14s !important }
.treatments-wrapper .ph-card:nth-child(4) { animation-delay: 0.19s !important }
.treatments-wrapper .ph-card:nth-child(5) { animation-delay: 0.24s !important }
.treatments-wrapper .ph-card:nth-child(6) { animation-delay: 0.29s !important }
@keyframes phCardFadeUp { from { opacity: 0; transform: translateY(12px) } to { opacity: 1; transform: translateY(0) } }
.treatments-wrapper .ph-card:focus-visible { outline: 2px solid var(--c-brand-3) !important; outline-offset: 3px !important }

/* Left border accent */
.treatments-wrapper .ph-card-border-left {
  position: absolute !important; top: 0 !important; left: 0 !important;
  width: 4px !important; height: 100% !important; background: var(--c-brand-1) !important;
  z-index: 2 !important; transform: scaleY(0) !important; transform-origin: top !important;
  transition: transform 0.32s cubic-bezier(0.22,0.61,0.36,1) !important; pointer-events: none !important;
}
.treatments-wrapper .ph-card:hover .ph-card-border-left { transform: scaleY(1) !important; transform-origin: top !important }
.treatments-wrapper .ph-card:not(:hover) .ph-card-border-left { transform: scaleY(0) !important; transform-origin: bottom !important }

/* Card image */
.treatments-wrapper .ph-card-img { height: 180px !important; overflow: hidden !important; background: #f0f5f3 !important; position: relative !important; flex-shrink: 0 !important; border: none !important }
.treatments-wrapper .ph-card-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; transition: opacity 0.38s ease !important; border: none !important; background: none !important }
.treatments-wrapper .ph-card:hover .ph-card-img img { opacity: 0.93 !important }
.treatments-wrapper .ph-card-img-placeholder { width: 100% !important; height: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 48px !important; background: #f0f5f3 !important }

/* Type badge */
.treatments-wrapper .ph-card-type-badge { position: absolute !important; top: 12px !important; right: 12px !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; padding: 4px 10px !important; border-radius: 20px !important; font-family: var(--ff-inter) !important; border: none !important; line-height: 1.5 !important }
.treatments-wrapper .ph-badge-nhs     { background: #1a56a0 !important; color: #fff !important }
.treatments-wrapper .ph-badge-private { background: #5b3fa0 !important; color: #fff !important }

/* Card body */
.treatments-wrapper .ph-card-body { padding: 20px 20px 20px 24px !important; flex: 1 !important; display: flex !important; flex-direction: column !important; background: var(--c-bg) !important }
.treatments-wrapper .ph-card-icon { width: 40px !important; height: 40px !important; border-radius: 10px !important; display: flex !important; align-items: center !important; justify-content: center !important; margin-bottom: 14px !important; flex-shrink: 0 !important; border: none !important }
.treatments-wrapper .ph-card-icon svg { width: 20px !important; height: 20px !important }
.treatments-wrapper .ph-nhs-icon      { background: #e8f0fa !important }
.treatments-wrapper .ph-private-icon  { background: #f0ecfa !important }
.treatments-wrapper .ph-card-subtitle { font-size: 11px !important; font-weight: 600 !important; color: #5a6d69 !important; letter-spacing: 0.06em !important; text-transform: uppercase !important; margin: 0 0 5px !important; font-family: var(--ff-inter) !important }
.treatments-wrapper .ph-card-title    { font-size: 17px !important; font-weight: 700 !important; color: var(--c-text) !important; line-height: 1.3 !important; margin: 0 0 8px !important; letter-spacing: -0.01em !important; font-family: var(--ff-inter) !important }
.treatments-wrapper .ph-card-desc     { font-size: 14px !important; color: #5a6d69 !important; line-height: 1.65 !important; flex: 1 !important; margin: 0 0 14px !important; font-family: var(--ff-inter) !important }
.treatments-wrapper .ph-card-tags     { display: flex !important; flex-wrap: wrap !important; gap: 6px !important; margin: 0 0 14px !important; padding: 0 !important; list-style: none !important }

/* Card footer */
.treatments-wrapper .ph-card-footer { display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 14px 0 0 !important; border-top: 1px solid var(--c-divider) !important; border-left: none !important; border-right: none !important; border-bottom: none !important; margin-top: auto !important }
.treatments-wrapper .ph-card-price           { font-size: 13px !important; color: #5a6d69 !important; font-family: var(--ff-inter) !important }
.treatments-wrapper .ph-card-price strong    { font-size: 15px !important; color: var(--c-text) !important; font-weight: 700 !important }
.treatments-wrapper .ph-card-price.ph-free strong { color: #1a56a0 !important }
.treatments-wrapper .ph-card-action          { font-size: 13px !important; font-weight: 600 !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; white-space: nowrap !important; text-decoration: none !important; font-family: var(--ff-inter) !important }
.treatments-wrapper .ph-nhs-action     { color: #1a56a0 !important }
.treatments-wrapper .ph-private-action { color: #5b3fa0 !important }

@media (max-width: 768px) {
  .treatments-wrapper .ph-cards-grid { grid-template-columns: 1fr !important }
  .treatments-wrapper { padding-left: 16px !important; padding-right: 16px !important }
  .ph-block           { padding-top: 36px !important; padding-bottom: 36px !important }
  .ph-block--first    { padding-top: 8px !important; padding-bottom: 36px !important }
}

/* =====================================================================
   HOW IT WORKS — .wrp-hiw*
   ===================================================================== */
.wrp-hiw-scope  { gap: 24px }
.wrp-hiw-header { align-items: center; text-align: center; gap: 10px; max-width: 920px; margin: 0 auto }
.wrp-hiw-header .elementor-widget-text-editor { max-width: 760px }
.wrp-hiw-header .elementor-widget-text-editor p { margin: 0; line-height: 1.7; color: rgba(15,23,42,0.72); font-weight: 550; text-align: center }
.wrp-hiw-row  { gap: 22px; align-items: stretch; justify-content: space-between; flex-wrap: nowrap }
.wrp-hiw-card { flex: 1; min-width: 0 }
.wrp-hiw-item {
  height: 100%; display: flex; flex-direction: column; border-radius: 16px; overflow: hidden;
  background: var(--c-bg); border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 16px 34px rgba(15,23,42,0.08); transition: transform 0.18s ease, box-shadow 0.18s ease; position: relative;
}
.wrp-hiw-item::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 55%, rgba(240,247,244,0.55) 100%); opacity: 0.85 }
.wrp-hiw-item::after  { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--c-brand-2); opacity: 0.35; pointer-events: none }
@media (hover: hover) { .wrp-hiw-item:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(15,23,42,0.12) } }

.wrp-hiw-media { position: relative; height: 170px; background-color: var(--c-bg-alt); background-size: cover; background-position: center; background-repeat: no-repeat }
.wrp-hiw-item[data-step="1"] .wrp-hiw-media { background-image: url("/wp-content/uploads/2026/04/online-pharmacy-consultation-mobile-uk.webp") }
.wrp-hiw-item[data-step="2"] .wrp-hiw-media { background-image: url("/wp-content/uploads/2026/04/pharmacist-approved-medication-uk.webp") }
.wrp-hiw-item[data-step="3"] .wrp-hiw-media { background-image: url("/wp-content/uploads/2026/04/discreet-pharmacy-delivery-uk.webp") }
.wrp-hiw-media__step { position: absolute; left: 14px; top: 14px; width: 32px; height: 32px; border-radius: 999px; background: var(--e-global-color-721b164); color: var(--c-bg); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; line-height: 1; box-shadow: 0 10px 18px rgba(15,23,42,0.14); z-index: 2 }
.wrp-hiw-content { padding: 18px 18px 20px; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center }
.wrp-hiw-content__title { margin: 0; font-size: 18px; line-height: 1.25; font-weight: 900; color: #0F172A }
.wrp-hiw-content__text  { margin: 0; max-width: 340px; line-height: 1.65; color: rgba(15,23,42,0.72); font-weight: 560 }

@media (max-width: 1024px) { .wrp-hiw-row { flex-wrap: wrap } .wrp-hiw-card { flex: 1 1 calc(50% - 11px) } .wrp-hiw-media { height: 160px } }
@media (max-width: 767px)  { .wrp-hiw-row { gap: 14px } .wrp-hiw-card { flex: 1 1 100% } .wrp-hiw-media { height: 150px } .wrp-hiw-content { padding: 16px 14px } .wrp-hiw-content__title { font-size: 17px } }

/* =====================================================================
   EXPRESS DELIVERY WIDGET — .wrp-express
   ===================================================================== */
.wrp-express { width: 100% }
.wrp-express__card { border-radius: 18px; padding: 26px 32px; display: grid; grid-template-columns: 300px 1fr; column-gap: 48px; align-items: start }
.wrp-express__left { min-width: 0 }
.wrp-express__lead { display: flex; align-items: center; gap: 12px }
.wrp-express__ic   { width: 28px; height: 28px; flex: 0 0 28px; display: flex; align-items: center; justify-content: center; color: var(--e-global-color-721b164, #f59e0b) }
.wrp-express__ic svg { width: 26px; height: 26px; display: block }
.wrp-express__title { font-weight: 800; font-size: 20px; line-height: 1.2 }
.wrp-express__rule  { margin-top: 18px; height: 1px; width: 100%; background: rgba(15,23,42,.18) }
.wrp-express__grid  { display: grid; grid-template-columns: 1fr 1fr; column-gap: 60px; row-gap: 26px; align-content: start }
.wrp-express__item  { min-width: 0 }
.wrp-express__top   { display: flex; justify-content: space-between; align-items: baseline; gap: 18px }
.wrp-express__name  { font-size: 14px; font-weight: 700; line-height: 1.2; white-space: normal; overflow: visible; text-overflow: clip; display: flex; align-items: center; gap: 8px }
.wrp-express__price { font-size: 14px; font-weight: 800; line-height: 1.2; white-space: nowrap }
.wrp-express__price--free { color: #16a34a }
.wrp-express__desc  { margin-top: 6px; font-size: 13px; line-height: 1.4; opacity: .75 }
.wrp-express__nhs-badge { display: inline-flex; align-items: center; flex-shrink: 0 }
.wrp-express__nhs-badge svg { display: block; width: 36px; height: 14px }

@media (max-width: 1024px) { .wrp-express__card { grid-template-columns: 260px 1fr; padding: 22px 24px; column-gap: 32px } .wrp-express__grid { column-gap: 44px; row-gap: 22px } }
@media (max-width: 767px)  { .wrp-express__card { grid-template-columns: 1fr; row-gap: 18px; padding: 20px } .wrp-express__grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 18px } .wrp-express__title { font-size: 18px } }

/* =====================================================================
   DELIVERY OPTIONS + TRUST STRIP — .wrp-delivery
   ===================================================================== */
.wrp-delivery {
  --brand-1: var(--c-brand-1); --brand-2: var(--c-brand-2); --brand-3: var(--c-brand-3);
  --text: var(--c-text); --bg: var(--c-bg); --bg-alt: var(--c-bg-alt); --divider: var(--c-divider);
  --radius-card: 18px;
  --shadow: 0 2px 16px rgba(14,95,75,0.08); --shadow-hover: 0 6px 28px rgba(14,95,75,0.14);
  color: var(--text);
}
.wrp-delivery__container { max-width: 1160px; margin: 0 auto; padding: 0 18px }
.wrp-delivery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }

.wrp-delivery-card {
  background: var(--bg); border: 1.5px solid var(--divider); border-radius: var(--radius-card);
  padding: 32px 28px 28px; display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative; overflow: hidden; min-height: 330px;
}
.wrp-delivery-card:hover { border-color: var(--brand-1); box-shadow: var(--shadow-hover); transform: translateY(-2px) }

/* Featured + Priority share same styling */
.wrp-delivery-card--featured,
.wrp-delivery-card--priority { border-color: var(--brand-1); background: linear-gradient(160deg, var(--bg) 60%, rgba(208,255,243,.35) 100%) }
.wrp-delivery-card--priority .wrp-delivery-card__icon, .wrp-delivery-card--featured .wrp-delivery-card__icon { background: var(--brand-2); border-color: rgba(14,95,75,.2) }

.wrp-delivery-card__badge { position: absolute; top: 20px; right: 20px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--brand-2); color: var(--brand-1); border-radius: 100px; padding: 4px 10px }
.wrp-delivery-card__badge--priority { background: var(--brand-2); color: var(--brand-1) }
.wrp-delivery-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--bg-alt); border: 1.5px solid var(--divider); display: flex; align-items: center; justify-content: center; color: var(--brand-1); margin-bottom: 20px }
.wrp-delivery-card__title { font-size: 18px; font-weight: 800; color: var(--text); margin: 0 0 6px }
.wrp-delivery-card__time  { font-size: 13px; font-weight: 600; color: var(--brand-3); margin: 0 0 12px }
.wrp-delivery-card__desc  { font-size: 14px; color: #5A7A6D; line-height: 1.6; flex: 1; margin: 0 0 22px }
.wrp-delivery-card__price { font-size: 22px; font-weight: 900; color: var(--text); border-top: 1px solid var(--divider); padding-top: 16px }
.wrp-delivery-card__price span { font-size: 13px; font-weight: 500; color: #7A9B91 }
.wrp-delivery-card__price--free { color: var(--brand-1) }

/* NHS card */
.wrp-delivery-card--nhs { border-color: #003087; background: linear-gradient(160deg, var(--bg) 60%, rgba(0,48,135,.04) 100%) }
.wrp-delivery-card--nhs:hover { border-color: #003087 }
.wrp-delivery-card--nhs .wrp-delivery-card__icon  { background: rgba(0,48,135,.08); border-color: rgba(0,48,135,.15); color: #003087 }
.wrp-delivery-card--nhs .wrp-delivery-card__time  { color: #003087 }
.wrp-delivery-card--nhs .wrp-delivery-card__price { color: #003087 }
.wrp-delivery-card--nhs .wrp-delivery-card__price span { color: rgba(0,48,135,.55) }

/* Trust strip */
.wrp-delivery__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px }
.wrp-trust-item { background: var(--bg); border: 1.5px solid var(--divider); border-radius: 14px; padding: 20px 22px; display: flex; align-items: flex-start; gap: 14px }
.wrp-trust-item__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-alt); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--brand-1) }
.wrp-trust-item__copy strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 3px }
.wrp-trust-item__copy p { margin: 0; font-size: 13px; color: #5A7A6D; line-height: 1.5 }

/* Disclaimer */
.wrp-delivery__disclaimer { margin-top: 16px; padding: 14px 18px; background: var(--bg-alt); border: 1.5px solid var(--divider); border-radius: 10px; font-size: 13px; color: #5A7A6D; line-height: 1.5 }
.wrp-delivery__disclaimer strong { color: var(--text) }

@media (max-width: 1020px) { .wrp-delivery__grid { grid-template-columns: 1fr 1fr } .wrp-delivery__trust { grid-template-columns: 1fr } }
@media (max-width: 768px)  { .wrp-delivery__grid { grid-template-columns: 1fr } }

/* =====================================================================
   DELIVERY COUNTDOWN — [data-wrp-delivery-countdown]
   ===================================================================== */
.wrp-delivery-countdown {
  --wrp-cd-brand:  #0E5F4B;
  --wrp-cd-accent: #F09350;
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 0; background: none;
}
.wrp-delivery-countdown__live { width: 9px; height: 9px; background: var(--wrp-cd-accent); border-radius: 50%; flex-shrink: 0; animation: wrpCdRipple 1.4s ease-out infinite }
@keyframes wrpCdRipple { 0% { box-shadow: 0 0 0 0 rgba(240,147,80,0.55) } 70% { box-shadow: 0 0 0 8px rgba(240,147,80,0) } 100% { box-shadow: 0 0 0 0 rgba(240,147,80,0) } }
.wrp-delivery-countdown__label { font-size: .78em; font-weight: 600; color: var(--wrp-cd-brand); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap }
.wrp-delivery-countdown__timer { display: flex; align-items: center; gap: 3px }
.wrp-delivery-countdown__box   { display: flex; flex-direction: column; align-items: center; line-height: 1 }
.wrp-delivery-countdown__drum  { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 1.85em; font-weight: 700; color: var(--wrp-cd-brand); line-height: 1; min-width: 2ch; text-align: center; overflow: hidden; position: relative; height: 1em }
.wrp-delivery-countdown__digit { position: absolute; width: 100%; text-align: center; top: 0; left: 0; line-height: 1em }
.wrp-delivery-countdown__digit.is-out { animation: wrpCdSlideOut .35s cubic-bezier(.4,0,.2,1) forwards }
.wrp-delivery-countdown__digit.is-in  { animation: wrpCdSlideIn  .35s cubic-bezier(.4,0,.2,1) forwards }
@keyframes wrpCdSlideOut { from { transform: translateY(0);    opacity: 1 } to { transform: translateY(-100%); opacity: 0 } }
@keyframes wrpCdSlideIn  { from { transform: translateY(100%); opacity: 0 } to { transform: translateY(0);    opacity: 1 } }
.wrp-delivery-countdown__unit { font-size: .58em; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--wrp-cd-accent); margin-top: 4px }
.wrp-delivery-countdown__sep  { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 1.6em; font-weight: 700; color: var(--wrp-cd-accent); line-height: 1; margin: 0 2px; align-self: flex-start; animation: wrpCdBlink 1s step-start infinite }
@keyframes wrpCdBlink { 0%, 100% { opacity: 1 } 50% { opacity: .3 } }
.wrp-delivery-countdown__divider { width: 1.5px; height: 2.4em; background: linear-gradient(to bottom, transparent, var(--wrp-cd-brand), transparent); opacity: .2; flex-shrink: 0 }
.wrp-delivery-countdown__delivery { display: flex; flex-direction: column; line-height: 1.15; gap: 1px }
.wrp-delivery-countdown__delivery-label { font-size: .68em; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(14,95,75,.5) }
.wrp-delivery-countdown__delivery-day   { font-size: 1.25em; font-weight: 800; color: var(--wrp-cd-brand); white-space: nowrap; letter-spacing: -.01em; text-decoration: none }

@media (max-width: 767px) {
  .wrp-delivery-countdown { flex-wrap: wrap; gap: 10px; justify-content: center; width: 100% }
  .wrp-delivery-countdown__divider  { display: none }
  .wrp-delivery-countdown__label    { width: 100%; text-align: center }
  .wrp-delivery-countdown__delivery { align-items: center; width: 100%; text-align: center }
}

/* =====================================================================
   FAQ ACCORDION — .wrp-faqs
   ===================================================================== */
.wrp-faqs { max-width: 980px; margin: 44px auto 0 }
.wrp-faqs .wrp-faqs__list { display: flex; flex-direction: column; gap: 16px; margin-top: 10px }
.wrp-faqs .wrp-faqs__item { border: 1px solid rgba(17,24,39,0.10); border-radius: 14px; background: var(--c-bg); overflow: hidden }
.wrp-faqs .wrp-faqs__q {
  width: 100%; border: 0 !important; background: var(--c-bg) !important; background-image: none !important;
  color: inherit !important; text-align: left; display: flex; align-items: center; justify-content: space-between;
  padding: 26px 28px !important; cursor: pointer; transition: background 0.2s ease;
  appearance: none; -webkit-appearance: none; box-shadow: none !important; outline: none !important;
  text-transform: none !important; letter-spacing: normal !important; font: inherit; line-height: normal; border-radius: 0 !important;
}
.wrp-faqs .wrp-faqs__item:not(.is-open) .wrp-faqs__q:hover,
.wrp-faqs .wrp-faqs__item.is-open .wrp-faqs__q { background: var(--c-brand-2) !important }
.wrp-faqs .wrp-faqs__q:active, .wrp-faqs .wrp-faqs__q:focus, .wrp-faqs .wrp-faqs__q:focus-visible { background: var(--c-bg) !important; box-shadow: none !important; outline: none !important }
.wrp-faqs .wrp-faqs__qtext { font-weight: 700 !important; font-size: 18px !important; line-height: 1.25 !important; color: var(--c-brand-1) !important; margin: 0 }
.wrp-faqs .wrp-faqs__icon  { width: 34px; height: 34px; min-width: 34px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: #eef2f7 !important; border: 1px solid rgba(17,24,39,0.06) !important; font-weight: 700; font-size: 18px; color: #0f172a !important; transition: transform 0.18s ease; box-shadow: none !important }
.wrp-faqs .wrp-faqs__a     { padding: 0 28px 24px }
.wrp-faqs .wrp-faqs__item.is-open .wrp-faqs__a  { padding: 18px 28px 28px }
.wrp-faqs .wrp-faqs__a p   { margin: 0; font-size: 16px; line-height: 1.75; opacity: 0.9 }
.wrp-faqs .wrp-faqs__item.is-open .wrp-faqs__icon { transform: rotate(45deg) }
@media (max-width: 767px) {
  .wrp-faqs { margin-top: 28px }
  .wrp-faqs .wrp-faqs__q { padding: 18px 16px !important }
  .wrp-faqs .wrp-faqs__qtext { font-size: 16px !important }
  .wrp-faqs .wrp-faqs__a { padding: 0 16px 16px }
  .wrp-faqs .wrp-faqs__item.is-open .wrp-faqs__a { padding: 16px 16px 20px }
}

/* =====================================================================
   FAQ HELP BANNER — .wrp-faq-help
   ===================================================================== */
.wrp-faq-help      { display: flex; align-items: center; gap: 12px; min-height: 48px }
.wrp-faq-help__icon { width: 34px; height: 34px; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); color: #fff; flex: 0 0 auto }
.wrp-faq-help__copy { display: flex; flex-direction: column; line-height: 1.2; min-width: 0 }
.wrp-faq-help__link { display: inline-flex; align-items: center; width: fit-content; text-decoration: none; color: inherit }
.wrp-faq-help__title { font-weight: 700; color: #fff; font-size: 14px; text-decoration: none; text-underline-offset: 3px; text-decoration-thickness: 1px }
.wrp-faq-help__link:hover .wrp-faq-help__title, .wrp-faq-help__link:focus-visible .wrp-faq-help__title { text-decoration: underline }
.wrp-faq-help__link:focus-visible { outline: 2px solid rgba(245,158,11,.65); outline-offset: 3px; border-radius: 8px }
.wrp-faq-help__sub { color: rgba(255,255,255,.85); font-size: 12px; margin-top: 2px }

/* =====================================================================
   REVIEWS SLIDER — .reviews-slider*
   ===================================================================== */
.reviews-slider-section { width: 100%; padding: 0 }
.reviews-slider-section * { box-sizing: border-box }
.reviews-slider-container { position: relative; overflow: hidden; margin-bottom: 40px; padding-top: 12px }
.reviews-slider-wrapper   { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1) }
.reviews-slider-card      { min-width: calc(25% - 24px); margin: 0 12px; background: var(--c-bg); border-radius: 16px; padding: 24px; border: 1px solid var(--c-divider); transition: all 0.3s ease; display: flex; flex-direction: column; gap: 16px }
.reviews-slider-card:hover { transform: translateY(-8px); border-color: var(--c-brand-1) }

.reviews-card-header { display: flex; align-items: center; gap: 12px; min-height: 44px; position: relative; padding-left: 86px }
.reviews-card-header::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 74px; height: 64px; background-image: url("/wp-content/uploads/2026/02/google-rating.webp"); background-size: contain; background-repeat: no-repeat; background-position: center }
.reviews-google-icon  { width: 74px; height: 64px; flex-shrink: 0 }
.reviews-stars        { color: #FBBC04; font-size: 16px; letter-spacing: 2px; line-height: 1 }
.reviews-title        { color: var(--c-brand-1); font-size: 17px; font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; min-height: 44px; display: flex; align-items: center }
.reviews-text         { color: var(--c-text); line-height: 1.6; font-size: 14px; flex-grow: 1 }
.reviews-reviewer-name { color: var(--c-brand-1); font-size: 13px; font-weight: 600; padding-top: 12px; border-top: 1px solid var(--c-bg-alt) }

.reviews-nav-buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 32px }
.reviews-nav-btn { background: var(--c-bg) !important; color: var(--c-brand-1) !important; border: none !important; width: 48px !important; height: 48px !important; min-width: 48px !important; min-height: 48px !important; max-width: 48px !important; max-height: 48px !important; border-radius: 50% !important; cursor: pointer; font-size: 24px !important; font-weight: 600 !important; line-height: 1 !important; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(14,95,75,0.10) !important; display: flex !important; align-items: center !important; justify-content: center !important; padding: 0 !important }
.reviews-nav-btn:hover  { background: var(--c-brand-1) !important; color: var(--c-bg) !important; transform: scale(1.05); box-shadow: 0 4px 16px rgba(14,95,75,0.20) !important }
.reviews-nav-btn:active { transform: scale(0.95) }

.reviews-dots { display: flex !important; justify-content: center !important; gap: 8px !important }
.reviews-dot { width: 10px !important; height: 10px !important; border-radius: 50% !important; background: rgba(14,95,75,0.3) !important; cursor: pointer !important; transition: all 0.3s ease !important; border: none !important; padding: 0 !important; display: block !important }
.reviews-dot.active { background: var(--c-brand-1) !important; width: 32px !important; height: 10px !important; border-radius: 5px !important }
.reviews-dot:hover:not(.active) { background: rgba(14,95,75,0.5) !important }

@media (max-width: 1200px) { .reviews-slider-card { min-width: calc(33.333% - 24px) } }
@media (max-width: 768px)  { .reviews-slider-card { min-width: calc(50% - 24px) } }
@media (max-width: 480px)  { .reviews-slider-card { min-width: calc(100% - 24px); padding: 20px } .reviews-card-header { padding-left: 78px } .reviews-card-header::before { width: 68px; height: 58px } }

/* =====================================================================
   STATS CARDS — animated counters
   ===================================================================== */
.wrp-step-ic { color: var(--e-global-color-721b164) }
.wrp-stats, .wrp-stats * { box-sizing: border-box }
.wrp-stats { position: relative; width: 100%; background: transparent !important; margin: 0 !important }
.wrp-stats .wrp-stats__inner { max-width: 1400px; margin: 0 auto; padding: 0 }
.wrp-stats .wrp-stats__grid  { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 22px !important; align-items: stretch !important; width: 100% }
.wrp-stats .wrp-stat          { background: var(--c-bg) !important; border: 1px solid rgba(15,23,42,.10) !important; border-radius: 12px !important; box-shadow: 0 10px 24px rgba(15,23,42,.08) !important; padding: 18px 18px 16px !important; margin: 0 !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; min-height: 130px !important }
.wrp-stats .wrp-stat__icon    { width: 42px; height: 42px; border-radius: 10px; background: var(--c-bg-alt) !important; color: var(--c-brand-1) !important; display: flex !important; align-items: center !important; justify-content: center !important; margin: 0 0 10px !important; border: 1px solid rgba(14,95,75,.12) !important }
.wrp-stats .wrp-stat__icon svg { width: 22px; height: 22px; display: block }
.wrp-stats .wrp-stat__num    { font-weight: 800 !important; font-size: 22px !important; line-height: 1.1 !important; letter-spacing: -0.02em !important; color: #0F172A !important; margin: 4px 0 0 !important }
.wrp-stats .wrp-stat__label  { margin: 6px 0 0 !important; font-size: 12px !important; font-weight: 600 !important; letter-spacing: 0.02em !important; color: rgba(15,23,42,.70) !important; text-align: center }

@media (max-width: 1024px) {
  .wrp-stats .wrp-stats__grid { grid-template-columns: repeat(2,1fr) !important }
  .wrp-stats .wrp-stats__grid > .wrp-stat:nth-child(3),
  .wrp-stats .wrp-stats__grid > .wrp-stat:nth-child(4) { display: none !important }
}
@media (max-width: 767px) {
  .wrp-stats .wrp-stats__grid { grid-template-columns: 1fr !important; gap: 14px !important }
  .wrp-stats .wrp-stats__inner { padding: 0 14px !important }
  .wrp-stats .wrp-stat { min-height: 120px !important }
  .wrp-stats .wrp-stat__num { font-size: 20px !important }
  .wrp-stats .wrp-stats__grid > .wrp-stat:nth-child(2),
  .wrp-stats .wrp-stats__grid > .wrp-stat:nth-child(3),
  .wrp-stats .wrp-stats__grid > .wrp-stat:nth-child(4) { display: none !important }
}

/* =====================================================================
   GOOGLE REVIEWS PAGE — animated slide-in cards
   ===================================================================== */
@keyframes wrpSlideInLeft  { from { opacity: 0; transform: translateX(-36px) } to { opacity: 1; transform: translateX(0) } }
@keyframes wrpSlideInRight { from { opacity: 0; transform: translateX(36px)  } to { opacity: 1; transform: translateX(0) } }

.reviews-section {
  --brand: var(--c-brand-1); --brand-hover: var(--c-link-hover);
  --text: #111827; --muted: #6B7280; --line: rgba(17,24,39,.09);
  --card: var(--c-bg); --orange: #F59E0B; --radius: 14px;
  padding: 16px 0 32px; color: var(--text);
}
.reviews-shell  { max-width: 900px; margin: 0 auto; padding: 0 16px }
.reviews-head   { border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: 10px; background: #fff; padding: 18px 24px }
.reviews-kicker { display: flex; gap: 14px; align-items: center }
.reviews-google-logo  { width: 100px; border-radius: 6px }
.reviews-kicker-text  { display: flex; flex-direction: column; gap: 4px }
.reviews-subtitle     { color: var(--muted); font-weight: 500; font-size: 13.5px }
.reviews-list { margin-top: 18px; display: flex; flex-direction: column; gap: 18px }

.review-item {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: 10px; padding: 24px 26px 22px; min-height: 240px;
  display: flex; flex-direction: column; opacity: 0; transform: translateX(-36px);
  transition: border-left-color .25s ease, box-shadow .25s ease;
}
.review-item.in-view-left  { animation: wrpSlideInLeft  .6s cubic-bezier(.25,.8,.25,1) forwards }
.review-item.in-view-right { animation: wrpSlideInRight .6s cubic-bezier(.25,.8,.25,1) forwards }
.review-item.done { opacity: 1; transform: none; animation: none }
.review-item:hover { border-left-color: var(--c-bg-dark); box-shadow: 0 4px 16px rgba(14,95,75,.07) }

.review-top  { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line) }
.stars       { display: inline-flex; gap: 3px }
.star        { width: 17px; height: 17px; fill: var(--orange) }
.review-google-badge img { width: 70px; opacity: .75 }
.review-mid  { margin-top: 16px; display: flex; flex-direction: column; flex: 1 }
.review-title { font-size: 16px; font-weight: 700 }
.review-text  { margin-top: 10px; color: #4B5563; font-size: 15px; line-height: 1.7; flex: 1 }
.review-name  { font-size: 12.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; margin-top: 16px }
.clamped      { display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 3 }
.review-actions { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end }
.reviews-section .review-link { all: unset; font-size: 15px; font-weight: 600; color: var(--brand); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; transition: color .15s ease }
.reviews-section .review-link:hover { color: var(--brand-hover) }

/* =====================================================================
   SERVICE CARDS — .wrp-svc-wrap
   ===================================================================== */
.wrp-svc-wrap, .wrp-svc-wrap * { text-decoration: none !important }
.wrp-svc-wrap {
  display: block; position: relative; width: 100%; height: 210px; border-radius: 18px;
  overflow: hidden; background-image: var(--bg); background-size: cover; background-position: center;
  transition: transform 0.18s ease; cursor: pointer;
}
.wrp-svc-wrap::before { content: ''; position: absolute; inset: 0; background: rgba(10,95,75,0.55) }
.wrp-svc-wrap:hover   { transform: translate3d(0,-3px,0) }
.wrp-svc-inner { position: absolute; inset: 0; z-index: 2; padding: 18px 18px 20px; text-align: center; color: var(--c-bg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px }
.wrp-svc-title { font-weight: 900; letter-spacing: 0.6px; text-transform: uppercase; font-size: 18px; line-height: 1.1 }
.wrp-svc-sub   { font-weight: 700; font-size: 12px; opacity: 0.92; line-height: 1.25; max-width: 260px }
.wrp-svc-btn   { display: inline-flex; align-items: center; justify-content: center; padding: 8px 18px; border-radius: 10px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(6px); font-weight: 900; font-size: 12px; letter-spacing: 0.5px }
@media (max-width: 767px) { .wrp-svc-wrap { height: 180px } .wrp-svc-title { font-size: 16px } }

/* =====================================================================
   SERVICE STEPS LIST — .list / .item
   ===================================================================== */
.list { width: 100%; max-width: 480px; display: flex; flex-direction: column; gap: 0 }
.item {
  display: flex; align-items: center; gap: 1.25rem; padding: 1.35rem 1.5rem;
  background: var(--c-bg); border: 1px solid rgba(14,95,75,0.12); cursor: pointer; position: relative;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  opacity: 0; transform: translateY(16px); animation: fadeUp 0.5s forwards;
}
.item:first-child { border-radius: 14px 14px 0 0 }
.item:last-child  { border-radius: 0 0 14px 14px }
.item:not(:last-child) { border-bottom: none }
.item:nth-child(1) { animation-delay: 0.05s }
.item:nth-child(2) { animation-delay: 0.18s }
.item:nth-child(3) { animation-delay: 0.31s }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0) } }
.item:hover { background: rgba(14,95,75,0.08); transform: translateX(4px); box-shadow: -3px 0 0 var(--c-brand-1); z-index: 1 }

.icon-wrap { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: #e8f4f0; display: flex; align-items: center; justify-content: center; transition: background 0.2s }
.item:hover .icon-wrap { background: var(--c-brand-1) }
.item:hover .icon-wrap svg { stroke: var(--c-bg) }
.icon-wrap svg { width: 22px; height: 22px; stroke: var(--c-brand-1); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s }
.text-wrap { flex: 1 }
.label    { font-family: var(--ff-inter); font-weight: 700; font-size: 1.05rem; color: var(--c-text); line-height: 1.3; margin-bottom: 2px }
.sublabel { font-size: 0.8rem; color: var(--c-brand-1); font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase }
.arrow    { flex-shrink: 0; color: rgba(14,95,75,0.25); transition: color 0.2s, transform 0.2s; font-size: 1.1rem }
.item:hover .arrow { color: var(--c-brand-1); transform: translateX(3px) }

/* =====================================================================
   CONTACT METHODS — .wrp-contact-methods
   ===================================================================== */
.wrp-contact-methods {
  width: 100%;
  --wrp-card-bg-soft: #f8fafc;
  --wrp-card-border-soft: rgba(15,23,42,.08);
}
.wrp-contact-methods__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px }

.wrp-contact-card {
  position: relative; display: flex; align-items: center; gap: 16px;
  padding: 22px 20px 22px 24px; background: var(--wrp-card-bg-soft);
  border: 1px solid var(--wrp-card-border-soft); border-radius: 10px; text-decoration: none;
  overflow: hidden; cursor: pointer; min-height: 110px;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}
.wrp-contact-card:hover { box-shadow: 0 12px 30px rgba(15,23,42,.08); transform: translateY(-2px); border-color: rgba(14,165,122,.35); background: var(--c-bg) }
.wrp-contact-card.is-active { background: var(--c-bg); border-color: rgba(14,165,122,.35); box-shadow: 0 10px 24px rgba(15,23,42,.06) }
.wrp-contact-card:focus-visible { outline: 2px solid var(--c-brand-3); outline-offset: 3px }

/* Left accent bar */
.wrp-contact-card__accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--c-brand-1); border-radius: 10px 0 0 10px;
  transform: scaleY(0); transform-origin: top center;
  transition: transform .35s cubic-bezier(0.4,0,0.2,1); pointer-events: none;
}
.wrp-contact-card:hover .wrp-contact-card__accent,
.wrp-contact-card.is-active .wrp-contact-card__accent { transform: scaleY(1) }
.wrp-contact-card:not(:hover):not(.is-active) .wrp-contact-card__accent { transform: scaleY(0); transform-origin: bottom center }

/* Pseudo left bar (NHS hover style) */
.wrp-contact-card::before {
  content: ''; position: absolute; left: 0; top: 10px; bottom: 10px;
  width: var(--wrp-leftbar-w); border-radius: 999px;
  background: linear-gradient(180deg, var(--wrp-green), var(--wrp-green-2));
  opacity: 0; transform: translateX(-8px); transition: opacity .18s ease, transform .18s ease;
}
.wrp-contact-card:hover::before,
.wrp-contact-card.is-active::before { opacity: 1; transform: translateX(0) }

.wrp-contact-card__icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(180deg, rgba(14,165,122,.16), rgba(14,165,122,.10));
  border: 1px solid rgba(14,165,122,.20); color: var(--c-brand-1);
  display: grid; place-items: center; flex: 0 0 42px;
  box-shadow: 0 8px 18px rgba(14,165,122,.12);
  transition: background .3s ease, color .3s ease;
}
.wrp-contact-card__icon svg { width: 20px; height: 20px; display: block }
.wrp-contact-card:hover .wrp-contact-card__icon { background: rgba(14,95,75,.14); color: #0C3A32 }

.wrp-contact-card__content { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto }
.wrp-contact-card__title   { font-weight: 700; font-size: .95rem; line-height: 1.2; color: #0C3A32; letter-spacing: -.01em }
.wrp-contact-card__desc    { margin-top: 3px; font-size: .82rem; line-height: 1.45; color: rgba(12,58,50,.55) }
.wrp-contact-card__meta    { margin-top: 6px; font-size: .78rem; font-weight: 600; color: var(--c-brand-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: .01em }

.wrp-contact-card__arrow { flex: 0 0 auto; width: 20px; height: 20px; color: rgba(14,95,75,.35); margin-left: 4px; display: grid; place-items: center; transition: transform .3s ease, color .3s ease }
.wrp-contact-card__arrow svg { width: 16px; height: 16px; display: block }
.wrp-contact-card:hover .wrp-contact-card__arrow,
.wrp-contact-card:hover .wrp-contact-card__chev { transform: translateX(6px); color: var(--c-brand-1) }

.wrp-contact-toast { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%) translateY(6px); background: #0C3A32; color: #fff; padding: 10px 16px; border-radius: 8px; font-size: .82rem; font-weight: 500; box-shadow: 0 8px 28px rgba(0,0,0,.2); opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease; z-index: 9999; white-space: nowrap }
.wrp-contact-toast.is-showing { opacity: 1; transform: translateX(-50%) translateY(0) }

@media (max-width: 1024px) { .wrp-contact-methods__grid { grid-template-columns: repeat(2, minmax(0,1fr)) } .wrp-contact-card:nth-child(3) { grid-column: span 2 } }
@media (max-width: 640px)  { .wrp-contact-methods__grid { grid-template-columns: 1fr; gap: 10px } .wrp-contact-card { min-height: 72px; padding: 14px 14px 14px 18px } .wrp-contact-card__desc { display: none } .wrp-contact-card:nth-child(3) { grid-column: span 1 } }
@media (prefers-reduced-motion: reduce) { .wrp-contact-card, .wrp-contact-card::before, .wrp-contact-card__chev { transition: none !important } }

/* =====================================================================
   HEADER SEARCH BAR — .hdr-search (light + dark variants)
   ===================================================================== */
.hdr-search { position: relative !important; width: 100% !important; max-width: 500px !important; box-sizing: border-box !important }
.hdr-search__field { position: relative !important; display: flex !important; align-items: center !important; width: 100% !important; background: #f7faf9 !important; border: 1.5px solid var(--c-divider) !important; border-radius: 10px !important; box-sizing: border-box !important; transition: border-color 0.2s ease, box-shadow 0.2s ease !important }
.hdr-search__field:focus-within { border-color: var(--c-brand-1) !important; box-shadow: 0 0 0 3px rgba(14,95,75,0.09) !important }
.hdr-search__icon { position: absolute !important; left: 13px !important; top: 50% !important; transform: translateY(-50%) !important; width: 15px !important; height: 15px !important; color: #8aada7 !important; pointer-events: none !important; flex-shrink: 0 !important; transition: color 0.2s ease !important; display: block !important }
.hdr-search__field:focus-within .hdr-search__icon { color: var(--c-brand-1) !important }
.hdr-search__input { all: unset !important; display: block !important; width: 100% !important; padding: 10px 36px 10px 38px !important; font-family: var(--ff-inter) !important; font-size: 14px !important; font-weight: 400 !important; color: var(--c-text) !important; line-height: 1.5 !important; box-sizing: border-box !important; cursor: text !important; background: transparent !important }
.hdr-search__input::placeholder { color: #a8bebb !important; font-weight: 400 !important }
.hdr-search__clear { all: unset !important; position: absolute !important; right: 9px !important; top: 50% !important; transform: translateY(-50%) !important; width: 22px !important; height: 22px !important; display: none !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; border-radius: 50% !important; color: #8aada7 !important; transition: background 0.15s ease, color 0.15s ease !important; flex-shrink: 0 !important }
.hdr-search__clear svg { width: 11px !important; height: 11px !important; display: block !important }
.hdr-search__clear:hover { background: #e0f0ea !important; color: var(--c-brand-1) !important }
.hdr-search__clear--visible { display: flex !important }
.hdr-search__dropdown { position: absolute !important; top: calc(100% + 4px) !important; left: 0 !important; right: 0 !important; background: var(--c-bg) !important; border: 1.5px solid var(--c-divider) !important; border-radius: 10px !important; box-shadow: 0 8px 28px rgba(14,95,75,0.11) !important; z-index: 99999 !important; overflow: hidden !important; list-style: none !important; margin: 0 !important; padding: 5px 0 !important; display: none !important; max-height: 360px !important; overflow-y: auto !important; box-sizing: border-box !important }
.hdr-search__dropdown--open { display: block !important }
.hdr-search__dropdown::-webkit-scrollbar { width: 4px !important }
.hdr-search__dropdown::-webkit-scrollbar-track { background: transparent !important }
.hdr-search__dropdown::-webkit-scrollbar-thumb { background: var(--c-divider) !important; border-radius: 4px !important }
.hdr-search__item { display: flex !important; align-items: center !important; gap: 12px !important; padding: 9px 14px !important; cursor: pointer !important; transition: background 0.1s ease !important; list-style: none !important; margin: 0 !important; box-sizing: border-box !important; text-decoration: none !important }
.hdr-search__item:hover, .hdr-search__item--active { background: #f0f8f5 !important }
.hdr-search__thumb { width: 40px !important; height: 40px !important; border-radius: 8px !important; object-fit: cover !important; flex-shrink: 0 !important; background: #f0f5f3 !important; display: block !important }
.hdr-search__thumb--placeholder { background: #f0f5f3 !important; border-radius: 8px !important }
.hdr-search__info  { flex: 1 !important; min-width: 0 !important; display: flex !important; flex-direction: column !important; gap: 2px !important }
.hdr-search__title { font-size: 13px !important; font-weight: 600 !important; color: var(--c-text) !important; font-family: var(--ff-inter) !important; line-height: 1.35 !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important }
.hdr-search__title mark { background: transparent !important; color: var(--c-brand-1) !important; font-weight: 700 !important; padding: 0 !important; margin: 0 !important }
.hdr-search__category { font-size: 11px !important; color: #5a6d69 !important; font-family: var(--ff-inter) !important; font-weight: 400 !important; line-height: 1.4 !important }
.hdr-search__badge { display: inline-block !important; font-size: 9px !important; font-weight: 700 !important; letter-spacing: 0.07em !important; text-transform: uppercase !important; padding: 2px 7px !important; border-radius: 20px !important; background: #f0ecfa !important; color: #5b3fa0 !important; flex-shrink: 0 !important; font-family: var(--ff-inter) !important; line-height: 1.6 !important; white-space: nowrap !important }
.hdr-search__badge--nhs { background: #e8f0fa !important; color: #1a56a0 !important }
.hdr-search__empty   { padding: 12px 14px !important; font-size: 13px !important; color: #5a6d69 !important; font-family: var(--ff-inter) !important; list-style: none !important }
.hdr-search__loading { display: flex !important; align-items: center !important; gap: 8px !important; padding: 12px 14px !important; font-size: 13px !important; color: #8aada7 !important; font-family: var(--ff-inter) !important; list-style: none !important }
.hdr-search__spinner { width: 14px !important; height: 14px !important; border: 2px solid var(--c-divider) !important; border-top-color: var(--c-brand-1) !important; border-radius: 50% !important; animation: hdrSpin 0.6s linear infinite !important; flex-shrink: 0 !important }
@keyframes hdrSpin { to { transform: rotate(360deg) } }
.hdr-search__group-label { display: block !important; padding: 8px 14px 4px !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; color: #a0b4b0 !important; font-family: var(--ff-inter) !important; list-style: none !important; margin: 0 !important; pointer-events: none !important; user-select: none !important }
.hdr-search__group-label + .hdr-search__group-label,
.hdr-search__item--product:first-of-type { border-top: 1px solid #f0f5f3 !important }
.hdr-search__item--page ~ .hdr-search__group-label { border-top: 1px solid #f0f5f3 !important; margin-top: 4px !important; padding-top: 10px !important }
.hdr-search__page-icon { width: 40px !important; height: 40px !important; border-radius: 8px !important; background: #f0f8f5 !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important }
.hdr-search__page-icon svg { width: 18px !important; height: 18px !important; color: var(--c-brand-1) !important; display: block !important }

/* Dark variant */
.hdr-search--dark .hdr-search__field { background: transparent !important; border-color: rgba(255,255,255,0.35) !important }
.hdr-search--dark .hdr-search__field:focus-within { border-color: var(--c-brand-1) !important; box-shadow: 0 0 0 3px rgba(14,95,75,0.09) !important }
.hdr-search--dark .hdr-search__icon { color: rgba(255,255,255,0.6) !important }
.hdr-search--dark .hdr-search__field:focus-within .hdr-search__icon { color: var(--c-brand-1) !important }
.hdr-search--dark .hdr-search__input { color: var(--c-bg) !important }
.hdr-search--dark .hdr-search__input::placeholder { color: rgba(255,255,255,0.5) !important }
.hdr-search--dark .hdr-search__clear { color: rgba(255,255,255,0.6) !important }
@media (max-width: 768px) { .hdr-search { max-width: 100% !important } }

/* =====================================================================
   MY ACCOUNT PAGE — WooCommerce
   ===================================================================== */
.woocommerce-account .woocommerce { padding-top: 100px !important; padding-bottom: 100px !important; font-family: var(--ma-font) !important; color: var(--ma-text) !important }

/* Left nav */
.woocommerce-MyAccount-navigation { background: var(--ma-white) !important; border: 1.5px solid var(--ma-border) !important; border-radius: var(--ma-radius) !important; padding: 8px 0 !important; box-shadow: 0 2px 12px rgba(14,95,75,0.06) !important; overflow: hidden !important }
.woocommerce-MyAccount-navigation ul { list-style: none !important; margin: 0 !important; padding: 0 !important; border: none !important }
.woocommerce-MyAccount-navigation ul li { margin: 0 !important; padding: 0 !important; border: none !important }
.woocommerce-MyAccount-navigation-link a { display: flex !important; align-items: center !important; gap: 10px !important; padding: 11px 20px !important; font-family: var(--ma-font) !important; font-size: 14px !important; font-weight: 500 !important; color: var(--ma-muted) !important; text-decoration: none !important; border-left: 3px solid transparent !important; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease !important; background: transparent !important; line-height: 1.4 !important }
.woocommerce-MyAccount-navigation-link a:hover { background: var(--ma-green-light) !important; color: var(--ma-green) !important; border-color: var(--ma-green-mid) !important }
.woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-MyAccount-navigation-link a.is-active { background: var(--ma-green-light) !important; color: var(--ma-green) !important; font-weight: 600 !important; border-color: var(--ma-green) !important }
.woocommerce-MyAccount-navigation-link a::before { content: '' !important; width: 16px !important; height: 16px !important; flex-shrink: 0 !important; background: currentColor !important; display: inline-block !important; -webkit-mask-repeat: no-repeat !important; mask-repeat: no-repeat !important; -webkit-mask-position: center !important; mask-position: center !important; -webkit-mask-size: contain !important; mask-size: contain !important }

/* Nav icon masks */
.woocommerce-MyAccount-navigation-link--dashboard a::before   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3C/svg%3E") !important; mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3C/svg%3E") !important }
.woocommerce-MyAccount-navigation-link--orders a::before      { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2'/%3E%3Crect x='9' y='3' width='6' height='4' rx='1'/%3E%3Cpath d='M9 12h6M9 16h4'/%3E%3C/svg%3E") !important; mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2'/%3E%3Crect x='9' y='3' width='6' height='4' rx='1'/%3E%3Cpath d='M9 12h6M9 16h4'/%3E%3C/svg%3E") !important }
.woocommerce-MyAccount-navigation-link--downloads a::before   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") !important; mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E") !important }
.woocommerce-MyAccount-navigation-link--edit-address a::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") !important; mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") !important }
.woocommerce-MyAccount-navigation-link--edit-account a::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important; mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important }
.woocommerce-MyAccount-navigation-link--customer-logout a { color: #c0392b !important; border-top: 1px solid var(--ma-border) !important; margin-top: 4px !important }
.woocommerce-MyAccount-navigation-link--customer-logout a:hover { background: #fff5f5 !important; color: #a93226 !important; border-color: transparent !important }
.woocommerce-MyAccount-navigation-link--customer-logout a::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 21H5a2 2 0 01-2-2V5a2 2 0 012-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E") !important; mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 21H5a2 2 0 01-2-2V5a2 2 0 012-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E") !important }

/* Content area */
.woocommerce-MyAccount-content { background: var(--ma-white) !important; border: 1.5px solid var(--ma-border) !important; border-radius: var(--ma-radius) !important; padding: 32px !important; margin: 0 !important; box-shadow: 0 2px 12px rgba(14,95,75,0.06) !important; font-family: var(--ma-font) !important; color: var(--ma-text) !important; font-size: 14px !important; line-height: 1.6 !important }
.woocommerce-MyAccount-content h2, .woocommerce-MyAccount-content h3 { font-family: var(--ma-font) !important; color: var(--ma-text) !important; font-weight: 600 !important; margin: 0 0 20px !important; padding: 0 0 14px !important; border-bottom: 1.5px solid var(--ma-border) !important; font-size: 18px !important; line-height: 1.3 !important }
.woocommerce-MyAccount-content h3 { font-size: 15px !important; margin-top: 28px !important; border-bottom: none !important; padding-bottom: 0 !important }
.woocommerce-MyAccount-content a { color: var(--ma-green) !important; text-decoration: none !important; font-weight: 500 !important; transition: color 0.15s ease !important }
.woocommerce-MyAccount-content a:hover { color: var(--ma-green-hover) !important; text-decoration: underline !important }

/* Info / dashboard box */
.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-account .woocommerce-info { background: var(--ma-green-light) !important; border: none !important; border-left: 4px solid var(--ma-green) !important; border-radius: 8px !important; color: var(--ma-text) !important; padding: 14px 18px !important; font-size: 14px !important; font-family: var(--ma-font) !important; margin-bottom: 24px !important }
.woocommerce-MyAccount-content .woocommerce-info::before { display: none !important }

/* Orders table */
.woocommerce-orders-table,
.woocommerce-MyAccount-content table.shop_table { width: 100% !important; border-collapse: separate !important; border-spacing: 0 !important; font-family: var(--ma-font) !important; font-size: 13px !important; border: 1.5px solid var(--ma-border) !important; border-radius: 10px !important; overflow: hidden !important }
.woocommerce-orders-table thead tr th,
.woocommerce-MyAccount-content table.shop_table thead th { background: var(--ma-bg) !important; color: var(--ma-muted) !important; font-weight: 600 !important; font-size: 11px !important; text-transform: uppercase !important; letter-spacing: 0.06em !important; padding: 10px 16px !important; border-bottom: 1.5px solid var(--ma-border) !important; text-align: left !important }
.woocommerce-orders-table tbody tr td,
.woocommerce-MyAccount-content table.shop_table tbody td { padding: 14px 16px !important; border-bottom: 1px solid var(--ma-border) !important; color: var(--ma-text) !important; vertical-align: middle !important; background: var(--ma-white) !important }
.woocommerce-orders-table tbody tr:last-child td,
.woocommerce-MyAccount-content table.shop_table tbody tr:last-child td { border-bottom: none !important }
.woocommerce-orders-table tbody tr:hover td,
.woocommerce-MyAccount-content table.shop_table tbody tr:hover td { background: var(--ma-green-light) !important }

/* Order status marks */
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark,
.woocommerce-order-status { display: inline-block !important; padding: 3px 10px !important; border-radius: 20px !important; font-size: 11px !important; font-weight: 600 !important; background: var(--ma-green-light) !important; color: var(--ma-green) !important; letter-spacing: 0.03em !important }
mark.status-completed,   .status-completed mark   { background: var(--ma-green-light) !important; color: var(--ma-green) !important }
mark.status-processing,  .status-processing mark  { background: #e8f0fa !important; color: #1a56a0 !important }
mark.status-on-hold,     .status-on-hold mark     { background: #fff8e6 !important; color: #b07d00 !important }
mark.status-cancelled,   .status-cancelled mark   { background: #fff0ef !important; color: #c0392b !important }
mark.status-refunded,    .status-refunded mark    { background: #f5f0ff !important; color: #5b3fa0 !important }
mark.status-failed,      .status-failed mark      { background: #fff0ef !important; color: #c0392b !important }

/* WooCommerce buttons */
.woocommerce-button,
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content a.button,
.woocommerce-MyAccount-content input[type="submit"],
.woocommerce-MyAccount-content button[type="submit"] { display: inline-flex !important; align-items: center !important; justify-content: center !important; padding: 8px 18px !important; background: var(--ma-green) !important; color: var(--c-bg) !important; font-family: var(--ma-font) !important; font-size: 13px !important; font-weight: 600 !important; border: none !important; border-radius: 8px !important; cursor: pointer !important; text-decoration: none !important; transition: background 0.15s ease, transform 0.1s ease !important; line-height: 1.4 !important; box-shadow: none !important }
.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content a.button:hover,
.woocommerce-MyAccount-content input[type="submit"]:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover { background: var(--ma-green-hover) !important; color: var(--c-bg) !important; transform: translateY(-1px) !important; box-shadow: 0 4px 12px rgba(14,95,75,0.2) !important }
.woocommerce-MyAccount-content .button.alt,
.woocommerce-MyAccount-content a.button.alt { background: transparent !important; color: var(--ma-green) !important; border: 1.5px solid var(--ma-green) !important }
.woocommerce-MyAccount-content .button.alt:hover,
.woocommerce-MyAccount-content a.button.alt:hover { background: var(--ma-green-light) !important; color: var(--ma-green) !important; box-shadow: none !important }

/* Forms */
.woocommerce-MyAccount-content .woocommerce-form-row,
.woocommerce-MyAccount-content p.form-row { margin-bottom: 16px !important }
.woocommerce-MyAccount-content label { display: block !important; font-size: 12px !important; font-weight: 600 !important; color: var(--ma-muted) !important; margin-bottom: 5px !important; font-family: var(--ma-font) !important; text-transform: uppercase !important; letter-spacing: 0.05em !important }
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea { width: 100% !important; padding: 10px 14px !important; font-family: var(--ma-font) !important; font-size: 14px !important; color: var(--ma-text) !important; background: var(--ma-bg) !important; border: 1.5px solid var(--ma-border) !important; border-radius: 8px !important; outline: none !important; transition: border-color 0.2s ease, box-shadow 0.2s ease !important; box-sizing: border-box !important; appearance: none !important }
.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus { border-color: var(--ma-green) !important; box-shadow: 0 0 0 3px rgba(14,95,75,0.09) !important; background: var(--ma-white) !important }
.woocommerce-MyAccount-content .woocommerce-password-strength { font-size: 12px !important; padding: 4px 10px !important; border-radius: 6px !important; font-family: var(--ma-font) !important; margin-top: 4px !important }

/* Address boxes */
.woocommerce-MyAccount-content .woocommerce-Address { background: var(--ma-bg) !important; border: 1.5px solid var(--ma-border) !important; border-radius: 10px !important; padding: 20px !important; font-family: var(--ma-font) !important }
.woocommerce-MyAccount-content .woocommerce-Address-title h3 { font-size: 14px !important; font-weight: 600 !important; color: var(--ma-text) !important; margin: 0 0 12px !important; padding: 0 !important; border: none !important; text-transform: uppercase !important; letter-spacing: 0.05em !important }
.woocommerce-MyAccount-content address { font-style: normal !important; font-size: 14px !important; color: var(--ma-muted) !important; line-height: 1.7 !important; font-family: var(--ma-font) !important }

/* Order detail */
.woocommerce-order-details, .woocommerce-customer-details { margin-bottom: 32px !important }
.woocommerce-order-details__title, .woocommerce-column__title { font-size: 15px !important; font-weight: 600 !important; color: var(--ma-text) !important; font-family: var(--ma-font) !important; margin: 0 0 14px !important; padding: 0 0 10px !important; border-bottom: 1.5px solid var(--ma-border) !important }

/* Notices */
.woocommerce-account .woocommerce-message { background: var(--ma-green-light) !important; border: none !important; border-left: 4px solid var(--ma-green) !important; border-radius: 8px !important; color: var(--ma-text) !important; padding: 14px 18px !important; font-family: var(--ma-font) !important; font-size: 14px !important; margin-bottom: 20px !important }
.woocommerce-account .woocommerce-error  { background: #fff0ef !important; border: none !important; border-left: 4px solid #c0392b !important; border-radius: 8px !important; color: #7b241c !important; padding: 14px 18px !important; font-family: var(--ma-font) !important; font-size: 14px !important; list-style: none !important; margin-bottom: 20px !important }
.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-error::before { display: none !important }

/* Mobile orders table */
@media (max-width: 640px) {
  .woocommerce-orders-table thead { display: none !important }
  .woocommerce-orders-table tbody tr { display: block !important; border: 1.5px solid var(--ma-border) !important; border-radius: 10px !important; margin-bottom: 12px !important; overflow: hidden !important }
  .woocommerce-orders-table tbody tr td { display: block !important; padding: 8px 16px !important; text-align: right !important; border-bottom: none !important }
  .woocommerce-orders-table tbody tr td::before { content: attr(data-title) !important; float: left !important; font-weight: 600 !important; font-size: 12px !important; color: var(--ma-muted) !important; text-transform: uppercase !important; letter-spacing: 0.05em !important }
  .woocommerce-orders-table tbody tr td:last-child { border-bottom: none !important }
}
@media (max-width: 1024px) { .woocommerce-account .woocommerce { padding-top: 40px !important; padding-bottom: 40px !important } }
@media (max-width: 767px)  { .woocommerce-account .woocommerce { padding-top: 40px !important; padding-bottom: 40px !important } .woocommerce-MyAccount-content { padding: 20px !important } }

/* ===================================================================== FOOTER — .siteFooter ===================================================================== */
.siteFooter{color:rgba(255,255,255,.90);background:var(--c-brand-1)}
.siteFooter__inner{width:min(1300px,calc(100% - 40px));margin:0 auto;display:grid;gap:20px}
.siteFooter__top{padding:36px 0 20px;border-bottom:1px solid rgba(255,255,255,.10)}
.siteFooter__top .siteFooter__inner{grid-template-columns:1.15fr 1.85fr;align-items:start}
.siteFooter__brand{max-width:380px}
.siteFooter__logo{display:inline-flex;align-items:center;gap:8px;text-decoration:none;color:#fff!important;font-weight:950;letter-spacing:-.01em;margin-bottom:12px;font-family:inherit}
.siteFooter__logo:link,.siteFooter__logo:visited,.siteFooter__logo:hover,.siteFooter__logo:focus,.siteFooter__logo:focus-visible,.siteFooter__logo:active{color:#fff!important;-webkit-text-fill-color:#fff!important;text-decoration:none!important;font-family:inherit!important}
.siteFooter__icon{width:40px;height:28px;flex-shrink:0;object-fit:contain}
.siteFooter__fullLogo{width:auto;height:40px;max-width:220px;object-fit:contain}
.siteFooter__tagline{margin:0 0 12px;padding-left:0;max-width:56ch;font-size:14px;line-height:1.6;color:rgba(255,255,255,.78);font-weight:650}
.siteFooter__trust{display:flex;flex-wrap:wrap;gap:6px;margin-top:0;padding-left:0}
.footPill{display:inline-flex;align-items:center;gap:6px;height:26px;padding:0 10px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);font-size:11px;font-weight:850;color:rgba(255,255,255,.86)}
.footPill__dot{width:8px;height:8px;border-radius:999px;background:rgba(18,73,34,.35);border:1px solid rgba(18,73,34,.55)}

/* Footer navigation */
.siteFooter__cols{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.siteFooter__col{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10);border-radius:18px;padding:14px 14px 12px}
.siteFooter__h{margin:0 0 10px;font-size:13px;font-weight:950;color:rgba(255,255,255,.92);letter-spacing:.01em}
.siteFooter__h--small{font-size:12px;opacity:.95}
.siteFooter__links{display:flex;flex-direction:column}

/* Main card links — fixed white, original font/size/weight preserved */
.siteFooter__cols .siteFooter__links a.siteFooter__a,
.siteFooter__cols .siteFooter__links a.siteFooter__a:link,
.siteFooter__cols .siteFooter__links a.siteFooter__a:visited,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:link,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:visited{
  display:block!important;
  text-decoration:none!important;
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
  font-family:inherit!important;
  font-size:13px!important;
  font-weight:650!important;
  line-height:normal!important;
  opacity:1!important;
  padding:8px 10px;
  border-radius:12px;
  background:transparent;
  transition:background 160ms ease,transform 160ms ease,color 160ms ease;
}

.siteFooter__cols .siteFooter__links a.siteFooter__a:hover,
.siteFooter__cols .siteFooter__links a.siteFooter__a:focus,
.siteFooter__cols .siteFooter__links a.siteFooter__a:focus-visible,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:hover,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:focus,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:focus-visible{
  color:rgba(255,255,255,.88)!important;
  -webkit-text-fill-color:rgba(255,255,255,.88)!important;
  text-decoration:none!important;
  background:rgba(255,255,255,.08)!important;
  transform:translateY(-1px);
  opacity:1!important;
}

.siteFooter__cols .siteFooter__links a.siteFooter__a:active,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:active{
  color:rgba(255,255,255,.88)!important;
  -webkit-text-fill-color:rgba(255,255,255,.88)!important;
  text-decoration:none!important;
  background:rgba(255,255,255,.12)!important;
  transform:translateY(0);
  opacity:1!important;
}

.siteFooter__cols .siteFooter__links a.siteFooter__a:focus-visible,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:focus-visible{
  outline:4px solid rgba(11,95,255,.25);
  outline-offset:2px;
}

.siteFooter__cols .siteFooter__links a.siteFooter__a *,
.siteFooter__cols .siteFooter__links a.siteFooter__a:link *,
.siteFooter__cols .siteFooter__links a.siteFooter__a:visited *,
.siteFooter__cols .siteFooter__links a.siteFooter__a:hover *,
.siteFooter__cols .siteFooter__links a.siteFooter__a:focus *,
.siteFooter__cols .siteFooter__links a.siteFooter__a:focus-visible *,
.siteFooter__cols .siteFooter__links a.siteFooter__a:active *,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a *,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:link *,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:visited *,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:hover *,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:focus *,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:focus-visible *,
footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a:active *{
  color:inherit!important;
  -webkit-text-fill-color:inherit!important;
  font-family:inherit!important;
}

/* Contact strip */
.siteFooter__strip{padding:16px 0;border-bottom:1px solid rgba(255,255,255,.10)}
.siteFooter__stripInner{display:flex;align-items:center;justify-content:space-between;gap:14px}
.siteFooter__contact{display:grid;gap:8px}
.footMeta{display:grid;grid-template-columns:90px 1fr;gap:10px;align-items:baseline}
.footMeta__k{font-size:12px;font-weight:900;color:rgba(255,255,255,.74)}
.footMeta__v{font-size:13px;font-weight:650;color:rgba(255,255,255,.82)}
.footMeta__sep{margin:0 8px;opacity:.6}

/* Other footer links */
.siteFooter__link{color:#fff!important;-webkit-text-fill-color:#fff!important;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.22);font-family:inherit!important}
.siteFooter__link:link,.siteFooter__link:visited{color:#fff!important;-webkit-text-fill-color:#fff!important;text-decoration:none!important}
.siteFooter__link:hover,.siteFooter__link:focus,.siteFooter__link:focus-visible,.siteFooter__link:active{color:rgba(255,255,255,.88)!important;-webkit-text-fill-color:rgba(255,255,255,.88)!important;text-decoration:none!important;border-bottom-color:rgba(255,255,255,.55)}
.siteFooter__link:focus-visible{outline:4px solid rgba(11,95,255,.25);outline-offset:2px;border-radius:6px}

/* Social links */
.siteFooter__social{display:inline-flex;gap:10px;align-items:center;flex:0 0 auto}
.footSocial{width:36px;height:36px;border-radius:12px;display:grid;place-items:center;text-decoration:none;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);transition:transform 160ms ease,background 160ms ease}
.footSocial:link,.footSocial:visited,.footSocial:hover,.footSocial:focus,.footSocial:focus-visible,.footSocial:active{color:#fff!important;-webkit-text-fill-color:#fff!important;text-decoration:none!important}
.footSocial svg{width:16px;height:16px;fill:rgba(255,255,255,.84)}
.footSocial:hover{transform:translateY(-1px);background:rgba(255,255,255,.11)}
.footSocial:active{transform:translateY(0);background:rgba(255,255,255,.14)}
.footSocial:focus-visible{outline:4px solid rgba(11,95,255,.25);outline-offset:2px}

/* Legal section */
.siteFooter__legal{padding:22px 0 26px}
.siteFooter__legalGrid{display:grid;grid-template-columns:1.35fr .95fr;gap:18px;align-items:start}
.siteFooter__disclaimer,.siteFooter__regs{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10);border-radius:18px;padding:14px}
.siteFooter__p{margin:0 0 10px;font-size:13px;line-height:1.6;color:rgba(255,255,255,.78);font-weight:650}
.siteFooter__list{list-style:none;padding:0;margin:0;display:grid;gap:10px;font-size:13px;line-height:1.45;color:rgba(255,255,255,.80);font-weight:650}
.siteFooter__label{color:rgba(255,255,255,.72);font-weight:850}
.siteFooter__value{color:rgba(255,255,255,.86);font-weight:700}

/* Accepted payments — Visa / Mastercard */
.siteFooter__payments{margin-top:16px;padding:14px 16px;display:flex;align-items:center;justify-content:space-between;gap:14px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10);border-radius:18px}
.siteFooter__paymentsText{font-size:12px;font-weight:900;color:rgba(255,255,255,.82);letter-spacing:.01em}
.siteFooter__paymentIcons{display:flex;align-items:center;gap:.6rem;flex-wrap:wrap}
.siteFooter__paymentIcon{display:inline-flex;align-items:center;justify-content:center;width:64px;height:40px;padding:7px 9px;background:#fff;border:1px solid rgba(0,0,0,.12);border-radius:8px;box-shadow:0 1px 2px rgba(0,0,0,.06)}
.siteFooter__paymentIcon img{display:block;max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain}
.siteFooter__paymentIcon--visa img{max-width:48px;max-height:18px}
.siteFooter__paymentIcon--mastercard img{max-width:42px;max-height:26px}

/* Bottom row */
.siteFooter__bottomRow{margin-top:14px;display:flex;justify-content:space-between;gap:12px;align-items:center;border-top:1px solid rgba(255,255,255,.10);padding-top:14px}
.siteFooter__copy,.siteFooter__credit{font-size:12px;color:rgba(255,255,255,.70);font-weight:650}
.siteFooter__creditLink{color:#fff!important;-webkit-text-fill-color:#fff!important;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.22);font-weight:700;font-family:inherit!important}
.siteFooter__creditLink:link,.siteFooter__creditLink:visited{color:#fff!important;-webkit-text-fill-color:#fff!important;text-decoration:none!important}
.siteFooter__creditLink:hover,.siteFooter__creditLink:focus,.siteFooter__creditLink:focus-visible,.siteFooter__creditLink:active{border-bottom-color:rgba(255,255,255,.55);color:rgba(255,255,255,.88)!important;-webkit-text-fill-color:rgba(255,255,255,.88)!important;text-decoration:none!important}

/* Footer-wide anchor colour safety net */
.siteFooter a,.siteFooter a:link,.siteFooter a:visited{color:#fff!important;-webkit-text-fill-color:#fff!important}
.siteFooter a:hover,.siteFooter a:focus,.siteFooter a:focus-visible,.siteFooter a:active{color:rgba(255,255,255,.88)!important;-webkit-text-fill-color:rgba(255,255,255,.88)!important}

/* Responsive */
@media (max-width:980px){.siteFooter__top .siteFooter__inner{grid-template-columns:1fr;gap:32px}.siteFooter__cols{grid-template-columns:repeat(3,minmax(0,1fr))}.siteFooter__stripInner{flex-direction:column;align-items:flex-start;gap:16px}.footMeta{grid-template-columns:76px 1fr}.siteFooter__legalGrid{grid-template-columns:1fr}.siteFooter__bottomRow{flex-direction:column;align-items:flex-start;gap:10px}}
@media (max-width:767px){.siteFooter__inner{width:calc(100% - 32px)}.siteFooter__top{padding:28px 0 24px}.siteFooter__top .siteFooter__inner{gap:28px}.siteFooter__brand{max-width:100%;width:100%;margin-bottom:8px}.siteFooter__logo{gap:0;margin-bottom:10px;width:100%;max-width:100%}.siteFooter__icon{display:none}.siteFooter__fullLogo{height:32px;max-width:100%;width:100%}.siteFooter__tagline{font-size:11px;line-height:1.45;margin-bottom:10px;max-width:100%;padding-left:0}.footPill{height:24px;padding:0 8px;font-size:10px;gap:5px}.footPill__dot{width:7px;height:7px}.siteFooter__cols{grid-template-columns:1fr;gap:16px}.siteFooter__col{padding:12px;border-radius:14px}.siteFooter__h{font-size:12px;margin-bottom:8px}.siteFooter__cols .siteFooter__links a.siteFooter__a,footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a{font-size:12px!important;padding:6px 8px}.siteFooter__strip{padding:20px 0}.footMeta{grid-template-columns:70px 1fr;gap:8px}.footMeta__k{font-size:11px}.footMeta__v{font-size:12px;display:flex;flex-direction:column;gap:4px}.footMeta__sep{display:none}.siteFooter__legal{padding:24px 0 28px}.siteFooter__legalGrid{gap:16px}.siteFooter__disclaimer,.siteFooter__regs{padding:12px;border-radius:14px}.siteFooter__h--small{font-size:11px;margin-bottom:8px}.siteFooter__p{font-size:12px;line-height:1.5;margin-bottom:10px}.siteFooter__p--hideOnMobile{display:none}.siteFooter__list{gap:8px;font-size:12px}.siteFooter__list--hideOnMobile{display:none}.siteFooter__payments{margin-top:14px;padding:12px;align-items:flex-start;flex-direction:column;border-radius:14px}.siteFooter__paymentIcons{gap:8px}.siteFooter__paymentIcon{width:54px;height:34px}.siteFooter__bottomRow{margin-top:16px;padding-top:16px;gap:12px;flex-direction:column;align-items:flex-start}.siteFooter__copy,.siteFooter__credit{font-size:11px}}
@media (max-width:380px){.siteFooter__fullLogo{height:28px}.siteFooter__tagline{font-size:10px}.footPill{font-size:9px;height:22px;padding:0 7px}.siteFooter__cols .siteFooter__links a.siteFooter__a,footer.siteFooter .siteFooter__cols .siteFooter__links a.siteFooter__a{font-size:11px!important}.siteFooter__paymentIcon{width:50px;height:32px}}
@media (prefers-reduced-motion:reduce){.siteFooter__a,.footSocial{transition:none!important}.siteFooter__a:hover,.footSocial:hover{transform:none!important}}

/* =====================================================================
   DASHBOARD — Hide default Astra/WordPress footer on dashboard pages
   ===================================================================== */
.site-footer,
.site-below-footer-wrap,
.ast-builder-grid-row-container,
.site-footer-focus-item,
.ast-builder-grid-row-full,
.ast-builder-grid-row-tablet-full,
.ast-builder-grid-row-mobile-full,
.ast-footer-row-stack,
.ast-footer-row-tablet-stack,
.ast-footer-row-mobile-stack { display: none !important }