:root {
  --green: #063318;
  --mint: #eefbf2;
  --teal: #087342;
  --orange: #f25a18;
  --ink: #12251b;
  --muted: #5d6b62;
  --line: #dfe8e1;
  --paper: #fbfaf4;
  --white: #ffffff;
  --amber: #ff8a1c;
  --rose: #c44b68;
  --sun: #ffc236;
  --fresh: #218c46;
  --aqua: #3fbf7b;
  --shadow: 0 18px 60px rgba(6, 51, 24, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(63, 191, 123, 0.12), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(242, 90, 24, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf4 50%, #f2faf3 100%);
}

.launch-notice-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 24, 16, 0.58);
  backdrop-filter: blur(8px);
}

.launch-notice-modal[hidden] {
  display: none;
}

.launch-notice-card {
  width: min(560px, 100%);
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(6, 51, 24, 0.12);
  box-shadow: 0 24px 80px rgba(6, 51, 24, 0.28);
  padding: 28px;
}

.launch-notice-card h2 {
  margin: 6px 0 12px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.05;
  color: var(--green);
}

.launch-notice-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.launch-notice-card a {
  color: var(--teal);
  font-weight: 800;
}

.launch-notice-card .primary-btn {
  width: 100%;
  margin-top: 8px;
}

.test-warning-marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  overflow: hidden;
  height: 42px;
  background: #d00000;
  color: #ffe600;
  border-bottom: 3px solid #ffe600;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
}

.test-warning-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: test-warning-marquee 18s linear infinite;
}

.test-warning-track span {
  display: inline-block;
  flex: 0 0 auto;
  padding: 0 64px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 42px;
}

@keyframes test-warning-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .test-warning-track {
    animation: none;
    min-width: 100%;
  }
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: auto minmax(210px, 340px) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(6, 51, 24, 0.12);
  box-shadow: 0 16px 36px rgba(6, 51, 24, 0.08);
  backdrop-filter: blur(20px) saturate(130%);
}


.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  object-fit: contain;
  image-rendering: auto;
}

.language-toggle {
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid rgba(7, 53, 31, 0.16);
  border-radius: 8px;
  color: var(--green);
  background: linear-gradient(180deg, #ffffff, #f1fff8);
  cursor: pointer;
  font-weight: 800;
}


.menu-toggle {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(7, 53, 31, 0.16);
  border-radius: 14px;
  color: var(--green);
  background: linear-gradient(180deg, #ffffff, #effff6);
  box-shadow: 0 10px 26px rgba(7, 53, 31, 0.12);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  border-color: rgba(255, 106, 25, 0.42);
  color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(11, 58, 37, 0.14);
}

.menu-toggle svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
}

.header-search {
  position: relative;
  display: flex;
  min-width: 0;
  height: 54px;
  overflow: hidden;
  border: 2px solid rgba(7, 53, 31, 0.12);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 53, 31, 0.1);
}

.header-search:focus-within {
  border-color: var(--orange);
}

.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 14px;
  outline: 0;
  color: var(--ink);
}

.header-search button {
  width: 62px;
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}

.search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: clamp(74px, 27vw, 520px);
  right: clamp(96px, 5vw, 160px);
  z-index: 60;
  display: grid;
  gap: 4px;
  max-height: min(440px, 68vh);
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(7, 53, 31, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(7, 53, 31, 0.18);
}

.search-suggest[hidden] {
  display: none;
}

.search-suggest button {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 9px;
  padding: 10px 11px;
  color: var(--ink);
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

.search-suggest button:hover {
  background: #f0fbf3;
}

.search-suggest span {
  min-width: 0;
  font-weight: 900;
}

.search-suggest small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  width: min(390px, 92vw);
  height: 100dvh;
  align-content: stretch;
  gap: 10px;
  padding: 18px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f0fff7 52%, #fff8ed);
  box-shadow: 24px 0 70px rgba(9, 35, 25, 0.24);
  transform: translateX(-110%);
  transition: transform 0.24s ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(11, 36, 25, 0.32);
}

.menu-head {
  display: grid;
  gap: 4px;
  margin: -4px 0 10px;
  padding: 14px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0a7347 58%, var(--orange));
}

.menu-head strong {
  font-size: 18px;
}

.menu-head small {
  color: rgba(255, 255, 255, 0.78);
}

.main-menu.open {
  transform: translateX(0);
}

.menu-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.menu-actions a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--green);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.menu-catalog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 2px 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-catalog-head small {
  color: var(--orange);
  font-size: 12px;
  text-transform: none;
}

.menu-catalog-list {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 8px;
  min-height: 240px;
  max-height: calc(100dvh - 190px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 22px;
}

.menu-primary-list {
  display: grid;
  gap: 6px;
}

.menu-secondary-list {
  display: none;
}

.menu-category-branch {
  display: grid;
  gap: 4px;
}

.menu-catalog-item {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
}

.menu-mobile-subcategories {
  display: none;
  gap: 5px;
  padding: 0 0 6px 12px;
}

.menu-category-branch.active .menu-mobile-subcategories {
  display: grid;
}

.menu-subcategory-item {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(15, 81, 50, 0.1);
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  text-align: left;
  font-weight: 800;
}

.menu-subcategory-item.all {
  color: var(--green);
  background: #f0fbf3;
}

.menu-catalog-item span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.menu-catalog-item small {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.menu-actions a:hover,
.menu-catalog-item:hover,
.menu-catalog-item.active {
  border-color: rgba(11, 58, 37, 0.12);
  color: var(--green);
  background: var(--mint);
}

.menu-catalog-item.active {
  box-shadow: inset 4px 0 0 var(--orange);
}

.associated-products-label {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #0f5132;
  background: #eaf8ef;
  font-size: 12px;
  font-weight: 900;
}

.search-pending-note {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 8px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #0f5132;
  background: #eaf8ef;
  font-size: 12px;
  font-weight: 900;
}

@media (min-width: 901px) {
  .main-menu {
    position: fixed;
    top: 76px;
    left: 24px;
    right: 24px;
    z-index: 130;
    width: min(1180px, calc(100vw - 48px));
    height: auto;
    max-height: min(72vh, 680px);
    margin: 0 auto;
    grid-template-rows: auto auto auto 1fr;
    border: 1px solid rgba(15, 81, 50, 0.14);
    border-radius: 18px;
    padding: 18px;
    overflow: visible;
    box-shadow: 0 30px 80px rgba(9, 35, 25, 0.22);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
  }

  body.menu-open {
    overflow: auto;
  }

  body.menu-open::after {
    display: none;
  }

  .main-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-head {
    grid-template-columns: auto 1fr;
    align-items: baseline;
  }

  .menu-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .menu-catalog-list {
    grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
    gap: 18px;
    max-height: min(48vh, 440px);
    overflow: hidden;
    padding: 0;
  }

  .menu-primary-list {
    max-height: min(48vh, 440px);
    overflow-y: auto;
    padding-right: 6px;
  }

  .menu-secondary-list {
    display: block;
    min-width: 0;
    border: 1px solid rgba(15, 81, 50, 0.12);
    border-radius: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.82);
    overflow: hidden auto;
  }

  .menu-mobile-subcategories {
    display: none !important;
  }

  .menu-subcategory-panel {
    display: none;
  }

  .menu-subcategory-panel.active {
    display: grid;
    gap: 14px;
  }

  .menu-subcategory-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 81, 50, 0.12);
  }

  .menu-subcategory-head strong {
    color: var(--green);
    font-size: 20px;
  }

  .menu-subcategory-head button,
  .menu-subcategory-card {
    border: 1px solid rgba(15, 81, 50, 0.12);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
  }

  .menu-subcategory-head button {
    padding: 9px 12px;
    color: var(--green);
    font-weight: 900;
  }

  .menu-subcategory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .menu-subcategory-card {
    display: grid;
    min-height: 78px;
    align-content: center;
    gap: 5px;
    padding: 13px;
    text-align: left;
  }

  .menu-subcategory-card span {
    font-weight: 900;
  }

  .menu-subcategory-card small {
    color: var(--muted);
    font-weight: 800;
  }

  .menu-subcategory-head button:hover,
  .menu-subcategory-card:hover {
    border-color: rgba(237, 102, 34, 0.28);
    background: #fff8ed;
  }
}

