@charset "UTF-8";
/* burger */
/* burger */
/* Base reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: #000000;
  font: 400 16px/1.5 "Inter Tight", sans-serif;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: #e3ece6;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #008737;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #005e26;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #008737 transparent;
}

/* Layout */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  min-width: 22.5rem;
  width: 100%;
  margin: 0 auto;
  overflow-x: clip;
}

body.is-locked,
body.overflow-hidden {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
  background-color: #f8f8f8;
}

footer {
  margin-top: auto;
}

/* Typography */
h1, .looks_like_h1, h2, .looks_like_h2, h3, .looks_like_h3, h4, .looks_like_h4, h5, .looks_like_h5, h6, .looks_like_h6 {
  margin: 0 0 0.8rem;
  line-height: 1.25;
  font-family: "Inter Tight", sans-serif;
  white-space: break-spaces;
}

h1, .looks_like_h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 1.875rem 0;
}

h2, .looks_like_h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.56rem 0;
}

h3, .looks_like_h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin: 0 0 1.2rem;
}

/* utility “looks like” */
/* Links */
a {
  color: #00882c;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.15s cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* Media */
img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Lists */
ul, ol {
  padding-left: 1.25rem;
  margin: 0 0 0.8rem;
}

.ul-reset, .ol-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 0.5rem;
  border-bottom: 1px solid #c2c2c2;
}

thead th {
  color: #000000;
  font-weight: 600;
}

/* Forms */
label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

input, select, textarea, button {
  font: inherit;
  color: #000000;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 0.0625rem solid #959c97;
  border-radius: 0.75rem;
  transition: border-color 0.15s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.15s cubic-bezier(0.2, 0.6, 0.2, 1), background-color 0.15s cubic-bezier(0.2, 0.6, 0.2, 1);
}

input::placeholder,
textarea::placeholder {
  color: #959c97;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: #008737;
  box-shadow: 0 0 0 0.2rem rgba(0, 135, 55, 0.15);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:focus-visible,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:focus-visible,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:focus-visible {
  background-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000000;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: background-color 0s 600000s, color 0s 600000s;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Buttons */
button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999rem;
  border: 0.0625rem solid transparent;
  background: transparent;
  color: inherit;
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  button,
  .button {
    padding: 0.8125rem 1.5rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  button,
  .button {
    padding: 0.875rem 1.75rem;
  }
}

@media (hover: hover) {
  button:hover,
  .button:hover {
    filter: brightness(0.98);
  }
}
button:active,
.button:active {
  filter: brightness(0.94);
}

button:disabled,
.button:disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: inherit;
}

/* 404 */
.error-404 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2em 0 4em;
  width: 100%;
}

.error-404__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.5em;
  color: #000000;
}
@media (min-width: 600px) {
  .error-404__title {
    font-size: 1.75rem;
  }
}

.error-404__text {
  color: #4b514b;
  line-height: 1.6;
  margin: 0 0 0.5em;
  font-size: 0.9375rem;
}

.error-404__img {
  width: 100%;
  max-width: 420px;
  height: auto;
  align-self: center;
  margin: 1.5em 0;
}

.error-404__btn {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875em 2.5em;
  background: #e3000f;
  color: #fff;
  border-radius: 2em;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: filter 0.18s ease;
}
.error-404__btn:hover {
  filter: brightness(0.9);
  color: #fff;
  text-decoration: none;
}

/* empty state */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2em 0 4em;
  width: 100%;
  gap: 30px;
}

.empty-state__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.5em;
  color: #000000;
}
@media (min-width: 600px) {
  .empty-state__title {
    font-size: 1.75rem;
  }
}

.empty-state__text {
  color: #4b514b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 0.5em;
}

.empty-state__img {
  width: 100%;
  max-width: 380px;
  height: auto;
  align-self: center;
  margin: 1.5em 0;
}

.empty-state__btn {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875em 2.5em;
  background: #e3000f;
  color: #fff;
  border-radius: 2em;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: filter 0.18s ease;
}
.empty-state__btn:hover {
  filter: brightness(0.9);
  color: #fff;
  text-decoration: none;
}

.product-container__medications__block__description__stars,
.product-row-active__ratting,
.wishlist-item__stars,
.rating {
  display: none !important;
}

/* container */
.container-full {
  width: 100%;
  max-width: 116.3rem;
  padding: 0 0.4rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container-full {
    padding: 0 0.9rem;
  }
}
@media (min-width: 1870px) {
  .container-full {
    padding: 0 0;
  }
}

.container-middle {
  width: 100%;
  max-width: 113.75rem;
  padding: 0 0.4rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container-middle {
    padding: 0 0.9rem;
  }
}
@media (min-width: 1845px) {
  .container-middle {
    padding: 0 0;
  }
}

.container-min {
  width: 100%;
  max-width: 96.87rem;
  padding: 0 0.4rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container-min {
    padding: 0 0.9rem;
  }
}
@media (min-width: 1580px) {
  .container-min {
    padding: 0 0;
  }
}

.text-container {
  width: 100%;
  max-width: 79rem;
  padding: 0 0.9rem;
  margin: 0 auto;
}

/* Variants button */
.pill-button--red {
  background: #e3000f;
  border-color: #e3000f;
  color: #fff;
}
@media (hover: hover) {
  .pill-button--red:hover {
    background: #ba000c;
    border-color: #ba000c;
  }
}
.pill-button--red:active {
  background: #9c000a;
  border-color: #9c000a;
}

.pill-button--green {
  background: #008737;
  border-color: #008737;
  color: #fff;
}
@media (hover: hover) {
  .pill-button--green:hover {
    background: #005e26;
    border-color: #005e26;
  }
}
.pill-button--green:active {
  background: #00401a;
  border-color: #00401a;
}

.pill-button--green-soft {
  background: rgba(0, 135, 55, 0.1);
  border-color: #008737;
  color: #000000;
}
@media (hover: hover) {
  .pill-button--green-soft:hover {
    background: rgba(0, 135, 55, 0.16);
  }
}
.pill-button--green-soft:active {
  background: rgba(0, 135, 55, 0.22);
}

.tab-button {
  border-color: transparent;
}

.pill-button--inactive {
  background: #e3ece6;
  border-color: #40a569;
  color: #a6a6a6;
}
@media (hover: hover) {
  .pill-button--inactive:hover {
    filter: none;
  }
}
.pill-button--inactive:active {
  filter: none;
}

.pill-button:disabled,
.pill-button.is-disabled {
  background: #f1f6f3;
  border-color: #c2c2c2;
  color: #8c8c8c;
  opacity: 0.6;
}

/* default */
.bold {
  font-weight: 700;
}

/* modal overlay */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 3.5em 1em 3em 1em;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media (min-width: 700px) {
  .modal-overlay {
    padding: 5em 1em 1em 1em;
  }
}

