﻿/* ===== site.css ===== */

:root {
  --ink: #17201d;
  --muted: #66706c;
  --cream: #f5f2ea;
  --lime: #d9ff64;
  --white: #fff;
  --line: #dfe3dc;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(23, 32, 29, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Poppins, sans-serif;
  background: #fcfcf9;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  transition: 0.2s ease;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3,
.brand {
  font-family: Poppins, sans-serif;
}
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  background: #fcfcf9;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
}
.brand-mark {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  display: grid;
  place-items: center;
}
.brand-dot {
  color: #91b62a;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}
.main-nav > a {
  font-size: 14px;
  font-weight: 600;
}
.main-nav > a:hover {
  color: #668114;
}
.button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
}
.button span {
  font-size: 18px;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(173, 212, 65, 0.2);
}
.button-primary:hover,
.button-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.button-small {
  padding: 11px 18px;
}
.button-light {
  background: #fff;
}
.button-full {
  width: 100%;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
}
.hero {
  min-height: 690px;
  padding: 90px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, #eef6cf 0, transparent 31%), var(--cream);
}
.pill {
  display: inline-flex;
  border: 1px solid #cbd1c9;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero h1,
.detail-hero h1 {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin: 25px 0;
}
.hero h1 em,
h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #728d24;
}
.hero-copy > p {
  max-width: 590px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.text-link {
  border: 0;
  background: none;
  font-weight: 700;
  cursor: pointer;
}
.hero-visual {
  height: 500px;
  position: relative;
}
.orb {
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  box-shadow: var(--shadow);
}
.orb-main {
  width: 330px;
  height: 330px;
  right: 10%;
  top: 70px;
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 70px;
  transform: rotate(-7deg);
}
.orb-main span {
  color: var(--lime);
  font-size: 14px;
}
.orb-main strong {
  font: 700 47px/1.05 Poppins;
  margin-top: 10px;
}
.orb-small {
  width: 105px;
  height: 105px;
  background: white;
  font-size: 13px;
  font-weight: 700;
}
.orb-one {
  top: 15px;
  left: 10%;
  background: var(--lime);
}
.orb-two {
  right: 1%;
  top: 20px;
}
.orb-three {
  left: 8%;
  bottom: 25px;
}
.spark {
  position: absolute;
  right: 2%;
  bottom: 55px;
  color: #829f2e;
  font-size: 60px;
}
.solutions,
.related {
  padding: 110px clamp(24px, 7vw, 110px);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 70px;
}
.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 800;
  color: #71806d;
  margin-bottom: 20px;
}
.section-heading h2,
.process h2,
.cta h2,
.detail-body h2 {
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 0;
}
.section-heading > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
}
.category-scroller {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 55px 4px 25px;
  scrollbar-width: thin;
}
.category-chip {
  min-width: 142px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category-circle {
  width: 112px;
  height: 112px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  background: #fff;
  margin-bottom: 16px;
}
.category-chip:hover .category-circle,
.category-chip.active .category-circle {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
  transform: translateY(-5px);
}
.category-chip b {
  font-size: 14px;
}
.category-chip small {
  color: #8a938f;
  margin-top: 5px;
}
.products-heading {
  margin: 65px 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.products-heading h3,
.products-heading h2 {
  margin: 0;
  font-size: 22px;
}
.products-heading > span {
  font-size: 12px;
  color: var(--muted);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: #f4f4ef;
  border-radius: var(--radius);
  padding: 30px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.product-card:hover {
  background: #fff;
  border-color: var(--line);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.card-top {
  display: flex;
  justify-content: space-between;
}
.product-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent), white 78%);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 38px;
}
.featured {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  height: max-content;
}
.card-category {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.13em;
  color: #7c8581;
  font-weight: 800;
}
.product-card h3 {
  font-size: 24px;
  margin: 10px 0;
}
.product-card p {
  color: var(--muted);
  line-height: 1.55;
}
.product-card a {
  font-weight: 700;
  font-size: 13px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d8dcd6;
  padding-top: 20px;
}
.product-card a:hover {
  color: var(--accent);
}
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 70px;
  background: #f5f5f0;
  border-radius: var(--radius);
}
.empty-state span {
  font-size: 50px;
}
.process {
  padding: 110px clamp(24px, 7vw, 110px);
  background: var(--ink);
  color: white;
  text-align: center;
}
.process .eyebrow {
  color: #b8c2bc;
}
.process h2 em {
  color: var(--lime);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid #43504b;
}
.process-grid article {
  padding: 45px;
  border-right: 1px solid #43504b;
  position: relative;
}
.process-grid article:last-child {
  border: 0;
}
.process-grid b {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #819089;
  font-size: 11px;
}
.process-grid article > span {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 28px;
  margin: 0 auto 25px;
}
.process-grid h3 {
  font-size: 21px;
}
.process-grid p {
  color: #b8c2bc;
  line-height: 1.6;
  font-size: 14px;
}
.cta {
  text-align: center;
  padding: 110px 24px;
  background: var(--lime);
}
.cta h2 em {
  color: #506218;
}
.cta .button {
  margin-top: 35px;
}
.footer {
  padding: 70px clamp(24px, 7vw, 110px) 30px;
  background: #111815;
  color: #e8ece9;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}
.footer > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .eyebrow {
  color: #7d8a84;
  margin: 0;
}
.footer p,
.footer a {
  color: #a9b3ae;
  font-size: 14px;
  line-height: 1.7;
}
.footer-brand {
  color: white !important;
  font-size: 20px !important;
}
.footer small {
  grid-column: 1/-1;
  border-top: 1px solid #34403b;
  padding-top: 25px;
  color: #75817b;
}
.messages {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 50;
}
.toast {
  background: white;
  border-left: 4px solid #799a20;
  padding: 16px 45px 16px 18px;
  box-shadow: var(--shadow);
  border-radius: 9px;
  position: relative;
}
.toast.error {
  border-color: #c84444;
}
.toast button {
  position: absolute;
  right: 12px;
  border: 0;
  background: none;
  font-size: 20px;
}
.detail-hero {
  padding: 70px clamp(24px, 7vw, 110px) 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent), white 90%),
    #f6f4ed
  );
}
.detail-hero h1 {
  font-size: clamp(52px, 6vw, 82px);
  margin-bottom: 18px;
}
.detail-hero > div > p {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.6;
}
.back-link {
  display: block;
  margin-bottom: 45px;
  font-size: 13px;
  font-weight: 700;
}
.detail-art {
  height: 420px;
  display: grid;
  place-items: center;
  position: relative;
}
.detail-orb {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-size: 90px;
  box-shadow: 0 30px 80px color-mix(in srgb, var(--accent), transparent 55%);
}
.detail-art > span {
  position: absolute;
  background: white;
  border-radius: 15px;
  padding: 14px 20px;
  right: 8%;
  bottom: 40px;
  box-shadow: var(--shadow);
}
.detail-body {
  padding: 110px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}
