﻿* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

:root {
  --color-green: #3f6f5e;
  --color-green-dark: #2f5649;
  --color-green-soft: #e7f0ec;
  --color-bg: #f3f1ec;
  --color-shell: #f7f4ef;
  --color-surface: #ffffff;
  --color-text: #2c2a28;
  --color-muted: #6b6560;
  --color-stone-100: #f5f5f4;
  --color-stone-300: #d6d3d1;
  --color-stone-500: #78716c;
  --color-stone-600: #57534d;
  --color-white: #ffffff;
  --color-footer-from: #3f6f5e;
  --color-footer-mid: #2f5649;
  --color-footer-to: #1e3a31;
  --color-footer-text: #47433e;
  --color-mobile-menu-text: #57534d;
  --color-mobile-menu-border: #d6d3d1;
  --color-mobile-menu-bg: #ffffff;
  --color-accent: #c4a35a;
  --color-accent-soft: #f3ead2;
}

.btn-primary {
  background: var(--color-green);
  background-image: none;
  border-color: var(--color-green);
  color: #ffffff;
  text-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background: var(--color-green);
  background-image: none;
  border-color: var(--color-green);
  background-position: 0 0;
}

a {
  color: var(--color-green);
}

a:hover,
a:focus {
  color: var(--color-green);
}

body.custom-storefront {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--font-size-base, 14px);
}

.site-header {
  background: color-mix(in srgb, var(--color-shell) 94%, transparent);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  overflow: visible;
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__bar {
  align-items: center;
  display: grid;
  gap: 19px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 76px;
  padding: 16px 20px;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.site-header__group,
.site-header__actions {
  align-items: center;
  display: flex;
  min-width: 0;
}

.site-header__group {
  gap: 8px;
  justify-content: flex-start;
}

.site-header__actions {
  gap: 8px;
  justify-content: flex-end;
}

.site-header__group--start {
  gap: 4px;
}

.site-header__group--mobile {
  gap: 8px;
}

.site-header .pull-left {
  float: none;
}

.site-header .btn-group {
  display: inline-flex;
  position: relative;
  vertical-align: middle;
}

.site-header .dropdown-menu {
  background: var(--color-white);
  border: 1px solid var(--color-stone-300);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.12);
  left: 0;
  margin: 6px 0 0;
  min-width: 168px;
  padding: 8px;
  right: auto;
  z-index: 100;
}

.site-header .dropdown-menu > li {
  list-style: none;
}

.site-header .dropdown-menu > li > .btn,
.site-header .language-select,
.site-header .currency-select {
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--color-stone-600);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  padding: 10px 12px;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}

.site-header .dropdown-menu > li > .btn:hover,
.site-header .dropdown-menu > li > .btn:focus,
.site-header .language-select:hover,
.site-header .language-select:focus,
.site-header .currency-select:hover,
.site-header .currency-select:focus {
  background: var(--color-stone-100);
  color: var(--color-stone-600);
  text-decoration: none;
}

.site-header .dropdown-menu img {
  display: block;
  height: 14px;
  width: auto;
}

.site-header__logo {
  align-items: center;
  display: flex;
  gap: 10px;
  height: 44px;
  justify-content: center;
  max-width: min(52vw, 280px);
  min-width: 0;
  text-decoration: none;
  width: auto;
}

.site-header__logo:not(.site-header__logo--text):not(.site-header__logo--both) {
  width: 44px;
}

.site-header__logo img,
.site-header__logo-mark {
  display: block;
  flex: 0 0 auto;
}

.site-header__logo img {
  width: 44px;
}

.site-header__logo-mark {
  height: 35px;
  width: 39px;
}