.header-search button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
}

.header-actions {
  display: flex;
  gap: 10px;
  justify-content: end;
}

.ghost-btn,
.cart-btn,
.primary-btn,
.secondary-btn,
.icon-btn {
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.ghost-btn {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: var(--white);
}

.cart-btn {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0b5a2c);
}

.cart-btn span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  place-items: center;
  border-radius: 999px;
  color: var(--green);
  background: var(--mint);
  font-size: 12px;
  font-weight: 700;
}


.promo-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  padding: 16px clamp(14px, 4vw, 54px);
  background: linear-gradient(180deg, #fffaf3, #fffdf7);
  border-bottom: 1px solid var(--line);
}

.promo-card {
  display: grid;
  gap: 6px;
  min-height: 104px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(7, 53, 31, 0.1);
  border-radius: 18px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 255, 249, 0.92));
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(7, 53, 31, 0.1);
}

.promo-main {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 211, 61, 0.36), transparent 24%),
    linear-gradient(135deg, var(--green), #008f7a 52%, var(--orange));
}

.promo-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-main span,
.promo-main small {
  color: rgba(255, 255, 255, 0.84);
}

.promo-card strong {
  font-size: 20px;
}

.promo-card small {
  color: var(--muted);
  line-height: 1.35;
}

.promo-main small {
  color: rgba(255, 255, 255, 0.84);
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 83% 22%, rgba(255, 177, 46, 0.34), transparent 24%),
    linear-gradient(90deg, rgba(4, 34, 21, 0.92), rgba(7, 75, 48, 0.66) 45%, rgba(25, 194, 164, 0.18));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 32px));
  margin-left: clamp(16px, 7vw, 96px);
  padding: 70px 0 92px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-logo {
  display: block;
  width: min(700px, 92vw);
  margin: 0 0 22px;
  border-radius: 8px;
  filter: drop-shadow(0 0 22px rgba(255, 223, 176, 0.42));
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-quick-links a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
}

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--teal) 62%, var(--fresh));
  box-shadow: 0 14px 28px rgba(6, 51, 24, 0.2);
}

.secondary-btn {
  color: var(--green);
  background: linear-gradient(180deg, #ffffff, #f0fff7);
  box-shadow: 0 12px 24px rgba(7, 53, 31, 0.12);
}

.wide {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip article {
  padding: 24px clamp(16px, 4vw, 54px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.top-categories {
  display: grid;
  gap: 20px;
  padding: 36px clamp(16px, 4vw, 54px) 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(25, 194, 164, 0.2), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(255, 177, 46, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff, #f0fff7);
  border-bottom: 1px solid rgba(7, 53, 31, 0.1);
}

.top-categories-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.top-categories-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
}

.top-categories-head a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(7, 53, 31, 0.12);
  border-radius: 999px;
  color: var(--green);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 53, 31, 0.08);
  font-weight: 900;
  text-decoration: none;
}

.top-category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(118px, 1fr));
  gap: 14px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.top-category-card {
  display: grid;
  min-height: 170px;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: 18px 12px 16px;
  border: 1px solid rgba(7, 53, 31, 0.1);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(7, 53, 31, 0.1);
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.top-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 25, 0.32);
  box-shadow: 0 24px 48px rgba(7, 53, 31, 0.16);
}

.top-category-card strong {
  color: var(--green);
  font-size: 15px;
  line-height: 1.16;
}

.top-category-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.top-category-icon {
  position: relative;
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(135deg, #0a7347, #19c2a4);
  box-shadow: inset 0 -10px 18px rgba(7, 53, 31, 0.14), 0 14px 24px rgba(7, 53, 31, 0.16);
}

.top-category-icon::before,
.top-category-icon::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 999px;
  background: #ffffff;
}

.top-category-cold::before {
  inset: 20px 16px;
  border-radius: 18px;
}

.top-category-cold::after {
  inset: 34px 14px;
  height: 9px;
  background: var(--amber);
}

.top-category-derma {
  background: linear-gradient(135deg, #f8a9c4, #ff6a19);
}

.top-category-derma::before {
  inset: 18px 24px;
  border-radius: 28px 28px 34px 34px;
}

.top-category-derma::after {
  inset: 28px 34px 38px;
  background: #ff6a19;
}

.top-category-oral {
  background: linear-gradient(135deg, #4bd8ff, #008f7a);
}

.top-category-oral::before {
  inset: 17px 25px 18px;
  border-radius: 32px 32px 18px 18px;
}

.top-category-oral::after {
  inset: 35px 19px 31px;
  background: #e8fff5;
}

.top-category-vitamins {
  background: linear-gradient(135deg, #ffd33d, #ff6a19);
}

.top-category-vitamins::before {
  inset: 19px 25px;
  border-radius: 20px;
}

.top-category-vitamins::after {
  inset: 35px 18px;
  height: 8px;
  background: #07351f;
}

.top-category-baby {
  background: linear-gradient(135deg, #9fe7ff, #16a66a);
}

.top-category-baby::before {
  inset: 18px 23px 28px;
}

.top-category-baby::after {
  inset: 43px 18px 19px;
  border-radius: 18px 18px 28px 28px;
}

.top-category-aid {
  background: linear-gradient(135deg, #ffffff, #ff6a19);
}

.top-category-aid::before {
  inset: 18px 34px;
  border-radius: 8px;
  background: #07351f;
}

.top-category-aid::after {
  inset: 34px 18px;
  border-radius: 8px;
  background: #07351f;
}

.top-category-sun {
  background: linear-gradient(135deg, #fff16f, #ff8e24);
}

.top-category-sun::before {
  inset: 21px;
  background: #ffffff;
}

.top-category-sun::after {
  inset: 10px;
  border: 7px solid rgba(255, 255, 255, 0.72);
  background: transparent;
}

.top-category-rx {
  background: linear-gradient(135deg, #07351f, #16a66a);
}

.top-category-rx::before {
  inset: 18px 34px;
}

.top-category-rx::after {
  inset: 34px 18px;
}

.campaign-rail {
  overflow: hidden;
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(90deg, #effbf3, #fff8e8 55%, #fff0df);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.campaign-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-inline: clamp(18px, 4vw, 54px);
  animation: railMove 58s linear infinite;
}

.campaign-card {
  position: relative;
  display: grid;
  width: clamp(330px, 32vw, 460px);
  aspect-ratio: 16 / 9;
  align-content: end;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(11, 58, 37, 0.12);
  border-radius: 18px;
  color: var(--white);
  text-decoration: none;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(18, 61, 44, 0.13);
  isolation: isolate;
  transform: translateZ(0);
}

.campaign-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.03) contrast(1.01);
  transform: none;
}

.campaign-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 68%;
  background:
    linear-gradient(180deg, rgba(6, 51, 24, 0), rgba(6, 51, 24, 0.34) 46%, rgba(6, 51, 24, 0.58)),
    linear-gradient(90deg, rgba(6, 51, 24, 0.42), rgba(6, 51, 24, 0.08) 72%);
}

.campaign-card span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff6e8;
  background: rgba(240, 90, 26, 0.78);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(7, 43, 34, 0.12);
}

.campaign-card strong {
  max-width: 300px;
  margin-top: 8px;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(6, 51, 24, 0.36);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.08;
}

.campaign-rail:hover .campaign-track,
.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

@keyframes railMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.needs-section {
  padding-top: 56px;
  padding-bottom: 64px;
  border-top: 1px solid rgba(11, 58, 37, 0.08);
  border-bottom: 1px solid rgba(11, 58, 37, 0.08);
  background:
    linear-gradient(135deg, rgba(230, 242, 232, 0.72), rgba(255, 253, 247, 0.92) 58%, rgba(255, 247, 238, 0.72)),
    #f7fbf8;
}

.needs-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(11, 58, 37, 0.12);
}

.needs-head .eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(233, 75, 22, 0.09);
  font-size: 12px;
  font-weight: 900;
}

.needs-head h2 {
  max-width: 640px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.04;
}

.needs-copy {
  position: relative;
  padding-left: 22px;
}

.needs-copy::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--green));
}