.modal-overlay.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-overlay.is-open .modal-overlay__container {
  position: relative;
  width: 100%;
  max-width: 45em;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(15, 35, 52, 0.35);
  padding: 1.5em 1.5em 5.5em 1.5em;
}
.modal-overlay.is-open .category-container__sort-block__reset-count {
  display: flex;
}
.modal-overlay.is-open .category-container__filter {
  display: flex;
  gap: 1.5em;
  max-width: none !important;
  padding: 0 !important;
}
.modal-overlay.is-open .category-container__filter__selected-categories__block {
  padding: 0.29em 0.7em 0.4em 0.7em;
}
.modal-overlay.is-open .category-container__filter__selected-categories__block span {
  display: flex;
  align-items: center;
}
.modal-overlay.is-open .category-container__sort-block__reset {
  color: #00882c;
}
.modal-overlay.is-open .category-container__sort-block__reset-count {
  max-width: none;
}
.modal-overlay.is-open .modal-overlay__container__close {
  position: absolute;
  top: -2.5em;
  right: 0;
  cursor: pointer;
}
.modal-overlay.is-open .modal-overlay__container__block {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.modal-overlay.is-open .modal-overlay__container__block .product-container__medications__block__price__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25em 0.5em;
}
.modal-overlay.is-open .category-container__filter__block {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.modal-overlay.is-open .catalog-filter-group {
  max-height: 50vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #008737 rgba(149, 156, 151, 0.25);
}
.modal-overlay.is-open .catalog-filter-group::-webkit-scrollbar {
  width: 0.5rem;
}
.modal-overlay.is-open .catalog-filter-group::-webkit-scrollbar-track {
  background: rgba(149, 156, 151, 0.25);
  border-radius: 999rem;
  margin: 0.25rem;
}
.modal-overlay.is-open .catalog-filter-group::-webkit-scrollbar-thumb {
  background: #008737;
  border-radius: 999rem;
}
.modal-overlay.is-open .catalog-filter__list {
  overscroll-behavior: auto;
}

@media (min-width: 768px) {
  .modal-overlay {
    padding: 24px;
  }
  .modal-overlay__container {
    display: flex;
    flex-direction: column;
  }
}
/* header top */
.background-container {
  background-color: #008737;
}

.header-top-container {
  padding: 1em 0 1.125em 0;
}

.header-top {
  display: none;
  justify-content: space-between;
  gap: 0.5em;
  width: 100%;
  color: #ffffff;
}
.header-top a {
  color: #ffffff;
}
@media (hover: hover) {
  .header-top a:hover {
    color: #b2f3cd;
  }
}
@media (min-width: 1150px) {
  .header-top {
    display: flex;
  }
}

.header-top__left,
.header-top__right,
.header-top__center {
  display: flex;
  color: #ffffff;
  width: 100%;
}
.header-top__left ul,
.header-top__right ul,
.header-top__center ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-top__left {
  max-width: 25.68rem;
}
@media (min-width: 1300px) {
  .header-top__left {
    max-width: 30.68rem;
  }
}

.header-top__center {
  max-width: 21.6em;
}
@media (min-width: 1300px) {
  .header-top__center {
    max-width: 26.6em;
  }
}

.header-top__right {
  max-width: 21.7em;
}
@media (min-width: 1300px) {
  .header-top__right {
    max-width: 21.7em;
  }
}
@media (min-width: 1380px) {
  .header-top__right {
    max-width: 29.7em;
  }
}

.phones {
  justify-content: space-between;
  gap: 0.5em;
  width: 100%;
}

.quick-actions {
  display: flex;
  justify-content: space-around;
  gap: 0.5em;
  width: 100%;
}

.quick-actions__link {
  display: flex;
  gap: 0.2em;
  cursor: pointer;
}
@media (min-width: 570px) {
  .quick-actions__link {
    gap: 0.5em;
  }
}

.top-links {
  gap: 0.5em;
  justify-content: space-between;
  width: 100%;
}

.phones__link {
  display: flex;
  gap: 0.5em;
}

/* header-middle */
.header-border-container {
  position: relative;
  background: #fff;
}

.wrapper > header {
  position: relative;
  z-index: 1000;
}
@media (max-width: 700px) {
  .wrapper > header {
    position: sticky;
    top: 0;
  }
}

.header-border-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.0625rem;
  background: rgba(149, 156, 151, 0.45);
  pointer-events: none;
}

