@font-face {
  font-family: "Cygre";
  src: url("fonts/Cygre-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cygre";
  src: url("fonts/Cygre-SemiBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Cygre";
  src: url("fonts/Cygre-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

:root {
  --dark: #151517;
  --dark-2: #0d0d0f;
  --ink: #1b1b1d;
  --white: #ffffff;
  --paper: #f3efe6;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-dark: rgba(27, 27, 29, 0.68);
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(27, 27, 29, 0.16);
  --lime: #ebe691;
  --pink: #f6b0cf;
  --blue: #b0e2f5;
  --green: #d7e8b7;
  --panel: rgba(255, 255, 255, 0.055);
  --header-height: 82px;
  color-scheme: dark;
  font-family: "Cygre", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
  touch-action: manipulation;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--dark);
  color: var(--white);
  touch-action: manipulation;
  overflow-x: hidden;
}

#home {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

#catalog,
#product,
#checkout,
#delivery,
#reviews,
#account,
#seo,
#legal,
#seoPage {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 22% 12%, rgba(246, 176, 207, 0.14), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(176, 226, 245, 0.12), transparent 24%);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

a,
button,
input,
select,
textarea,
summary,
.product-card,
.blog-card,
.delivery-area-card,
.google-review-card,
.cart-button,
.sticky-cta {
  touch-action: manipulation;
}

button,
select {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

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

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 8, 10, 0.86);
  backdrop-filter: blur(22px);
}

.age-gate.hidden {
  display: none;
}

.age-gate__panel {
  width: min(100%, 640px);
  display: grid;
  gap: 22px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
}

.age-gate__panel img {
  width: 92px;
  opacity: 0.75;
}

.age-gate__panel h2 {
  font-size: clamp(46px, 7vw, 84px);
}

.age-gate__panel p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.age-gate__actions,
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 16px clamp(16px, 4vw, 62px);
  border-bottom: 1px solid var(--line);
  background: rgba(21, 21, 23, 0.82);
  backdrop-filter: blur(18px);
}

.logo {
  align-items: center;
  display: inline-flex;
}

.logo img {
  width: clamp(188px, 21vw, 360px);
  max-height: 54px;
  object-fit: contain;
}

.nav,
.header-actions {
  display: flex;
  align-items: center;
}

.nav {
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a:hover,
.kicker,
.breadcrumbs a:hover,
.internal-links a:hover,
.seo-links a:hover {
  color: var(--green);
}

.header-actions {
  gap: 12px;
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-switch_nav {
  display: none;
}

.language-current {
  width: 54px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
}

.language-current:hover,
.language-switch.open .language-current {
  border-color: var(--green);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  min-width: 96px;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.language-switch.open .language-menu {
  display: grid;
  gap: 4px;
}

.language-menu a {
  min-height: 34px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  padding: 0 8px;
  white-space: nowrap;
}

.language-menu a.active,
.language-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--green);
}

.button,
.pill-button,
.messenger-button,
.filters button,
.sticky-cta a,
.sticky-cta button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pill-button,
.button_light {
  background: var(--white);
  color: var(--dark);
}

.messenger-button,
.sticky-message {
  gap: 0;
}

.messenger-button img,
.sticky-message img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.messenger-button {
  width: 46px;
  height: 46px;
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.95);
  color: var(--white);
  padding: 0;
}

.messenger-button:hover {
  border-color: var(--green);
}

.button_outline {
  background: transparent;
  color: var(--white);
}

.button_dark {
  width: 100%;
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.cart-button,
.cart__close {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}

.cart-button {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.cart-button span:last-child {
  position: absolute;
  right: -5px;
  top: -6px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: var(--lime);
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
}

.cart-symbol {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(40px, 7vw, 86px) clamp(16px, 4vw, 62px) 48px;
  overflow: hidden;
}

.hero__content {
  max-width: 720px;
}

.kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 6.45vw, 104px);
  line-height: 0.86;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  font-size: clamp(36px, 5.2vw, 78px);
  line-height: 0.9;
}

h3 {
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1;
}

h1 span,
h2 span {
  background: linear-gradient(95deg, var(--pink), var(--lime), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__line {
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--white);
  white-space: nowrap;
}

.hero__line_holo {
  background: linear-gradient(95deg, var(--pink), var(--lime), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p:not(.kicker),
.checkout__copy p,
.delivery__content > p,
.legal-note {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero p:not(.kicker) {
  max-width: 560px;
  margin: 24px 0 0;
}

.hero__actions {
  margin-top: 34px;
}

.hero__image {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: end center;
}

.hero__image::before {
  display: none;
}

.hero__seal {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(58%, 420px);
  opacity: 0.82;
  transform: translate(-50%, -50%);
  filter: saturate(1.2) drop-shadow(0 0 36px rgba(176, 226, 245, 0.16));
}

@media (min-width: 961px) {
  .hero__image {
    place-items: center;
  }

  .hero__seal {
    inset: 43% auto auto 50%;
    width: clamp(430px, 30vw, 560px);
  }
}

.hero__mark {
  display: none;
}

.hero__image picture {
  display: none;
}

.hero__image picture img {
  width: min(92%, 640px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.58));
}

.catalog,
.product-detail,
.checkout,
.account,
.delivery,
.google-reviews,
.seo,
.legal,
.admin,
.seo-page,
.internal-links {
  padding: clamp(58px, 8vw, 108px) clamp(16px, 4vw, 62px);
}

.breadcrumbs {
  min-height: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 16px clamp(16px, 4vw, 62px) 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
}

.breadcrumbs:empty,
.seo-page:empty {
  display: none;
}

body.is-content-page .hero,
body.is-content-page .catalog,
body.is-content-page .product-detail,
body.is-content-page .checkout,
body.is-content-page .account,
body.is-content-page .delivery,
body.is-content-page .google-reviews,
body.is-content-page .seo,
body.is-content-page .legal,
body.is-content-page .admin {
  display: none;
}

body.is-product-detail .hero,
body.is-product-detail .catalog,
body.is-product-detail .checkout,
body.is-product-detail .account,
body.is-product-detail .delivery,
body.is-product-detail .google-reviews,
body.is-product-detail .seo,
body.is-product-detail .legal,
body.is-product-detail .admin,
body.is-product-detail .seo-page {
  display: none;
}

html.is-catalog-view .hero,
body.is-catalog-view .hero {
  display: none;
}

html.is-catalog-view .catalog,
body.is-catalog-view .catalog {
  padding-top: clamp(44px, 7vw, 84px);
}

.account-grid article,
.legal-grid article,
.seo-grid article,
.blog-grid article,
.admin-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-card__type,
.seo-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-grid p,
.legal-grid p,
.seo-grid p,
.blog-grid p,
.form-note,
details p,
.reviews p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.seo-page {
  max-width: 1120px;
  margin: 0 auto;
}

.seo-page__head,
.article-page {
  display: grid;
  gap: 18px;
}

.seo-page h1,
.article-page h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.seo-page h2,
.article-page h2 {
  margin: 26px 0 0;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: 0;
}

.seo-page h3,
.article-page h3 {
  margin: 16px 0 0;
  font-size: 22px;
  letter-spacing: 0;
}

.seo-page p,
.article-page p,
.faq-block p {
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.lead {
  font-size: 21px;
  color: var(--white);
}

.article-byline {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
}

.seo-copy,
.faq-block,
.delivery-areas,
.seo-links,
.internal-links {
  display: grid;
  gap: 16px;
}

.location-reference-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  max-width: 960px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.location-reference-list li {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  line-height: 1.35;
}

.faq-block details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--panel);
}

.seo-links,
.internal-links {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 24px;
}

.internal-links h2 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
}

.seo-links a,
.internal-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.delivery-areas {
  margin-top: 34px;
}

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

.delivery-area-grid article {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.delivery-area-grid article.active {
  border-color: rgba(215, 232, 183, 0.72);
  background: rgba(215, 232, 183, 0.08);
}

.hotel-page,
.hotel-section,
.hotel-copy {
  display: grid;
  gap: 28px;
}

.hotel-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.hotel-map h2,
.hotel-map p {
  margin: 0;
}

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

.hotel-facts div,
.hotel-grid article {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.hotel-facts span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hotel-facts strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}

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

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

.hotel-grid article {
  display: grid;
  gap: 12px;
}

.hotel-grid article.active {
  border-color: rgba(215, 232, 183, 0.72);
  background: rgba(215, 232, 183, 0.08);
}

.hotel-grid h3,
.hotel-grid p {
  margin: 0;
}

.prescription-page {
  display: grid;
  gap: 38px;
}

.prescription-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(22px, 3.2vw, 38px);
  align-items: start;
}

.prescription-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 4.35vw, 78px);
  line-height: 0.98;
  overflow-wrap: break-word;
}

