/* ===========================================================
   Panacea — Shared site chrome (navbar + FAB + locator)
   Adapted from "Panacea v2.html" design, mapped to the
   site's native brand colors (--green-color, --sec-color).
   =========================================================== */

:root {
  --pc-green: #02a650;
  --pc-green-deep: #016e34;
  --pc-green-dark: #013d1d;
  --pc-green-soft: #e6f7ed;
  --pc-green-bright: #3bb77e;
  --pc-red: #ed1b24;
  --pc-red-deep: #b81017;
  --pc-ink: #0a1410;
  --pc-ink-2: #1a2620;
  --pc-slate: #4a5750;
  --pc-mute: #7a857f;
  --pc-line: #e5e8e5;
  --pc-line-2: #d8ddd9;
  --pc-paper: #ffffff;
  --pc-paper-2: #f6f8f6;
  --pc-sans: "Work Sans", -apple-system, sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Work+Sans:wght@300;400;500;600;700&display=swap");

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.65;
  color: #122015;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
}

a{
  text-decoration: none !important;
}

/* ===== Utility bar ===== */
.pc-utility {
  background: var(--pc-green-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  padding: 10px 0;
  font-family: var(--pc-sans);
}
.pc-utility .pc-row {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.pc-utility .pc-left,
.pc-utility .pc-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.pc-utility a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.pc-utility a:hover { color: #fff; }
.pc-utility .pc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.pc-utility .pc-socials a {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
}
.pc-utility .pc-socials a:hover { color: var(--pc-green-bright); }
.pc-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pc-green-bright);
  box-shadow: 0 0 0 0 rgba(59, 183, 126, 0.7);
  animation: pcPulse 2s infinite;
}
@keyframes pcPulse {
  0%   { box-shadow: 0 0 0 0 rgba(59, 183, 126, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(59, 183, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 183, 126, 0); }
}
@media (max-width: 768px) {
  .pc-utility .pc-right { display: none; }
  .pc-utility .pc-row { padding: 0 16px; }
}

/* ===== Header ===== */
.pc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--pc-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s, background 0.3s;
  font-family: var(--pc-sans);
}
.pc-header.is-scrolled {
  box-shadow: 0 8px 24px -10px rgba(10, 20, 16, 0.08);
}
.pc-header .pc-row {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.pc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.pc-logo img {
  height: 70px;
  width: auto;
  display: block;
}
@media (min-width: 1280px) {
  .pc-logo .pc-logo-text { display: block; }
}

.pc-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.pc-nav > a,
.pc-nav > .pc-nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  color: var(--pc-ink);
  text-decoration: none;
  position: relative;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.pc-nav > a:hover,
.pc-nav > .pc-nav-dropdown > a:hover { background: var(--pc-paper-2); }
.pc-nav > a.active,
.pc-nav > .pc-nav-dropdown.active > a {
  background: var(--pc-green-soft);
  color: var(--pc-green-deep);
  font-weight: 600;
}
.pc-nav > .pc-nav-dropdown > a::after {
  content: "";
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.55;
  margin-left: 2px;
}
.pc-nav-dropdown { position: relative; }
.pc-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--pc-line);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 14px 32px -14px rgba(10, 20, 16, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 5;
}
.pc-nav-dropdown:hover .pc-nav-dropdown-menu,
.pc-nav-dropdown:focus-within .pc-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pc-nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--pc-ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.pc-nav-dropdown-menu a:hover {
  background: var(--pc-green-soft);
  color: var(--pc-green-deep);
}

.pc-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.pc-btn .pc-arr {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}
.pc-btn:hover .pc-arr { transform: translateX(3px); }
.pc-btn-primary {
  background: var(--pc-green);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(2, 166, 80, 0.5);
}
.pc-btn-primary:hover {
  background: var(--pc-green-deep);
  transform: translateY(-1px);
}
.pc-btn-ghost {
  background: transparent;
  color: var(--pc-ink);
  border-color: var(--pc-line-2);
}
.pc-btn-ghost:hover {
  background: var(--pc-paper-2);
  border-color: var(--pc-ink);
}
.pc-btn-red {
  background: var(--pc-red);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(237, 27, 36, 0.45);
}
.pc-btn-red:hover { background: var(--pc-red-deep); }
.pc-btn-outline-w {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.pc-btn-outline-w:hover { background: rgba(255, 255, 255, 0.1); }

.pc-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--pc-line-2);
  color: var(--pc-ink);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}