.header-border-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 4rem;
  background: linear-gradient(to bottom, rgba(149, 156, 151, 0.28) 0, rgba(149, 156, 151, 0.2) 0.5rem, rgba(149, 156, 151, 0.12) 1.25rem, rgba(149, 156, 151, 0.08) 2rem, rgba(149, 156, 151, 0.04) 3rem, rgba(149, 156, 151, 0) 100%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .header-border-container::after {
    height: 6rem;
  }
}
.header-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.75em 0;
}
@media (min-width: 850px) {
  .header-middle {
    gap: 1em;
    padding: 1em 0;
  }
}
@media (min-width: 1150px) {
  .header-middle {
    gap: 1.5em;
    padding: 2.5em 0 2.5em 0;
  }
}
@media (min-width: 1300px) {
  .header-middle {
    gap: 0.5em;
  }
}
.header-middle .header-input {
  display: none;
}
@media (min-width: 1150px) {
  .header-middle .header-input {
    display: flex;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 9em;
}
@media (min-width: 570px) {
  .header-logo {
    max-width: 11em;
  }
}
@media (min-width: 850px) {
  .header-logo {
    max-width: 13em;
  }
}
@media (min-width: 1150px) {
  .header-logo {
    max-width: 20em;
  }
}

.header-account {
  display: none;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
  width: 100%;
  max-width: 18em;
}
@media (min-width: 700px) {
  .header-account {
    display: flex;
  }
}
@media (min-width: 1150px) {
  .header-account {
    justify-content: space-between;
    gap: 0.5em;
    max-width: 11.2em;
    padding: 0 0.6em 0 0;
  }
}
@media (min-width: 1300px) {
  .header-account {
    max-width: 17.2em;
  }
}

.header-input {
  display: flex;
  align-items: center;
  max-width: 41.75em;
  width: 100%;
}

.header-input__control {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: #000000;
  padding: 1rem 1rem 1rem 1.75rem;
  border-radius: 0;
  font-size: 1rem;
  line-height: 1.2;
}
.header-input__control:focus-visible {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

.header-account__wishlist,
.header-account__cart {
  position: relative;
}

.header-account__count {
  font-size: 0.875em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -1em;
  right: -1em;
  height: 25px;
  width: 25px;
  color: #ffffff;
  border-radius: 99em;
}

.header-account__wishlist__count {
  background-color: #008737;
}

.header-account__cart__count {
  background-color: #e3000f;
}

/* quick actions link */
.quick-actions__link__catalog {
  display: flex;
  flex-shrink: 0;
}
@media (min-width: 1150px) {
  .quick-actions__link__catalog {
    display: none;
  }
}
.quick-actions__link__catalog .quick-actions__link {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (min-width: 570px) {
  .quick-actions__link__catalog .quick-actions__link {
    flex-direction: row;
    background: #e3ece6;
    border-radius: 3rem;
    padding: 0.625rem 0.75rem;
  }
}
@media (min-width: 850px) {
  .quick-actions__link__catalog .quick-actions__link {
    padding: 1rem;
  }
}
.quick-actions__link__catalog .quick-actions__link .quick-actions__text {
  display: inline;
  font-size: 0.8125rem;
  white-space: nowrap;
}
@media (min-width: 850px) {
  .quick-actions__link__catalog .quick-actions__link .quick-actions__text {
    font-size: 1rem;
  }
}

/* header-input-map (mobile search bar) */
.header-input-map {
  background: #008737;
}
@media (min-width: 1150px) {
  .header-input-map {
    display: none;
  }
}
.header-input-map .container-min {
  display: flex;
  justify-content: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.header-input-map .header-input {
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.header-input-map .header-input__control__label {
  margin-bottom: 0;
}
.header-input-map .header-input__control__label .button {
  height: 52px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
}

/* burger */
.header__menu {
  display: flex;
  margin: 0;
}
@media (min-width: 1150px) {
  .header__menu {
    display: none;
  }
}

.burger {
  display: none;
}

.burger-label {
  position: relative;
  display: block;
  cursor: pointer;
  margin: auto;
  user-select: none;
  width: 30px;
  height: 20px;
  color: #000000;
}
.burger-label:before, .burger-label:after,
.burger-label span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.2s ease;
}
.burger-label:before {
  top: 0;
}
.burger-label span {
  top: 9px;
}
.burger-label:after {
  top: 18px;
}

.burger:checked + .burger-label:before {
  transform: translateY(9px) rotate(45deg);
}
.burger:checked + .burger-label span {
  opacity: 0;
  transform: scaleX(0);
}
.burger:checked + .burger-label:after {
  transform: translateY(-9px) rotate(-45deg);
}

.burger-open {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  max-width: 25em;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.8em;
  padding: 1.3em 0.5em 3em 1.3em;
  background-color: #008737;
  z-index: 10100;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.4s ease, opacity 0.4s ease;
  /* Close button inside the panel always shows as a white X */
}
.burger-open a {
  color: #FFFFFF;
}
.burger-open .social-icons {
  display: flex;
  margin-top: 3em;
  margin-bottom: 3em;
  max-width: 15.375em;
}
@media (min-width: 500px) {
  .burger-open .social-icons {
    margin-top: 0.5em;
    margin-bottom: 3em;
  }
}
@media (min-width: 815px) {
  .burger-open .social-icons {
    display: none;
  }
}
.burger-open .burger-label {
  color: #FFFFFF;
}
.burger-open .burger-label:before {
  transform: translateY(9px) rotate(45deg);
}
.burger-open .burger-label span {
  opacity: 0;
  transform: scaleX(0);
}
.burger-open .burger-label:after {
  transform: translateY(-9px) rotate(-45deg);
}
@media (min-width: 1400px) {
  .burger-open {
    display: none;
  }
}

.burger-open.open-popup {
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  z-index: 10001;
}

.header-fixed {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1.2em 0 0.95em 0;
  z-index: 905;
  background-color: #ffffff;
  border-top: 0.0625rem solid rgba(149, 156, 151, 0.3);
  box-shadow: 0 -0.25rem 0.75rem rgba(0, 0, 0, 0.06);
}
@media (min-width: 700px) {
  .header-fixed {
    display: none;
  }
}
.header-fixed .header-account {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  gap: 0;
}

.burger-open__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger-open__middle {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.burger-open__middle a {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 1.2em;
  padding: 1rem 1.5rem;
  width: fit-content;
  text-decoration: none;
  border-radius: 3em;
  background-color: #e3ece6;
}
.burger-open__middle a .quick-actions__text {
  color: #00882c;
}
.burger-open__middle .header-account__wishlist {
  align-items: center;
}
.burger-open__middle .header-account__cart {
  align-items: center;
}

.quick-actions__icon__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-actions__icon__container .header-account__count {
  top: -0.8em;
}

.burger-open__bottom {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 10001;
}
.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  z-index: 10002;
  overflow: hidden;
}
.cart-sidebar.active {
  right: 0;
}
.cart-sidebar * {
  box-sizing: border-box;
}
.cart-sidebar .cart-header {
  flex: 0 0 auto;
  padding: 16px 16px 14px;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.cart-sidebar .cart-header h2,
.cart-sidebar .cart-header .looks_like_h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}
.cart-sidebar .cart-header .cart-close {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border: none;
  border-radius: 50%;
  background: #139a43;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .cart-sidebar .cart-header .cart-close:hover {
    background: #d32f2f;
    transform: scale(1.04);
  }
}
.cart-sidebar .cart-header .cart-close:active {
  background: #d32f2f;
  transform: scale(1.04);
}
.cart-sidebar .cart-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 16px 10px 16px;
  min-height: 0;
}
.cart-sidebar .cart-body::-webkit-scrollbar {
  width: 6px;
}
.cart-sidebar .cart-body::-webkit-scrollbar-thumb {
  background: #008737;
  border-radius: 20px;
}
.cart-sidebar .cart-body::-webkit-scrollbar-track {
  background: transparent;
}
.cart-sidebar .cart-body .pharmacy-block:not(:last-child) {
  margin-bottom: 10px;
}
.cart-sidebar .cart-body .pharmacy-title {
  margin: 0 6px 10px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1.5px solid #1ea44c;
  border-radius: 8px;
  font-weight: 700;
}
.cart-sidebar .cart-body .pharmacy-title strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}
.cart-sidebar .cart-body .pharmacy-title small {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: #2f2f2f;
}
.cart-sidebar .cart-body .cart-product {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 14px 14px 16px;
  background: #FFFFFF;
  border-bottom: 1px solid #dadfda;
  min-width: 0;
}
.cart-sidebar .cart-body .cart-product .cart-img {
  width: 54px;
  min-width: 54px;
  height: 76px;
  object-fit: contain;
  display: block;
  align-self: flex-start;
  background: transparent;
}
.cart-sidebar .cart-body .cart-product .cart-info {
  flex: 1 1 auto;
  min-width: 0;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  padding-right: 17px;
  line-height: 1.25;
  color: #4a4f4b;
  word-break: break-word;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-manufacturer {
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.35;
  color: #7d827d;
  text-transform: uppercase;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-bottom {
  display: grid;
  grid-template-areas: "qty price" "qty total";
  grid-template-columns: 84px 1fr;
  gap: 4px 10px;
  min-width: 0;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .cart-price {
  grid-area: price;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  color: #7d827d;
  text-align: right;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .qty {
  grid-area: qty;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 38px;
  border: 1px solid #cfd3ca;
  border-radius: 7px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .qty .qty-down {
  padding-bottom: 3px;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .qty button {
  flex: 0 0 28px;
  height: 38px;
  border: none;
  background: transparent;
  color: #595d59;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .qty button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .qty input {
  flex: 0 0 28px;
  height: 38px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #3f433f;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .qty input::-webkit-outer-spin-button, .cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .cart-total {
  grid-area: total;
  align-self: center;
  text-align: right;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  color: #4b4f4b;
}
.cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .cart-total .cart-total__sup-title {
  font-size: 13px;
}
.cart-sidebar .cart-body .cart-product .cart-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4d42;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.cart-sidebar .cart-body .cart-product .cart-remove:hover {
  transform: scale(1.1);
  opacity: 0.85;
}
.cart-sidebar .cart-body .pharmacy-sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 16px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #4c514c;
  background: #FFFFFF;
  border-bottom: 1px solid #d8ddd8;
}
.cart-sidebar .cart-body .pharmacy-sum span,
.cart-sidebar .cart-body .pharmacy-sum strong {
  white-space: nowrap;
}
.cart-sidebar .cart-footer {
  flex: 0 0 auto;
  padding: 14px 18px 18px;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow-x: hidden;
}
.cart-sidebar .cart-footer .cart-grand-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}
.cart-sidebar .cart-footer .cart-grand-total span {
  font-size: 19px;
  font-weight: 800;
  color: #ef1d25;
  white-space: nowrap;
}
.cart-sidebar .cart-footer .captcha-error {
  min-height: 14px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  color: #df2323;
}
.cart-sidebar .cart-footer .cart-phone {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
}
.cart-sidebar .cart-footer .cart-phone label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b1b1b;
}
.cart-sidebar .cart-footer .cart-phone input {
  width: 100%;
  height: 40px;
  border: 1px solid #d7ddd7;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 0 14px;
  font-size: 16px;
  line-height: 40px;
  color: #2f2f2f;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cart-sidebar .cart-footer .cart-phone input::placeholder {
  color: #8e928d;
}
.cart-sidebar .cart-footer .cart-phone input:focus {
  border-color: #1ea44c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 164, 76, 0.14);
}
.cart-sidebar .cart-footer .cart-phone input.error {
  border-color: #df2323;
  box-shadow: 0 0 0 3px rgba(223, 35, 35, 0.08);
}
.cart-sidebar .cart-footer .cart-phone .phone-error {
  min-height: 14px;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.3;
  color: #df2323;
}
.cart-sidebar .cart-footer .btn-green,
.cart-sidebar .cart-footer .btn-red {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 11px 18px;
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.cart-sidebar .cart-footer .btn-green .btn-loader,
.cart-sidebar .cart-footer .btn-red .btn-loader {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}
.cart-sidebar .cart-footer .btn-green.loading,
.cart-sidebar .cart-footer .btn-red.loading {
  pointer-events: none;
  opacity: 0.9;
}
.cart-sidebar .cart-footer .btn-green.loading .btn-loader,
.cart-sidebar .cart-footer .btn-red.loading .btn-loader {
  display: inline-block;
}
.cart-sidebar .cart-footer .btn-green {
  margin-bottom: 10px;
  background: #139a43;
}
.cart-sidebar .cart-footer .btn-green:hover {
  transform: translateY(-1px);
}
.cart-sidebar .cart-footer .btn-red {
  background: #f20d13;
}
.cart-sidebar .cart-footer .btn-red:hover {
  transform: translateY(-1px);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 481px) {
  .cart-sidebar {
    width: 440px;
    right: -460px;
  }
  .cart-sidebar .cart-body .cart-product {
    padding: 14px 14px 16px;
  }
  .cart-sidebar .cart-body .cart-product .cart-info .cart-bottom {
    grid-template-columns: 108px 1fr;
    gap: 5px 12px;
  }
  .cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .cart-price {
    font-size: 13px;
  }
  .cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .qty {
    width: 108px;
  }
  .cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .qty button {
    flex: 0 0 38px;
    height: 38px;
    font-size: 28px;
  }
  .cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .qty input {
    flex: 0 0 32px;
    height: 38px;
    font-size: 16px;
  }
  .cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .cart-total {
    font-size: 18px;
  }
  .cart-sidebar .cart-body .cart-product .cart-info .cart-bottom .cart-total .cart-total__sup-title {
    font-size: 15px;
  }
  .cart-sidebar .cart-footer {
    padding: 14px 18px 18px;
  }
}
#cart-success-sidebar {
  position: fixed;
  top: 0;
  right: -460px;
  width: 440px;
  max-width: 100%;
  height: 100vh;
  background: #f0fff4;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  z-index: 970;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}
#cart-success-sidebar.active {
  right: 0;
}
#cart-success-sidebar .cart-header {
  padding: 18px 20px;
  background: #1ea44c;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cart-success-sidebar .cart-header h2, #cart-success-sidebar .cart-header .looks_like_h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
#cart-success-sidebar .cart-header .cart-close {
  background: #fff;
  color: #1ea44c;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
#cart-success-sidebar .cart-header .cart-close:hover {
  background: #e6f5eb;
}
#cart-success-sidebar .cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px 18px 0px;
}
#cart-success-sidebar .cart-body .pharmacy-block {
  margin-bottom: 25px;
}
#cart-success-sidebar .cart-body .pharmacy-block .pharmacy-title {
  display: flex;
  flex-direction: column;
  background: #d9f2e0;
  border: 2px solid #1ea44c;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  margin-bottom: 15px;
}
#cart-success-sidebar .cart-body .pharmacy-block .pharmacy-title strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}
#cart-success-sidebar .cart-body .pharmacy-block .pharmacy-title small {
  font-size: 13px;
  color: #2e2e2e;
}
#cart-success-sidebar .cart-body .pharmacy-block .cart-product {
  display: flex;
  justify-content: space-between;
  padding: 12px 12px;
  border-bottom: 1px dashed #1ea44c;
}
#cart-success-sidebar .cart-body .pharmacy-block .cart-product .cart-info {
  flex: 1;
}
#cart-success-sidebar .cart-body .pharmacy-block .cart-product .cart-info .cart-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
}
#cart-success-sidebar .cart-body .pharmacy-block .cart-product .cart-info .cart-address {
  font-size: 13px;
  color: #555;
  margin-bottom: 3px;
}
#cart-success-sidebar .cart-body .pharmacy-block .cart-product .cart-info .cart-quantity {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
#cart-success-sidebar .cart-footer {
  padding: 20px;
  background: #e3f2eb;
  border-top: 1px solid #d5d5d5;
}
#cart-success-sidebar .cart-footer .btn-green {
  width: 100%;
  padding: 15px;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#cart-success-sidebar .cart-footer .btn-green:hover {
  transform: translateY(-1px);
}