.description > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}
.description ul {
  list-style: none;
  padding: 20px 0 0;
}
.description li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.description li span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 12px;
  font-size: 12px;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
}
.modal.is-open {
  display: grid;
  place-items: center;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 15, 0.68);
  backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative;
  background: #fff;
  width: min(620px, calc(100% - 30px));
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.25s ease;
}
.modal-panel h2 {
  font-size: 34px;
  margin-bottom: 8px;
}
.modal-panel > p {
  color: var(--muted);
  line-height: 1.55;
}
.modal-close {
  position: absolute;
  right: 24px;
  top: 20px;
  border: 0;
  background: #eef0eb;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 23px;
  cursor: pointer;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field-wide {
  grid-column: 1/-1;
}
.field label {
  font-size: 12px;
  font-weight: 700;
}
.field sup {
  color: #a34141;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d7dcd5;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  background: #fafaf7;
}
.field input:focus,
.field textarea:focus {
  border-color: #91ae40;
  box-shadow: 0 0 0 3px #eff8d6;
}
.field-error {
  color: #b43535;
}
.form-note {
  display: block;
  text-align: center;
  color: #8a938f;
  margin-top: 12px;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 900px) {
  .main-nav a {
    display: none;
  }
  .hero,
  .detail-hero,
  .detail-body {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 60px;
  }
  .hero-visual {
    height: 420px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid #43504b;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .detail-art {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
  }
  .main-nav {
    display: none;
  }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
  }
  .main-nav.open .button {
    width: 100%;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding: 50px 20px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-visual {
    height: 340px;
  }
  .orb-main {
    width: 250px;
    height: 250px;
    padding-left: 50px;
  }
  .orb-main strong {
    font-size: 37px;
  }
  .orb-small {
    width: 80px;
    height: 80px;
  }
  .solutions,
  .process,
  .related,
  .detail-body {
    padding: 75px 20px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .category-circle {
    width: 92px;
    height: 92px;
  }
  .process-grid article {
    padding: 40px 20px;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .footer small {
    grid-column: 1;
  }
  .detail-hero {
    padding: 45px 20px 70px;
  }
  .detail-art {
    height: 330px;
  }
  .detail-orb {
    width: 220px;
    height: 220px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .modal-panel {
    padding: 34px 22px;
  }
  .cta {
    padding: 80px 20px;
  }
}
.medical-hero {
  background: linear-gradient(120deg, #effaf8 0, #f7f5ed 58%, #e4f3f2 100%);
}
.hero-photo {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(10, 80, 75, 0.18);
  aspect-ratio: 1.25;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo > span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.hero-photo small {
  color: var(--muted);
  margin-top: 3px;
}
.card-price {
  font-size: 14px;
  margin: 6px 0 18px;
  color: var(--accent);
}
.detail-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.commerce-strip {
  margin: -42px clamp(24px, 7vw, 110px) 0;
  position: relative;
  z-index: 3;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.commerce-strip > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid var(--line);
}
.commerce-strip small {
  color: var(--muted);
  font-size: 11px;
}
.commerce-strip strong {
  font-size: 14px;
}
.description h3 {
  margin-top: 32px;
}
.detail-hero .pill {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent), white 55%);
}
@media (max-width: 900px) {
  .hero-photo {
    margin-top: 20px;
    max-height: 480px;
  }
  .commerce-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
  }
  .commerce-strip .button {
    grid-column: 1/-1;
  }
  .commerce-strip > div {
    border: 0;
  }
}
@media (max-width: 600px) {
  .commerce-strip {
    grid-template-columns: 1fr;
    margin: 18px 20px 0;
  }
  .commerce-strip .button {
    grid-column: auto;
  }
  .hero-photo {
    aspect-ratio: 1;
  }
  .detail-art img {
    height: 300px;
  }
  .detail-art {
    height: auto;
  }
}


/* ===== interaction-fixes.css ===== */

.product-card {
  position: relative;
  cursor: pointer;
  transform: translateY(0);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 0.3s ease,
    background-color 0.3s ease;
  will-change: transform;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(23, 32, 29, 0.11);
}

.product-card .product-icon {
  transition:
    transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
    background-color 0.3s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.05) rotate(-2deg);
}
.product-card:focus-visible,
.product-card:focus {
  outline: 3px solid color-mix(in srgb, var(--accent), white 50%);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card .product-icon {
    transition: none;
  }
}

/* --- Medical Hero Section Enhancements --- */

/* Permanent Dynamic Gradient Background */
@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.medical-hero {
  background: linear-gradient(
    120deg,
    #effaf8 0%,
    #f7f5ed 35%,
    #e4f3f2 70%,
    #f3faf8 100%
  ) !important;
  background-size: 300% 300% !important;
  animation: heroGradientShift 12s ease-in-out infinite !important;
}

/* Hero Content Staggered Slide-up On Load */
@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-copy > * {
  animation: heroTextReveal 0.8s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.hero-copy .pill {
  animation-delay: 50ms;
}
.hero-copy h1 {
  animation-delay: 150ms;
}
.hero-copy p {
  animation-delay: 250ms;
}
.hero-copy .hero-actions {
  animation-delay: 350ms;
}

/* Gentle Floating Badge Animation */
@keyframes badgeFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-photo > span {
  animation: badgeFloat 5s ease-in-out infinite !important;
  transform-origin: center;
}

/* Soft Pulsing Hero Photo Animation */
@keyframes imagePulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.025);
  }
}
.hero-photo img {
  animation: imagePulse 8s ease-in-out infinite alternate !important;
  will-change: transform;
}

