@charset "UTF-8";
/* ===== Leanefy Topbar (SCSS) ===== */
/* Variables (tweak if needed) */
/* Respect safe areas on iPhone (notches) */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

.btn-primary {
  background: linear-gradient(135deg, #f18068, #fc9d7e);
  border: none;
}

/* Section wrapper */
.topbar {
  background-color: #facdbe;
  padding-top: calc(0.875rem + var(--safe-top));
  padding-bottom: 0.875rem;
  min-height: 42px;
  /* Prevent CLS by locking layout metrics */
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Ensure full-width background on all screens */
  width: 100%;
}
.topbar .container {
  padding-left: max(0.75rem, var(--safe-left));
  padding-right: max(0.75rem, var(--safe-right));
}

/* Text */
.topbar-text {
  color: #2b2b2b;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
  /* Wrap nicely on tiny screens */
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Icons */
.topbar-icon,
.topbar-signin i {
  font-size: 1.05rem;
}
@media (max-width: 575.98px) {
  .topbar-icon,
  .topbar-signin i {
    font-size: 1rem;
  }
}

/* Sign-in link */
.topbar-signin {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  transition: transform 120ms ease, color 120ms ease, background-color 120ms ease;
}
.topbar-signin:hover {
  color: #000000;
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
  text-decoration: none;
}
.topbar-signin:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
.topbar-signin .signin-label {
  white-space: nowrap;
  /* Allow wrapping under 350px so it never overflows */
}
@media (max-width: 349.98px) {
  .topbar-signin .signin-label {
    white-space: normal;
  }
}

/* Micro-breakpoints for very narrow devices (<=400px) */
@media (max-width: 400px) {
  .topbar {
    padding-top: calc(0.2rem + var(--safe-top));
    padding-bottom: 0.2rem;
  }
  .topbar-text,
  .topbar-signin {
    font-size: 0.875rem;
  }
  /* Stack left content more compactly */
  #leanefy-topbar .row {
    --bs-gutter-x: 0.5rem;
  }
}
/* High-DPI tweaks for iOS Safari rendering consistency */
@supports (-webkit-touch-callout: none) {
  .topbar-text {
    text-rendering: optimizeLegibility;
  }
}
/* ===== Leanefy Navbar (SCSS) ===== */
.navbar-wrap {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Keep logo sharp and CLS-free */
.logo-img {
  display: block;
  height: auto;
}

/* Desktop Nav (lg and up) */
.main-nav {
  /* Hover dropdowns on desktop */
}
.main-nav .nav.gap-2 {
  gap: 0.8rem !important;
}
.main-nav .nav-link {
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  border-radius: 0.375rem;
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.main-nav .nav-link:hover, .main-nav .nav-link:focus {
  color: #000;
  background: rgba(0, 0, 0, 0.04);
  text-decoration: none;
}
@media (min-width: 992px) {
  .main-nav .hover-dd {
    position: relative;
  }
  .main-nav .hover-dd .dropdown-menu {
    margin-top: 0rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: none;
    /* default hidden */
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 120ms ease, transform 120ms ease;
  }
  .main-nav .hover-dd:hover > .dropdown-menu, .main-nav .hover-dd:focus-within > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  .main-nav .dropdown-item {
    font-weight: 500;
    padding: 0.5rem 1rem;
  }
  .main-nav .dropdown-item:hover, .main-nav .dropdown-item:focus {
    background-color: rgba(241, 128, 104, 0.08);
    color: #f18068;
  }
}

/* CTA button with heartbeat animation */
.journey-btn {
  background: #000000;
  color: #f18068;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.85);
  transform-origin: center;
  animation: heartbeat 1.6s ease-in-out infinite;
}
.journey-btn:hover {
  text-decoration: none;
  filter: brightness(1.05);
}
.journey-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 128, 104, 0.35);
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.06);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.08);
  }
  40% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
/* Burger icon look aligned with Bootstrap */
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: no-repeat center/100% 100%;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") center/contain no-repeat;
  background-color: #000;
}