/* Center popup overlay */
.qty-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999999;
}
.qty-overlay.active {
  opacity: 1;
  visibility: visible;
}
.qty-overlay .qty-popup {
  width: 860px;
  max-width: 95%;
  background: #fff;
  border-radius: 16px;
  padding: 16px 14px 14px;
  position: relative;
}
@media (min-width: 480px) {
  .qty-overlay .qty-popup {
    padding: 22px 26px 18px;
  }
}
.qty-overlay .qty-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 29px;
  height: 28px;
  background: #1aa34a;
  color: #FFFFFF;
  border-radius: 50%;
  border: 2px solid #1aa34a;
  cursor: pointer;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1em 0.5em;
}
.qty-overlay .qty-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.qty-overlay .qty-product {
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-areas: "media head" "media price" "info  info";
  column-gap: 18px;
  row-gap: 10px;
  align-items: start;
}
@media (min-width: 480px) {
  .qty-overlay .qty-product {
    grid-template-columns: 76px 1fr auto;
    grid-template-areas: "media head price" "info  info price";
  }
}
.qty-overlay .qty-product img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.qty-overlay .qty-media {
  grid-area: media;
}
.qty-overlay .qty-media img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.qty-overlay .qty-head {
  grid-area: head;
  min-width: 0;
}
.qty-overlay .qty-product-info {
  grid-area: info;
  min-width: 0;
}
.qty-overlay .qty-product-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 2px;
}
.qty-overlay .qty-manufacturer {
  font-size: 12px;
  color: #9aa1a9;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-top: 6px;
}
.qty-overlay .qty-pharmacy-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.qty-overlay .qty-pin {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qty-overlay .qty-pin svg {
  fill: #1aa34a;
}
.qty-overlay .qty-pharmacy {
  color: #1aa34a;
  font-weight: 600;
  line-height: 1.2;
}
.qty-overlay .qty-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.qty-overlay .qty-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.qty-overlay .star {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: #d7dadd;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.qty-overlay .star.filled {
  background: #1aa34a;
}
.qty-overlay .qty-open {
  font-size: 13px;
  color: #9aa1a9;
}
.qty-overlay .qty-open .qty-open-time {
  color: #1aa34a;
  font-weight: 600;
}
.qty-overlay .qty-stock {
  margin-top: 10px;
}
.qty-overlay .qty-stock .similar-products__available {
  display: flex;
  gap: 7px;
}
.qty-overlay .qty-stock .similar-products__available img {
  width: 1.7rem;
  height: 1.7rem;
}
.qty-overlay .qty-price {
  font-size: 16px;
  font-weight: 700;
  color: #2b2f33;
  white-space: nowrap;
  margin-top: 2px;
  grid-area: price;
}
.qty-overlay .qty-price .qty-price__currency {
  font-size: 18px;
  font-weight: 400;
}
.qty-overlay .qty-price .qty-price__value {
  color: #1aa34a;
}
.qty-overlay .qty-price .qty-price__currency {
  font-size: 16px;
}
.qty-overlay .qty-controls {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 480px) {
  .qty-overlay .qty-controls {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 22px;
    row-gap: 12px;
    align-items: end;
  }
}
.qty-overlay .qty-total {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
}
.qty-overlay .qty-total-label {
  font-weight: 700;
}
.qty-overlay .qty-total-value,
.qty-overlay .qty-total-currency {
  color: #1aa34a;
  font-weight: 700;
}
.qty-overlay .qty-error {
  grid-column: 1/-1;
  grid-row: 2/3;
  display: none;
  color: #b42318;
  background: #fdecea;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.grecaptcha-badge {
  display: none;
}

/* search */
.header-input__control__label {
  font-weight: 400;
  display: flex;
  align-items: center;
  max-width: 41.75em;
  width: 100%;
  background: #fff;
  border: 2px solid #959c97;
  border-radius: 999rem;
  padding: 1px;
  gap: 0;
  transition: border-color 0.15s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.15s cubic-bezier(0.2, 0.6, 0.2, 1);
  z-index: 10001;
}
.header-input__control__label:focus-within {
  border-color: #008737;
  box-shadow: 0 0 0 0.2rem rgba(0, 135, 55, 0.15);
}
.header-input__control__label .button {
  cursor: pointer;
  flex: 0 0 auto;
  height: 56px;
  padding: 0.75rem 1.5rem;
  border-radius: 999rem;
  margin: 0;
}

.live-search-box {
  position: absolute;
  top: calc(100% - 27px);
  left: 0;
  right: 0;
  z-index: 10000;
  display: none;
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-top: none;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.13);
  padding: 37px 8px 0 8px;
}
.live-search-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #008737 transparent;
}
.live-search-box ul::-webkit-scrollbar {
  width: 5px;
}
.live-search-box ul::-webkit-scrollbar-track {
  background: transparent;
}
.live-search-box ul::-webkit-scrollbar-thumb {
  background: #008737;
  border-radius: 999px;
}
.live-search-box li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.live-search-box li:last-child {
  border-bottom: none;
}
.live-search-box li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 0.625rem;
  text-decoration: none;
  color: #111827 !important;
  background: transparent !important;
  transition: background-color 140ms ease;
}
.live-search-box li a:hover {
  background: rgba(0, 135, 55, 0.06) !important;
}
.live-search-box li a::after {
  content: "›";
  flex: 0 0 auto;
  margin-left: auto;
  color: rgba(15, 23, 42, 0.28);
  font-size: 28px;
  line-height: 1;
  padding-left: 4px;
}
.live-search-box li a .show-loader__block-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  min-width: 0;
}
.live-search-box img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: block;
  object-fit: contain;
  border-radius: 0.625rem;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.07);
}
.live-search-box span {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: #111827 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.live-search-box .show-loader__block-text__description {
  flex: 0 0 auto;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 500;
  color: #6b7280 !important;
  white-space: nowrap;
}
.live-search-box .live-search-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  margin: 4px 0 0;
  padding: 8px 8px 12px;
  text-decoration: none;
  cursor: pointer;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  transition: background-color 140ms ease;
}
.live-search-box .live-search-footer:hover {
  background: rgba(0, 135, 55, 0.05) !important;
}
.live-search-box .live-search-footer__main {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #008737 !important;
}
.live-search-box .live-search-footer__arrow {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 400;
  color: #e3000f !important;
  margin-bottom: 7px;
  margin-left: 5px;
}
.live-search-box .live-search-footer__count {
  margin: 2px 0 0;
  font-size: 0.75rem;
  font-weight: 400;
  color: #9ca3af !important;
  text-align: center;
}
.live-search-box .show-loader__empty {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: block;
  border-radius: 0.625rem;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.header-input {
  position: relative;
}

.qty-counters {
  display: flex;
  justify-content: start;
  gap: 22px;
  margin-top: 10px;
}
@media (min-width: 480px) {
  .qty-counters {
    justify-content: end;
  }
}

.qty-counter-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.qty-counter-block--blisters .qty-counter-label {
  color: #9aa1a9;
}

.qty-counter-label {
  font-size: 13px;
  color: #2b2f33;
  font-weight: 600;
}

.qty-counter {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  height: 42px;
  padding: 0 10px;
  gap: 14px;
  background: #fff;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  padding: 0.5em 0;
  cursor: pointer;
  font-size: 18px;
  line-height: 34px;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover:not(.disabled) {
  background: #e5e7eb;
}
.qty-btn.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: #2b2f33;
}

.qty-cart-btn {
  height: 44px;
  border: none;
  cursor: pointer;
  background: #e3000f;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px 0 18px;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 480px) {
  .qty-cart-btn {
    grid-column: 2/3;
    grid-row: 1/2;
    width: auto;
    white-space: nowrap;
    justify-content: flex-start;
  }
}

.qty-cart-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qty-cart-icon svg {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* footer top */
footer {
  margin-top: 3em;
  margin-bottom: 4.4em;
}
@media (min-width: 700px) {
  footer {
    margin: 3em 0 0 0;
  }
}

.footer-top {
  color: #FFFFFF;
  background-color: #006228;
}

.footer-top__container {
  display: flex;
  gap: 0.9em;
  padding: 2em 0;
  justify-content: center;
}
@media (min-width: 700px) {
  .footer-top__container {
    justify-content: inherit;
  }
}

.footer-top__container__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 22.75em;
}
@media (min-width: 700px) {
  .footer-top__container__logo {
    display: block;
  }
}
@media (min-width: 1370px) {
  .footer-top__container__logo {
    max-width: 23.75em;
  }
}

.footer-top__container__text {
  display: none;
  align-items: center;
  gap: 0.9em;
  width: 100%;
}
.footer-top__container__text .footer-top__container__text__info,
.footer-top__container__text .footer-top__container__text__info__links {
  display: none;
}
@media (min-width: 1275px) {
  .footer-top__container__text .footer-top__container__text__info,
  .footer-top__container__text .footer-top__container__text__info__links {
    display: flex;
  }
}
@media (min-width: 700px) {
  .footer-top__container__text {
    display: flex;
  }
}

.footer-top__container__text__info,
.footer-top__container__text__info__links {
  width: 100%;
  max-width: 20.75em;
}
@media (min-width: 1370px) {
  .footer-top__container__text__info,
  .footer-top__container__text__info__links {
    max-width: 23.75em;
  }
}

.footer-top__container__text__info__title,
.footer-top__container__text__links__title {
  font-size: 0.94em;
  text-transform: uppercase;
}

/* footer middle */
.footer-middle {
  padding: 1em 0 3.5em;
  background-color: #008737;
}

.footer-middle__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9em;
  width: 100%;
}
@media (min-width: 700px) {
  .footer-middle__container {
    flex-direction: row;
    align-items: flex-start;
    margin: 0;
  }
}
.footer-middle__container a {
  color: #ffffff;
}
@media (hover: hover) {
  .footer-middle__container a:hover {
    color: #b2f3cd;
  }
}
.footer-middle__container .footer-middle__container__self-medication {
  display: flex;
}
@media (min-width: 700px) and (max-width: 1274px) {
  .footer-middle__container .footer-middle__container__self-medication {
    display: none;
  }
}
@media (min-width: 1275px) {
  .footer-middle__container .footer-middle__container__self-medication {
    display: flex;
  }
}