.needs-copy .catalog-note {
  max-width: 520px;
  margin: 0;
  color: #52645d;
  font-size: 17px;
  line-height: 1.58;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.need-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  min-height: 132px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(7, 53, 31, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f4fff9);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(18, 61, 44, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.need-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 25, 0.34);
  box-shadow: 0 18px 44px rgba(18, 61, 44, 0.13);
}

.need-card img {
  grid-row: 1 / span 2;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.need-card strong {
  color: var(--green);
  font-size: 17px;
  line-height: 1.2;
}

.need-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.brand-marquee {
  display: grid;
  gap: 18px;
  padding: 34px clamp(16px, 4vw, 54px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #effff7);
}

.brand-marquee-head {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-marquee-head strong {
  color: var(--green);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
}

.brand-marquee-window {
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: railMove 42s linear infinite;
}

.brand-track a {
  display: inline-flex;
  min-width: 150px;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(11, 58, 37, 0.16);
  border-radius: 8px;
  color: var(--green);
  background: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(18, 61, 44, 0.06);
}

.brand-logo img {
  display: block;
  max-width: 118px;
  max-height: 42px;
  object-fit: contain;
  filter: saturate(0.95);
}

.section {
  padding: 72px clamp(16px, 4vw, 54px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.catalog-note {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.catalog-section-main {
  padding-top: 56px;
  background: linear-gradient(180deg, #fffdf7, #f8fbf8);
}

.catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(11, 58, 37, 0.12);
}

.catalog-head .eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(233, 75, 22, 0.09);
  font-size: 12px;
  font-weight: 900;
}

.catalog-head h2 {
  max-width: 640px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.04;
}

.catalog-copy {
  position: relative;
  padding-left: 22px;
}

.catalog-copy::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--orange));
}

.catalog-copy .catalog-note {
  max-width: 560px;
  margin: 0;
  color: #52645d;
  font-size: 17px;
  line-height: 1.58;
}

.search-wrap input {
  width: min(360px, 100%);
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.catalog-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.catalog-sidebar {
  display: none;
}

.sidebar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.sidebar-title span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.category-select {
  display: none;
  width: calc(100% - 16px);
  min-height: 46px;
  margin: 8px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: var(--white);
  font-weight: 800;
}

.category-tabs {
  display: grid;
  gap: 4px;
  padding: 8px;
}

.category-tabs button {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 9px;
  border: 0;
  border-left: 4px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.category-tabs button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-tabs button small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.category-tabs button.active {
  color: var(--green);
  border-left-color: var(--orange);
  background: var(--mint);
}

.category-tabs button.active small {
  color: var(--green);
}

.catalog-results {
  min-width: 0;
}

.catalog-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.department-card {
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  text-align: left;
}

.department-card span {
  color: var(--green);
  font-size: 19px;
  font-weight: 900;
}

.department-card small {
  color: var(--muted);
  line-height: 1.35;
}

.department-card strong {
  align-self: end;
  color: var(--orange);
  font-size: 13px;
}

.results-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 10px 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(11, 58, 37, 0.12);
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.results-toolbar strong,
.results-toolbar span {
  display: block;
}

.results-toolbar span {
  margin-top: 4px;
  color: #60706a;
  font-size: 13px;
}

.small-reset {
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(11, 58, 37, 0.12);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.catalog-sections {
  display: grid;
  gap: 34px;
}

.catalog-section {
  display: grid;
  gap: 16px;
}

.catalog-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.catalog-section h3 {
  margin: 0;
  font-size: 25px;
}

.catalog-section p {
  margin: 5px 0 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.45;
}

.section-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--green);
  background: var(--mint);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.section-more,
.result-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.result-note {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  border: 1px solid rgba(7, 53, 31, 0.1);
  border-radius: 18px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(7, 53, 31, 0.09);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-visual {
  --zoom-x: 50%;
  --zoom-y: 50%;
  position: relative;
  display: grid;
  min-height: 210px;
  overflow: visible;
  place-items: center;
  border-radius: 18px 18px 0 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 211, 61, 0.24), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(25, 194, 164, 0.22), transparent 28%),
    linear-gradient(135deg, #ecfff6, #ffffff 56%, #fff4df);
  cursor: zoom-in;
  isolation: isolate;
  text-decoration: none;
}

.product-visual::before {
  content: none;
}

.product-visual::after {
  content: "Ține apăsat";
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  pointer-events: none;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(11, 58, 37, 0.12);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.product-photo {
  width: 84%;
  height: 178px;
  object-fit: contain;
  padding: 16px;
  mix-blend-mode: multiply;
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform 0.16s ease, filter 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
  will-change: transform;
  z-index: 2;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(255, 106, 25, 0.34);
  box-shadow: 0 22px 48px rgba(7, 53, 31, 0.16);
  transform: translateY(-3px);
  z-index: 25;
}

.product-card:hover .product-visual::after,
.product-card:focus-within .product-visual::after {
  opacity: 1;
  transform: translateY(0);
}

.product-visual:active .product-photo {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(18, 41, 35, 0.22);
  filter: saturate(1.04) contrast(1.03);
  mix-blend-mode: normal;
  transform: scale(1.55);
}

.prescription-card {
  border-color: #cddbd2;
}

.rx-prescription-visual {
  width: min(190px, 92%);
  height: 168px;
  object-fit: contain;
  padding: 10px;
  filter: drop-shadow(0 12px 20px rgba(20, 60, 48, 0.12));
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.product-visual:active .rx-prescription-visual {
  filter: drop-shadow(0 16px 24px rgba(20, 60, 48, 0.16));
  transform: scale(1.25);
}

.pack {
  width: 92px;
  height: 128px;
  border-radius: 8px 8px 5px 5px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 28px rgba(20, 60, 48, 0.2);
  background: linear-gradient(180deg, var(--pack), #ffffff);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-visual:active .pack {
  box-shadow: 0 20px 34px rgba(20, 60, 48, 0.24);
  transform: scale(1.08);
}

.pack::before {
  content: "+";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--green);
  font-size: 28px;
  font-weight: 700;
}

.pack::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 24px;
  height: 8px;
  border-radius: 99px;
  background: rgba(17, 97, 73, 0.28);
  box-shadow: 0 15px 0 rgba(17, 97, 73, 0.18), 0 -15px 0 rgba(17, 97, 73, 0.18);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px 18px 16px;
}

.product-category {
  display: none;
}

.product-card h3 {
  display: -webkit-box;
  min-height: 62px;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card p {
  display: none;
}

.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover h3,
.product-title-link:focus-visible h3 {
  color: var(--green);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  min-width: 54px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  box-shadow: var(--shadow);
  text-decoration: none;
  font-weight: 900;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.price-box {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.availability {
  color: var(--orange);
  font-size: 18px;
  font-weight: 800;
}

.product-card .price-box small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.price-box small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.unit-price-note {
  display: block;
  color: #667a72;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.product-card .price-box .unit-price-note {
  display: block;
}

.add-btn {
  min-height: 40px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #17623f);
  cursor: pointer;
  font-weight: 700;
}

.order-request-btn {
  color: var(--green);
  background: #fff4d8;
  border: 1px solid rgba(220, 150, 28, 0.38);
  cursor: not-allowed;
}

.catalog-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.catalog-pager button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(11, 58, 37, 0.16);
  border-radius: 8px;
  color: var(--green);
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.catalog-pager button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.catalog-pager span,
.catalog-empty {
  color: var(--muted);
  font-weight: 800;
}

.info-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #123d2c 62%, #5a2a14);
}

.info-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--green);
  background: var(--white);
  font-weight: 800;
}

.notice {
  background: #fff8e7;
}

.notice p {
  max-width: 980px;
  color: #5f5030;
  line-height: 1.6;
}


.health-blog {
  background:
    radial-gradient(circle at 10% 6%, rgba(255, 106, 25, 0.13), transparent 28%),
    linear-gradient(135deg, #fffdf7 0%, #f2fbf5 48%, #fff7ed 100%);
}

.blog-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.blog-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 24px;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(11, 58, 37, 0.12);
}

.blog-head .eyebrow {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), #1f8a5b);
  font-size: 12px;
  font-weight: 900;
}

.blog-head h2 {
  max-width: 620px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.blog-head p:not(.eyebrow) {
  max-width: 620px;
  margin: 10px 0 0;
  color: #52645d;
  font-size: 16px;
  line-height: 1.55;
}

.blog-filter-chips {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-filter-chip {
  min-height: 34px;
  border: 1px solid rgba(11, 58, 37, 0.15);
  border-radius: 999px;
  padding: 0 13px;
  color: #234438;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.blog-filter-chip:hover,
.blog-filter-chip.is-active {
  color: #ffffff;
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 10px 22px rgba(11, 58, 37, 0.16);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(7, 53, 31, 0.1);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(18, 61, 44, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 25, 0.32);
  box-shadow: 0 22px 46px rgba(18, 61, 44, 0.13);
}

.blog-card.is-hidden {
  display: none;
}

.blog-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #eef6f0;
}

.blog-card-body {
  display: grid;
  gap: 10px;
  padding: 15px 16px 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-meta span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card:nth-child(2n) .blog-meta span {
  background: var(--orange);
}

.blog-card:nth-child(3n) .blog-meta span {
  background: #2d8f62;
}

.blog-meta small {
  color: #6f7d76;
  font-size: 12px;
  font-weight: 800;
}

.blog-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.24;
}

.blog-card p {
  margin: 0;
  color: #586a62;
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card em {
  align-self: end;
  margin-top: 2px;
  color: var(--orange);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.blog-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.blog-card--featured > img {
  aspect-ratio: 16 / 10;
}

.blog-card--featured .blog-card-body {
  padding: 20px 22px 22px;
  gap: 12px;
}

.blog-card--featured h3 {
  max-width: 760px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.blog-card--featured p {
  max-width: 720px;
  font-size: 15px;
  -webkit-line-clamp: 3;
}

.blog-card--secondary h3 {
  font-size: 19px;
}

.blog-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 0 18px;
  flex-wrap: wrap;
}

.blog-actions .primary-btn {
  padding: 10px 13px;
  font-size: 14px;
}

.blog-actions a:not(.primary-btn) {
  color: var(--green);
  font-weight: 700;
}

.doctor-note {
  max-width: 1240px;
  margin: 22px auto 0;
  padding: 18px 20px;
  border-left: 5px solid var(--orange);
  border-radius: 12px;
  background: rgba(255, 248, 231, 0.9);
}

.doctor-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.doctor-note p {
  margin: 0;
  color: #5f5030;
  line-height: 1.6;
}

.article-site-header {
  grid-template-columns: minmax(230px, 340px) auto;
  padding-top: 16px;
  padding-bottom: 16px;
  justify-content: space-between;
}

.article-site-header .brand {
  max-width: 340px;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.article-nav a,
.article-back {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.article-page {
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 176, 0, 0.2), transparent 24%),
    linear-gradient(135deg, #fffaf0, #eefaf2 62%, #fff0df);
  min-height: 100vh;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: end;
  padding: 64px clamp(16px, 5vw, 72px) 38px;
}

.article-hero-copy {
  display: grid;
  gap: 16px;
}

.article-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
}

.article-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #52645d;
  font-size: 19px;
  line-height: 1.6;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(18, 61, 44, 0.18);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  padding: 0 clamp(16px, 5vw, 72px) 72px;
}

.article-content,
.article-side {
  border: 1px solid rgba(11, 58, 37, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(18, 61, 44, 0.08);
}

.article-content {
  padding: clamp(22px, 4vw, 42px);
}

.article-content h2 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 28px;
}

.article-content ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding-left: 22px;
  color: #52645d;
  line-height: 1.6;
}

.article-content p {
  margin: 0;
  color: #52645d;
  font-size: 17px;
  line-height: 1.65;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-side {
  align-self: start;
  padding: 22px;
  border-top: 5px solid var(--orange);
}

.article-side strong {
  display: block;
  color: var(--green);
  font-size: 20px;
}

.article-side p {
  color: #52645d;
  line-height: 1.55;
}

.article-side a {
  color: var(--orange);
  font-weight: 900;
}

.product-detail-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 8%, rgba(240, 90, 26, 0.12), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(255, 176, 0, 0.18), transparent 24%),
    linear-gradient(135deg, #fffaf0, #f0fbf3 58%, #fff3e5);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 5vw, 72px) clamp(16px, 5vw, 72px) 34px;
}

.product-detail-media {
  display: grid;
  min-height: 430px;
  place-items: center;
  border: 1px solid rgba(11, 58, 37, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 176, 0, 0.2), transparent 30%),
    linear-gradient(135deg, #f1fff8, #ffffff 54%, #fff5df);
  box-shadow: 0 24px 62px rgba(18, 61, 44, 0.13);
}

.detail-image {
  width: min(72%, 430px);
  max-height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 24px rgba(18, 61, 44, 0.1));
}

.detail-pack {
  width: 150px;
  height: 210px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--pack), #ffffff);
  box-shadow: 0 24px 46px rgba(20, 60, 48, 0.18);
}

.product-detail-info {
  display: grid;
  gap: 16px;
  align-content: center;
}

.detail-category {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 176, 0, 0.16);
  font-size: 13px;
  font-weight: 900;
}

.product-detail-info h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.detail-review-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-weight: 800;
}

.detail-review-box > span {
  color: #6b7280;
  font-size: 24px;
  letter-spacing: 1px;
}

.detail-review-box strong {
  color: var(--ink);
}

.detail-review-box button {
  flex-basis: 100%;
  width: fit-content;
  border: 0;
  padding: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font-style: italic;
  font-weight: 900;
}

.detail-lead {
  max-width: 680px;
  margin: 0;
  color: #52645d;
  font-size: 18px;
  line-height: 1.55;
}

.detail-price-row {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(11, 58, 37, 0.12);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.detail-price-row strong {
  color: var(--orange);
  font-size: 28px;
}

.detail-price-row span {
  color: #52645d;
}

.detail-price-row .unit-price-note {
  color: #52645d;
  font-size: 14px;
}

.detail-stock-pill {
  margin-top: 0;
  font-size: 13px;
}

.smart-search-note {
  max-width: 760px;
  margin-top: 8px;
  color: #7a4c00;
  font-size: 13px;
  line-height: 1.35;
}

.smart-search-note strong {
  font-weight: 800;
}

.smart-search-panel {
  display: grid;
  gap: 9px;
  max-width: 900px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 58, 37, 0.12);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  background: #f7fbf8;
}

.smart-search-panel.sensitive {
  border-left-color: var(--orange);
  background: #fff8e7;
}

.smart-search-panel > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.smart-search-panel p {
  margin: 0;
  color: #5f5030;
  font-size: 13px;
  line-height: 1.45;
}

.search-associated,
.search-empty-hints {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}

.search-associated strong,
.search-empty-hints strong {
  color: var(--ink);
  font-size: 13px;
}

.search-associated button,
.search-empty-hints button {
  border: 1px solid rgba(11, 58, 37, 0.14);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--green);
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.search-associated button:hover,
.search-empty-hints button:hover {
  color: #ffffff;
  border-color: var(--green);
  background: var(--green);
}

.primary-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rx-leaflet-panel {
  display: grid;
  gap: 22px;
  margin: 0 clamp(16px, 5vw, 72px) 28px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(11, 58, 37, 0.14);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(18, 61, 44, 0.08);
}

.rx-leaflet-head {
  display: grid;
  gap: 8px;
  max-width: 980px;
}

.rx-leaflet-head span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rx-leaflet-head h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(26px, 4vw, 38px);
}

.rx-leaflet-head p,
.rx-leaflet-section p {
  margin: 0;
  color: #52645d;
  font-size: 16px;
  line-height: 1.65;
}

.rx-leaflet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rx-leaflet-section {
  padding: 16px;
  border: 1px solid rgba(11, 58, 37, 0.1);
  border-radius: 8px;
  background: #fbfffc;
}

.rx-leaflet-section h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.rx-leaflet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-benefits-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(16px, 5vw, 72px) 24px;
}