.pc-mobile-toggle:hover { background: var(--pc-paper-2); }

@media (max-width: 1100px) {
  .pc-nav,
  .pc-header .pc-cta { display: none; }
  .pc-mobile-toggle { display: inline-flex; }
  .pc-header .pc-row { padding: 12px 20px; }
}

/* ===== Mobile menu ===== */
.pc-mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--pc-line);
  padding: 12px 20px 22px;
  font-family: var(--pc-sans);
  position: sticky;
  top: 72px;
  z-index: 49;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.pc-mobile-menu.is-open { display: block; }
.pc-mobile-menu > a,
.pc-mobile-menu .pc-mm-group > .pc-mm-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--pc-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--pc-line);
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  cursor: pointer;
}
.pc-mobile-menu > a.active { color: var(--pc-green-deep); font-weight: 700; }
.pc-mm-group .pc-mm-submenu {
  display: none;
  padding: 4px 0 10px 14px;
  border-bottom: 1px solid var(--pc-line);
}
.pc-mm-group.is-open .pc-mm-submenu { display: block; }
.pc-mm-group.is-open .pc-mm-trigger { border-bottom: none; }
.pc-mm-submenu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--pc-slate);
  text-decoration: none;
}
.pc-mm-submenu a:hover { color: var(--pc-green-deep); }
.pc-mobile-menu .pc-mm-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.pc-mobile-menu .pc-mm-cta .pc-btn { justify-content: center; padding: 14px 18px; }

/* ===== Floating chat (WhatsApp + Send Message) ===== */
.pc-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
  font-family: var(--pc-sans);
}
.pc-fab a,
.pc-fab button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 12px 28px -8px rgba(10, 20, 16, 0.28);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.pc-fab a:hover,
.pc-fab button:hover { transform: translateY(-2px); }
.pc-fab .pc-fab-whatsapp {
  background: #25d366;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55);
}
.pc-fab .pc-fab-whatsapp:hover { background: #1ebe5d; }
.pc-fab .pc-fab-message {
  background: var(--pc-ink);
  box-shadow: 0 12px 28px -8px rgba(10, 20, 16, 0.4);
}
.pc-fab .pc-fab-message:hover { background: var(--pc-green-deep); }
.pc-fab svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 600px) {
  .pc-fab { right: 14px; bottom: 14px; gap: 8px; }
  .pc-fab a,
  .pc-fab button { padding: 12px; font-size: 12.5px; }
  .pc-fab .pc-fab-label { display: none; }
  .pc-fab svg { width: 20px; height: 20px; }
}

/* ===== Find a Pharmacy section (homepage) ===== */
.pc-locator {
  background: var(--pc-paper);
  padding: 96px 0;
  position: relative;
  font-family: var(--pc-sans);
  color: var(--pc-ink);
}
.pc-locator .pc-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.pc-locator .pc-section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 36px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--pc-line);
}
.pc-locator .pc-eyebrow {
  font-family: var(--pc-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pc-green-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pc-locator .pc-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.pc-locator h2 {
  font-family: var(--pc-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 14px 0 0;
  color: var(--pc-ink);
}
.pc-locator h2 .pc-accent { color: var(--pc-green); }
.pc-locator .pc-section-head .pc-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--pc-slate);
  margin: 0;
}
@media (max-width: 900px) {
  .pc-locator { padding: 64px 0; }
  .pc-locator .pc-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }
}

.pc-locator-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
}
@media (max-width: 980px) {
  .pc-locator-grid { grid-template-columns: 1fr; }
}