.footer-top__container__text__self-medication {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
.footer-top__container__text__self-medication span {
  font-size: 1.5em;
}
@media (min-width: 1275px) {
  .footer-top__container__text__self-medication {
    display: none;
  }
}

.footer-middle__container__contacts .footer-middle__container__contacts__phone__container {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1em;
  margin-top: 1em;
}

.footer-middle__container__info {
  margin: 2em 0 2em 0;
}
@media (min-width: 700px) {
  .footer-middle__container__info {
    margin: 0;
  }
}

.footer-middle__container__contacts,
.footer-middle__container__info,
.footer-middle__container__links {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  max-width: 23.75em;
}

.footer-middle__container__contacts,
.footer-middle__container__info,
.footer-middle__container__self-medication,
.footer-middle__container__links {
  display: flex;
  align-items: center;
}
@media (min-width: 700px) {
  .footer-middle__container__contacts,
  .footer-middle__container__info,
  .footer-middle__container__self-medication,
  .footer-middle__container__links {
    align-items: start;
  }
}

.footer-middle__container__self-medication {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-transform: uppercase;
  padding-bottom: 1.5625em;
  margin: auto 0;
}
@media (min-width: 700px) {
  .footer-middle__container__self-medication {
    padding: 2em 0 0 0;
  }
}
.footer-middle__container__self-medication span {
  font-size: 1.5em;
  font-weight: 500;
  color: #FFFFFF;
  white-space: nowrap;
}

/* footer bottom */
.footer-bottom__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1em;
  padding: 0.5em 0;
}
@media (min-width: 700px) {
  .footer-bottom__container {
    flex-direction: row;
  }
}
.footer-bottom__container span {
  font-size: 0.8125em;
}

