/* NEVER show PWA header on desktop */
@media (min-width: 769px) {
  .pwa-app-header {
    display: none !important;
  }
}


:root{
  --blue-top:#273c8f;
  --blue-main:#3ea7f9;
  --blue-soft:#e6f4ff;
  --accent:#f9fafc;
  --text:#1f2933;
  --muted:#6b7280;
  --radius-lg:22px;
  --radius-md:14px;
  --radius-pill:999px;
}
*,
*::before,
*::after{box-sizing:border-box;}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Inter",system-ui,sans-serif;
  color:var(--text);
  background:#ffffff;
}
a{color:var(--blue-top);text-decoration:none;}
a:hover{text-decoration:underline;}
.lm-container{width:min(1180px,100% - 3rem);margin:0 auto;}
.lm-topbar{background:var(--blue-top);color:#e5e7eb;font-size:.8rem;}
.lm-topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.45rem 0;}
.lm-topbar-left{
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  gap:.35rem;
}
@media (max-width:480px){
  .lm-topbar{font-size:.75rem;}
  .lm-topbar-inner{
    gap:.45rem;
  }
  .lm-topbar-cta{
    padding:.3rem .8rem;
    font-size:.75rem;
  }
}

@media (max-width:600px){
  .lm-brand-logo{height:42px;}
  .lm-brand-name{font-size:.8rem;}
  .lm-brand-tagline{
    font-size:.75rem;
    line-height:1.2;
  }
}