.site-header__brand-name {
  color: var(--color-logo-text, #ffffff);
  font-family: "Lora", Georgia, serif;
  font-size: var(--font-size-logo, 18px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header__logo--text {
  display: none;
  width: auto;
}

.site-header__logo--both {
  height: auto;
  max-width: calc(100vw - 220px);
}

.site-header__logo--both .site-header__brand-name {
  line-height: 1.1;
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}

.icon-button,
.header-dropdown,
.header-search {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-stone-300);
  border-radius: 14px;
  color: var(--color-green);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
}

.icon-button {
  flex: 0 0 42px;
  width: 42px;
}

.icon-button--cart {
  flex: 0 0 42px;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 42px;
}

.header-cart__count {
  align-items: center;
  background: #f5c518;
  border-radius: 999px;
  color: #1a1a1a;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  height: 18px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-width: 18px;
  padding: 0 4px;
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 2;
}

.header-cart__count[hidden] {
  display: none;
}

.icon-button svg,
.header-dropdown svg,
.header-search svg {
  display: block;
  fill: none;
  height: 28px;
  /*stroke: currentColor;*/
  stroke-linecap: round;
  stroke-linejoin: round;
  /*stroke-width: 1.8;*/
  width: 30px;
}

.svg-fill-icon,
.svg-fill-icon path {
  stroke: none;
}

.header-dropdown svg.header-dropdown__icon--small {
  height: 13px;
  width: 13px;
}

.icon-button svg.icon-button__profile {
  height: 15px;
  width: 12px;
}

.header-dropdown {
  background: transparent;
  border-color: transparent;
  color: #6b7280;
  gap: 4px;
  max-width: 100%;
  padding: 10px;
}

.header-dropdown--labeled {
  height: 42px;
  justify-content: flex-start;
  padding: 8px 10px;
  width: auto;
}

.header-dropdown__label {
  color: var(--color-stone-600);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 9em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-dropdown__chevron {
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.header-search {
  display: none;
  margin: 0;
}

.site-header #search {
  margin: 0;
}

.icon-button--compare {
  display: none;
}

.mobile-panel {
  border-top: 1px solid rgba(214, 211, 209, 0.8);
  padding: 0 20px 18px;
}

.mobile-panel__nav {
  display: grid;
  gap: 8px;
}

.mobile-panel__nav a {
  background: var(--color-mobile-menu-bg);
  border: 1px solid var(--color-mobile-menu-border);
  border-radius: 14px;
  color: var(--color-mobile-menu-text);
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 14px 16px;
}

.mobile-search {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.mobile-search input,
.mobile-search button {
  border-radius: 14px;
  font-size: 16px;
  height: 48px;
}

.mobile-search input {
  border: 1px solid var(--color-stone-300);
  color: var(--color-stone-600);
  padding: 0 16px;
}

.mobile-search button {
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 600;
  padding: 0 18px;
}

.frontpage {
  background: var(--color-bg);
}

.hero-section {
  background: var(--color-bg);
  padding: 40px 12px 40px;
}

.hero-section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
}

.hero-banner {
  background:
    radial-gradient(70% 60% at 0% 100%, var(--color-footer-from) 0%, var(--color-footer-mid) 58%, var(--color-footer-to) 100%);
  border-radius: 14px;
  color: #ffffff;
  overflow: hidden;
  padding: 12px;
  width: 100%;
}

.hero-banner__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.hero-banner__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-banner__eyebrow,
.hero-banner__title {
  font-family: "Lora", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}

.hero-banner__eyebrow {
  color: var(--color-accent-soft);
  font-style: italic;
}

.hero-banner__title {
  color: var(--color-accent);
}

.hero-banner__image {
  align-self: center;
  height: 328px;
  overflow: visible;
  position: relative;
}

.hero-banner__image picture {
  display: contents;
}

.hero-banner__image img {
  display: block;
  height: 328px;
  left: 54%;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

.hero-banner__text {
  color: var(--color-stone-300);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  width: 100%;
}

.hero-banner__controls {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.hero-dots {
  display: flex;
  gap: 4px;
}

.hero-dots span,
.hero-dots button {
  background: var(--color-green);
  border-radius: 50%;
  display: block;
  height: 8px;
  opacity: 0.75;
  width: 8px;
}

.hero-dots .is-active,
.hero-dots button.is-active {
  background: var(--color-accent);
  opacity: 1;
}

.hero-button {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-stone-100);
  border-radius: 14px;
  color: var(--color-stone-600);
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  min-height: 42px;
  overflow: hidden;
  padding: 10px 16px 10px 19px;
  white-space: nowrap;
}

.hero-button span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
}

.hero-button svg {
  fill: none;
  height: 20px;
  stroke: var(--color-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 20px;
}

.hero-categories {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 318px;
}

.hero-category {
  align-items: center;
  background: var(--color-white);
  border-radius: 20px;
  color: #363130;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  min-height: 100px;
  padding: 8px 16px;
  text-align: center;
}

.hero-category__emoji {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  justify-content: center;
  line-height: 1;
  min-height: 0;
  width: 100%;
}

.hero-category__emoji img {
  display: block;
  height: 40px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.hero-category__label {
  color: #363130;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  width: 100%;
}

.hero-category--all svg {
  fill: none;
  height: 40px;
  stroke: var(--color-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  width: 40px;
}

.site-footer {
  background: var(--color-footer-to);
  -webkit-backdrop-filter: blur(64px);
  color: var(--color-footer-text);
  display: block;
  padding: 40px 12px;
}

.site-footer__inner {
  background: var(--color-white);
  border-radius: 14px;
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 1440px;
  padding: 20px;
  width: 100%;
}

.footer-brand,
.footer-nav,
.footer-social-card {
  min-width: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__logo {
  display: inline-flex;
  width: fit-content;
}

.site-footer__logo img {
  display: block;
  height: auto;
  max-height: 64px;
  max-width: 160px;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-card__label {
  color: var(--color-footer-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  opacity: 0.55;
  width: 100%;
}

.footer-nav-card__links {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.footer-nav-card__links a {
  border-radius: 14px;
  color: var(--color-footer-text);
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0;
  line-height: 20px;
  padding: 10px 19px;
  white-space: nowrap;
}

.footer-nav-card__contacts {
  color: var(--color-footer-text);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.footer-nav-card__contacts p {
  margin: 0;
}

.footer-nav-card__contacts a {
  color: var(--color-footer-text);
  text-decoration: none;
}

.footer-social-card {
  align-content: flex-start;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
}

.footer-social-card a {
  align-items: center;
  border-radius: 14px;
  color: var(--color-footer-text);
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 10px;
  width: 40px;
}

.footer-social-card img {
  display: block;
  height: 20px;
  width: 20px;
}

@media (min-width: 768px) {
  .site-header__bar {
    align-items: center;
    min-height: 76px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .site-header__group {
    gap: 12px;
  }

  .site-header__group--mobile {
    display: none;
  }

  .site-header__group--start {
    align-items: center;
    gap: 12px;
  }

  .header-dropdown__label {
    font-size: 15px;
    max-width: 12em;
  }

  .site-header__logo--text {
    display: flex;
  }

  .site-header__logo,
  .site-header__logo--both,
  .site-header__logo--text {
    align-items: center;
    align-self: center;
    height: 42px;
    line-height: 1;
  }

  .site-header__logo--both {
    max-width: min(52vw, 280px);
  }

  .site-header__logo--both .site-header__brand-name {
    display: flex;
    align-items: center;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header__actions {
    align-items: center;
    align-self: center;
    gap: 20px;
    height: 42px;
  }

  .icon-button--compare {
    display: inline-flex;
  }

  .header-search {
    display: inline-flex;
    flex: 0 0 42px;
    width: 42px;
  }

  .header-search button {
    align-items: center;
    background: transparent;
    color: var(--color-green);
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px;
  }

  .header-search input {
    display: none;
  }

  .mobile-panel {
    display: none;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer__inner {
    align-items: start;
    gap: 32px 24px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding: 28px 32px;
  }

  .site-footer__inner--cols-3 .footer-brand {
    grid-column: span 3;
  }

  .site-footer__inner--cols-3 .footer-nav {
    grid-column: span 6;
  }

  .site-footer__inner--cols-3 .footer-social-card {
    grid-column: span 3;
  }

  .site-footer__inner--cols-2 .footer-brand {
    grid-column: span 3;
  }

  .site-footer__inner--cols-2 .footer-nav {
    grid-column: span 9;
  }

  .site-footer__inner--cols-2 .footer-social-card {
    grid-column: span 3;
  }

  .site-footer__inner--cols-2 .footer-brand + .footer-social-card {
    grid-column: span 9;
  }

  .site-footer__inner--cols-1 > * {
    grid-column: span 12;
  }

  .footer-social-card {
    justify-content: flex-start;
  }


  .hero-banner {
    padding: 40px 40px 0;
  }

  .hero-banner__content {
    display: grid;
    gap: 40px;
    grid-template-columns: 253px minmax(0, 1fr);
  }

  .hero-banner__copy {
    align-self: end;
    grid-column: 2;
    grid-row: 1;
  }

  .hero-banner__image {
    align-self: stretch;
    grid-column: 1;
    grid-row: 1 / span 3;
    height: auto;
    min-height: 304px;
  }

  .hero-banner__image img {
    bottom: 0;
    height: 304px;
    left: 50%;
    top: auto;
  }

  .hero-banner__text {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-banner__controls {
    grid-column: 2;
    grid-row: 3;
    padding-bottom: 40px;
  }

  .hero-categories {
    gap: 24px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 304px;
  }

  .hero-category {
    min-height: 140px;
  }

  .hero-category__emoji {
    font-size: 56px;
  }

  .hero-category__emoji img {
    height: 56px;
  }

  .hero-category__label {
    font-size: 16px;
  }

  .hero-category--eye,
  .hero-category--doctor {
    grid-column: span 2;
  }

  .hero-category--tooth {
    grid-column: 3;
    grid-row: 1;
  }

  .hero-category--brain {
    grid-column: 4 / span 2;
    grid-row: 1;
  }

  .hero-category--lungs {
    grid-column: 3 / span 2;
    grid-row: 2;
  }

  .hero-category--all {
    grid-column: 5;
    grid-row: 2;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-section__inner {
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }

  .hero-banner {
    min-height: 468px;
    padding: 40px 40px 0;
  }

  .hero-banner__content {
    grid-template-columns: 253px minmax(0, 1fr);
    height: 100%;
  }

  .hero-banner__copy {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero-banner__image {
    grid-column: 1;
    grid-row: 2 / span 2;
    height: 304px;
    min-height: 304px;
  }

  .hero-banner__text {
    align-self: end;
    grid-column: 2;
    grid-row: 2;
  }

  .hero-banner__controls {
    align-self: end;
    grid-column: 2;
    grid-row: 3;
    padding-bottom: 40px;
  }

  .hero-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: 468px;
    min-height: 468px;
  }

  .hero-category--eye {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .hero-category--tooth {
    grid-column: 3;
    grid-row: 1;
  }

  .hero-category--brain {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-category--lungs {
    grid-column: 2 / span 2;
    grid-row: 2;
  }

  .hero-category--doctor {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .hero-category--all {
    grid-column: 3;
    grid-row: 3;
  }
}

.hero-banner .hero-slide {
  display: none;
}

.hero-banner .hero-slide.is-active {
  display: flex;
}

.top-products {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
  padding: 40px 12px;
}

.top-products__title {
  color: var(--color-stone-600);
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  width: 100%;
}

.top-products__viewport {
  border-radius: 18px;
  overflow: visible;
  width: 100%;
}

.top-products__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
}

.top-products__track::-webkit-scrollbar {
  display: none;
}

.product-card {
  background: #fdfcfa;
  border: 1px solid #f2e6cb;
  border-radius: 14px;
  display: flex;
  flex: 0 0 248px;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  scroll-snap-align: start;
  width: 248px;
}

.product-card__media {
  align-items: center;
  background: var(--color-white);
  display: flex;
  padding: 0 28px;
  position: relative;
  width: 100%;
}

.product-card__media::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.product-card__media > a {
  display: block;
  height: 100%;
  inset: 0 28px;
  position: absolute;
  width: calc(100% - 56px);
  z-index: 1;
}

.product-card__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-card__dots {
  align-items: center;
  bottom: 8px;
  display: flex;
  gap: 4px;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}

.product-card__dots span {
  background: #e7e5e4;
  border-radius: 50%;
  display: block;
  height: 8px;
  width: 8px;
}

.product-card__dots .is-active {
  background: #363130;
}

.product-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 48px;
  padding: 12px;
  width: 100%;
}

.product-card__main {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 0;
  width: 100%;
}

.product-card h3 {
  color: #47433e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 24px;
  margin: 0;
  max-height: 48px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover,
.product-card h3 a:focus {
  color: var(--color-green);
  text-decoration: none;
}

.product-card__price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  min-width: 0;
  position: relative;
  width: 100%;
}

.product-card__price strong {
  color: var(--color-green);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  white-space: nowrap;
}

.product-card__price span {
  color: #a6a09b;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card__price b {
  align-items: center;
  background: url(../image/custom/sale-ticket.svg) center / contain no-repeat;
  color: #f0fdf4;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  height: 51px;
  justify-content: center;
  line-height: 20px;
  padding: 9px 8px 17px 28px;
  position: absolute;
  right: -2px;
  top: -34px;
  white-space: nowrap;
  width: 84px;
}

.product-card__price b span {
  display: inline-block;
  transform: rotate(-9deg);
  color: #f0fdf4;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  top: 21%;
  left: 40%;
  position: absolute;
}

.product-card__actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.product-card__secondary {
  display: flex;
  gap: 8px;
}

.product-card__secondary button,
.product-card__cart {
  align-items: center;
  border-radius: 14px;
  display: flex;
  height: 42px;
  justify-content: center;
  padding: 10px;
}

.product-card__secondary button {
  background: var(--color-stone-100);
  border: 1px solid #e7e5e4;
  color: #79716b;
  width: 42px;
}

.product-card__cart {
  background: var(--color-green);
  border: 1px solid #00c951;
  color: var(--color-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  min-width: 88px;
  padding: 10px 16px;
  width: auto;
}

.product-card button svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
}

.product-card button svg.product-card__icon,
.product-card button svg.product-card__icon path {
  stroke: none;
}

.product-card button svg.product-card__icon--like {
  height: 15px;
  width: 16px;
}

.product-card button svg.product-card__icon--cart {
  height: 15px;
  width: 15px;
}

@media (min-width: 768px) {
  .hero-banner .hero-slide.is-active {
    display: grid;
  }

  .top-products {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-products__title {
    font-size: 32px;
    line-height: 40px;
  }

  .product-card {
    flex-basis: 320px;
    width: 320px;
  }
}

@media (min-width: 1024px) {
  .top-products {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.about-section {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 12px;
}

.about-section__title {
  color: var(--color-stone-600);
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  width: 100%;
}

.about-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) fit-content(138px);
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
}

.about-text-card,
.about-icon-card,
.about-image-card {
  border-radius: 14px;
  overflow: visible;
}

.about-text-card {
  color: #f4f4f5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-column: 1 / -1;
  padding: 20px;
}

.about-text-card--mission {
  background: var(--color-footer-mid);
}

.about-text-card--goals {
  background: var(--color-footer-to);
}

.about-text-card__head {
  align-items: center;
  display: flex;
  gap: 20px;
  width: 100%;
}

.about-text-card__head img {
  display: none;
  flex: 0 0 68px;
  height: 68px;
  width: 68px;
}

.about-text-card h3 {
  color: #f4f4f5;
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}

.about-text-card p {
  color: #d1d5dc;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: justify;
}

.about-icon-card {
  align-items: center;
  background: var(--color-footer-mid);
  display: flex;
  height: 108px;
  justify-content: center;
  padding: 20px;
}

.about-icon-card--target {
  background: var(--color-footer-to);
}

.about-icon-card img {
  display: block;
  height: 68px;
  width: 68px;
}

.about-image-card {
  min-height: 108px;
  position: relative;
}

.about-image-card picture {
  display: contents;
}

.about-image-card img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.about-image-card--capsules {
  background: var(--color-footer-to);
  height: 108px;
  justify-self: end;
  min-width: 138px;
  width: fit-content;
}

.about-image-card--capsules img {
  height: auto;
  left: 0;
  max-width: none;
  object-fit: contain;
  top: -35px;
  transform: none;
  width: 138px;
}

.about-image-card--wide-tree {
  background: var(--color-footer-mid);
  height: 110px;
}

.about-image-card--tall-tree {
  display: none;
}

.about-image-card--wide-tree img {
  height: auto;
  inset: auto;
  bottom: 0;
  left: 0;
  max-width: none;
  object-fit: contain;
  width: 138px;
}

.about-text-card--mission {
  grid-row: 2;
}

.about-image-card--wide-tree,
.about-icon-card--target {
  grid-row: 3;
}

.about-text-card--goals {
  grid-row: 4;
}

@media (min-width: 768px) {
  .about-section {
    gap: 40px;
    padding: 40px 20px;
  }

  .about-section__title {
    font-size: 32px;
    line-height: 40px;
  }

  .about-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: 228px 94px 216px;
  }

  .about-text-card__head img {
    display: block;
  }

  .about-text-card h3 {
    font-size: 32px;
    line-height: 40px;
  }

  .about-icon-card {
    display: none;
  }

  .about-text-card--mission {
    grid-column: 1 / span 5;
    grid-row: 1;
    padding-top: 0px;
  }

  .about-image-card--tall-tree {
    display: block;
    grid-column: 7 / span 2;
    grid-row: 1 / span 2;
    min-height: 0;
    overflow: visible;
  }

  .about-image-card--capsules {
    aspect-ratio: 335 / 168;
    grid-column: 4 / span 2;
    grid-row: 2;
    height: auto;
    justify-self: stretch;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    width: auto;
  }

  .about-image-card--wide-tree {
    grid-column: 1 / span 3;
    grid-row: 3;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .about-text-card--goals {
    background: var(--color-footer-to);
    grid-column: 4 / span 5;
    grid-row: 3;
  }

  .about-image-card--tall-tree img {
    height: 342px;
    inset: auto;
    bottom: 0;
    max-width: none;
    object-fit: contain;
    right: 0;
    width: auto;
  }

  .about-image-card--capsules img {
    height: auto;
    inset: auto;
    bottom: 0;
    left: -1px;
    max-width: none;
    object-fit: contain;
    top: auto;
    transform: none;
    width: calc(100% + 2px);
  }

  .about-image-card--wide-tree img {
    height: 327px;
    inset: auto;
    bottom: 0;
    left: 0;
    max-width: none;
    object-fit: contain;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .about-section {
    gap: 40px;
    padding: 40px;
  }

  .about-section__title {
    font-size: 32px;
    line-height: 40px;
  }

  .about-grid {
    gap: 20px;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
  }

  .about-text-card,
  .about-image-card {
    border-radius: 14px;
  }

  .about-text-card {
    gap: 20px;
    justify-content: flex-start;
    padding: 20px;
  }

  .about-text-card__head {
    gap: 20px;
  }

  .about-text-card__head img {
    flex-basis: 68px;
    height: 68px;
    width: 68px;
  }

  .about-text-card h3 {
    font-size: 32px;
    line-height: 40px;
  }

  .about-text-card p {
    font-size: 16px;
    line-height: 22px;
  }

  .about-image-card {
    overflow: visible;
  }

  .about-image-card img {
    height: auto;
    inset: auto;
    max-width: none;
    object-fit: contain;
    width: auto;
  }

  .about-text-card--mission {
    grid-column: 1 / span 4;
    grid-row: 1;
  }

  .about-image-card--tall-tree {
    background: var(--color-footer-mid);
    grid-column: 7 / span 2;
    grid-row: 1 / span 2;
    min-height: 0;
  }

  .about-image-card--tall-tree img {
    bottom: 0;
    right: 0;
    width: 501px;
  }

  .about-image-card--capsules {
    aspect-ratio: 335 / 168;
    background: var(--color-footer-to);
    grid-column: 4 / span 2;
    grid-row: 2;
    justify-self: stretch;
    min-height: 0;
    width: auto;
  }

  .about-image-card--capsules img {
    bottom: 0;
    left: -1px;
    transform: none;
    width: calc(100% + 2px);
  }

  .about-image-card--wide-tree {
    background: var(--color-footer-to);
    grid-column: 1 / span 4;
    grid-row: 3;
    min-height: 0;
  }

  .about-image-card--wide-tree img {
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .about-text-card--goals {
    background: var(--color-footer-to);
    grid-column: 5 / span 4;
    grid-row: 3;
  }
}

.innovative-section {
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
  padding: 40px 20px;
}

.innovative-section__title {
  color: var(--color-stone-600);
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  width: 100%;
}

.innovative-section__viewport {
  margin: 0 auto;
  max-width: 1440px;
  overflow: visible;
  width: 100%;
}

.innovative-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
}

.innovative-list::-webkit-scrollbar {
  display: none;
}

.innovative-card {
  display: flex;
  flex: 0 0 248px;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
  width: 248px;
}

.innovative-card__body {
  background: var(--color-white);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  padding: 8px;
  width: 100%;
}

.innovative-card__media {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.innovative-card__media::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.innovative-card__media img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.innovative-card__media--contain img {
  height: 87%;
  left: 16%;
  object-fit: contain;
  top: -4%;
  width: 59%;
}

.innovative-card__dots {
  align-items: center;
  bottom: 12px;
  display: flex;
  gap: 4px;
  justify-content: center;
  left: 12px;
  position: absolute;
  right: 12px;
}

.innovative-card__dots span {
  background: #e7e5e4;
  border-radius: 50%;
  display: block;
  height: 8px;
  width: 8px;
}

.innovative-card__dots .is-active {
  background: #47433e;
}

.innovative-card__content {
  color: #47433e;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  padding: 0 6px;
  width: 100%;
}

.innovative-card__content h3 {
  color: #47433e;
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.36px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.innovative-card__content p {
  color: #47433e;
  display: -webkit-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  min-height: 44px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.innovative-card__button {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-stone-100);
  border-radius: 14px;
  color: #79716b;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 100%;
}

.innovative-card__button svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
}

@media (min-width: 768px) {
  .innovative-card {
    flex-basis: 320px;
    width: 320px;
  }

  .innovative-section__title {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (min-width: 1024px) {
  .innovative-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.join-section {
  align-items: center;
  background: var(--color-footer-mid);
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
  padding: 40px 20px;
  position: relative;
}

.join-section__pattern {
  background: url("../image/custom/join-pattern.svg") center / contain no-repeat;
  height: 1424px;
  left: -401px;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 356px);
  width: 1423px;
}

.join-section__title,
.join-section__content {
  position: relative;
  z-index: 1;
}

.join-section__title {
  color: #f9fafb;
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  max-width: 644px;
  text-align: center;
  width: 100%;
}

.join-section__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 644px;
  width: 100%;
}

.join-section__text {
  background: #f9fafb;
  color: #364153;
  padding: 20px;
  width: 100%;
}

.join-section__text p {
  color: #364153;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: justify;
}

.join-section__button {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-stone-100);
  border-radius: 14px;
  color: var(--color-stone-600);
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  min-height: 42px;
  overflow: hidden;
  padding: 10px 16px 10px 19px;
  white-space: nowrap;
}

.join-section__button span {
  color: var(--color-stone-600);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  line-height: 20px;
}

.join-section__button svg {
  fill: none;
  height: 20px;
  stroke: var(--color-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
}

@media (min-width: 768px) {
  .join-section__title {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (min-width: 1024px) {
  .join-section {
    padding: 40px;
  }
}

@media (min-width: 1200px) {
  .header-search {
    border-color: var(--color-stone-100);
    flex: 1 1 200px;
    gap: 4px;
    max-width: 200px;
    padding: 0 16px;
    width: auto;
  }

  .header-search button {
    flex: 0 0 20px;
    height: 20px;
    width: 20px;
  }

  .header-search input {
    background: transparent;
    color: var(--color-stone-600);
    display: block;
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 20px;
    min-width: 0;
    padding: 0 3px;
  }

  .header-search input::placeholder {
    color: var(--color-stone-600);
    opacity: 1;
  }

  .hero-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-section__inner {
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }

  .hero-banner {
    min-height: 468px;
    padding: 40px 40px 0;
  }

  .hero-banner__content {
    grid-template-columns: 253px minmax(0, 1fr);
    height: 100%;
  }

  .hero-banner__copy {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero-banner__image {
    grid-column: 1;
    grid-row: 2 / span 2;
    height: 304px;
    min-height: 304px;
  }

  .hero-banner__text {
    align-self: end;
    grid-column: 2;
    grid-row: 2;
  }

  .hero-banner__controls {
    align-self: end;
    grid-column: 2;
    grid-row: 3;
    padding-bottom: 40px;
  }

  .hero-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: 516px;
    min-height: 468px;
  }

  .hero-category--eye {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .hero-category--tooth {
    grid-column: 3;
    grid-row: 1;
  }

  .hero-category--brain {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-category--lungs {
    grid-column: 2 / span 2;
    grid-row: 2;
  }

  .hero-category--doctor {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .hero-category--all {
    grid-column: 3;
    grid-row: 3;
  }
}
/* —— Account hub (personal cabinet cards) —— */
.account-hub__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}

.account-hub__lead {
  margin: 0 0 24px;
  max-width: 36em;
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-muted);
}

.account-hub__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.account-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  min-height: 72px;
  background: var(--color-surface);
  border: 1px solid var(--color-stone-300);
  border-radius: 14px;
  text-decoration: none !important;
  color: var(--color-text);
  box-shadow: 0 1px 2px rgba(44, 42, 40, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.account-card:hover,
.account-card:focus {
  border-color: var(--color-green);
  box-shadow: 0 4px 14px rgba(63, 111, 94, 0.12);
  color: var(--color-text);
  outline: none;
}

.account-card:active {
  transform: scale(0.99);
}

.account-card__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-green-soft);
  color: var(--color-green);
  font-size: 20px;
}

.account-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding-top: 2px;
}

.account-card__label {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

.account-card__desc {
  font-size: 13px;
  line-height: 1.35;
  color: var(--color-muted);
}

.account-card__cta {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-green-dark);
}

.account-card--mlm {
  grid-column: 1 / -1;
  padding: 18px;
  min-height: 88px;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(47, 86, 73, 0.28);
}

.account-card--mlm:hover,
.account-card--mlm:focus {
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 28px rgba(47, 86, 73, 0.36);
}

.account-card--mlm .account-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.account-card--mlm .account-card__label {
  font-size: 20px;
  color: #fff;
}

.account-card--mlm .account-card__desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.account-card--mlm .account-card__cta {
  color: #fff;
  font-size: 15px;
}

.list-group-item--mlm {
  font-weight: 700;
  color: var(--color-green-dark) !important;
  background: var(--color-green-soft);
}

@media (min-width: 576px) {
  .account-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .account-card {
    padding: 18px;
  }
}

@media (min-width: 992px) {
  .account-hub__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .account-hub__title {
    font-size: 32px;
  }
}