/* Offcanvas: slide from right, width 75% */
.nav-offcanvas {
  width: 75vw;
}
@media (max-width: 400px) {
  .nav-offcanvas {
    width: 80vw;
    /* a touch more breathing room on very small screens */
  }
}
.nav-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-offcanvas .offcanvas-title {
  font-weight: 800;
}
.nav-offcanvas .off-link {
  display: block;
  padding: 0.75rem 0.25rem;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  border-radius: 0.375rem;
}
.nav-offcanvas .off-link:hover {
  background: rgba(0, 0, 0, 0.04);
}
.nav-offcanvas .off-accordion {
  background: transparent;
  border: 0;
  padding: 0.75rem 0.25rem;
  font-weight: 800;
  color: #111;
  border-radius: 0.375rem;
  width: 100%;
}
.nav-offcanvas .off-accordion:hover {
  background: rgba(0, 0, 0, 0.04);
}
.nav-offcanvas .off-sublist {
  list-style: none;
  padding-left: 0.75rem;
  margin: 0.25rem 0 0.75rem 0;
}
.nav-offcanvas .off-sublist li {
  margin: 0.15rem 0;
}
.nav-offcanvas .off-sublist li a {
  display: block;
  padding: 0.5rem 0.25rem;
  color: #222;
  text-decoration: none;
  border-radius: 0.25rem;
}
.nav-offcanvas .off-sublist li a:hover {
  background: rgba(0, 0, 0, 0.035);
}
.nav-offcanvas .off-sublist li.divider {
  height: 1px;
  margin: 0.4rem 0;
  background: rgba(0, 0, 0, 0.08);
}

/* Micro-tweaks for tiny screens */
@media (max-width: 400px) {
  .logo-link {
    display: inline-flex;
  }
  .logo-img {
    width: 140px;
    height: auto;
  }
  /* retains intrinsic height ratio */
}
/* Prefer crisp text rendering on iOS */
@supports (-webkit-touch-callout: none) {
  .main-nav .nav-link {
    text-rendering: optimizeLegibility;
  }
}
/* ===== Leanefy Footer ===== */
.lf-footer {
  --bg: #facdbe;
  --text: #1a1a1a;
  --muted: #4a4a4a;
  --card: #fff;
  --radius: 16px;
  --gap: clamp(14px, 2.4vw, 24px);
  background: var(--bg);
  color: var(--text);
  padding: clamp(28px, 6vw, 72px) 0;
  /* Top row: badge, hours, providers, social */
  /* Middle link columns */
  /* Certification note */
  /* Bottom line */
}
.lf-footer .lf-top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.8fr auto;
  gap: var(--gap);
  align-items: center;
  margin-bottom: clamp(20px, 4vw, 36px);
}
@media (max-width: 991.98px) {
  .lf-footer .lf-top {
    grid-template-columns: 1fr 1fr;
    row-gap: var(--gap);
  }
}
@media (max-width: 575.98px) {
  .lf-footer .lf-top {
    grid-template-columns: 1fr;
  }
}
.lf-footer .lf-cert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}
.lf-footer .lf-cert .lf-cert-media {
  margin: 0;
  line-height: 0;
  aspect-ratio: 20/8;
  /* keeps space reserved */
  display: grid;
  place-items: center;
}
.lf-footer .lf-cert .lf-cert-media img {
  width: 60%;
  height: auto;
  max-width: 200px;
  display: block;
}
.lf-footer .lf-cert .lf-cert-text {
  display: grid;
  gap: 2px;
}
.lf-footer .lf-cert .lf-cert-text strong {
  font-weight: 900;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}