.lm-topbar-left a{color:#fff;}
.lm-topbar-right{display:flex;align-items:center;gap:.4rem;}
.lm-social{width:26px;height:26px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-size:.7rem;color:#fff;font-weight:600;}
.lm-social-fb{background:#1877f2;}
.lm-social-ig{background:#e4405f;}
.lm-topbar-cta{background:#3ea7f9;color:#fff;padding:.36rem 1.0rem;border-radius:var(--radius-pill);font-size:.8rem;font-weight:600;}
.lm-topbar-cta:hover{background:#2493e9;color:#fff;}
.lm-nav-wrap{background:#fff;border-bottom:1px solid rgba(15,23,42,.06);}
.lm-nav-row{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;padding:1.1rem 0;}
.lm-brand{display:flex;align-items:center;gap:.7rem;}
.lm-brand-logo{height:50px;width:auto;}
.lm-brand-text{display:flex;flex-direction:column;}
.lm-brand-name{font-weight:700;letter-spacing:.04em;text-transform:uppercase;font-size:.9rem;}
.lm-brand-tagline{font-size:.8rem;color:var(--muted);}
.lm-main-nav{display:flex;align-items:center;gap:1.2rem;font-size:.9rem;}
.lm-main-nav a{position:relative;padding-bottom:.25rem;}
.lm-main-nav a::after{content:'';position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--blue-main);transition:width .18s ease-out;}
.lm-main-nav a:hover::after{width:100%;}



.lm-nav-toggle{
  display:none;                 /* hidden by default (desktop) */
  background:none;
  border:none;
  padding:0;
  margin-left:auto;
  cursor:pointer;
  flex-direction:column;        /* 👈 stack spans vertically */
  align-items:center;           /* center the 3 bars */
  justify-content:center;
}


/* three simple bars – no animation */
.lm-nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  border-radius:999px;
  background:#dc2626;  /* or #dc2626 if you want red */
  margin:4px 0;
}


.lm-main{padding-bottom:3rem;}
.lm-row-2{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);gap:2rem;}
.lm-row-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.6rem;}
.lm-row-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.6rem;}
.lm-hero{background:linear-gradient(135deg,#f0f7ff,#ffffff);padding:2.5rem 0 3rem;}
.lm-hero-inner{position:relative;border-radius:30px;overflow:hidden;background:#ffffff;box-shadow:0 24px 60px rgba(15,23,42,.12);}
.lm-hero-slide{
  display:none;
  align-items:center;
  gap:2rem;
  padding:2.5rem 3rem;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .45s ease, transform .45s ease;
}
.lm-hero-slide.active{
  display:flex;
  opacity:1;
  transform:translateY(0);
}
.lm-hero-copy h1{font-size:2.4rem;margin:0 0 .8rem;color:var(--blue-top);}
.lm-hero-copy p{margin:0 0 1.1rem;color:#374151;}
.lm-hero-badges{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:.6rem;}
.lm-pill{
  border-radius:var(--radius-pill);
  padding:.2rem .7rem;
  font-size:.78rem;

  /* new styling */
  background:var(--blue-soft);                /* #e6f4ff */
  border:1px solid rgba(62,167,249,.35);      /* soft blue border */
  color:#1f2933;                              /* keep text readable */
}

.lm-hero-copy,
.lm-hero-img{flex:1 1 0;}
.lm-hero-img{text-align:center;}
.lm-hero-img img{
  width:100%;
  max-width:100%;
  height:auto;
  border-radius:22px;
}
.lm-hero-controls{position:absolute;right:1.2rem;bottom:1.2rem;display:flex;gap:.4rem;}
.lm-hero-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  background:rgba(148,163,184,.7);
  cursor:pointer;
  transition:width .25s ease, background .25s ease;
}
.lm-hero-dot.active{width:22px;background:var(--blue-main);}
.lm-btn{display:inline-flex;align-items:center;justify-content:center;gap:.35rem;padding:.65rem 1.4rem;border-radius:var(--radius-pill);border:1px solid transparent;font-size:.9rem;font-weight:600;cursor:pointer;text-decoration:none;}
.lm-btn-primary{background:var(--blue-main);color:#fff;box-shadow:0 12px 30px rgba(59,130,246,.4);}
.lm-btn-primary:hover{background:#2493e9;color:#fff;}
.lm-btn-ghost{background:#ffffff;color:var(--blue-top);border-color:rgba(148,163,184,.7);}
.lm-card{border-radius:var(--radius-lg);background:#ffffff;border:1px solid rgba(15,23,42,.05);padding:1.5rem 1.6rem;box-shadow:0 14px 40px rgba(15,23,42,.06);}
.lm-section-soft{background:var(--accent);padding:2.7rem 0;}
.lm-section{padding:2.7rem 0 0;}
.lm-section h2{font-size:1.6rem;margin:0 0 1rem;color:var(--blue-top);}
.lm-hours{list-style:none;margin:0;padding-left:0;}
.lm-hours li+li{margin-top:.25rem;}
.lm-footer{margin-top:3rem;background:#f1f5f9;padding:2.5rem 0 1.75rem;}
.lm-footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1.7rem;font-size:.9rem;}
.lm-footer-grid h3{margin-top:0;margin-bottom:.75rem;}
.lm-footer-links{list-style:none;margin:0;padding-left:0;}
.lm-footer-links li+li{margin-top:.25rem;}
.lm-footer-bottom{border-top:1px solid rgba(148,163,184,.6);margin-top:1.75rem;padding-top:1rem;display:flex;flex-wrap:wrap;gap:.75rem;justify-content:space-between;font-size:.8rem;color:var(--muted);}
.lm-form{display:grid;gap:.8rem;}
.lm-form label{font-size:.85rem;font-weight:500;}
.lm-form input,.lm-form select,.lm-form textarea{width:100%;border-radius:var(--radius-md);border:1px solid rgba(148,163,184,.9);padding:.55rem .7rem;font-size:.9rem;}
.lm-notice{border-radius:var(--radius-md);padding:.6rem .8rem;font-size:.85rem;background:#ecfdf5;border:1px solid #22c55e;color:#166534;}
.lm-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;}
.lm-gallery img{width:100%;height:auto;border-radius:var(--radius-lg);border:1px solid rgba(148,163,184,.6);}
.footer-social-xs{
  display:flex;
  gap:8px;
  align-items:center;
  margin-top:6px;
}
.social-icon-xs{
  width:18px;
  height:18px;
  display:block;
  object-fit:contain;
}
.form-header{
  display:flex;
  align-items:center;
  gap:.6rem;
  margin-bottom:1.8rem;
}
.form-header .icon-wrap{font-size:1.8rem;}
.form-header .page-title{
  margin:0;
  font-size:1.7rem;
  color:var(--blue-top);
}
.lm-card img{
  width:64px;
  height:64px;
  margin-bottom:.75rem;
}

/* Large owner photos on About page */
.lm-owner-card img{
  display:block;
  width:100%;
  height:auto;
  border-radius:14px;
  margin-bottom:.75rem;  /* keeps a bit of space under the photo */
}
.lm-row-2-equal{
  grid-template-columns:repeat(2, minmax(0,1fr));
}



@media (max-width:960px){
  .lm-nav-row{
    flex-wrap:wrap;
    align-items:center;
  }

  /* show hamburger, hide nav by default */
  .lm-nav-toggle{
    display:inline-flex;
    flex:0 0 auto;
  }

  .lm-main-nav{
    display:none;
    flex-direction:column;
    gap:.75rem;
    margin-top:.75rem;
    width:100%;
  }

  .lm-main-nav.is-open{
    display:flex;
  }

  .lm-hero-slide{
    flex-direction:column;
    padding:1.8rem 1.6rem 2.3rem;
  }

  .lm-row-4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


@media (max-width:720px){
  .lm-topbar-inner{flex-direction:column;align-items:flex-start;}
  .lm-row-2,
  .lm-row-3,
  .lm-row-4{grid-template-columns:minmax(0,1fr);}
}

.hero-badges{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:.4rem;
  margin-top:.6rem;
  font-size:.9rem;
}

.hero-badge{
  border-radius:var(--radius-pill);
  border:1px solid rgba(148,163,184,.6);
  padding:.35rem .8rem;
  background:#ffffff;
}

.hero-badges-inline{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
}


.lm-card{
  border-radius:var(--radius-lg);
  background:#ffffff;
  border:1px solid rgba(15,23,42,.05);
  padding:1.5rem 1.6rem;
  box-shadow:0 14px 40px rgba(15,23,42,.06);
  display:flex;
  flex-direction:column;
}

/* pushes the button area to the bottom of the card */
.card-cta{
  margin-top:auto;
  padding-top:.8rem;
}

.lm-bg-gradient{
  background:linear-gradient(135deg,#f0f7ff,#ffffff);
}

/* Image cards (Men's Health + Contact + Prescriptions) */
.lm-men-image-card,
.lm-contact-image-card,
.lm-prescriptions-image-card{
  padding:0;  /* no inner white padding */
}

.lm-men-image-card img,
.lm-contact-image-card img,
.lm-prescriptions-image-card img{
  display:block;
  width:100%;
  height:auto;     /* keep aspect ratio */
  border-radius:22px;
  margin-bottom:0; /* override .lm-card img margin */
}

.lm-owner-card{
  gap:1.5rem;
}

.lm-owner-block img{
  display:block;
  width:100%;
  height:auto;
  border-radius:14px;
  margin-bottom:.75rem;
}

.lm-owner-divider{
  border:none;
  border-top:1px solid rgba(148,163,184,.3);
  margin:0;
}

.lm-gallery-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 1.8rem;
}

.lm-gallery-header h1{
  margin:0 0 .6rem;
  font-size:1.9rem;
  color:var(--blue-top);
}

.lm-gallery-header p{
  margin:0;
  color:#4b5563;
  font-size:.95rem;
}

/* Raptors gallery tweaks */
.lm-gallery-raptors{
  margin-top:1.2rem;
}

.lm-gallery-raptors .lm-gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  box-shadow:0 18px 45px rgba(15,23,42,.18);
  cursor:pointer;
  background:#53a9fc;
}



.lm-gallery-raptors .lm-gallery-item img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease, filter .35s ease;
}

.lm-gallery-raptors .lm-gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.18), transparent 45%);
  opacity:0;
  transition:opacity .3s ease;
}

.lm-gallery-raptors .lm-gallery-item:hover img{
  transform:scale(1.05);
  filter:brightness(1.05);
}

.lm-gallery-raptors .lm-gallery-item:hover::after{
  opacity:1;
}

/* Lightbox */
.lm-lightbox{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.88);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease-out;
  z-index:50;
}

.lm-lightbox.active{
  opacity:1;
  pointer-events:auto;
}

.lm-lightbox-inner{
  position:relative;
  max-width:min(1000px, 90%);
  max-height:90vh;
  text-align:center;
}

.lm-lightbox-inner img{
  max-width:100%;
  max-height:80vh;
  border-radius:22px;
  box-shadow:0 32px 90px rgba(0,0,0,.75);
}

.lm-lightbox-caption{
  margin-top:.75rem;
  color:#e5e7eb;
  font-size:.9rem;
}

.lm-lightbox-close{
  position:absolute;
  top:-14px;
  right:-14px;
  width:32px;
  height:32px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  background:#111827;
  color:#f9fafb;
  font-size:1.4rem;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.5);
}

/* New prescription image card */
.lm-newrx-image-card{
  padding:0;
}

.lm-newrx-image-card img{
  display:block;
  width:100%;
  height:auto;
  border-radius:22px;
  margin-bottom:0;
}

.lm-newrx-image-card p{
  padding:0 1.6rem 1.6rem;
}


.lm-callout{
  display:flex;
  align-items:flex-start;
  gap:.65rem;
  padding:.85rem 1.1rem;
  border-radius:18px; /* a bit squarer */
  border:1px solid rgba(37,99,235,.25);
  background:linear-gradient(135deg,#e0f2fe,#eff6ff);
  margin:1.35rem 1rem 0;  /* top, left/right, bottom */
}


.lm-callout-icon{
  flex:0 0 auto;
  width:32px;
  height:32px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  background:#1d4ed8;
  color:#ffffff;
  box-shadow:0 8px 20px rgba(37,99,235,.35);
}

.lm-callout-body{
  font-size:.9rem;
  color:#1f2933;
}

.lm-callout-body p{
  margin:.1rem 0 0;
}

.lm-callout-body > strong{
  display:block;
  text-align:center;
  margin-bottom:.25rem;
}

/* Dropdown under Prescriptions */
.lm-nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
}

/* The dropdown panel */
.lm-nav-dropdown-menu{
  position:absolute;
  left:0;
  top:100%;
  margin-top:0;
  padding:.45rem 0;
  min-width:220px;
  background:#ffffff;
  border-radius:16px;
  box-shadow:0 18px 45px rgba(15,23,42,.18);
  display:none;
  z-index:20;
}

/* Show on hover: parent OR menu */
.lm-nav-dropdown:hover .lm-nav-dropdown-menu,
.lm-nav-dropdown-menu:hover{
  display:block;
}

.lm-main-nav a{
  position:relative;
  padding-bottom:.25rem;
  text-decoration:none;      /* no underline by default */
}

.lm-main-nav a:hover{
  text-decoration:none;      /* keep it off on hover too */
}


/* Items inside dropdown */
.lm-nav-dropdown-menu a{
  display:block;
  padding:.35rem 1rem;
  font-size:.9rem;
  color:#111827;
  white-space:nowrap;
}

/* Remove underline animation for submenu links */
.lm-nav-dropdown-menu a::after{
  content:none;
}

/* Hover state */
.lm-nav-dropdown-menu a:hover{
  background:var(--blue-soft);
}

/* Two wide callouts under prescriptions */
.lm-wide-callouts{
  margin:1.8rem 0 0;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:1rem;
}

/* Variant of callout used in the wide strip */
.lm-callout-wide{
  flex-direction:column;
  align-items:flex-start;
  padding:1rem 1.25rem 1.25rem;
  margin:0; /* override the horizontal margin from .lm-callout */
}

/* Title centered inside the tile */
.lm-callout-title{
  display:block;
  text-align:center;
  font-weight:600;
  color:var(--blue-top);
  margin-bottom:.35rem;
}

/* Image inside the wide tiles */
.lm-callout-wide-image{
  width:100%;
  margin-top:.6rem;
}
.lm-callout-wide-image img{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(15,23,42,.18);
}

/* Smaller button option */
.lm-btn-sm{
  padding:.5rem 1.2rem;
  font-size:.8rem;
}

/* Variant: full-width callout with two images */
.lm-callout-double{
  flex-direction:column;
  align-items:stretch;
}

.lm-callout-intro{
  margin:0 0 .75rem;
  font-size:.9rem;
}

.lm-callout-images{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:.75rem;
}

.lm-callout-image img{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(15,23,42,.18);
}
.lm-prescriptions-intro p{
  font-size:1rem;      /* slightly larger than default */
  line-height:1.6;
}

.hero-badge-blue {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:var(--radius-pill);
  padding:.3rem .9rem;
  font-size:.85rem;
  background:var(--blue-soft);                /* same blue as .lm-pill */
  border:1px solid rgba(62,167,249,.35);      /* soft blue border */
  color:#1f2933;                              /* same text color */
}

@media (max-width:480px){
  .lm-brand-logo{height:42px;}
  .lm-brand-name{font-size:.8rem;}
  .lm-brand-tagline{
    display:none;      /* hide tagline on very small screens to avoid wiggle */
  }
}


.lm-back-to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:38px;
  height:38px;
  border-radius:999px;
  border:none;
  background:var(--blue-main);
  color:#ffffff;
  font-size:1.4rem;
  line-height:1;
  display:none;                 /* hidden by default */
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(15,23,42,.35);
  cursor:pointer;
  z-index:40;
}

.lm-back-to-top:focus{
  outline:2px solid #ffffff;
  outline-offset:2px;
}

@media (max-width:600px){
  /* Give hero slides a bit more side padding on small screens */
  .lm-hero-slide{
    padding:1.8rem 1.4rem 2.3rem;
  }

  /* Make the big hero heading slightly smaller on mobile */
  .lm-hero-copy h1{
    font-size:2.1rem;
    line-height:1.15;
  }
}

@media (max-width:600px){
  .lm-hero-copy p .lm-btn{
    margin-bottom:.5rem;  /* space between stacked buttons */
    margin-right:.4rem;   /* tiny horizontal gap if they still sit side by side */
  }
}

 /* remove extra left margin on stacked second buttons */
  .lm-hero-copy p .lm-btn + .lm-btn,
  .lm-card p .lm-btn + .lm-btn{
    margin-left:0;
  }
}

/* Horizontal gap between buttons in the same paragraph */
.lm-hero-copy p .lm-btn + .lm-btn,
.lm-card p .lm-btn + .lm-btn{
  margin-left:.4rem;
}


.proof-marquee {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  overflow: hidden;
  background:#f1f7ff;
  color:#0b1220;
}

.proof-marquee .label {
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.9;
  padding-left: 16px;
}

.marquee-viewport {
  overflow: hidden;
  flex: 1;
}

.marquee-track {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track li {
  display: flex;
  align-items: center;
  font-size: 14px;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.marquee-track li:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Pause on interaction */
.proof-marquee:hover .marquee-track,
.proof-marquee:active .marquee-track {
  animation-play-state: paused;
  cursor: grab;
}

/* Smooth infinite scroll */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Tablet+ */
@media (min-width: 768px) {
  .marquee-track li {
    font-size: 15px;
  }
}/* =========================
   PWA MODE – PAGE LEVEL
   ========================= */

/* Hide PWA-only elements by default */
.pwa-only {
  display: none;
}

@media (max-width: 768px) {

  /* Show page-level PWA elements */
  .pwa-mode .pwa-only {
    display: block;
  }

  /* Hide global header (this hides header.php) */
  .pwa-mode header,
  .pwa-mode .lm-header,
  .pwa-mode .lm-header-wrap {
    display: none !important;
  }

  /* Remove proof marquee */
  .pwa-mode .proof-marquee {
    display: none !important;
  }

  /* Top bar – page level */
  .pwa-mode .pwa-topbar .lm-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: env(safe-area-inset-top);
  }

  /* Centered logo */
  .pwa-mode .pwa-centered-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1rem 0.75rem;
    background: #ffffff;
  }

  .pwa-mode .pwa-centered-logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
  }

  /* Clean spacing above content */
  .pwa-mode .lm-prescriptions-app {
    margin-top: 0 !important;
    padding-top: 0.5rem !important;
    background: #ffffff !important;
  }
}