.pc-loc-sidebar { display: flex; flex-direction: column; }
.pc-loc-search {
  background: #fff;
  border: 1px solid var(--pc-line);
  border-radius: 999px;
  padding: 12px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.pc-loc-search i { color: var(--pc-mute); }
.pc-loc-search input {
  border: none;
  outline: none;
  flex: 1;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: var(--pc-ink);
}
.pc-loc-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pc-loc-filter {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--pc-line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--pc-slate);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.pc-loc-filter:hover { border-color: var(--pc-ink); color: var(--pc-ink); }
.pc-loc-filter.active {
  background: var(--pc-ink);
  color: #fff;
  border-color: var(--pc-ink);
}
.pc-loc-list {
  display: flex;
  flex-direction: column;
  max-height: 520px;
  overflow-y: auto;
  border: 1px solid var(--pc-line);
  border-radius: 22px;
  background: #fff;
}
.pc-loc-shop {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid var(--pc-line);
  transition: background 0.2s;
}
.pc-loc-shop:last-child { border-bottom: none; }
.pc-loc-shop:hover { background: var(--pc-paper-2); }
.pc-loc-shop.active { background: var(--pc-green-soft); }
.pc-loc-shop .pc-pin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pc-paper-2);
  color: var(--pc-green-deep);
  display: grid;
  place-items: center;
  font-family: var(--pc-mono);
  font-size: 11px;
  font-weight: 700;
}
.pc-loc-shop.active .pc-pin { background: var(--pc-green); color: #fff; }
.pc-loc-shop .pc-info .pc-name {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--pc-ink);
}
.pc-loc-shop .pc-info .pc-addr {
  font-size: 12.5px;
  color: var(--pc-slate);
  margin-top: 2px;
}
.pc-loc-shop .pc-info .pc-meta {
  margin-top: 6px;
  font-family: var(--pc-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--pc-mute);
  display: flex;
  gap: 12px;
}
.pc-loc-shop .pc-info .pc-open { color: var(--pc-green); }
.pc-loc-shop .pc-info .pc-open::before { content: "● "; }
.pc-loc-shop .pc-region {
  font-family: var(--pc-mono);
  font-size: 10.5px;
  color: var(--pc-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pc-loc-map {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #0d2b1a;
  min-height: 560px;
}
/* Google Maps fills the container — #pcGoogleMap takes 100% width/height */
#pcGoogleMap { border-radius: 32px; }
.pc-map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 2;
}
.pc-map-pin .pc-pin-ball {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid var(--pc-green-bright);
  transition: all 0.25s;
}
.pc-map-pin .pc-pin-ripple {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(59, 183, 126, 0.25);
  animation: pcPinPulse 2.5s infinite;
  pointer-events: none;
}
@keyframes pcPinPulse {
  0%   { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.pc-map-pin .pc-pin-label {
  position: absolute;
  left: 22px;
  top: -6px;
  white-space: nowrap;
  font-family: var(--pc-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  background: rgba(1, 61, 29, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.2s;
}
.pc-map-pin.active .pc-pin-ball,
.pc-map-pin:hover .pc-pin-ball {
  background: var(--pc-red);
  border-color: #fff;
  transform: scale(1.35);
}
.pc-map-pin.active .pc-pin-label,
.pc-map-pin:hover .pc-pin-label { opacity: 1; }

.pc-map-legend {
  position: absolute;
  z-index: 10;
  top: 20px;
  left: 20px;
  background: rgba(1, 61, 29, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--pc-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pc-map-legend .pc-lh {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 9.5px;
  letter-spacing: 0.12em;
}
.pc-map-legend .pc-lr {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 3px 0;
}
.pc-map-legend .pc-sw {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.pc-map-cta {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(1, 61, 29, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pc-map-cta .pc-ct-l { font-size: 13.5px; letter-spacing: -0.005em; }
.pc-map-cta .pc-ct-l b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

/* Layout safety: keep injected chrome above body content,
   neutralize legacy elements that survived markup migration. */
.top-info-bar,
.main-header,
.lr-utility-bar,
.lr-header,
.lr-mobile-menu,
.lr-fab {
  display: none !important;
}