/* Product Detail Page Layout Adjustments & Cards */
.detail-promise-card {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent), transparent 94%),
    color-mix(in srgb, var(--accent), transparent 98%)
  );
  border: 1px solid color-mix(in srgb, var(--accent), transparent 85%);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.detail-promise-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
.detail-promise-card h4 {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-promise-card h4 .icon {
  width: 18px;
  height: 18px;
}
.detail-promise-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.detail-support-card {
  margin-top: 20px;
  padding: 24px;
  border-radius: 20px;
  border: 1px dashed var(--line);
  background: #fafaf9;
}
.detail-support-card h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.detail-support-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.detail-support-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 0 !important;
  font-weight: 400 !important;
  padding: 0 !important;
}
.detail-support-card li .icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}


/* ===== brand.css ===== */

.icon {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: -0.18em;
  flex: 0 0 auto;
}
.brand-logo img {
  display: block;
  width: 210px;
  height: auto;
}
.site-header .brand-logo {
  gap: 0;
}
.footer .brand-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
.button .icon {
  font-size: 18px;
}
.pill {
  align-items: center;
  gap: 8px;
}
.pill .icon {
  color: #087f79;
}
.product-icon .icon {
  width: 24px;
  height: 24px;
}
.description li > span .icon {
  width: 14px;
  height: 14px;
}
.card-detail-link {
  align-items: center;
}
.menu-toggle .icon {
  width: 26px;
  height: 26px;
}
.modal-close {
  display: grid;
  place-items: center;
}
.modal-close .icon {
  width: 19px;
  height: 19px;
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .brand-logo img {
    width: 175px;
  }
  .site-header .brand-logo img {
    width: 168px;
  }
}