@media (min-width: 769px) {
  .pwa-only {
    display: none !important;
  }
}

.pwa-phone-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #ffffff;
  text-decoration: none;
}

.pwa-phone-link img {
  height: 24px;
  width: auto;
  display: block;
}

/* =========================
   PWA MOBILE HEADER (SAFE)
   ========================= */

/* PWA MOBILE HEADER — SAFE BASELINE */

.pwa-mobile-header {
  display: none;
}

@media (max-width: 768px) {

  /* Show ONLY in PWA */
  .pwa-mode .pwa-mobile-header {
    display: block;
    background: #ffffff;
  }

  /* Simple blue top bar */
  .pwa-mode .pwa-mobile-topbar {
    background: #273c8f;
    color: #ffffff;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }

  .pwa-mode .pwa-mobile-topbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
  }

  .pwa-mode .pwa-pill {
    background: #3ea7f9;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
  }

  /* Centered logo (no wiggle) */
  .pwa-mode .pwa-mobile-logo {
    display: flex;
    justify-content: center;
    padding: 10px 0 6px;
    overflow-x: hidden;
  }

  .pwa-mode .pwa-mobile-logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
  }

  /* Hide complex header & marquee ONLY in PWA */
  .pwa-mode header,
  .pwa-mode .proof-marquee {
    display: none !important;
  }
}

/* Remove visual white strip under header */
.lm-nav-wrap {
  border-bottom: none;
}

.lm-nav-row {
  padding-bottom: 0.4rem; /* was 1.1rem */
}

/* Hide Row 2 intro section ONLY in mobile PWA */
@media (max-width: 768px) {
  .pwa-mode .lm-prescriptions-intro {
    display: none !important;
  }
}

/* Hide footer ONLY in mobile PWA */
@media (max-width: 768px) {
  .pwa-mode footer,
  .pwa-mode .lm-footer {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pwa-mode body {
    padding-bottom: 0 !important;
  }

  .pwa-mode .lm-main {
    padding-bottom: 0 !important;
  }
}