.footer-bottom__container__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em;
}
@media (min-width: 700px) {
  .footer-bottom__container__logo {
    flex-direction: column-reverse;
    gap: 0.4em;
  }
}
@media (min-width: 1300px) {
  .footer-bottom__container__logo {
    flex-direction: row;
    gap: 1.4em;
  }
}
.footer-bottom__container__logo img {
  padding-bottom: 0.3em;
}

.footer-bottom__container__text {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 700px) {
  .footer-bottom__container__text {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .footer-bottom__container__text {
    flex-direction: row;
  }
}
.footer-bottom__container__text span {
  font-size: 0.75em;
  color: #4b514b;
}
.footer-bottom__container__text span:first-child {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 700px) {
  .footer-bottom__container__text span:first-child {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .footer-bottom__container__text span:first-child {
    margin-bottom: 0;
  }
}
@media (min-width: 700px) {
  .footer-bottom__container__text span {
    font-size: 0.8125em;
    white-space: nowrap;
  }
}

.product-container {
  background: #fff;
  border: 0.0625rem solid #c2c2c2;
  border-radius: 1rem;
  margin: 2em 0;
  padding: 0;
  overflow: clip;
}

.product-container__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1em 1.1em;
  margin: 0 auto 0 auto;
}

@media (min-width: 980px) {
  .product-container__title {
    padding: 1em 2em;
  }
}
.product-container__title__block {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  flex-wrap: nowrap;
}

.product-container__title__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
}

.product-container__title__tabs {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  flex-wrap: wrap;
}

.product-container__title__tabs .tab-button {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  line-height: 1.15;
}

.product-container__title__nav {
  flex: 0 0 auto;
  margin-left: auto;
}

@media (max-width: 480px) {
  .product-container__title:has(.product-container__title__controls) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "heading nav" "tabs tabs";
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.75rem;
  }
  .product-container__title:has(.product-container__title__controls) > .looks_like_h1 {
    grid-area: heading;
    min-width: 0;
    margin: 0;
    font-size: 1.4375rem;
    line-height: 1.15;
  }
  .product-container__title__controls {
    display: contents;
  }
  .product-container__title__tabs {
    grid-area: tabs;
    flex: 0 0 100%;
    width: 100%;
    gap: 0.5rem;
  }
  .product-container__title__tabs .tab-button {
    min-height: 2.125rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.8125rem;
  }
  .product-container__title__nav {
    grid-area: nav;
    gap: 0.5rem;
    justify-content: flex-end;
    width: auto;
    margin-left: 0;
  }
  .product-container__nav {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 0.75rem;
  }
  .product-container__nav img {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (max-width: 360px) {
  .product-container__title {
    padding: 0.875rem 0.75rem;
  }
  .product-container__title__controls {
    gap: 0.625rem;
  }
  .product-container__title:has(.product-container__title__controls) {
    column-gap: 0.5rem;
    row-gap: 0.625rem;
  }
  .product-container__title__tabs {
    gap: 0.375rem;
  }
  .product-container__title__tabs .tab-button {
    min-height: 2rem;
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  .product-container__nav {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 0.75rem;
  }
  .product-container__nav img {
    width: 1.2rem;
    height: 1.2rem;
  }
  .product-container__title__nav {
    gap: 0.375rem;
  }
}
.product-container__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9em;
  border: 0.0625rem solid #c2c2c2;
  background: #fff;
  padding: 1em;
  color: #00882c;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.product-container__nav img {
  width: 1.5em;
  height: 1.5em;
}
.product-container__nav:first-child img {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  .product-container__nav .arrow {
    display: block;
    flex: 0 0 1.45rem;
    width: 1.45rem;
    min-width: 1.45rem;
    max-width: none;
    height: 1.16rem;
    object-fit: contain;
  }
  .product-container__nav:first-child .arrow {
    transform: rotate(180deg);
  }
}
@media (max-width: 360px) {
  .product-container__nav .arrow {
    flex-basis: 1.35rem;
    width: 1.35rem;
    min-width: 1.35rem;
    height: 1.08rem;
  }
}
.product-container__nav:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 128, 0, 0.25);
}

.product-container__nav:active {
  transform: translateY(0.05em);
}

.product-container__nav:focus-visible {
  border-color: rgba(0, 128, 0, 0.55);
  box-shadow: 0 0 0 0.22em rgba(0, 128, 0, 0.12);
}

.product-container__nav.swiper-button-disabled {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.product-container__nav.swiper-button-lock {
  display: none;
}

.product-container__title__block:has(.product-container__nav):not(:has(.product-container__nav:not(.swiper-button-disabled))) {
  display: none;
}

.product-container__title__block:has(.product-container__nav.swiper-button-lock):not(:has(.product-container__nav:not(.swiper-button-lock))) {
  display: none;
}

.product-container__medications {
  width: 100%;
  background: #c2c2c2;
}

.product-container__medications .swiper-wrapper {
  background: #c2c2c2;
}

.product-container__medications .swiper-slide {
  height: auto;
  background: #fff;
}

.product-container__medications .swiper-slide {
  margin-top: 0.0625rem;
}

.product-container__medications__block {
  width: 100%;
  padding: 1em 1.1em 1.56em 1.1em;
  background: #fff;
}

@media (min-width: 980px) {
  .product-container__medications__block {
    padding: 1em 1.6em 1.56em 1.6em;
  }
}
.product-container__medications__block--hidden-mobile {
  display: none;
}

@media (min-width: 980px) {
  .product-container__medications__block--hidden-mobile {
    display: block;
  }
}
.product-container__medications__block__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 13.6em;
}

.product-container__medications__block__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (min-width: 980px) {
  .product-container__medications__block__icon {
    height: 14.85em;
  }
}
.product-container__medications__block__icon__container {
  display: flex;
  width: 100%;
  height: 100%;
}

.product-container__medications__block__icon .product-container__medications__block__icon--product {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.product-container__medications__block__icon .product-container__medications__block__icon__heart {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0.85);
  transition: opacity 0.25s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  cursor: pointer;
}