.product-benefits-row article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(11, 58, 37, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(18, 61, 44, 0.07);
}

.product-benefits-row article > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
}

.product-benefits-row strong,
.product-benefits-row small {
  display: block;
}

.product-benefits-row strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.product-benefits-row small {
  margin-top: 3px;
  color: #5b6c64;
  font-size: 12px;
  line-height: 1.3;
}

.product-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  padding: 0 clamp(16px, 5vw, 72px) 72px;
}

.product-info-tabs,
.product-useful-info {
  border: 1px solid rgba(11, 58, 37, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(18, 61, 44, 0.08);
}

.product-info-tabs {
  overflow: hidden;
}

.product-tab-list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid rgba(11, 58, 37, 0.12);
  background: linear-gradient(180deg, #ffffff, #f7fbf8);
}

.product-tab {
  min-height: 52px;
  border: 0;
  border-right: 1px solid rgba(11, 58, 37, 0.1);
  padding: 0 18px;
  color: #496259;
  background: transparent;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.product-tab:hover,
.product-tab.is-active {
  color: var(--green);
  background: #ffffff;
  box-shadow: inset 0 -3px 0 var(--orange);
}

.product-tab-panel {
  display: none;
  padding: clamp(20px, 4vw, 36px);
}

.product-tab-panel.is-active {
  display: grid;
  gap: 20px;
}

.product-info-section {
  max-width: 900px;
}

.product-info-section + .product-info-section {
  padding-top: 18px;
  border-top: 1px solid rgba(11, 58, 37, 0.1);
}

.product-info-section h2,
.product-info-section h3 {
  margin: 0 0 10px;
  color: var(--green);
  line-height: 1.2;
}

.product-info-section h2 {
  font-size: 24px;
}

.product-info-section h3 {
  font-size: 19px;
}

.product-info-section p {
  max-width: 900px;
  margin: 0 0 10px;
  color: #52645d;
  font-size: 16px;
  line-height: 1.68;
}

.product-info-section p:last-child {
  margin-bottom: 0;
}

.product-info-section ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.product-info-section li {
  position: relative;
  padding-left: 22px;
  color: #384c43;
  font-size: 15px;
  line-height: 1.5;
}

.product-info-section li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-spec-grid div {
  padding: 14px;
  border: 1px solid rgba(11, 58, 37, 0.1);
  border-radius: 8px;
  background: #fbfffc;
}

.product-useful-info {
  align-self: start;
  padding: 22px;
  border-top: 5px solid var(--green);
}

.product-useful-info strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 20px;
}

.product-useful-info dl,
.product-useful-info dd,
.product-spec-grid dt,
.product-spec-grid dd {
  margin: 0;
}

.product-useful-info dl {
  display: grid;
  gap: 14px;
}

.product-useful-info dl > div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11, 58, 37, 0.08);
}