.prescription-hero .lead {
  max-width: 760px;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.prescription-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.prescription-offer,
.trust-grid article,
.process-grid article {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.prescription-offer {
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.prescription-offer img {
  width: 100%;
  height: auto;
  max-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  background: var(--white);
}

.prescription-offer span,
.trust-grid span,
.process-grid strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.prescription-offer strong {
  font-size: clamp(44px, 4.8vw, 64px);
  line-height: 0.9;
}

.prescription-offer p {
  font-size: 17px;
  line-height: 1.45;
}

.prescription-offer p,
.trust-grid p,
.process-grid p {
  margin: 0;
}

.prescription-offer a {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(215, 232, 183, 0.38);
  border-radius: 8px;
  background: rgba(215, 232, 183, 0.08);
}

.partner-proof h2,
.partner-proof p,
.partner-proof dl,
.partner-proof dd {
  margin: 0;
}

.partner-proof > div {
  display: grid;
  align-content: start;
  gap: 14px;
}

.partner-proof a {
  width: fit-content;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-proof dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.partner-proof dl div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.partner-proof dt {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-proof dd {
  color: var(--white);
  line-height: 1.35;
}

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

.process-grid .seo-page__head {
  grid-column: 1 / -1;
}

.process-grid article {
  min-height: 210px;
}

.process-grid strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.prescription-copy a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fear-articles {
  display: grid;
  gap: 18px;
}

.delivery-area-grid h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
}

.delivery-area-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.area-link {
  align-self: end;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-app,
.account-dashboard {
  display: grid;
  gap: 18px;
}

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

.account-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

.account-card h3 {
  font-size: clamp(24px, 3vw, 42px);
}

.account-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.account-auth,
.account-mini-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-auth > div,
.account-auth .form-note,
.account-auth button {
  grid-column: 1 / -1;
}

.account-mini-form label,
.account-auth label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-mini-form input,
.account-mini-form select,
.account-mini-form textarea,
.account-auth input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}

.account-mini-form textarea {
  padding-top: 12px;
  resize: vertical;
}

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

.account-list__item {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.account-list__item strong {
  font-size: 16px;
  text-transform: uppercase;
}

.account-list__item span,
.account-list__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading,
.shop__header,
.admin {
  display: grid;
  gap: 28px;
}

.product-card:hover,
.seo-grid article:hover {
  border-color: rgba(176, 226, 245, 0.58);
  box-shadow: 0 20px 70px rgba(176, 226, 245, 0.1);
}

.shop__header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.shop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.search input,
.sort select,
.variant-row select,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.promo input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}

.search input {
  width: min(340px, 42vw);
  border-radius: 999px;
  padding-inline: 20px;
}

.sort select,
.variant-row select {
  color: var(--white);
}

select option {
  color: var(--ink);
}

.checkout-form textarea {
  min-height: 92px;
  padding-top: 14px;
  resize: vertical;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.filters button {
  background: transparent;
  color: var(--white);
}

.filters button.active {
  background: var(--white);
  color: var(--dark);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  height: 100%;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card__image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #000;
}

.product-card__photo {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.product-card__image img {
  display: block;
  width: 100%;
  height: clamp(240px, 19vw, 360px);
  object-fit: contain;
  transition: transform 0.45s ease;
}

.product-card__image:hover img {
  transform: scale(1.015);
}

.product-card__gallery-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.product-card__gallery-control:hover {
  border-color: var(--white);
  background: rgba(0, 0, 0, 0.58);
}

.product-card__gallery-control_prev {
  left: 10px;
}

.product-card__gallery-control_next {
  right: 10px;
}

.product-card__image span {
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 8px 11px;
  background: linear-gradient(95deg, var(--pink), var(--lime), var(--blue));
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card__body {
  display: grid;
  align-content: start;
  gap: 12px;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
}

.product-card__meta li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

.product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  margin-top: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.product-rating small,
.product-rating_empty span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}

.review-stars .active {
  color: #f4d96c;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 20px;
  font-weight: 900;
}

.price-row small {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.product-card .button {
  width: 100%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.product-detail,
.delivery {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

@media (min-width: 961px) {
  .product-detail {
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 0.78fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: clamp(22px, 2.4vw, 34px);
    min-height: calc(100vh - 82px);
    padding-top: clamp(24px, 3vw, 42px);
    padding-bottom: clamp(24px, 3vw, 42px);
    overflow-x: clip;
  }

  .product-detail__media {
    position: static;
    align-self: start;
    max-height: none;
  }

  .product-gallery > img {
    height: clamp(360px, 48vh, 540px);
    max-height: calc(100vh - 300px);
    aspect-ratio: auto;
  }

  .product-thumbs {
    grid-auto-rows: minmax(74px, 11vh);
  }

  .product-thumbs img {
    height: 100%;
    aspect-ratio: auto;
  }

  .product-detail__content {
    align-content: start;
    gap: clamp(12px, 1.3vw, 18px);
    min-width: 0;
  }

  .product-related {
    margin-top: clamp(12px, 2.4vw, 34px);
  }

  .product-detail__content h1 {
    max-width: 100%;
    font-size: clamp(42px, 4.9vw, 82px);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  .product-detail__content p {
    max-width: 720px;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.34;
  }

  .detail-specs,
  .detail-variants {
    gap: 8px;
  }

  .detail-specs span,
  .detail-variants label {
    padding: 8px 11px;
  }
}

@media (min-width: 961px) {
  .product-detail[data-product-category="Prescription"] {
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 0.74fr);
    align-items: start;
  }

  .product-detail[data-product-category="Prescription"] .product-gallery > img {
    height: clamp(360px, 48vh, 560px);
    width: auto;
    max-width: min(100%, 460px);
    object-fit: contain;
    background: var(--white);
  }

  .product-detail[data-product-category="Prescription"] .product-detail__content h1 {
    font-size: clamp(42px, 4.6vw, 78px);
    line-height: 0.95;
  }

  .product-detail[data-product-category="Prescription"] .product-detail__content {
    max-width: 780px;
  }
}

.product-detail[data-product-category="Prescription"] .product-gallery {
  display: grid;
  place-items: center;
  background: rgba(14, 15, 17, 0.05);
}

.product-detail[data-product-category="Prescription"] .product-thumbs button {
  background: rgba(14, 15, 17, 0.06);
}

.product-detail[data-product-category="Prescription"] .product-thumbs img {
  background: var(--white);
}

.product-detail .kicker,
.delivery .kicker {
  color: var(--ink);
}

.product-gallery > img,
.delivery__map img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
}

.product-detail__media {
  display: grid;
  gap: 12px;
}

.product-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #101012;
}

.product-gallery > img {
  display: block;
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(17, 17, 19, 0.72);
  color: var(--white);
  transform: translateY(-50%);
}

.gallery-control_prev {
  left: 14px;
}

.gallery-control_next {
  right: 14px;
}

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

.product-thumbs button {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: #101012;
}

.product-thumbs button.active {
  border-color: var(--green);
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: contain;
}

.product-detail__content,
.delivery__content,
.checkout__copy,
.checkout-form {
  display: grid;
  gap: 22px;
}

.product-detail__content p,
.delivery__content > p {
  color: var(--muted-dark);
}

.detail-specs,
.detail-variants,
.zone-grid,
.admin-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-specs span,
.detail-variants label,
.zone-grid span {
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--ink);
}

.detail-variants label {
  background: rgba(14, 15, 17, 0.06);
  font-weight: 800;
  text-transform: none;
  cursor: pointer;
}

.detail-variants input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.detail-variants label.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.product-back {
  min-height: 46px;
  width: fit-content;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-back:hover {
  background: transparent;
  color: var(--ink);
}

.product-related {
  grid-column: 1 / -1;
  display: grid;
  gap: 34px;
  padding-top: 18px;
}

.related-group {
  display: grid;
  gap: 18px;
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.related-heading h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  text-transform: uppercase;
}

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

.related-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 13px;
  min-width: 0;
}

.related-card__image {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #111113;
}

.related-card__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.related-card__image span {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 999px;
  padding: 7px 9px;
  background: linear-gradient(95deg, var(--pink), var(--lime), var(--blue));
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card div {
  display: grid;
  gap: 7px;
}

.related-card p,
.related-card h3 {
  margin: 0;
}

.related-card p {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card h3 {
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

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

.related-card .button {
  width: 100%;
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.reviews {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
}

.reviews p,
.delivery details p {
  color: var(--muted-dark);
}

.reviews-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.reviews-head strong,
.review-form > strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  text-transform: uppercase;
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 900;
}

.reviews-summary .review-stars {
  color: rgba(24, 24, 27, 0.22);
}

.customer-review-list {
  display: grid;
  gap: 12px;
}

.customer-review {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(24, 24, 27, 0.03);
}

.customer-review__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.customer-review__top > div {
  display: grid;
  gap: 5px;
}

.customer-review__top span,
.reviews-summary small {
  color: var(--muted-dark);
  font-size: 13px;
}

.customer-review .review-stars {
  color: rgba(24, 24, 27, 0.22);
}

.verified-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(24, 24, 27, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-photos img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
}

.reviews-empty {
  margin: 0;
}

.review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.review-form > strong,
.review-form .span-2,
.review-form .review-message {
  grid-column: 1 / -1;
}

.review-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.review-form textarea {
  min-height: 110px;
  resize: vertical;
}

.review-photo-placeholder input:disabled {
  color: var(--muted-dark);
  background: rgba(255, 255, 255, 0.55);
}

.review-form .button {
  width: fit-content;
  min-width: 180px;
}

.review-message {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 34px;
  align-items: start;
}

.checkout-summary {
  display: grid;
  gap: 9px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.checkout-summary span {
  color: var(--muted);
}

.checkout-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.checkout-form label,
.promo {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.span-2 {
  grid-column: 1 / -1;
}

.account {
  display: grid;
  gap: 30px;
}

.account-grid,
.legal-grid,
.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.account-grid article,
.legal-grid article,
.seo-grid article,
.blog-grid article {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.account-grid strong {
  font-size: 22px;
  text-transform: uppercase;
}

.delivery details {
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}

.delivery summary {
  font-weight: 900;
  text-transform: uppercase;
}

.google-reviews {
  display: grid;
  gap: 34px;
  background: var(--paper);
  color: var(--ink);
}

.google-reviews .kicker {
  color: var(--ink);
}

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

.google-review-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.google-review-card h3,
.google-review-card p,
.google-review-card ul,
.google-review-card blockquote {
  margin: 0;
}

.google-review-card h3 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}

.google-review-card > div:first-child span,
.google-review-card p {
  color: var(--muted-dark);
  line-height: 1.45;
}

.google-review-card__top {
  display: grid;
  gap: 8px;
}

.google-review-card__top p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.google-review-card blockquote {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.google-review-card blockquote footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 800;
}

.google-review-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.google-review-card__rating {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 9px 12px;
}

.google-review-card__rating strong {
  color: #4285f4;
}

.google-review-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.google-review-card li {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.google-review-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.google-review-card__actions .button {
  width: 100%;
  border-color: var(--ink);
  color: var(--ink);
}

.google-review-card__actions .button_dark {
  color: var(--white);
}

.seo {
  background: var(--dark-2);
}

.seo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.blog-grid {
  margin-top: 22px;
}

.blog-grid img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: 8px;
}

.blog-grid img.document-image {
  padding: 10px;
  background: var(--white);
  object-fit: contain;
}

.blog-card-link {
  display: grid;
  gap: 16px;
  height: 100%;
}

.blog-card-link span {
  align-self: end;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-grid {
  margin-top: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-note {
  margin: 24px 0 0;
  padding: 20px;
  border: 1px solid rgba(235, 230, 145, 0.4);
  border-radius: 8px;
}

.admin {
  display: none;
  background: var(--paper);
  color: var(--ink);
}

.admin .kicker {
  color: var(--ink);
}

.admin-grid span {
  background: rgba(27, 27, 29, 0.04);
  border-color: var(--line-dark);
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.cart {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  justify-content: end;
  background: rgba(0, 0, 0, 0.58);
}

.cart.open {
  display: flex;
}

.cart__panel {
  width: min(100%, 480px);
  height: 100dvh;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
  color: var(--dark);
}

.cart__header,
.cart__footer {
  padding: 24px;
}

.cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dedede;
}

.cart__header h2 {
  font-size: 34px;
}

.cart__close {
  width: 44px;
  height: 44px;
  border-color: #dedede;
  border-radius: 50%;
  color: var(--dark);
  font-size: 22px;
}

.cart__items {
  padding: 10px 24px;
  overflow: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
}

.cart-line img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-line strong {
  display: block;
  margin-bottom: 6px;
}

.cart-line span {
  color: rgba(21, 21, 23, 0.64);
}

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

.qty button {
  width: 30px;
  height: 30px;
  border: 1px solid #dedede;
  border-radius: 50%;
  background: white;
  color: var(--dark);
}

.cart__footer {
  display: grid;
  gap: 16px;
  border-top: 1px solid #dedede;
}

.promo input {
  border-color: #dedede;
  background: #f7f7f7;
  color: var(--dark);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
}

.empty {
  color: rgba(255, 255, 255, 0.64);
  padding: 34px 0;
  text-align: center;
}

.cart .empty {
  color: rgba(28, 28, 30, 0.64);
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 40;
  display: none;
  grid-template-columns: 56px 56px minmax(0, 1fr);
  gap: 10px;
}

.sticky-cta a,
.sticky-cta button {
  min-height: 52px;
  gap: 7px;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.sticky-cta button span {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark);
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .account-grid,
  .review-widget,
  .legal-grid,
  .seo-grid,
  .delivery-area-grid,
  .hotel-facts,
  .hotel-grid,
  .prescription-hero,
  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .language-switch_nav {
    display: inline-flex;
  }

  .language-switch_nav .language-current {
    height: 34px;
    width: 48px;
    border-color: rgba(255, 255, 255, 0.18);
    background: var(--white);
    font-size: 12px;
  }

  .language-switch_nav .language-menu {
    left: 0;
    right: auto;
  }

  .hero,
  .product-detail,
  .checkout,
  .delivery,
  .hotel-map,
  .prescription-hero,
  .partner-proof {
    grid-template-columns: 1fr;
  }

  .hero__image {
    min-height: 240px;
    place-items: center;
  }

  .hero__seal {
    width: min(42vw, 240px);
  }

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

}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 118px;
  }

  #home {
    scroll-margin-top: 118px;
  }

  #catalog,
  #product,
  #checkout,
  #delivery,
  #reviews,
  #account,
  #seo,
  #legal {
    scroll-margin-top: 136px;
  }

  body {
    padding-bottom: 128px;
  }

  .header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 13px 16px 12px;
    gap: 12px;
  }

  .logo {
    justify-self: center;
  }

  .logo img {
    width: min(76vw, 270px);
  }

  .header-actions {
    display: none;
  }

  .nav {
    grid-column: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, auto)) 72px;
    justify-content: center;
    align-items: center;
    gap: 9px 17px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 12px;
    line-height: 1;
    scrollbar-width: none;
  }

  .nav > a {
    text-align: center;
    white-space: nowrap;
  }

  .nav > a:nth-child(1) {
    grid-column: 1;
  }

  .nav > a:nth-child(2) {
    grid-column: 2;
  }

  .nav > a:nth-child(3) {
    grid-column: 3;
  }

  .nav > a:nth-child(4) {
    grid-column: 4;
  }

  .nav > a:nth-child(5) {
    grid-column: 1;
  }

  .nav > a:nth-child(6) {
    grid-column: 2;
  }

  .nav > a:nth-child(7) {
    grid-column: 3;
  }

  .nav > a:nth-child(8) {
    grid-column: 4;
  }

  .language-switch_nav {
    grid-column: 5;
    grid-row: 2;
    justify-self: center;
  }

  .language-switch_nav .language-current {
    width: 64px;
    height: 52px;
    font-size: 13px;
  }

  .language-switch_nav .language-menu {
    left: auto;
    right: 0;
  }

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

  .hotel-facts,
  .hotel-grid,
  .hotel-grid_compact {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(43px, 14.2vw, 64px);
    line-height: 0.9;
    overflow-wrap: normal;
  }

  .hero {
    min-height: auto;
    grid-template-areas:
      "copy"
      "media";
    gap: 10px;
    padding-top: 32px;
    padding-bottom: 30px;
  }

  .hero__content {
    grid-area: copy;
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: visible;
  }

  .hero__line {
    width: 100%;
    max-width: 100%;
  }

  .hero__image {
    grid-area: media;
    min-height: 174px;
    display: grid;
    place-items: center;
    margin: 16px -16px 8px;
  }

  .hero__image::before {
    inset: auto 26% 12% 26%;
    height: 38%;
    border-radius: 46% 46% 0 0;
  }

  .hero__seal {
    display: block;
    position: relative;
    inset: auto;
    width: clamp(148px, 42vw, 176px);
    opacity: 0.8;
    transform: none;
    filter: saturate(1.15) drop-shadow(0 0 28px rgba(176, 226, 245, 0.16));
  }

  .hero__mark {
    display: none;
  }

  .hero__image picture img {
    width: min(62vw, 230px);
    max-height: 172px;
  }

  .hero__image picture {
    display: none;
  }

  .hero p:not(.kicker) {
    max-width: 31rem;
    margin-top: 18px;
    font-size: 17px;
  }

  .hero__actions {
    display: none;
  }

  .product-grid,
  .related-grid,
  .blog-grid,
  .shop__header,
  .checkout-form,
  .account-grid,
  .account-dashboard,
  .account-auth,
  .account-mini-form,
  .review-form,
  .review-widget,
  .legal-grid,
  .seo-grid,
  .delivery-area-grid,
  .partner-proof dl,
  .trust-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .account {
    gap: 18px;
  }

  .account-app,
  .account-dashboard {
    gap: 14px;
  }

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

  .account-card h3 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 0.98;
  }

  .account-card__top {
    display: grid;
    gap: 12px;
  }

  .account-card__top .button {
    justify-self: start;
    min-height: 42px;
    padding-inline: 18px;
  }

  .account-mini-form label,
  .account-auth label {
    gap: 7px;
    min-width: 0;
    font-size: 12px;
    line-height: 1.12;
  }

  .account-mini-form input,
  .account-mini-form select,
  .account-mini-form textarea,
  .account-auth input {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 16px;
  }

  .account-mini-form textarea {
    min-height: 96px;
  }

  .account-auth button,
  .account-mini-form button,
  .review-form button,
  .account-mini-form .span-2 {
    grid-column: 1;
  }

  .account-auth button,
  .account-mini-form button,
  .review-form .button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
    line-height: 1.05;
    text-align: center;
  }

  .reviews-head,
  .customer-review__top {
    display: grid;
  }

  .review-form .span-2,
  .review-form .review-message {
    grid-column: 1;
  }

  .product-grid {
    gap: 16px;
    padding-bottom: 104px;
  }

  .product-card {
    gap: 8px;
    padding: 8px;
    scroll-margin-bottom: 126px;
  }

  .product-card__image img {
    height: clamp(300px, 46svh, 390px);
  }

  .product-card__gallery-control {
    width: 36px;
    height: 36px;
    border-width: 2px;
    font-size: 19px;
  }

  .product-card__gallery-control_prev {
    left: 8px;
  }

  .product-card__gallery-control_next {
    right: 8px;
  }

  .product-card__image span {
    right: 9px;
    top: 9px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .product-card__body {
    gap: 6px;
  }

  .product-card__type {
    font-size: 12px;
  }

  .product-card h3 {
    font-size: clamp(23px, 7.8vw, 30px);
    line-height: 0.96;
  }

  .product-card__meta {
    gap: 7px;
  }

  .product-card__meta li {
    padding: 6px 8px;
    font-size: 11px;
  }

  .variant-row select {
    min-height: 40px;
  }

  .price-row {
    font-size: 17px;
  }

  .product-card .button {
    min-height: 40px;
  }

  .google-review-card__actions {
    grid-template-columns: 1fr;
  }

  .shop-controls {
    justify-content: stretch;
  }

  .search,
  .sort,
  .search input {
    width: 100%;
  }

  .cart-line {
    grid-template-columns: 58px 1fr;
  }

  .cart-line img {
    width: 58px;
    height: 58px;
  }

  .product-detail {
    gap: 16px;
    max-width: 100vw;
    padding-top: 18px;
    overflow-x: clip;
  }

  .product-detail__media {
    gap: 10px;
    min-width: 0;
    max-width: 100%;
  }

  .product-detail__content,
  .product-related {
    min-width: 0;
    max-width: 100%;
  }

  .product-gallery {
    height: min(68svh, calc(100vw - 32px));
    max-height: 560px;
  }

  .product-gallery > img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .gallery-control {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .product-thumbs {
    grid-auto-flow: column;
    grid-auto-columns: 76px;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .product-thumbs img {
    height: 76px;
    aspect-ratio: 1;
  }

  .qty {
    grid-column: 2;
    justify-content: start;
  }

  .sticky-cta {
    display: grid;
    grid-template-columns: 56px 56px minmax(0, 1fr);
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .sticky-cta a,
  .sticky-cta button {
    min-height: 56px;
    padding-inline: 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .sticky-message {
    width: 56px;
    padding: 0;
  }

  .sticky-message img {
    width: 34px;
    height: 34px;
  }

  body.is-home-hero .sticky-cta {
    display: none;
  }

  body.is-product-detail .sticky-cta {
    display: none;
  }

  body.is-checkout-view .sticky-cta {
    display: none;
  }
}