.product-container__medications__block__icon .product-to-favourite {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 2.375rem;
  height: 2.125rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.product-to-favourite .wishlist-item-icon {
  pointer-events: none;
}

.product-container__medications__block__icon .product-container__medications__block__icon__heart.active {
  opacity: 1;
  transform: scale(1);
  animation: heart-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes heart-pop {
  0% {
    transform: scale(0.85);
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.product-container__medications__block__description {
  display: flex;
  flex-direction: column;
  height: 10em;
}

.product-container__medications__block__description--title {
  font-size: 1.125em;
  font-weight: 700;
  color: #4b514b;
  height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.7rem;
}

.product-container__medications__block__description--manufacturer {
  font-size: 0.75em;
  color: #595959;
  max-height: 2.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.7rem;
}

.product-container__medications__block__description__subcategory {
  font-size: 0.875em;
  color: #00882c;
  height: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-container__medications__block__description__stars {
  display: flex;
  gap: 1px;
  margin-bottom: 0.7em;
}

.product-container__medications__block__description__stars img {
  width: 0.68em;
  height: 0.69em;
}

.product-container__medications__block__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9em;
}

.product-container__medications__block__price__container {
  font-size: 0.875rem;
}

@media (min-width: 450px) {
  .product-container__medications__block__price__container {
    font-size: 1rem;
  }
}
.product-container__medications__block__price__container__title {
  font-size: 1.4375em;
  font-weight: 700;
}

.product-container__medications__block__price__container__sub-title {
  font-size: 0.875em;
}

.product-container__medications__block__price__button .button {
  padding: 0.875rem 1rem;
}

.product-container__medications {
  background: #FFFFFF;
}

.product-container__medications .swiper-wrapper {
  background: #FFFFFF;
}

.swiper-slide {
  border-top: 0.0625rem solid #c2c2c2;
  border-left: 0.0625rem solid #c2c2c2;
}
.swiper-slide:first-child {
  border-left: none;
}

.swiper--few-slides .swiper-slide:last-child {
  border-right: 0.0625rem solid #c2c2c2;
}

.product-tabs {
  position: relative;
}
.product-tabs .item-product:last-child {
  border-right: 1px solid #c2c2c2;
}

.product-tabs__loader {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.product-tabs__loader.active {
  opacity: 1;
  visibility: visible;
}

.product-tabs__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e5e5e5;
  border-top: 4px solid #2bb673;
  border-radius: 50%;
  animation: productTabsSpin 0.8s linear infinite;
}

@keyframes productTabsSpin {
  to {
    transform: rotate(360deg);
  }
}
/* steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 0.6rem + 0.5vw, 1rem);
  margin: clamp(1.5rem, 1rem + 2vw, 3em) 0;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1400px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.steps-1,
.steps-2 {
  --step-icon-max-w: clamp(3.2rem, 2.7rem + 1.2vw, 4.5em);
  --step-icon-max-h: clamp(3.2rem, 2.7rem + 1.2vw, 4.5em);
}

.steps-3 {
  --step-icon-max-w: clamp(2.9rem, 2.5rem + 1vw, 4em);
  --step-icon-max-h: clamp(2.9rem, 2.5rem + 1vw, 4em);
}

.steps-4 {
  --step-icon-max-w: clamp(3.3rem, 2.8rem + 1.2vw, 4.75em);
  --step-icon-max-h: clamp(3.5rem, 2.9rem + 1.2vw, 5em);
}

.steps-card {
  display: flex;
  align-items: stretch;
  gap: 10px;
  min-height: clamp(5.5rem, 5rem + 2.5vw, 8rem);
  background: #fff;
  border: 0.0625rem solid #c2c2c2;
  border-radius: clamp(0.75rem, 0.65rem + 0.3vw, 1rem);
  box-shadow: 0 0.125rem 1rem rgba(149, 156, 151, 0.12);
  user-select: none;
  overflow: hidden;
}

.steps-card__icon {
  flex: 0 0 clamp(4.8rem, 4.2rem + 1.8vw, 6.8rem);
  display: grid;
  align-content: center;
  place-items: center;
  padding: clamp(0.65rem, 0.55rem + 0.4vw, 1rem) clamp(0.4rem, 0.3rem + 0.3vw, 0.6rem);
  color: #000000;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  background: #fff;
  background-image: linear-gradient(#959c97, #959c97);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0.0625rem calc(100% - 0.625rem);
}
@media (min-width: 768px) {
  .steps-card__icon {
    place-items: start center;
  }
}
.steps-card__icon img {
  width: auto;
  height: auto;
  max-width: var(--step-icon-max-w, 4.5em);
  max-height: var(--step-icon-max-h, 4.5em);
  object-fit: contain;
  display: block;
  border: none;
}

.steps-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  padding: clamp(0.75em, 0.6em + 0.45vw, 1.37em) clamp(0.3em, 0.2em + 0.35vw, 0.5em) clamp(0.6em, 0.5em + 0.3vw, 0.94em) 0;
}
@media (min-width: 768px) {
  .steps-card__body {
    justify-content: space-between;
  }
}
@media (min-width: 1650px) {
  .steps-card__body {
    padding-right: 0;
  }
}

/* title: looks_like_h2 → 24px at desktop, 16px at 320px */
.steps-card__title {
  font-weight: 700;
  font-size: clamp(1rem, 0.833rem + 0.833vw, 1.5rem);
  line-height: 1.2;
  color: #000000;
  margin: 0 0 0.25rem 0;
}

/* desc: 16px at desktop, 13px at 320px */
.steps-card__desc {
  font-size: clamp(0.8125rem, 0.75rem + 0.3125vw, 1rem);
  padding-right: clamp(0.25rem, 0.15rem + 0.5vw, 1em);
  line-height: 1.45;
  margin: 0;
  color: #8c8c8c;
}

.steps-accent--green {
  color: #00882c;
}

.steps-accent--red {
  color: #ff0007;
}

/* breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 0.75em;
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  color: #4b514b;
  overflow: hidden;
}

.breadcrumbs__brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.breadcrumbs__list::-webkit-scrollbar {
  display: none;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  min-width: 0;
}

.breadcrumbs__item[aria-current=page] {
  flex: 1 1 auto;
}

.breadcrumbs__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.375rem 0.75rem;
  border-radius: 999rem;
  background: #e3ece6;
  color: #4b514b;
  text-decoration: none;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.breadcrumbs__item[aria-current=page] .breadcrumbs__link {
  color: #000000;
  cursor: default;
}

.breadcrumbs__text {
  font-size: 0.75rem;
  display: block;
  white-space: nowrap;
}

.breadcrumbs__chevron {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: #006228;
}

.breadcrumbs__item[aria-current=page] .breadcrumbs__chevron {
  display: none;
}

.breadcrumbs__item--ellipsis {
  display: none;
}

#page-preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

#page-preloader.active {
  opacity: 1;
  visibility: visible;
}

.preloader-content {
  text-align: center;
}

.heart {
  width: 70px;
  margin: auto;
  animation: heartbeat 1s infinite;
}

.heart svg {
  width: 100%;
  height: auto;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.15);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.pulse-line {
  width: 120px;
  height: 3px;
  background: #eee;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
}

.pulse-line::after {
  content: "";
  position: absolute;
  left: -40%;
  width: 40%;
  height: 100%;
  background: #E3000F;
  animation: pulse 1.2s linear infinite;
}

@keyframes pulse {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}
.loading-text {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* categories product */
.categories-products {
  background: #fff;
  border: 0.0625rem solid #c2c2c2;
  border-radius: 1rem;
  padding: 12px 0;
}
@media (min-width: 850px) {
  .categories-products {
    padding: 16px 0;
  }
}

.categories-banner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  padding-left: 14px;
  padding-right: 14px;
}
@media (min-width: 998px) {
  .categories-banner-container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.categories-banner-container__block:nth-child(1) {
  width: 100%;
}
@media (min-width: 478px) {
  .categories-banner-container__block:nth-child(1) {
    width: 49%;
  }
}
@media (min-width: 998px) {
  .categories-banner-container__block:nth-child(1) {
    width: inherit;
  }
}
.categories-banner-container__block:nth-child(2) {
  width: 100%;
}
@media (min-width: 478px) {
  .categories-banner-container__block:nth-child(2) {
    width: 49%;
  }
}
@media (min-width: 998px) {
  .categories-banner-container__block:nth-child(2) {
    width: inherit;
  }
}
.categories-banner-container__block:nth-child(3) {
  width: 100%;
}
@media (min-width: 478px) {
  .categories-banner-container__block:nth-child(3) {
    width: 50%;
  }
}
@media (min-width: 998px) {
  .categories-banner-container__block:nth-child(3) {
    width: inherit;
  }
}
.categories-banner-container__block img {
  width: 100%;
}
@media (min-width: 1870px) {
  .categories-banner-container__block img {
    object-fit: none;
  }
}

/* categories-title */
.categories-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
}

/* categories list */
.categories-list-block__container {
  position: relative;
}
.categories-list-block__container a {
  color: #000000;
}
.categories-list-block__container a:hover {
  text-decoration: none;
}
.categories-list-block__container a span {
  font-size: 1.1875em;
}

.categories-list-title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 0.5em;
  padding: 0 1em;
}

.categories-list-title__icon img {
  height: 3.5em;
  width: 3.5em;
}

.categories-list-block__product {
  display: none;
}
@media (min-width: 1200px) {
  .categories-list-block__product {
    display: flex;
  }
}
.categories-list-block__product ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 0;
  list-style: none;
}
.categories-list-block__product ul li {
  padding: 0 1em;
}
.categories-list-block__product ul li:hover {
  color: #FFFFFF;
  background-color: #008737;
}
.categories-list-block__product ul li:hover a {
  color: #FFFFFF;
}
.categories-list-block__product ul a {
  font-size: 1.1875em;
  display: flex;
  width: 100%;
  text-decoration: none;
}
.categories-list-block__product ul a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.categories-list-block__container__icon {
  display: none;
}

.categories-list-block.open-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0 1em;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999;
}
.categories-list-block.open-popup .categories-list-block__product {
  display: flex;
}
.categories-list-block.open-popup .categories-list-block__container {
  padding: 1rem 0 2rem 0;
  width: 100%;
  max-width: 560px;
  background-color: #FFFFFF;
  max-height: 80vh;
  overflow-y: auto;
}
.categories-list-block.open-popup .categories-list-block__container ul {
  padding-left: 72px;
}
.categories-list-block.open-popup .categories-list-title {
  padding-right: 2rem;
  padding-left: 1rem;
}
.categories-list-block.open-popup .categories-list-block__container__icon {
  display: flex;
  position: absolute;
  top: 13px;
  right: 15px;
  width: 24px;
  height: 24px;
}
.categories-list-block.open-popup .categories-list-block__container:hover, .categories-list-block.open-popup .categories-list-block__container:focus-within {
  transform: none !important;
  box-shadow: none !important;
}