.product-useful-info dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-useful-info dt,
.product-spec-grid dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-useful-info dd,
.product-spec-grid dd {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.product-useful-info a {
  color: var(--orange);
  font-weight: 900;
}

.product-detail-empty {
  display: grid;
  min-height: 70vh;
  place-content: center;
  gap: 14px;
  padding: 40px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 28px;
  padding: 44px clamp(16px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 14% 0%, rgba(25, 194, 164, 0.16), transparent 28%),
    linear-gradient(135deg, #071f14, #0b3521 55%, #10251e);
}

.product-page-footer {
  margin-top: 44px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.site-footer p {
  margin: 0;
  line-height: 1.55;
}

.site-footer a {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.86);
}

.site-credit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-credit-card {
  position: relative;
  display: inline-grid !important;
  grid-template-columns: 42px minmax(0, auto);
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0 !important;
  padding: 6px 9px 6px 6px;
  border: 1px solid rgba(255, 210, 112, 0.22);
  border-radius: 8px;
  color: #fff7d2 !important;
  background:
    linear-gradient(135deg, rgba(255, 210, 112, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-decoration: none;
  overflow: hidden;
}

.site-credit-card::after {
  display: none;
}

.site-credit-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 226, 142, 0.62);
  text-decoration: none !important;
}

.site-credit-mark {
  display: grid;
  width: 42px;
  height: 22px;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.site-credit-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-credit-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  min-width: 0;
}

.site-credit-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-credit-copy strong {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.site-credit-version {
  color: #ffe08a;
  font-size: 8px;
  font-weight: 800;
}

.legal-compliance {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(150px, 210px) minmax(170px, 230px);
  align-items: center;
  gap: 18px;
  margin: 4px 0 16px;
}

.legal-badge {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
  text-decoration: none;
}

.legal-badge img {
  width: 100%;
  height: auto;
  display: block;
}

.legal-badge-pharmacy {
  max-width: 178px;
  min-height: 148px;
  justify-self: center;
}

.legal-badge-pharmacy img {
  height: 148px;
  object-fit: contain;
}

.legal-badge-ministry {
  max-width: 210px;
  min-height: 128px;
  background: transparent;
}

.legal-badge-ministry img {
  height: 128px;
  object-fit: contain;
}

.legal-dispute-badges {
  display: grid;
  gap: 8px;
}

.legal-dispute-badges .legal-badge {
  min-height: 58px;
  border-radius: 14px;
}

.legal-dispute-badges .legal-badge img {
  height: 58px;
  object-fit: contain;
}

.drawer,
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(12, 20, 18, 0.58);
}

.drawer.open,
.modal.open {
  display: block;
}

.drawer-panel {
  width: min(470px, 100%);
  height: 100%;
  margin-left: auto;
  padding: 22px;
  overflow-y: auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-btn {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--mint);
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line-meta {
  display: grid !important;
  gap: 2px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.cart-line-meta span {
  display: block;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.cart-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  margin: 20px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.cart-total small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.checkout-form,
.account-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--white);
  color: var(--ink);
}

.phone-input-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 8px;
}

.checkout-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(90px, 0.6fr);
  gap: 12px;
}

.checkout-address-grid label:nth-child(3),
.checkout-address-grid label:nth-child(5) {
  grid-column: 1 / -1;
}

fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

legend {
  padding: 0 4px;
  color: var(--muted);
  font-size: 14px;
}

.radio-row,
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.radio-row input,
.checkbox-row input {
  width: auto;
}

.delivery-option {
  align-items: flex-start;
}

.delivery-option span,
.account-orders {
  display: grid;
  gap: 4px;
}

.delivery-option small,
.account-note {
  color: var(--muted);
  font-weight: 600;
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stock-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #9aa7a0;
}

.stock-ok span {
  background: #218c46;
}

.stock-limited span {
  background: #f2a01d;
}

.stock-out span {
  background: #9aa2a0;
}

.add-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.uncertain-card {
  border-color: #e0d7c6;
  background: #fffaf0;
}

.form-message,
.account-state {
  color: var(--green);
  font-weight: 700;
  line-height: 1.45;
}

.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.account-form {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fdf9);
}