.lf-footer .lf-cert .lf-cert-text span {
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  color: var(--muted);
}
.lf-footer .lf-hours,
.lf-footer .lf-providers {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.lf-footer .lf-hours i,
.lf-footer .lf-providers i {
  font-size: 1.15rem;
}
.lf-footer .lf-hours strong,
.lf-footer .lf-providers strong {
  display: block;
  font-weight: 900;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}
.lf-footer .lf-hours span,
.lf-footer .lf-providers span {
  display: block;
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  color: var(--muted);
}
.lf-footer .lf-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .lf-footer .lf-social {
    justify-content: flex-start;
  }
}
.lf-footer .lf-social .s-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.lf-footer .lf-social .s-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.lf-footer .lf-social .s-btn i {
  font-size: 0.95rem;
}
.lf-footer .lf-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin: clamp(16px, 3vw, 24px) 0 clamp(18px, 3vw, 28px);
}
@media (max-width: 767.98px) {
  .lf-footer .lf-links {
    grid-template-columns: 1fr;
  }
}
.lf-footer .lf-col-title {
  margin: 0 0 10px 0;
  font-weight: 900;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
}
.lf-footer .lf-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.lf-footer .lf-nav li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.lf-footer .lf-nav li a i {
  width: 1.1em;
  text-align: center;
}
.lf-footer .lf-nav li a:hover {
  transform: translateX(4px);
  background: rgba(0, 0, 0, 0.06);
}
.lf-footer .lf-nav li a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}
.lf-footer .lf-note {
  margin-top: clamp(18px, 3.5vw, 28px);
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 24px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.lf-footer .lf-note h3 {
  margin: 0 0 8px 0;
  font-weight: 900;
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lf-footer .lf-note p {
  margin: 0 0 0.75rem 0;
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  color: var(--text);
}
.lf-footer .lf-note blockquote {
  margin: 0;
  padding: 10px 14px;
  border-left: 4px solid #000;
  background: #f9f9f9;
  border-radius: 10px;
  font-size: clamp(0.92rem, 1.6vw, 1rem);
}
.lf-footer .lf-note blockquote footer {
  margin-top: 0.5rem;
  color: var(--muted);
  background: none;
}
.lf-footer .lf-bottom {
  margin-top: clamp(16px, 3vw, 24px);
  text-align: center;
}
.lf-footer .lf-bottom small {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Equal height for Hours & Providers cards in the top row */
/* Keep the top row items the same height while shrinking the badge */
.lf-footer {
  /* Optionally tighten the cards’ minimum height to a known value */
  /* On very small screens you can relax the cap if needed */
}
.lf-footer .lf-top {
  /* still recommended so the two cards match each other */
  align-items: stretch;
  /* shrink the LegitScript badge so it can't drive row height */
}
.lf-footer .lf-top .lf-hours,
.lf-footer .lf-top .lf-providers {
  align-self: stretch;
}
.lf-footer .lf-top .lf-cert {
  align-self: center; /* badge keeps natural (smaller) height */
}
.lf-footer .lf-top .lf-cert .lf-cert-media {
  /* optional: remove aspect-ratio if it forces extra height */
  aspect-ratio: auto;
}
.lf-footer .lf-top .lf-cert .lf-cert-media img {
  /* cap height; width auto keeps aspect ratio */
  max-height: 72px; /* tweak 64–84px to match your cards */
  width: auto;
  height: auto;
  display: block;
}
.lf-footer .lf-top .lf-hours,
.lf-footer .lf-top .lf-providers {
  min-height: 72px; /* match the badge cap above for perfect alignment */
}
@media (max-width: 575.98px) {
  .lf-footer .lf-top .lf-cert .lf-cert-media img {
    max-height: 60px;
  }
  .lf-footer .lf-top .lf-hours, .lf-footer .lf-top .lf-providers {
    min-height: 60px;
  }
}

/* Make Office Hours and Medical Providers equal width */
.lf-footer {
  /* Optional: tablet/phone already stacks per your media queries */
}
.lf-footer .lf-top {
  /* first column (badge) auto, middle two equal, last (social) auto */
  grid-template-columns: minmax(200px, auto) repeat(2, 1fr) auto;
  /* keep them equal and tidy even when space is tight */
  /* ensure both cards stretch equally and have same height */
  /* keep the badge and socials naturally sized */
}
@supports (grid-template-columns: subgrid) {
  .lf-footer .lf-top {
    /* not required, but future-friendly */
  }
}
.lf-footer .lf-top .lf-hours,
.lf-footer .lf-top .lf-providers {
  align-self: stretch;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 72px;
}
.lf-footer .lf-top .lf-cert,
.lf-footer .lf-top .lf-social {
  align-self: center;
}
@media (max-width: 991.98px) {
  .lf-footer .lf-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575.98px) {
  .lf-footer .lf-top {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 576px) {
  .topbar .topbar-left .topbar-text {
    white-space: nowrap;
  }
  .topbar .topbar-left .topbar-offer-link {
    white-space: nowrap;
    margin-left: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .topbar .topbar-left {
    flex-wrap: wrap;
  }
  .topbar .topbar-left .topbar-text {
    flex: 0 0 100%;
    white-space: normal;
    text-align: center;
    margin-bottom: 0.125rem;
  }
  .topbar .topbar-left .topbar-offer-link {
    flex: 0 0 100%;
    display: inline-block;
    text-align: center;
    margin-top: 0.125rem;
  }
}
.topbar .topbar-offer-link {
  font-weight: 800;
  text-decoration: none;
  color: #000000;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.topbar .topbar-offer-link:hover, .topbar .topbar-offer-link:focus {
  text-decoration: none;
  color: black;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  box-shadow: 0 0 0 0.15rem rgba(0, 0, 0, 0.15);
  outline: 0;
}

.breadcrumbs {
  font-size: 14px;
  margin: 10px 0;
  font-weight: bold;
}

.breadcrumb-link {
  text-decoration: none;
}

.breadcrumb-sep {
  margin: 0 6px;
  opacity: 0.6;
}

.breadcrumb-current {
  font-weight: 600;
  color: #f18068;
  background: #000000;
  padding: 5px 20px;
  border-radius: 10px;
}

/*# sourceMappingURL=common.css.map */