.categories-list-container {
  position: relative;
  display: block;
  column-fill: balance;
  column-count: 1;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 576px) {
  .categories-list-container {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .categories-list-container {
    column-count: 3;
  }
}
@media (min-width: 1280px) {
  .categories-list-container {
    column-count: 4;
  }
}
.categories-list-block__container {
  display: block;
  margin: 0;
  padding: 0.5em 1em;
  position: relative;
  border-radius: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, outline-color 0.18s ease;
  will-change: transform;
  outline: 1px solid transparent;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
}
@media (min-width: 1200px) {
  .categories-list-block__container {
    margin: 0 0 24px;
    padding: 1em 0.5em;
  }
}

.categories-list-block a {
  color: #000000;
  text-decoration: none;
}

.categories-list-block a:hover {
  text-decoration: underline;
}

.categories-list-title {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0;
  margin-bottom: 0.75em;
}
.categories-list-title:hover {
  text-decoration: none;
}

.categories-list-title span {
  font-size: 1.1875em;
  line-height: 1.2;
}

.categories-list-title__icon {
  width: 3.5em;
  height: 3.5em;
}

.categories-list-title__icon img {
  width: 3.5em;
  height: 3.5em;
  max-width: none;
  object-fit: contain;
}

.categories-list-block__product ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.categories-list-block__product a {
  font-size: 1.0625em;
  line-height: 1.45;
}

@media (min-width: 1200px) {
  .categories-list-block__product a {
    font-size: 1.125em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .categories-list-block__container:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    outline-color: #dfe3e6;
    z-index: 50;
  }
}
/* news-container */
.news-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 539px) {
  .news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    justify-items: center;
  }
}
@media (min-width: 1831px) {
  .news-container {
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  }
}

.news-container__block {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #c2c2c2;
}
.news-container__block:nth-child(1) {
  border-right: none;
}
@media (min-width: 1031px) {
  .news-container__block:nth-child(1) {
    border-right: 1px solid #c2c2c2;
  }
}
.news-container__block:nth-child(2) {
  border-right: none;
}
@media (min-width: 1531px) {
  .news-container__block:nth-child(2) {
    border-right: 1px solid #c2c2c2;
  }
}
.news-container__block:nth-child(3) {
  display: none;
}
@media (min-width: 1531px) {
  .news-container__block:nth-child(3) {
    display: flex;
    border-right: none;
  }
}

.news-container__block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 539px) {
  .news-container__block__icon {
    height: 18.75em;
  }
}
@media (min-width: 1031px) {
  .news-container__block__icon {
    height: 15.75em;
  }
}
@media (min-width: 1270px) {
  .news-container__block__icon {
    height: 18.75em;
  }
}
@media (min-width: 1531px) {
  .news-container__block__icon {
    height: 15.75em;
  }
}
@media (min-width: 1560px) {
  .news-container__block__icon {
    height: 15.75em;
  }
}
@media (min-width: 1800px) {
  .news-container__block__icon {
    height: 18.75em;
  }
}
.news-container__block__icon img {
  height: 100%;
}

.news-container__block__text {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 1.7em 1.6em 0.8em 1.6em;
}

.news-container__block__title,
.news-container__block__date,
.news-container__block__description {
  display: flex;
  white-space: break-spaces;
}
.news-container__block__title span,
.news-container__block__date span,
.news-container__block__description span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-container__block__title {
  font-size: 1.125em;
  height: 3.5rem;
  color: #4b514b;
}

.news-container__block__date {
  font-size: 0.75em;
  height: 1.3rem;
  color: #595959;
  padding-bottom: 0.3rem;
}
.news-container__block__date span {
  -webkit-line-clamp: 1;
}

.news-container__block__description {
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.5em;
  height: 6.9rem;
  color: #4b514b;
}
@media (min-width: 500px) {
  .news-container__block__description {
    flex-direction: row;
    gap: 1em;
    height: 2.9rem;
  }
}
.news-container__block__description .pill-button--green-soft {
  padding: 1rem 1.125rem;
  color: #00882c;
  background: #e3ece6;
}

/* map */
#osm-map {
  width: 100%;
  height: 18rem;
  border-radius: 0.75rem;
  border: 0.0625rem solid #c2c2c2;
}
@media (min-width: 780px) {
  #osm-map {
    height: 20rem;
  }
}
@media (min-width: 1250px) {
  #osm-map {
    height: 25rem;
  }
}
@media (min-width: 1800px) {
  #osm-map {
    height: 30rem;
  }
}

.marker-cluster {
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  line-height: 30px;
  width: 30px;
  height: 30px;
  font-size: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.marker-cluster.cluster-store {
  background-color: green !important;
}

.marker-cluster.cluster-product {
  background-color: #e3000f !important;
}

/* ── Popup аптеки на головній карті ── */
.map-store-popup {
  font-size: 0.875rem;
  line-height: 1.4;
  min-width: 180px;
}

.map-store-popup__name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #111827;
}

.map-store-popup__address {
  color: #374151;
  margin-bottom: 6px;
}

.map-store-popup__status {
  margin-bottom: 8px;
  font-size: 0.8125rem;
}

.map-store-popup__schedule {
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  padding-top: 6px;
  margin-top: 4px;
  display: grid;
  gap: 2px;
}

.map-store-popup__schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8125rem;
}

.map-store-popup__day {
  color: #6b7280;
}

.map-store-popup__time {
  font-weight: 600;
  color: #111827;
}

/*# sourceMappingURL=main.css.map */