.account-form h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.account-state {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(11, 58, 37, 0.14);
  border-radius: 8px;
  background: #eefaf2;
}

.account-state:empty {
  display: none;
}

.modal-card {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 8vh auto;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.muted {
  color: var(--muted);
}

.verify-btn {
  margin-top: 12px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--rose);
  cursor: pointer;
  font-weight: 700;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(11, 58, 37, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 56px rgba(18, 41, 35, 0.22);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.admin-page {
  min-height: 100vh;
  padding: clamp(22px, 4vw, 46px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 251, 244, 0.94)),
    #f6faf7;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 18px;
  align-items: end;
  max-width: 1440px;
  margin: 0 auto 24px;
}

.admin-hero h1 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.04;
}

.admin-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.admin-hero-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(7, 53, 31, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f4fff8);
  box-shadow: 0 12px 30px rgba(18, 41, 35, 0.07);
}

.admin-hero-card strong {
  color: var(--green);
  font-size: 18px;
}

.admin-hero-card span {
  color: var(--muted);
  line-height: 1.45;
}

.admin-login,
.admin-dashboard {
  max-width: 1440px;
  margin: 0 auto;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(220px, 0.55fr) auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(18, 41, 35, 0.08);
}

.admin-login .form-message {
  grid-column: 1 / -1;
  margin: 0;
}

.admin-dashboard {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.admin-dashboard[hidden] {
  display: none;
}

.admin-stats,
.admin-columns,
.admin-command-center,
.admin-insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-columns {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.admin-stats article,
.admin-panel,
.admin-command-center article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(18, 41, 35, 0.08);
}

.admin-stats article,
.admin-command-center article {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.admin-stats span {
  color: var(--muted);
  font-weight: 700;
}

.admin-stats strong {
  color: var(--green);
  font-size: 34px;
}

.admin-command-center strong {
  color: var(--green);
  font-size: 30px;
}

.admin-command-center small {
  color: var(--muted);
  line-height: 1.35;
}

.admin-workspace-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(18, 41, 35, 0.08);
}

.admin-workspace-nav button,
.admin-product-quickfilters button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: #fff;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.admin-workspace-nav button.active,
.admin-workspace-nav button:hover,
.admin-product-quickfilters button:hover {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.admin-view {
  display: none;
}

.admin-view.active {
  display: grid;
  gap: 14px;
}

.admin-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-insight-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
}

.admin-insight-list {
  display: grid;
  gap: 8px;
}

.admin-insight-row,
.admin-metric-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.admin-insight-row {
  cursor: pointer;
}

.admin-insight-row:hover {
  border-color: rgba(233, 75, 22, 0.46);
  box-shadow: 0 10px 22px rgba(233, 75, 22, 0.1);
}

.admin-insight-row span {
  display: grid;
  gap: 3px;
}

.admin-insight-row small,
.admin-metric-line span {
  color: var(--muted);
}

.admin-insight-row em,
.admin-metric-line strong {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
}

.admin-panel {
  padding: 18px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-panel h2 {
  margin: 0 0 14px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  text-align: left;
}

.admin-order.active {
  border-color: rgba(233, 75, 22, 0.46);
  box-shadow: 0 10px 24px rgba(233, 75, 22, 0.12);
}

.admin-order span,
.admin-account {
  display: grid;
  gap: 4px;
}

.admin-order small,
.admin-order em,
.admin-account span,
.admin-account em,
.order-detail-head span,
.order-meta dt,
.order-notes {
  color: var(--muted);
}

.admin-order em,
.admin-account em {
  font-style: normal;
  font-weight: 800;
}

.admin-account {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-admin-row {
  grid-template-columns: minmax(220px, 2fr) minmax(160px, 1fr) auto minmax(96px, 120px) auto;
}

.admin-product-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(170px, 240px) minmax(150px, 220px) minmax(170px, 230px) minmax(120px, 160px);
  gap: 10px;
  margin: 12px 0 16px;
}

.admin-product-quickfilters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 14px;
}

.admin-product-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-product-pager div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-product-pager button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.admin-product-pager button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.admin-product-tools input,
.admin-product-tools select {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
}

.product-admin-table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
}

