:root{
    --red: #D6242B;
    --red-dark: #A81C22;
    --ink: #1C1F24;
    --ink-soft: #3A3F47;
    --paper: #FFFFFF;
    --mist: #F5F6F8;
    --mist-2: #ECEEF1;
    --teal: #0B7A75;
    --teal-dark: #085A56;
    --line: #E4E6EA;
    --gold: #E8A93A;

    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', sans-serif;

    --nav-h: 76px;
    --container: 1200px;

    --shadow-sm: 0 2px 10px rgba(28,31,36,0.06);
    --shadow-md: 0 12px 32px rgba(28,31,36,0.12);
    --shadow-lg: 0 24px 60px rgba(28,31,36,0.18);
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; overflow-x: hidden; }
  body{
    margin:0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    padding-top: var(--nav-h);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  ul{ margin:0; padding:0; list-style:none; }
  h1,h2,h3,h4{ font-family: var(--font-display); margin:0; letter-spacing:-0.02em; }
  p{ margin:0; }
  .container{ max-width: var(--container); margin:0 auto; padding:0 24px; }
  section{ position:relative; }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration: 0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
  }

  ::selection{ background: var(--red); color:#fff; }

  a:focus-visible, button:focus-visible{
    outline: 3px solid var(--teal);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family: var(--font-body); font-weight:700; font-size:12.5px;
    letter-spacing: 0.14em; text-transform:uppercase;
    color: var(--red);
  }
  .eyebrow::before{
    content:''; width:22px; height:2px; background: var(--red); border-radius:2px;
  }
  .eyebrow.on-dark{ color: #FFC9CB; }
  .eyebrow.on-dark::before{ background:#FFC9CB; }
  .eyebrow.teal{ color: var(--teal); }
  .eyebrow.teal::before{ background: var(--teal); }

  .section-head{ max-width: 640px; margin-bottom: 44px; }
  .section-head h2{ font-size: clamp(30px, 4vw, 44px); font-weight:800; line-height:1.12; margin-top:12px; }
  .section-head p{ margin-top:16px; font-size:17px; line-height:1.65; color: var(--ink-soft); }

  .capsule-frame{
    position:relative;
    border-radius: 999px;
    overflow:hidden;
    isolation:isolate;
  }
  .capsule-frame img{ width:100%; height:100%; object-fit:cover; }
  .capsule-frame::after{
    content:''; position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(28,31,36,0) 55%, rgba(28,31,36,0.35) 100%);
  }
  .capsule-frame.tall{ aspect-ratio: 3/4.6; }
  .capsule-frame.wide{ aspect-ratio: 4.6/3; border-radius: 260px; }
  .capsule-frame.square{ aspect-ratio: 1/1.55; }

  header.nav{
    position: fixed; top:0; left:0; right:0;
    height: var(--nav-h);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    z-index: 2000;
  }
  .nav-inner{
    max-width: var(--container); margin:0 auto; padding: 0 24px;
    height:100%; display:flex; align-items:center; justify-content:flex-start;
    gap: 16px;
  }
  .brand{ display:flex; align-items:center; gap:10px; font-weight:800; }
  .brand-mark{
    width:34px; height:34px; border-radius: 40% 60% 60% 40% / 55% 45% 55% 45%;
    background: linear-gradient(135deg, var(--red) 50%, var(--mist-2) 50%);
    box-shadow: inset 0 0 0 2px rgba(28,31,36,0.08);
    flex: none;
  }
  .brand-word{ font-family: var(--font-display); font-size: 21px; letter-spacing:-0.02em; }
  .brand-word b{ color: var(--red); }
  .brand-sub{ display:block; font-family: var(--font-body); font-weight:600; font-size: 10.5px; letter-spacing:0.16em; text-transform:uppercase; color: var(--ink-soft); margin-top:1px; }

  nav.links{ display:flex; align-items:center; gap: 13px; }
  nav.links a{
    font-size:13px; font-weight:600; color: var(--ink-soft);
    position:relative; padding: 6px 0; white-space:nowrap;
    transition: color .2s ease;
  }
  nav.links a::after{
    content:''; position:absolute; left:0; right:0; bottom:0; height:2px;
    background: var(--red); transform: scaleX(0); transform-origin:left;
    transition: transform .25s ease;
  }
  nav.links a:hover{ color: var(--ink); }
  nav.links a:hover::after{ transform: scaleX(1); }

  .nav-cta{ display:flex; align-items:center; gap:12px; margin-left:auto; }
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:9px;
    padding: 13px 24px; border-radius: 999px;
    font-weight:700; font-size:14.5px; font-family: var(--font-body);
    border:2px solid transparent; cursor:pointer; white-space:nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  }
  .btn-primary{ background: var(--red); color:#fff; box-shadow: var(--shadow-sm); }
  .btn-primary:hover{ background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-ghost{ background: transparent; border-color: var(--ink); color: var(--ink); }
  .btn-ghost:hover{ background: var(--ink); color:#fff; }
  .btn-outline-light{ background: transparent; border-color: rgba(255,255,255,0.55); color:#fff; }
  .btn-outline-light:hover{ background:#fff; color: var(--ink); border-color:#fff; }
  .btn-teal{ background: var(--teal); color:#fff; }
  .btn-teal:hover{ background: var(--teal-dark); transform: translateY(-2px); }
  .btn-sm{ padding: 10px 18px; font-size:13.5px; }

  .burger{
    display:none; width:42px; height:42px; border-radius:10px; border:1px solid var(--line);
    background:#fff; align-items:center; justify-content:center; cursor:pointer;
  }
  .burger span, .burger span::before, .burger span::after{
    content:''; display:block; width:20px; height:2px; background: var(--ink); position:relative;
    transition: all .25s ease;
  }
  .burger span::before{ position:absolute; top:-6px; }
  .burger span::after{ position:absolute; top:6px; }
  .burger.open span{ background: transparent; }
  .burger.open span::before{ top:0; transform: rotate(45deg); }
  .burger.open span::after{ top:0; transform: rotate(-45deg); }

  .mobile-menu{
    position: fixed; top: 74px; left: 14px; z-index:3000;
    background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    min-width: 210px; max-width: calc(100vw - 28px);
    padding: 10px; display:flex; flex-direction:column; gap:2px;
    opacity:0; visibility:hidden; transform: translateY(-8px) scale(0.97); transform-origin: top left;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .mobile-menu.open{ opacity:1; visibility:visible; transform: translateY(0) scale(1); }
  .mobile-menu a{
    color: var(--ink); font-family: var(--font-body); font-size: 15px; font-weight:600;
    padding: 11px 14px; border-radius: 10px; transition: background .15s ease;
  }
  .mobile-menu a:hover, .mobile-menu a:active{ background: var(--mist); }
  .mobile-menu .mm-cta{ margin: 6px 4px 2px; }

  @media (max-width: 1240px){
    .nav-cta .btn-ghost{ display:none; }
    nav.links{ gap:9px; }
    nav.links a{ font-size:12px; }
  }
  @media (max-width: 980px){
    nav.links{ display:none; }
    .nav-cta .btn-ghost{ display:none; }
    .burger{ display:flex; flex:none; }
  }
  @media (max-width: 480px){
    .nav-inner{ padding: 0 14px; gap: 10px; }
    .nav-cta .btn-primary{ padding: 11px 14px; }
    .nav-cta .btn-primary .cta-label{ display:none; }
    .brand-sub{ display:none; }
  }

  .hero{
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display:flex; align-items:flex-end;
    overflow:hidden;
    background: var(--ink);
  }
  .hero-slides{ position:absolute; inset:0; }
  .hero-slide{
    position:absolute; inset:0;
    background-size: cover; background-position:center;
    opacity:0; transform: scale(1.08);
    transition: opacity 1.6s ease;
    animation: kenburns 16s ease-in-out infinite;
  }
  .hero-slide.active{ opacity:1; }
  @keyframes kenburns{
    0%{ transform: scale(1.08) translate(0,0); }
    50%{ transform: scale(1.16) translate(-1.2%, -1%); }
    100%{ transform: scale(1.08) translate(0,0); }
  }
  .hero-scrim{
    position:absolute; inset:0;
    background:
      linear-gradient(90deg, rgba(15,17,20,0.88) 0%, rgba(15,17,20,0.62) 42%, rgba(15,17,20,0.28) 68%, rgba(15,17,20,0.55) 100%),
      linear-gradient(0deg, rgba(15,17,20,0.75) 0%, rgba(15,17,20,0.05) 40%);
  }
  .hero-content{
    position:relative; z-index:2; width:100%;
    padding: 140px 24px 64px;
    max-width: var(--container); margin:0 auto;
  }
  .hero-content .eyebrow{ color:#FFC9CB; }
  .hero-content .eyebrow::before{ background:#FFC9CB; }
  .hero-content h1{
    color:#fff; font-size: clamp(38px, 6vw, 68px); font-weight:800;
    line-height:1.04; margin-top:18px; max-width: 780px;
  }
  .hero-content h1 em{ font-style:normal; color: var(--red); }
  .hero-content .hero-sub{
    color: rgba(255,255,255,0.86); font-size:18px; line-height:1.6;
    max-width: 560px; margin-top: 20px;
  }
  .hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top: 34px; }

  .hero-trustbar{
    position:relative; z-index:2;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,0.4);
  }
  .trustbar-inner{
    max-width: var(--container); margin:0 auto; padding: 22px 24px;
    display:grid; grid-template-columns: repeat(4,1fr); gap: 18px;
  }
  .trust-item{ display:flex; align-items:center; gap:12px; }
  .trust-item .ti-ico{
    width:42px; height:42px; border-radius:12px; background: var(--mist);
    display:flex; align-items:center; justify-content:center; flex:none; color: var(--red);
  }
  .trust-item strong{ display:block; font-family: var(--font-display); font-size:15px; font-weight:700; }
  .trust-item span{ display:block; font-size:12.5px; color: var(--ink-soft); margin-top:1px; }

  .slide-dots{ position:absolute; z-index:2; right:24px; bottom: 24px; display:flex; gap:8px; }
  .slide-dots button{
    width:8px; height:8px; border-radius:50%; border:none; background: rgba(255,255,255,0.45); cursor:pointer; padding:0;
    transition: all .25s ease;
  }
  .slide-dots button.active{ background:#fff; width:22px; border-radius:5px; }

  @media (max-width: 980px){
    .trustbar-inner{ grid-template-columns: repeat(2,1fr); }
    .slide-dots{ display:none; }
  }

  .why-us{ padding: 110px 0 100px; background: var(--paper); }
  .why-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items:start; }
  .why-left .section-head{ margin-bottom: 28px; }
  .why-left-note{
    margin-top: 30px; padding: 22px; border-radius: 18px; background: var(--mist);
    border-left: 4px solid var(--teal);
  }
  .why-left-note p{ font-size:14.5px; line-height:1.6; color: var(--ink-soft); }
  .why-left-note strong{ color: var(--ink); }

  .why-cards{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-card{
    background: var(--paper); border:1px solid var(--line); border-radius: 20px;
    padding: 26px 24px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .why-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
  .why-ico{
    width:52px; height:52px; border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
    background: var(--mist); display:flex; align-items:center; justify-content:center; color: var(--red);
    margin-bottom: 16px;
  }
  .why-card h3{ font-size:17.5px; font-weight:700; }
  .why-card p{ font-size:14px; line-height:1.6; color: var(--ink-soft); margin-top:8px; }

  @media (max-width: 980px){
    .why-grid{ grid-template-columns: 1fr; }
    .why-cards{ grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px){
    .why-cards{ grid-template-columns: 1fr; }
  }

  .services{ padding: 100px 0; background: var(--mist); }
  .service-row{
    display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items:center;
    padding: 46px 0; border-bottom: 1px solid var(--line);
  }
  .service-row:last-child{ border-bottom:none; }
  .service-row.rev{ grid-template-columns: 1.15fr 0.85fr; }
  .service-row.rev .service-media{ order:2; }
  .service-row.rev .service-copy{ order:1; }
  .service-copy .eyebrow{ margin-bottom:14px; }
  .service-copy h3{ font-size: clamp(22px,2.6vw,30px); font-weight:800; line-height:1.2; }
  .service-copy p{ margin-top:14px; font-size:15.5px; line-height:1.7; color: var(--ink-soft); }
  .service-list{ margin-top:16px; display:flex; flex-direction:column; gap:10px; }
  .service-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color: var(--ink-soft); }
  .service-list li svg{ flex:none; margin-top:2px; color: var(--teal); }

  @media (max-width: 900px){
    .service-row, .service-row.rev{ grid-template-columns: 1fr; }
    .service-row.rev .service-media{ order:1; }
    .service-row.rev .service-copy{ order:2; }
    .capsule-frame.wide{ aspect-ratio: 4/3; border-radius: 32px; }
  }

  .aid-strip{
    margin-top: 60px; background: var(--ink); border-radius: 24px; padding: 34px 40px;
    display:flex; align-items:center; justify-content:space-between; gap: 24px; flex-wrap:wrap;
  }
  .aid-strip p{ color:#fff; font-size:16px; font-weight:600; max-width:520px; }
  .aid-strip span{ color: rgba(255,255,255,0.6); font-size:13.5px; display:block; margin-top:4px; font-weight:400; }

  .gallery{ padding: 110px 0; background: var(--paper); }
  .gal-grid{
    display:grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; gap: 16px;
  }
  .gal-item{ border-radius: 22px; overflow:hidden; position:relative; }
  .gal-item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
  .gal-item:hover img{ transform: scale(1.07); }
  .gal-item::after{ content:''; position:absolute; inset:0; box-shadow: inset 0 0 0 1px rgba(28,31,36,0.06); border-radius: inherit; }
  .gal-tag{
    position:absolute; left:14px; bottom:14px; z-index:2; color:#fff; font-size:12.5px; font-weight:700;
    background: rgba(28,31,36,0.55); padding:6px 12px; border-radius: 999px; backdrop-filter: blur(4px);
    opacity:0; transform: translateY(6px); transition: all .25s ease;
  }
  .gal-item:hover .gal-tag{ opacity:1; transform: translateY(0); }

  .gi-1{ grid-column: span 3; grid-row: span 4; }
  .gi-2{ grid-column: span 3; grid-row: span 3; }
  .gi-3{ grid-column: span 2; grid-row: span 3; }
  .gi-4{ grid-column: span 2; grid-row: span 3; }
  .gi-5{ grid-column: span 2; grid-row: span 3; border-radius: 260px; }
  .gi-6{ grid-column: span 4; grid-row: span 3; }
  .gi-7{ grid-column: span 2; grid-row: span 3; }

  @media (max-width: 980px){
    .gal-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 130px; }
    .gi-1,.gi-2,.gi-3,.gi-4,.gi-5,.gi-6,.gi-7{ grid-column: span 1; grid-row: span 2; border-radius: 20px; }
    .gi-1{ grid-column: span 2; grid-row: span 3; }
  }

  .testimonials{ padding: 110px 0; background: var(--ink); color:#fff; }
  .testimonials .section-head p{ color: rgba(255,255,255,0.68); }
  .t-track{ display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  .t-card{
    background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1);
    border-radius: 22px; padding: 28px 26px; display:flex; flex-direction:column; gap:16px;
  }
  .t-stars{ display:flex; gap:4px; color: var(--gold); }
  .t-quote{ font-size:15px; line-height:1.7; color: rgba(255,255,255,0.88); flex:1; }
  .t-person{ display:flex; align-items:center; gap:12px; margin-top:6px; }
  .t-avatar{
    width:46px; height:46px; border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%;
    background: linear-gradient(135deg, var(--red), var(--teal));
    display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; color:#fff; flex:none;
  }
  .t-person strong{ display:block; font-size:14.5px; }
  .t-person span{ display:block; font-size:12.5px; color: rgba(255,255,255,0.55); }

  @media (max-width: 980px){
    .t-track{
      display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:16px; margin: 0 -24px; padding: 4px 24px 12px;
    }
    .t-card{ min-width: 82%; scroll-snap-align:start; }
  }

  .contact{ padding: 110px 0 0; background: var(--mist); }

  .legal-section{ padding: 90px 0 70px; background: var(--paper); border-top:1px solid var(--line); }

  .health-tips{ padding: 100px 0; background: var(--mist); }
  .ht-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:22px; margin-top:8px; }
  .ht-card{
    background:#fff; border:1px solid var(--line); border-radius:18px; padding:24px;
    display:flex; flex-direction:column; text-decoration:none; color:inherit;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .ht-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .ht-source{ font-size:11.5px; font-weight:800; letter-spacing:0.04em; text-transform:uppercase; color: var(--teal); margin-bottom:8px; }
  .ht-title{ font-size:16px; font-weight:800; line-height:1.35; margin-bottom:8px; color: var(--ink); }
  .ht-excerpt{ font-size:13.5px; line-height:1.6; color: var(--ink-soft); flex:1; }
  .ht-date{ font-size:11.5px; color: var(--ink-soft); opacity:0.75; margin-top:14px; }
  .ht-empty, .ht-loading{ text-align:center; color: var(--ink-soft); padding:40px 0; grid-column: 1 / -1; }
  .ht-note{ font-size:12.5px; color: var(--ink-soft); margin-top:24px; text-align:center; }

  /* ===== Shop / Cart ===== */
  .shop-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:22px; margin-top:8px; margin-bottom:56px; }
  .shop-card{ background:#fff; border:1px solid var(--line); border-radius:18px; overflow:hidden; display:flex; flex-direction:column; }
  .shop-card-img{ height:150px; background-size:cover; background-position:center; background-color: var(--mist); }
  .shop-card-body{ padding:18px; display:flex; flex-direction:column; gap:6px; flex:1; }
  .shop-card-name{ font-size:15px; font-weight:800; color: var(--ink); }
  .shop-card-desc{ font-size:13px; color: var(--ink-soft); line-height:1.5; flex:1; }
  .shop-card-price{ font-size:16px; font-weight:800; color: var(--red); margin-top:4px; }
  .shop-card-actions{ display:flex; gap:8px; margin-top:10px; align-items:center; }
  .shop-qty{ width:56px; padding:9px 8px; border-radius:10px; border:1px solid var(--line); font-family: var(--font-body); font-size:14px; text-align:center; }
  .shop-empty, .shop-loading{ text-align:center; color: var(--ink-soft); padding:40px 0; grid-column: 1 / -1; }

  .cart-section{ background: var(--mist); border:1px solid var(--line); border-radius:20px; padding:28px 30px; max-width:560px; }
  .cart-section h3{ font-family: var(--font-display); font-size:19px; font-weight:800; margin-bottom:14px; }
  .cart-item{ display:flex; align-items:center; justify-content:space-between; gap:10px; padding:10px 0; border-bottom:1px solid var(--line); font-size:14px; }
  .cart-item:last-child{ border-bottom:none; }
  .cart-item-name{ flex:1; }
  .cart-remove-btn{ background:none; border:none; color: var(--red); font-size:18px; cursor:pointer; line-height:1; padding:0 4px; }
  .cart-empty{ color: var(--ink-soft); font-size:14px; padding:8px 0; }
  .cart-total{ font-size:16px; font-weight:800; margin-top:14px; padding-top:14px; border-top:2px solid var(--ink); }

  .nav-cart-btn{ position:relative; }
  .nav-cart-count{
    position:absolute; top:-6px; right:-6px; background: var(--red); color:#fff;
    font-size:10.5px; font-weight:800; min-width:16px; height:16px; border-radius:50%;
    display:flex; align-items:center; justify-content:center; padding:0 3px;
  }
  .nav-cart-count.hide{ display:none; }
  .legal-section .container{ max-width: 720px; }
  .legal-section h2{ font-family: var(--font-display); font-size: clamp(24px,3vw,30px); font-weight:800; margin: 0 0 6px; }
  .legal-section .legal-updated{ color: var(--ink-soft); font-size:13.5px; margin-bottom:36px; }
  .legal-section h3{ font-family: var(--font-display); font-size:18px; font-weight:800; margin: 34px 0 10px; }
  .legal-section p{ font-size:14.5px; line-height:1.7; color:#3A3F47; margin:0 0 12px; }
  .legal-section ul{ margin:0 0 12px; padding-left:20px; font-size:14.5px; line-height:1.7; color:#3A3F47; }
  .legal-section li{ margin-bottom:6px; }
  .legal-note{ background: var(--mist); border:1px solid var(--line); border-radius:14px; padding:16px 20px; font-size:13px; color: var(--ink-soft); margin-top:36px; }
  .legal-section a{ color: var(--teal); }

  /* ===== Account / Auth Modal ===== */
  .auth-overlay{
    position: fixed; inset:0; z-index:5000; background: rgba(28,31,36,0.55);
    display:flex; align-items:center; justify-content:center; padding:20px;
    opacity:0; visibility:hidden; transition: opacity .2s ease, visibility .2s ease;
  }
  .auth-overlay.open{ opacity:1; visibility:visible; }
  .auth-modal{
    background:#fff; border-radius:22px; width:100%; max-width:420px; max-height:88vh; overflow-y:auto;
    padding: 32px 28px; box-shadow: var(--shadow-lg); position:relative;
    transform: translateY(16px) scale(0.97); transition: transform .2s ease;
  }
  .auth-overlay.open .auth-modal{ transform: translateY(0) scale(1); }
  .auth-close{ position:absolute; top:16px; right:16px; width:34px; height:34px; border-radius:50%; border:none; background: var(--mist); display:flex; align-items:center; justify-content:center; cursor:pointer; color: var(--ink-soft); font-size:18px; }
  .auth-tabs{ display:flex; gap:8px; margin-bottom:22px; background: var(--mist); border-radius:12px; padding:4px; }
  .auth-tab{ flex:1; text-align:center; padding:10px; border-radius:9px; border:none; background:none; font-family: var(--font-body); font-weight:700; font-size:13.5px; color: var(--ink-soft); cursor:pointer; }
  .auth-tab.active{ background:#fff; color: var(--ink); box-shadow: var(--shadow-sm); }
  .auth-modal h3{ font-family: var(--font-display); font-size:21px; font-weight:800; margin:0 0 6px; }
  .auth-modal p.auth-sub{ font-size:13.5px; color: var(--ink-soft); margin:0 0 18px; }
  .auth-panel{ display:none; flex-direction:column; gap:12px; }
  .auth-panel.active{ display:flex; }
  .auth-status{ font-size:13.5px; font-weight:600; display:none; margin-top:2px; }
  .auth-status.show{ display:block; }
  .auth-status.ok{ color: var(--teal); }
  .auth-status.err{ color: var(--red); }

  /* ===== My Account Panel (embedded in prescription section) ===== */
  .account-gate{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:26px; text-align:center; }
  .account-gate p{ font-size:14px; color: var(--ink-soft); margin: 0 0 16px; }
  .rx-history{ margin-bottom:22px; display:flex; flex-direction:column; gap:10px; }
  .rx-history-item{ background:#fff; border:1px solid var(--line); border-radius:12px; padding:14px 16px; display:flex; justify-content:space-between; align-items:center; gap:12px; }
  .rx-history-item .rx-h-name{ font-weight:700; font-size:14px; }
  .rx-history-item .rx-h-date{ font-size:12px; color: var(--ink-soft); }
  .rx-status-pill{ font-size:11.5px; font-weight:700; padding:5px 12px; border-radius:999px; white-space:nowrap; }
  .rx-status-pill.submitted{ background:#FFF4E0; color:#8A6200; }
  .rx-status-pill.ready{ background:#E6F5F3; color: var(--teal); }
  .rx-status-pill.collected{ background:#EEF1F4; color:#4A5158; }
  .account-bar{ display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; font-size:13.5px; color: var(--ink-soft); }
  .account-bar button{ background:none; border:none; color: var(--red); font-weight:700; font-size:13px; cursor:pointer; }
  .contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 28px; overflow:hidden; box-shadow: var(--shadow-lg); }
  .contact-panel{ background: var(--ink); color:#fff; padding: 56px 48px; }
  .contact-panel .eyebrow{ color:#FFC9CB; }
  .contact-panel .eyebrow::before{ background:#FFC9CB; }
  .contact-panel h2{ color:#fff; font-size: clamp(26px,3vw,36px); margin-top:14px; }
  .contact-panel > p{ color: rgba(255,255,255,0.68); margin-top:14px; font-size:15px; line-height:1.65; max-width:420px; }

  .c-row{ display:flex; gap:16px; margin-top:26px; align-items:flex-start; }
  .c-ico{
    width:44px; height:44px; border-radius:12px; background: rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; color: var(--red); flex:none;
  }
  .c-row strong{ display:block; font-size:14.5px; }
  .c-row span, .c-row a{ display:block; font-size:14px; color: rgba(255,255,255,0.68); margin-top:2px; }
  .c-row a:hover{ color:#fff; }

  .hours-table{ margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.12); padding-top:20px; }
  .hours-row{ display:flex; justify-content:space-between; padding: 7px 0; font-size:14px; }
  .hours-row span:first-child{ color: rgba(255,255,255,0.6); }
  .hours-row span:last-child{ font-weight:600; }
  .hours-note{ font-size:12px; color: rgba(255,255,255,0.45); margin-top:12px; }

  .contact-map{ position:relative; min-height: 480px; }
  .contact-map iframe{ width:100%; height:100%; border:0; position:absolute; inset:0; filter: grayscale(12%) contrast(1.04); }
  .map-card{
    position:absolute; left:28px; bottom:28px; z-index:2;
    background:#fff; border-radius:16px; padding: 18px 20px; box-shadow: var(--shadow-md);
    max-width: 260px;
  }
  .map-card strong{ display:block; font-size:14px; }
  .map-card span{ display:block; font-size:12.5px; color: var(--ink-soft); margin-top:4px; line-height:1.5; }
  .map-card a{ display:inline-flex; margin-top:10px; font-size:12.5px; font-weight:700; color: var(--red); align-items:center; gap:4px; }

  @media (max-width: 900px){
    .contact-grid{ grid-template-columns: 1fr; border-radius: 22px; }
    .contact-panel{ padding: 44px 26px; }
    .contact-map{ min-height: 340px; }
  }

  .cta-band{
    max-width: var(--container); margin: -46px auto 0; position:relative; z-index:5;
    background: linear-gradient(120deg, var(--red), var(--red-dark));
    border-radius: 26px; padding: 46px 48px;
    display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
    box-shadow: var(--shadow-lg);
  }
  .cta-band h3{ color:#fff; font-size: clamp(20px,2.4vw,28px); max-width: 520px; }
  .cta-band-actions{ display:flex; gap:14px; flex-wrap:wrap; }
  @media (max-width: 700px){ .cta-band{ margin-top:-24px; padding:34px 26px; } }

  footer{ background: var(--ink); color: rgba(255,255,255,0.7); padding: 90px 0 0; margin-top: 100px; }
  .foot-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .foot-brand .brand-word{ color:#fff; }
  .foot-brand p{ margin-top:16px; font-size:14px; line-height:1.7; max-width:280px; }
  .foot-social{ display:flex; gap:10px; margin-top:20px; }
  .foot-social a{ width:38px; height:38px; border-radius:10px; background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; transition: background .2s ease; }
  .foot-social a:hover{ background: var(--red); }
  .foot-col h4{ color:#fff; font-size:14px; font-weight:700; margin-bottom:18px; letter-spacing:0.02em; }
  .foot-col ul{ display:flex; flex-direction:column; gap:11px; }
  .foot-col a{ font-size:14px; transition: color .2s ease; }
  .foot-col a:hover{ color:#fff; }
  .foot-bottom{ padding: 26px 0 34px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:13px; }
  .foot-bottom a{ font-weight:600; color: rgba(255,255,255,0.75); }
  .foot-bottom a:hover{ color:#fff; }

  @media (max-width: 900px){ .foot-grid{ grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px){ .foot-grid{ grid-template-columns: 1fr; } }

  .reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,.9,.32,1), transform .7s cubic-bezier(.22,.9,.32,1); }
  .reveal.dir-left{ transform: translateX(-44px); }
  .reveal.dir-right{ transform: translateX(44px); }
  .reveal.dir-pop{ transform: translateY(18px) scale(0.92); }
  .reveal.dir-scale{ transform: scale(0.88); }
  .reveal.dir-rotate{ transform: translateY(20px) rotate(-2.5deg); }
  .reveal.in{ opacity:1; transform:none; }

  .section-divider{
    display:flex; align-items:center; justify-content:center; gap:12px;
    margin-bottom: 40px; transition-delay: .05s;
  }
  .section-divider::before, .section-divider::after{
    content:''; height:1px; width:46px; background: var(--line);
    transition: width .6s ease .15s;
  }
  .section-divider.in::before, .section-divider.in::after{ width:46px; }
  .section-divider .sd-dot{
    width:7px; height:7px; border-radius:50%; background: var(--red); flex:none;
    transform: scale(0); transition: transform .4s ease .3s;
  }
  .section-divider.in .sd-dot{ transform: scale(1); }
  .section-divider.light::before, .section-divider.light::after{ background: rgba(255,255,255,0.25); }
  .section-divider.teal-dot .sd-dot{ background: var(--teal); }

  .skip-link{ position:absolute; left:-9999px; top:auto; background:#fff; padding:12px 18px; z-index:5000; border-radius:8px; }
  .skip-link:focus{ left:16px; top:16px; }

  /* ===== Online Services: Diaspora Payments + Prescription Upload ===== */
  .os-card{
    background: var(--mist); border:1px solid var(--line); border-radius: 24px;
    padding: 38px 34px; display:flex; flex-direction:column;
  }
  .os-card.teal{ background: #EEF7F6; border-color: rgba(11,122,117,0.28); }
  .os-card.teal .os-ico{ color: var(--teal); }
  .os-card.teal .os-file:hover{ border-color: var(--teal); }
  .os-card.warm{ background: #FCEFEE; border-color: rgba(214,36,43,0.22); }
  .os-card.warm .os-ico{ color: var(--red); }
  .os-card.warm .os-file:hover{ border-color: var(--red); }
  .os-ico{
    width:56px; height:56px; border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
    background:#fff; display:flex; align-items:center; justify-content:center; color: var(--red);
    box-shadow: var(--shadow-sm); margin-bottom: 18px; flex:none;
  }
  .os-card h3{ font-size: 21px; font-weight:800; }
  .os-card > p{ margin-top:10px; font-size:14.5px; line-height:1.65; color: var(--ink-soft); }
  .os-steps{ margin-top:20px; display:flex; flex-direction:column; gap:12px; }
  .os-step{ display:flex; gap:12px; align-items:flex-start; font-size:13.5px; line-height:1.55; color: var(--ink-soft); }
  .os-step-num{
    flex:none; width:22px; height:22px; border-radius:50%; background: var(--teal); color:#fff;
    font-size:11.5px; font-weight:800; display:flex; align-items:center; justify-content:center; margin-top:1px;
  }

  .os-form{ margin-top:22px; display:flex; flex-direction:column; gap:14px; }
  .os-field label{ display:block; font-size:12.5px; font-weight:700; color: var(--ink); margin-bottom:6px; }
  .os-field input, .os-field select, .os-field textarea{
    width:100%; padding:12px 14px; border-radius:12px; border:1px solid var(--line);
    background:#fff; font-family: var(--font-body); font-size:14px; color: var(--ink);
  }
  .os-field input:focus, .os-field select:focus, .os-field textarea:focus{ outline:2px solid var(--teal); outline-offset:1px; }
  .os-field textarea{ resize: vertical; min-height:76px; }
  .os-file{
    border:1.5px dashed var(--line); border-radius:14px; padding:18px; text-align:center;
    background:#fff; cursor:pointer; transition: border-color .2s ease, background .2s ease;
  }
  .os-file:hover{ border-color: var(--teal); }
  .os-file input[type="file"]{ display:none; }
  .os-file-label{ font-size:13.5px; color: var(--ink-soft); }
  .os-file-name{ margin-top:8px; font-size:12.5px; font-weight:700; color: var(--teal); word-break:break-all; }
  .os-note{ font-size:12px; color: var(--ink-soft); opacity:0.8; margin-top:2px; }
  .os-status{ margin-top:6px; font-size:13.5px; font-weight:600; display:none; }
  .os-status.show{ display:block; }
  .os-status.ok{ color: var(--teal); }
  .os-status.err{ color: var(--red); }

  @media (max-width: 900px){
    .os-card{ padding: 30px 24px; }
  }

  /* ===== DIY Rule-Based Chat Assistant ===== */
  .va-floater{ position: fixed; right: 22px; bottom: 22px; z-index: 3900; display:flex; flex-direction:column; align-items:flex-end; gap:14px; }
  .va-floater.hide-for-menu{ display:none; }
  .va-btn::before{
    content:''; position:absolute; inset:0; border-radius:50%; background: var(--teal); opacity:0.4;
    animation: va-pulse 2.4s ease-out infinite;
  }
  @keyframes va-pulse{ 0%{ transform:scale(1); opacity:0.4; } 100%{ transform:scale(1.7); opacity:0; } }
  .va-panel{
    background:#fff; border-radius: 18px; box-shadow: var(--shadow-lg); width: 320px; max-width: calc(100vw - 44px);
    max-height: 440px; overflow:hidden; transform: translateY(16px) scale(0.96); opacity:0; visibility:hidden; pointer-events:none;
    transition: all .25s ease; transform-origin: bottom right; display:flex; flex-direction:column;
  }
  .va-panel.open{ transform: translateY(0) scale(1); opacity:1; visibility:visible; pointer-events:auto; }
  .va-panel-head{ background: var(--teal); color:#fff; padding: 16px 18px; display:flex; align-items:center; gap:12px; flex:none; }
  .va-mini-ico{
    width:36px; height:36px; border-radius: 40% 60% 60% 40% / 55% 45% 55% 45%; flex:none;
    background: linear-gradient(135deg, var(--red) 50%, #fff 50%);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
  }
  .va-panel-head strong{ display:block; font-size:14px; }
  .va-panel-head span{ display:block; font-size:11.5px; color: rgba(255,255,255,0.8); }
  .va-panel-body{ padding: 16px; background: #F7F8F9; overflow-y:auto; flex:1; display:flex; flex-direction:column; gap:10px; }
  .va-bubble{ background:#fff; border-radius: 12px; padding: 11px 13px; font-size: 13.5px; line-height:1.55; color:#222; box-shadow: 0 1px 2px rgba(0,0,0,0.08); align-self:flex-start; max-width: 92%; }
  .va-options{ display:flex; flex-direction:column; gap:8px; margin-top:2px; }
  .va-opt{
    text-align:left; background:#fff; border:1.5px solid var(--line); border-radius:12px; padding:10px 13px;
    font-family: var(--font-body); font-size:13px; font-weight:600; color: var(--ink); cursor:pointer;
    transition: border-color .2s ease, background .2s ease;
  }
  .va-opt:hover{ border-color: var(--teal); background: #F0FAF9; }
  .va-back{
    align-self:flex-start; background:none; border:none; color: var(--teal); font-size:12.5px; font-weight:700;
    cursor:pointer; padding:2px 0; margin-top:2px;
  }
  .va-btn{
    width:58px; height:58px; border-radius:50%; background: var(--teal); display:flex; align-items:center; justify-content:center;
    box-shadow: var(--shadow-lg); border:none; cursor:pointer; color:#fff; position:relative;
  }
  .va-btn:hover{ background: var(--teal-dark); }