.product-admin-head,
.product-admin-row {
  display: grid;
  grid-template-columns: 42px minmax(210px, 1.35fr) minmax(120px, 0.65fr) minmax(72px, 0.34fr) minmax(230px, 1.25fr) minmax(64px, 0.28fr) minmax(138px, 0.62fr) minmax(126px, 0.56fr);
  gap: 8px;
  align-items: center;
  font-size: 12px;
  min-width: 1180px;
}

.product-admin-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-admin-row {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-pricing-board {
  display: grid;
  gap: 10px;
}

.admin-pricing-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 120px 120px minmax(260px, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-pricing-card > div:first-child {
  display: grid;
  gap: 3px;
}

.admin-pricing-card small {
  color: var(--muted);
  font-weight: 800;
}

.admin-pricing-card > span {
  color: var(--green);
  font-weight: 900;
}

.admin-pricing-card > em {
  color: #b91c1c;
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .admin-hero,
  .admin-command-center,
  .admin-insight-grid,
  .admin-stats,
  .admin-columns,
  .admin-pricing-card {
    grid-template-columns: 1fr;
  }

  .admin-product-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .admin-page {
    padding: 16px 10px 28px;
  }

  .admin-hero h1 {
    font-size: 28px;
  }

  .admin-login,
  .admin-product-tools {
    grid-template-columns: 1fr;
  }

  .admin-workspace-nav {
    margin-inline: -2px;
    border-radius: 8px;
  }

  .admin-panel {
    padding: 12px;
  }

  .admin-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-product-pager {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-pricing-card {
    gap: 8px;
  }
}

.product-admin-row.manual-category-locked {
  border-color: #dc2626;
  background: #fff1f1;
  box-shadow: inset 4px 0 0 #dc2626;
}

.manual-category-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  border: 1px solid #dc2626;
  border-radius: 6px;
  background: #dc2626;
  color: #fff;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.product-admin-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: #f7fbf8;
  font-size: 13px;
}

.product-admin-main {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.product-admin-main img {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.product-admin-main small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.product-admin-row input,
.product-admin-row textarea,
.product-admin-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 12px;
}

.product-admin-category-fields {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.product-admin-category-fields select {
  min-height: 34px;
  font-weight: 800;
  background: #f7fbf8;
}

.product-admin-category-fields small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.product-admin-category-fields small.saving {
  color: #b7791f;
}

.product-admin-category-fields small.saved {
  color: var(--green);
}

.product-admin-category-fields small.error {
  color: #b91c1c;
}

.product-admin-row textarea {
  grid-column: 2 / -1;
  min-height: 46px;
  resize: vertical;
}

.product-admin-structured {
  grid-column: 2 / -1;
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fbfffc;
}

.product-admin-structured summary {
  color: var(--green);
  font-weight: 900;
  cursor: pointer;
}

.product-admin-structured[open] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-admin-structured[open] summary,
.product-admin-structured[open] input,
.product-admin-structured[open] textarea {
  grid-column: auto;
}

.product-admin-structured[open] summary {
  grid-column: 1 / -1;
}

.product-admin-structured textarea {
  min-height: 54px;
}

.price-compare {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
  color: var(--ink);
  font-size: 11px;
}

.price-compare-empty {
  color: var(--muted);
  font-weight: 800;
}

.price-compare.above {
  border-color: #d95a4e;
  background: #fff1ef;
}

.price-compare.below {
  border-color: #20a36a;
  background: #edf9f2;
}

.price-compare.highest {
  border-color: #c93323;
  background: #ffe96b;
  color: #8f170d;
}

.price-compare.lowest {
  border-color: #1e66d0;
  background: #edf5ff;
  color: #164c9e;
}

.price-compare-top,
.price-compare-grid span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.price-compare-top em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #d59b00;
  border-radius: 6px;
  background: #ffd43b;
  color: #7a4c00;
  font-style: normal;
  font-weight: 900;
}

.price-compare small {
  color: inherit;
  font-size: 10px;
  font-weight: 800;
}

.price-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 7px;
}

.price-compare-grid a {
  color: inherit;
  font-weight: 900;
}

.product-admin-image,
.product-admin-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.product-admin-image input {
  min-width: 0;
  padding: 6px;
}

.product-admin-image button,
.product-admin-actions button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
  white-space: nowrap;
}

.admin-categories-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.admin-category-branch {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.admin-category-branch strong {
  color: var(--green);
}

.admin-category-branch small {
  color: var(--muted);
  font-weight: 800;
}

.admin-category-branch div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-categories-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
}

.order-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.order-detail-head div {
  display: grid;
  gap: 4px;
}

.order-detail-head select {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: var(--white);
  font-weight: 800;
}

.order-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.order-meta div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfefb;
}

.order-meta dt {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-meta dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.order-items {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.order-items article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.order-items em {
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(180px, 270px) minmax(180px, 1fr) auto;
  }

  .promo-strip {
    grid-template-columns: 1fr;
  }

  .top-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .needs-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  .catalog-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  .needs-copy {
    max-width: 680px;
  }

  .catalog-copy {
    max-width: 680px;
  }

  .catalog-shell {
    grid-template-columns: 1fr;
  }

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

  .blog-filter-chips {
    justify-content: flex-start;
  }

  .blog-head,
  .article-hero,
  .article-layout,
  .product-detail-hero,
  .product-detail-content,
  .rx-leaflet-grid {
    grid-template-columns: 1fr;
  }

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

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

  .info-band,
  .site-footer,
  .admin-stats,
  .admin-columns {
    grid-template-columns: 1fr;
  }

  .legal-compliance {
    grid-template-columns: minmax(150px, 190px) minmax(150px, 190px);
    justify-content: start;
  }

  .legal-dispute-badges {
    grid-column: 1 / -1;
    max-width: 300px;
  }
}

@media (max-width: 720px) {
  :root {
    --mobile-header-open-height: 164px;
  }

  .site-header {
    grid-template-columns: 48px minmax(188px, 1fr) auto;
    gap: 7px;
    padding-inline: clamp(8px, 2.6vw, 14px);
  }

  .drawer {
    padding-top: var(--mobile-header-open-height);
    background: transparent;
    pointer-events: none;
  }

  .drawer.open {
    display: block;
    pointer-events: auto;
  }

  .drawer-panel {
    width: 100%;
    height: calc(100dvh - var(--mobile-header-open-height));
    min-height: 0;
    margin-left: 0;
    padding: 18px 22px max(92px, env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -16px 36px rgba(7, 53, 31, 0.16);
  }

  .drawer-head {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: -18px -22px 14px;
    padding: 16px 22px 12px;
    background: linear-gradient(180deg, #ffffff 78%, rgba(255, 255, 255, 0.92));
    border-bottom: 1px solid rgba(7, 53, 31, 0.08);
  }

  .brand {
    max-width: min(54vw, 285px);
    justify-self: start;
  }

  .brand img {
    max-width: min(54vw, 285px);
    min-width: 188px;
  }

  .header-search {
    grid-column: 1 / -1;
    order: 5;
    height: 46px;
  }

  .search-suggest {
    top: 100%;
    left: 14px;
    right: 14px;
    max-height: 58vh;
  }

  .header-actions {
    gap: 5px;
    align-items: center;
  }

  .ghost-btn {
    display: none;
  }

  .language-toggle {
    width: 35px;
    height: 35px;
    min-height: 35px;
    padding: 0;
    border-radius: 10px;
    font-size: 0;
  }

  .language-toggle::first-letter {
    font-size: 16px;
  }

  .cart-btn {
    min-width: 50px;
    height: 35px;
    padding: 0 6px;
    border-radius: 10px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .cart-btn span {
    min-width: 17px;
    height: 17px;
    margin-left: 0;
    font-size: 10px;
  }

  @media (max-width: 380px) {
    .site-header {
      grid-template-columns: 44px minmax(162px, 1fr) auto;
      gap: 6px;
      padding-inline: 8px;
    }

    .menu-toggle {
      width: 46px;
      height: 46px;
      border-radius: 12px;
    }

    .language-toggle {
      width: 32px;
      height: 32px;
      min-height: 32px;
      border-radius: 9px;
    }

    .brand img {
      min-width: 162px;
    }

    .cart-btn {
      min-width: 46px;
      height: 32px;
      padding-inline: 5px;
      border-radius: 9px;
      font-size: 11px;
    }
  }

  .promo-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .promo-card {
    min-width: 82vw;
    scroll-snap-align: start;
  }

  .top-categories {
    padding-inline: 14px;
  }

  .top-categories-head {
    align-items: start;
    flex-direction: column;
  }

  .top-category-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .top-category-card {
    min-width: 148px;
    scroll-snap-align: start;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: rgba(7, 43, 34, 0.72);
  }

  .hero-content {
    margin: 0 auto;
  }

  .trust-strip,
  .blog-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .account-grid,
  .cookie-banner,
  .checkout-address-grid {
    grid-template-columns: 1fr;
  }

  .checkout-address-grid label:nth-child(3),
  .checkout-address-grid label:nth-child(5) {
    grid-column: auto;
  }

  .phone-input-row {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .primary-btn,
  .cookie-actions .secondary-btn {
    width: 100%;
  }

  .blog-head {
    align-items: start;
    gap: 16px;
  }

  .blog-card {
    min-height: 0;
  }

  .blog-card--featured {
    grid-column: auto;
    grid-row: auto;
  }

  .blog-card--featured .blog-card-body {
    padding: 16px;
  }

  .blog-card--featured h3 {
    font-size: 21px;
  }

  .blog-card p {
    -webkit-line-clamp: 2;
  }

  .product-benefits-row {
    grid-template-columns: 1fr;
  }

  .product-tab-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-tab {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 58, 37, 0.09);
    text-align: left;
  }

  .product-tab-panel {
    padding: 18px;
  }

  .product-spec-grid {
    grid-template-columns: 1fr;
  }

  .article-site-header {
    grid-template-columns: 1fr;
  }

  .article-site-header .brand {
    max-width: min(310px, 82vw);
  }

  .article-nav {
    justify-content: start;
  }

  .article-hero {
    gap: 20px;
    padding-top: 42px;
  }

  .article-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .product-detail-hero {
    gap: 22px;
    padding-top: 38px;
  }

  .product-detail-media {
    min-height: 320px;
  }

  .detail-image {
    width: min(80%, 340px);
    max-height: 270px;
  }

  .product-detail-info h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .product-detail-content {
    padding-bottom: 44px;
  }

  .need-grid {
    grid-template-columns: 1fr;
  }

  .needs-section {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .needs-head {
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .catalog-section-main {
    padding-top: 44px;
  }

  .catalog-head {
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .needs-head h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .catalog-head h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .needs-copy {
    padding-left: 16px;
  }

  .catalog-copy {
    padding-left: 16px;
  }

  .needs-copy .catalog-note {
    font-size: 16px;
  }

  .catalog-copy .catalog-note {
    font-size: 16px;
  }

  .need-card {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 118px;
    padding: 12px;
  }

  .blog-card > img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .campaign-card {
    width: min(82vw, 360px);
    padding: 16px;
  }

  .campaign-card strong {
    font-size: 18px;
  }

  .brand-marquee-head {
    align-items: start;
    flex-direction: column;
  }

  .results-toolbar {
    position: static;
  }

  .catalog-overview {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-section-head {
    align-items: start;
    flex-direction: column;
  }

  .search-wrap input {
    width: 100%;
  }

  .legal-compliance {
    grid-template-columns: 1fr;
    max-width: 310px;
  }

  .legal-badge-pharmacy,
.legal-badge-ministry {
    justify-self: start;
  }
}

.rx-reservation-card {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  border: 1px solid rgba(15, 81, 50, 0.16);
  border-radius: 14px;
  background: #fffdf7;
  box-shadow: 0 18px 42px rgba(18, 50, 38, 0.08);
}

.rx-reservation-card h2 {
  margin: 6px 0 10px;
  font-size: 26px;
}

.rx-reservation-card p {
  color: #4f625b;
  line-height: 1.6;
}

.rx-reservation-form {
  display: grid;
  gap: 14px;
}

.form-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rx-reservation-form label,
.admin-notes-field {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: #17352a;
}

.rx-reservation-form input,
.admin-notes-field textarea {
  width: 100%;
  border: 1px solid #cfdcd5;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

.rx-legal-note {
  border-left: 4px solid #0f5132;
  padding-left: 12px;
}

.advance-note,
.advance-status {
  display: block;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff2c2;
  color: #7a4a00;
  font-weight: 700;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

@media (max-width: 760px) {
  .rx-reservation-card,
  .form-grid.two {
    grid-template-columns: 1fr;
  }
}

.image-candidates-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.image-candidate-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(10, 74, 50, .14);
  border-radius: 12px;
  background: #fff;
}
.image-candidate-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.image-candidate-media div {
  min-width: 0;
}
.image-candidate-media small,
.image-candidate-body small,
.image-candidate-body span,
.image-candidate-body em {
  display: block;
  color: #61736b;
  font-size: 12px;
  line-height: 1.35;
}
.image-candidate-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1px solid rgba(10, 74, 50, .1);
  border-radius: 8px;
  background: #f8fbf7;
}
.image-candidate-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.image-candidate-body strong {
  color: #103728;
  line-height: 1.2;
}
.image-candidate-body em {
  max-height: 42px;
  overflow: hidden;
  font-style: normal;
}
.image-candidate-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
@media (max-width: 720px) {
  .image-candidate-card {
    grid-template-columns: 1fr;
  }
}
