@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap");

:root {
  --gold: #b89761;
  --gold-dark: #a88450;
  --ink: #072708;
  --muted: #666;
  --paper: #f7f3ed;
  --soft: #f7f3ed;
  --white: #fff;
  --page-pad: clamp(28px, 4.45vw, 64px);
  --wide-pad: clamp(28px, 2.6vw, 37.5px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Figtree", Arial, sans-serif;
  letter-spacing: 0;
}

body.is-subpage {
  background: linear-gradient(110deg, #ffffff 0%, #ffffff 100%);
}

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

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

.page {
  min-width: 320px;
  overflow: hidden;
}

.top-strip {
  align-items: center;
  background: var(--gold);
  color: var(--white);
  display: flex;
  font-size: 14px;
  font-weight: 300;
  gap: 20px;
  height: 32px;
  justify-content: center;
  letter-spacing: .28px;
  line-height: 1.4;
  white-space: nowrap;
}

.top-strip i {
  background: var(--white);
  border-radius: 50%;
  display: block;
  height: 3px;
  width: 3px;
}

.site-header {
  color: var(--white);
  left: 0;
  position: absolute;
  right: 0;
  top: 32px;
  z-index: 10;
}

.is-subpage .site-header {
  background: linear-gradient(110deg, #ffffff 0%, #ffffff 100%);
  color: var(--ink);
  position: relative;
  top: 0;
}

.is-subpage .nav a {
  color: var(--ink);
}

.is-subpage .cart {
  background: rgba(184, 151, 97, .12);
  border-color: rgba(184, 151, 97, .45);
  color: var(--ink);
}

.is-subpage .menu-toggle img {
  filter: invert(1);
}

.is-subpage .language-toggle img {
  content: url("../img/svet_dark.svg");
}

.is-subpage .cart img {
  content: url("../img/kosarica.svg");
}


.hero {
  background-image: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 62%, rgba(0,0,0,.05) 100%), linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0) 22%), url("../img/hero-bg.png");
  background-position: center 45%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  color: var(--white);
  min-height: 800px;
  position: relative;
}

.hero::after {
  background: rgba(164, 125, 91, .38);
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  position: absolute;
}

.nav,
.hero-inner {
  position: relative;
  z-index: 1;
}

.nav {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 80px;
  padding: 18px 40px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 3px;
  width: 36px;
}

.menu-toggle img {
  height: 24px;
  width: 24px;
}

.nav-group {
  align-items: center;
  display: flex;
  gap: 28px;
  transform: translateY(-6px);
  text-transform: uppercase;
}

.nav-group.right {
  gap: 34px;
  justify-content: flex-end;
  transform: translateY(-18px);
}

.nav-group-left {
  transform: translateY(-18px);
}

.nav a.active {
  font-weight: 700;
}

.nav a {
  font-size: 14px;
  font-weight: 400;
  line-height: 25.6px;
}

.brand {
  align-self: start;
  border-radius: 50%;
  height: 92px;
  margin-top: -2px;
  overflow: hidden;
  width: 92px;
}

.brand img {
  height: 100%;
  margin: 0;
  max-width: none;
  width: 100%;
}

.language-switch {
  position: relative;
}

.language-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  font: inherit;
  gap: 7px;
  height: 34px;
  padding: 0;
  text-transform: uppercase;
}

.language-toggle img {
  height: 16px;
  width: 16px;
}

.language-menu {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(184,151,97,.28);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  color: var(--ink);
  display: grid;
  gap: 2px;
  min-width: 72px;
  opacity: 0;
  padding: 6px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 30;
}

.language-menu a {
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
  padding: 8px 10px;
}

.language-menu a:hover {
  background: rgba(184,151,97,.14);
}

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

.cart,
.button.glass {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.36);
}


.cart {
  align-items: center;
  border-radius: 100px;
  display: flex;
  gap: 10px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  padding: 0 19px;
  text-transform: none;
}

.cart img {
  height: 16px;
  width: 13px;
}

.cart span {
  transform: translateY(1px);
}

.mobile-menu {
  background: var(--white);
  color: #000;
  display: none;
  height: 100vh;
  inset: 0;
  min-height: 100vh;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 20;
}

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

.mobile-menu-bar {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 176px;
  padding: 32px 42px 0;
}

.menu-close {
  background: transparent;
  border: 0;
  color: rgba(0,0,0,.3);
  font-family: inherit;
  font-size: 54px;
  font-weight: 300;
  justify-self: start;
  line-height: 1;
  padding: 0;
}

.mobile-menu-brand {
  border-radius: 50%;
  display: block;
  height: 100px;
  overflow: hidden;
  width: 100px;
}

.mobile-menu-brand img {
  height: 100%;
  margin: 0;
  max-width: none;
  width: 100%;
}

.mobile-menu-cart {
  align-items: center;
  border: 2px solid #dedede;
  border-radius: 999px;
  display: flex;
  gap: 4px;
  height: 74px;
  justify-content: center;
  justify-self: end;
  position: relative;
  width: 122px;
}

.mobile-menu-cart img {
  filter: brightness(0);
  height: 28px;
  width: 23px;
}

.mobile-menu-cart span {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 20px;
  font-weight: 600;
  height: 31px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 27px;
  top: 21px;
  width: 31px;
}

.mobile-menu-links {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding: 50px 24px 0;
}

.mobile-menu-links a {
  color: #000;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.mobile-menu-contact {
  border-top: 2px solid #dedede;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
  left: 0;
  padding: 46px 40px 54px;
  position: absolute;
  width: 100%;
}

.mobile-menu-contact a {
  align-items: center;
  color: #000;
  display: flex;
  font-size: 34px;
  gap: 32px;
  justify-content: center;
  line-height: 1.2;
  text-transform: none;
}

.mobile-menu-contact span {
  color: var(--gold);
  font-size: 32px;
  min-width: 38px;
}

.hero-inner {
  align-items: flex-end;
  display: grid;
  gap: clamp(24px, 4vw, 58px);
  grid-template-columns: minmax(440px, 515px) minmax(560px, 624px);
  justify-content: space-between;
  min-height: 780px;
  padding: 52px var(--page-pad) 28px;
}

.hero-copy {
  border-radius: 40px;
  justify-self: start;
  max-width: 515px;
  padding: 38px 38px 38px 20px;
  width: 100%;
}

.hero-copy h1 {
  font-size: clamp(56px, 4.45vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 20px;
}

.hero-copy h1 span {
  font-weight: 300;
}

.hero-copy p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.48%;
  margin: 0;
}

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

.hero-copy .button {
  font-weight: 300;
}

.button {
  align-items: center;
  border-radius: 100px;
  display: inline-flex;
  font-size: 16px;
  height: 54px;
  justify-content: center;
  line-height: 24px;
  padding: 0 32px;
  white-space: nowrap;
}

.button.primary {
  background: var(--gold);
  color: var(--white);
}

.button.glass {
  background: rgba(30, 30, 30, 0.28);
  color: var(--white);
}

.button.small {
  font-size: 16px;
  height: 36px;
  padding: 0 24px;
}

.categories > .button.small {
  font-weight: 400;
  height: 54px;
  margin-top: 10px;
  font-size: 16px;
  width: 214px;
  line-height: 24px;
  color: #ffffff;
  font-style: regular;
  padding: 14px 32px 14px 32px;
}

.button.outline {
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  height: 42px;
  padding: 0 22px;
}

.hero-products,

.hero-inner .placeholder-products-list {
  display: flex;
  gap: 12px;
  justify-self: end;
  max-width: 624px;
  padding-bottom: 16px;
  width: 100%;
}

.hero-products-items {
  display: contents;
}

.mini-card {
  background: var(--white);
  border-radius: 14px;
  color: black;
  display: flex;
  flex: 0 1 200px;
  flex-direction: column;
  max-width: 200px;
  min-width: 0;
  overflow: hidden;
}

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

.mini-card-image {
  aspect-ratio: 200 / 244;
  display: block;
  flex: 0 0 auto;
  height: auto;
  overflow: hidden;
}

.mini-card img {
  height: 100%;
  object-position: center 45%;
  width: 100%;
}

.mini-card h2,
.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.mini-card p,
.product-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  margin: 4px 0 0;
}

.mini-card h2,
.mini-card p {
  padding-left: 16px;
  padding-right: 16px;
}

.mini-card h2 {
  font-size: 15px;
  padding-top: 8px;
}

.mini-card p {
  font-size: 13px;
  padding-bottom: 8px;
}

.intro {
  background: var(--white);
  min-height: 369px;
  padding: 100px var(--wide-pad) 40px;
}

.intro > p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.43;
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.values {
  align-items: center;
  border: 0;
  border-radius: 999px;
  display: grid;
  column-gap: clamp(26px, 3.6vw, 52px);
  grid-template-columns: minmax(280px, max-content) 4px minmax(420px, max-content) 4px minmax(360px, max-content);
  justify-content: center;
  margin: 30px auto 0;
  max-width: none;
  min-height: 122px;
  padding: 36px 74px;
}

.values article {
  align-items: center;
  display: flex;
  gap: 24px;
}

.wave-separator {
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='50' viewBox='0 0 4 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 0 C0.7 4.2 0.7 8.4 2 12.5 C3.3 16.6 3.3 20.8 2 25 C0.7 29.2 0.7 33.4 2 37.5 C3.3 41.6 3.3 45.8 2 50' stroke='%23E0CFB8' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 4px 50px;
  display: block;
  height: 50px;
  width: 4px;
}

.value-icon {
  flex: 0 0 50px;
  height: 50px;
  object-fit: contain;
  width: 50px;
}

.values h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.38;
  margin: 0;
}

.categories {
  background: var(--white);
  padding: 80px var(--page-pad) 90px;
  text-align: center;
}

.categories h2,
.featured h2,
.faq h2 {
  font-size: 56px;
  font-weight: 399;
  line-height: 1.2;
  margin: 0;
}

.categories h2 {
  font-size: 42px;
  font-weight: 375;
}

.category-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin: 40px auto 34px;
  max-width: none;
}

.category-card {
  aspect-ratio: 312.25 / 211;
  border-radius: 16px;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: left;
}

.category-card::before {
  background: linear-gradient(
    180deg,
    rgba(25, 18, 10, 0) 0%,
    rgba(25, 18, 10, 0) 42%,
    rgba(73, 52, 27, .16) 58%,
    rgba(129, 95, 52, .38) 76%,
    rgba(174, 135, 78, .72) 100%
  );
  bottom: 0;
  content: "";
  inset: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}

.category-card > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.category-card-link {
  align-items: center;
  bottom: 17px;
  color: var(--white);
  display: inline-flex;
  font-size: 17px;
  font-weight: 500;
  gap: 8px;
  justify-content: space-between;
  left: 20px;
  position: absolute;
  right: 18px;
  text-decoration: none;
  z-index: 2;
}

.category-card-link img {
  display: block;
  flex: 0 0 auto;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
  position: relative;
  width: 24px;
  z-index: 3;
}

.category-card .category-card-link span {
  color: inherit;
  font: inherit;
  position: static;
}

.featured {
  background: linear-gradient(110deg, #faf8f4 0%, #ffffff 100%);
  padding: 100px var(--page-pad) 80px;
}

.section-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 48px;
  max-width: none;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 300;
  max-width: 430px;
}

.section-heading .button.outline {
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 45px rgba(7, 39, 8, .06);
  color: var(--ink);
  font-size: 14px;
  height: 50px;
  padding: 0 30px;
}

.product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: none;
  opacity: 1;
  transition: opacity .16s ease;
}

.product-grid.is-changing {
  opacity: 0;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.product-card[hidden] {
  display: none;
}

.product-image {
  aspect-ratio: 309.25 / 378;
  background: #f3f3f3;
  overflow: hidden;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  width: 100%;
}

.product-info {
  padding: 16px;
}

.product-buyline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.price {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.cart-mark {
  align-items: center;
  background: #f7f3ed;
  border-radius: 50%;
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.product-info .add-cart {
  align-items: center;
  background: var(--gold);
  border-radius: 100px;
  color: var(--white);
  gap: 8px;
  display: flex;
  font-size: 13px;
  height: 34px;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}

.product-slider-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 28px auto 0;
  max-width: none;
}

.slider-page {
  color: var(--gold);
  font-size: 15px;
  font-weight: 400;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  align-items: center;
  background: #d1b077;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 24px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.story {
  align-items: center;
  display: flex;
  min-height: 720px;
  padding: 80px var(--page-pad) 80px clamp(34px, 5.4vw, 78px);
  overflow: hidden;
  position: relative;
}

.story::before {
  background-image: url("../img/story.png");
  background-position: center 48%;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(-1);
}

.story-panel {
  background: var(--white);
  border-radius: 20px;
  margin-left: 0;
  max-width: 593px;
  padding: clamp(40px, 6vw, 84px) clamp(28px, 4vw, 54px) clamp(40px, 5.4vw, 76px) clamp(28px, 3.3vw, 46px);
  position: relative;
  transform: translateX(8px);
  width: 100%;
  z-index: 1;
  gap: 39px;
  radius: 40px;
  height: auto;
}

.story-panel h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.16;
  margin: 0 0 24px;
  max-width: 100%;
}

.story-panel p {
  font-size: 16px;
  line-height: 25.6px;
  margin: 0 0 32px;
  max-width: 100%;
  color: #5c5f6a;
  letter-spacing: -0.48px;
  font-weight: 400;
}

.story-panel .button {
  height: 54px;
  min-width: 220px;
  padding: 0 32px;
}

.button.primary.story-button {
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.faq {
  background: var(--white);
  min-height: 1017px;
  padding: 100px 20px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px auto;
  max-width: 656px;
}

.faq-item {
  background: var(--soft);
  border: 0;
  border-radius: 20px;
  color: var(--ink);
  overflow: hidden;
  text-align: left;
  width: 100%;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  font: inherit;
  justify-content: space-between;
  min-height: 76px;
  padding: 20px 30px;
  text-align: left;
  width: 100%;
}

.faq-question h3 {
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  margin: 0;
}

.faq-question span {
  color: rgba(7,39,8,.38);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .3s ease, opacity .25s ease;
}

.faq-answer p {
  color: #5c5f6a;
  font-size: 16px;
  line-height: 25.6px;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0 30px;
  font-weight: 400;
  letter-spacing: -0,48px;
  font-family: "Figtree", Arial, sans-serif;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-question {
  min-height: 64px;
  padding-bottom: 6px;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 26px;
}

.faq-more {
  gap: 10px;
  padding: 0 18px 0 24px;
}

.faq-more span {
  font-size: 16px;
  line-height: 1;
}

.bottom-cta {
  align-items: flex-start;
  background-image: linear-gradient(rgba(184, 151, 97, .18), rgba(184, 151, 97, .18)), url("../img/background3.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  min-height: 571px;
  padding-top: 160px;
}

.cta-card {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 80px;
  text-align: center;
}

.cta-card h2 {
  color: black;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 32px;
}

.footer {
  background: var(--gold);
  color: var(--white);
  min-height: 336px;
  padding: 54px var(--page-pad) 26px;
  text-transform: uppercase;
}

.footer-top,
.footer-bottom {
  align-items: center;
  margin: 0 auto;
  max-width: none;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, auto) minmax(70px, 1fr);
  padding-bottom: 72px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-contact {
  align-items: center;
  align-self: center;
  display: flex;
  gap: 46px;
  grid-column: 1;
  grid-row: 1;
}

.footer-contact img {
  border-radius: 50%;
  height: 149px;
  width: 149px;
}

.footer-contact p {
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 12px;
}

.footer-contact p:first-child {
  color: rgba(255,255,255,.5);
  font-weight: 600;
}

.footer-contact-line {
  margin: 0 0 12px;
}

.footer-contact-line a {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 6px;
  line-height: 1.2;
  margin-top: 0;
  text-decoration: none;
  white-space: nowrap;
}

.footer-contact-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  flex: 0 0 13px;
  height: 13px;
  width: 13px;
}

.footer-contact-phone {
  background-image: url("../img/telefon_desktop.svg");
}

.footer-contact-mail {
  background-image: url("../img/mail_desktop.svg");
}

.footer-contact a {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 8px;
  text-transform: none;
}

.footer-contact-line a {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 0;
}

.footer-nav {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 13px;
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
  justify-self: start;
  text-align: left;
  transform: translateX(120px);
}

.footer .social {
  align-self: center;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.footer-nav div {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
}

.footer-nav-row-mobile {
  display: none !important;
}

.footer-nav a,
.footer-nav span,
.footer-bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}

.footer-nav span {
  color: rgba(255,255,255,.55);
}

.social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  
}

.social a {
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  height: 32px;
  justify-content: center;
  text-transform: none;
  width: 32px;
  padding-top: 7px;
  display: flex;
  padding-bottom: 7px;
}

.social img {
  height: 16px;
  object-fit: contain;
  width: 16px;
 

}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 36px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

@media (max-width: 1100px) {
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .products-mobile-actions {
    display: none;
  }

  .nav {
    grid-template-columns: 1fr auto 1fr;
    height: 142px;
    padding: 28px 42px 0;
  }

  .menu-toggle {
    align-self: start;
    display: flex;
    justify-self: start;
  }

  .nav-group-left {
    display: none;
  }

  .nav-group.right {
    display: contents;
  }

  .nav-group.right > a:not(.cart),
  .language-switch {
    display: none;
  }

  .brand {
    height: 108px;
    margin-top: 0;
    width: 108px;
  }

  .brand img {
    height: 100%;
    margin: 0;
    width: 100%;
  }

  .cart {
    border: 2px solid rgba(255,255,255,.22);
    height: 74px;
    justify-self: end;
    padding: 0;
    position: relative;
    width: 122px;
  }

  .cart img {
    height: 28px;
    width: 23px;
  }

  .cart span {
    align-items: center;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    font-size: 0;
    height: 31px;
    justify-content: center;
    position: absolute;
    right: 27px;
    top: 21px;
    transform: none;
    width: 31px;
  }

  .cart span::after {
    color: var(--white);
    content: "2";
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
  }

  .mobile-menu {
    display: block;
  }

  .hero-inner,
  .section-heading,
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer {
    min-height: 0;
    padding: 28px 14px 22px;
    text-align: center;
  }

  .footer-top {
    align-items: center;
    display: flex;
    gap: 18px;
    padding-bottom: 22px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 13px;
  }

  .footer-contact img {
    height: 110px;
    width: 110px;
  }

  .footer-contact p {
    margin: 0 0 9px;
  }

  .footer-contact a {
    margin-top: 8px;
  }

  .social {
    flex-direction: row;
    gap: 18px;
    justify-content: center;
  }

  .footer-nav {
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    text-align: center;
    transform: none;
    width: 353px;
    height: 96px;
  }

  .footer-nav div {
    flex-wrap: nowrap;
    gap: 12px 18px;
    justify-content: center;
  }

  .footer-nav-row-desktop {
    display: none !important;
  }

  .footer-nav-row-mobile {
    display: flex !important;
  }

  .footer-nav a,
  .footer-nav span {
    font-weight: 300;
  }

  .footer-nav a {
    white-space: nowrap;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 14px;
    padding-top: 15px;
    text-align: left;
    width: 100%;
  }

  .footer-bottom p {
    max-width: 220px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 12px 24px;
  }

  .hero-inner {
    align-items: start;
    gap: 34px;
    grid-template-columns: 1fr;
    justify-content: start;
    min-height: auto;
    padding: 132px 42px 64px;
  }

  .hero-copy {
    max-width: 690px;
    padding: 0;
  }

  .hero-products,

  .hero-inner .placeholder-products-list {
    justify-self: stretch;
    max-width: 620px;
    padding-bottom: 0;
    width: 100%;
  }

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

  .values {
    border-radius: 28px;
    grid-template-columns: 1fr;
    justify-content: stretch;
    padding: 30px;
  }

  .wave-separator {
    display: none;
  }
}

@media (max-width: 760px) {
  .top-strip {
    font-size: 12px;
    gap: 10px;
  }

  .hero {
    min-height: 900px;
    background-position: center top;
    background-size: cover;
  }

  .hero-inner {
    justify-items: stretch;
    padding: 156px 30px 64px 20px;
  }

  .nav {
    grid-template-columns: 1fr auto 1fr;
    height: 118px;
    align-items: center;
    justify-items: stretch;
    padding: 20px 28px 0;
  }

  .menu-toggle {
    align-self: center;
    height: 38px;
    justify-self: start;
    width: 38px;
  }

  .menu-toggle span {
    height: 2px;
    width: 24px;
  }

  .brand {
    height: 90px;
    width: 90px;
  }

  .brand img {
    height: 100%;
    margin: 0;
    width: 100%;
  }

  .cart {
    height: 34px;
    justify-self: end;
    margin-top: 0;
    width: 64px;
  }

  .cart img {
    height: 14px;
    width: 12px;
  }

  .cart span {
    height: 18px;
    right: 12px;
    top: 7px;
    width: 18px;
  }

  .cart span::after {
    font-size: 12px;
  }

  .mobile-menu-bar {
    height: 128px;
    padding: 24px 28px 0;
  }

  .menu-close {
    font-size: 42px;
  }

  .mobile-menu-brand {
    height: 86px;
    width: 86px;
  }

  .mobile-menu-brand img {
    height: 100%;
    margin: 0;
    width: 100%;
  }

  .mobile-menu-cart {
    height: 58px;
    width: 100px;
  }

  .mobile-menu-cart img {
    height: 23px;
    width: 19px;
  }

  .mobile-menu-cart span {
    font-size: 16px;
    height: 25px;
    right: 22px;
    top: 16px;
    width: 25px;
  }

  .mobile-menu-links {
    gap: 24px;
    padding-top: 30px;
  }

  .mobile-menu-links a {
    font-size: 31px;
  }

  .mobile-menu-contact {
    gap: 22px;
    padding: 26px 24px 30px;
  }

  .mobile-menu-contact a {
    font-size: 22px;
    gap: 22px;
  }

  .hero-copy {
    border-radius: 28px;
    justify-self: stretch;
    max-width: none;
    padding: 0;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.16;
    max-width: none;
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-products,

  .hero-inner .placeholder-products-list {
    gap: 10px;
    max-width: none;
    overflow-x: hidden;
    padding-bottom: 8px;
    width: 100%;
  }

  .mini-card {
    border-radius: 12px;
    flex: 0 0 calc((100% - 20px) / 3);
  }

  .mini-card h2,
  .mini-card p {
    padding-left: clamp(8px, 2.5vw, 12px);
    padding-right: clamp(8px, 2.5vw, 12px);
  }

  .mini-card h2 {
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.2;
    padding-top: 8px;
  }

  .mini-card p {
    font-size: clamp(10px, 2.6vw, 12px);
    line-height: 1.25;
    margin-top: 3px;
    padding-bottom: 8px;
  }

  .intro,
  .categories,
  .featured,
  .faq,
  .story,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer {
    padding: 28px 15px 21px;
  }

  .footer-contact img {
    height: 110px;
    width: 110px;
  }

  .footer-nav {
    margin-top: 18px;
    max-width: 280px;
  }

  .footer-nav div {
    gap: 13px 17px;
  }

  .footer-bottom {
    margin-top: 0;
  }

  .intro > p {
    font-size: 22px;
  }

  .intro > p br {
    display: none;
  }

  .values,
  .product-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .story {
    align-items: flex-end;
    min-height: 560px;
  }

  .cta-card {
    margin: 0 20px;
    padding: 42px 28px;
  }

  .cta-card h2 {
    font-size: 34px;
  }

  .footer-contact {
    align-items: center;
    flex-direction: column;
    gap: 13px;
  }
}

/* Mobile menu drawer */
.mobile-menu {
  background: #fff;
  color: #111;
  overflow: hidden;
}

.mobile-menu.is-open {
  display: flex;
  flex-direction: column;
}

.mobile-menu-bar {
  flex: 0 0 auto;
  height: 78px;
  padding: 17px 25px 0;
}

.menu-close {
  color: rgba(0,0,0,.35);
  font-size: 32px;
  font-weight: 300;
}

.mobile-menu-brand {
  height: 48px;
  width: 48px;
}

.mobile-menu-brand img {
  height: 100%;
  margin: 0;
  width: 100%;
}

.mobile-menu-cart {
  border: 1px solid #dedede;
  height: 33px;
  width: 62px;
}

.mobile-menu-cart img {
  filter: brightness(0);
  height: 14px;
  width: 12px;
}

.mobile-menu-cart span {
  font-size: 12px;
  height: 20px;
  right: 11px;
  top: 6px;
  width: 20px;
}

.mobile-menu-links {
  flex: 1 1 auto;
  gap: 17px;
  justify-content: flex-start;
  padding: 18px 24px 24px;
}

.mobile-menu-links a {
  color: #0a0a0a;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.mobile-menu-footer {
  border-top: 1px solid #e7e7e7;
  flex: 0 0 auto;
}

.mobile-menu-contact {
  border-top: 0;
  bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  left: auto;
  padding: 20px 24px 22px;
  position: static;
  width: 100%;
}

.mobile-menu-contact a {
  align-items: center;
  color: #111;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 14px;
  justify-content: center;
  line-height: 1.2;
  text-transform: none;
}

.mobile-menu-contact img {
  height: 14px;
  width: 14px;
}

.mobile-menu-languages {
  align-items: center;
  border-top: 1px solid #e7e7e7;
  display: flex;
  gap: 27px;
  justify-content: center;
  min-height: 58px;
  padding: 16px 20px 17px;
}

.mobile-menu-languages img {
  height: 15px;
  width: 15px;
}

.mobile-menu-languages a {
  color: #8f8f8f;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-menu-languages a.active {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .mobile-menu-bar {
    height: 78px;
    padding: 17px 25px 0;
  }

  .menu-close {
    font-size: 32px;
  }

  .mobile-menu-brand {
    height: 48px;
    width: 48px;
  }

  .mobile-menu-brand img {
    height: 100%;
    margin: 0;
    width: 100%;
  }

  .mobile-menu-cart {
    height: 33px;
    width: 62px;
  }

  .mobile-menu-cart img {
    height: 14px;
    width: 12px;
  }

  .mobile-menu-cart span {
    font-size: 12px;
    height: 20px;
    right: 11px;
    top: 6px;
    width: 20px;
  }

  .mobile-menu-links {
    gap: 17px;
    padding: 18px 24px 24px;
  }

  .mobile-menu-links a {
    font-size: 20px;
  }

  .mobile-menu-contact {
    gap: 18px;
    padding: 20px 24px 22px;
  }

  .mobile-menu-contact a {
    font-size: 14px;
    gap: 14px;
  }
}
.mobile-menu {
  height: 100dvh;
  min-height: 100dvh;
  width: 100%;
}

.mobile-menu-links {
  min-height: 0;
  width: 100%;
}

.mobile-menu-links a {
  display: block;
  text-transform: lowercase !important;
  width: 100%;
}

.mobile-menu-links a::first-letter {
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .mobile-menu-links {
    gap: 18px;
    padding: 26px 24px 24px;
  }
}
.mobile-menu-links {
  padding-top: 10px;
}

.mobile-menu-links a {
  font-weight: 500;
}

@media (max-width: 760px) {
  .mobile-menu-links {
    padding-top: 10px;
  }

  .mobile-menu-links a {
    font-weight: 500;
    size: 22px;
    line-height: 120%;
    letter-spacing: 0.5%;
  }
}
.mobile-menu-links {
  padding-top: 50px;
}

@media (max-width: 760px) {
  .mobile-menu-links {
    padding-top: 36px;
  }
}
.mobile-menu-links {
  gap: 24px;
}

@media (max-width: 760px) {
  .mobile-menu-links {
    gap: 24px;
  }
}
@media (min-width: 1101px) {
  .nav-group a,
  .language-toggle,
  .cart {
    font-weight: 300;
  }
}
.mobile-menu-contact a {
  align-items: center;
}

.mobile-menu-contact img {
  height: 16px;
  width: 16px;
  transform: translateY(1px);
}
.mobile-menu-contact a {
  display: grid;
  grid-template-columns: 18px auto;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
}

.mobile-menu-contact img {
  display: block;
  height: 16px;
  width: 16px;
  justify-self: center;
  transform: none;
}
.mobile-menu-contact img {
  transform: translateY(-2px);
}
.mobile-menu-cart span {
  font-size: 10px;
  height: 18px;
  right: 9px;
  top: 6px;
  width: 18px;
}

@media (max-width: 760px) {
  .mobile-menu-cart span {
    font-size: 10px;
    height: 18px;
    right: 9px;
    top: 6px;
    width: 18px;
  }
}
.mobile-menu-cart span {
  right: 12px;
  top: 4px;
}

@media (max-width: 760px) {
  .mobile-menu-cart span {
    right: 12px;
    top: 4px;
  }
}
.mobile-menu-cart span {
  height: 14px;
  width: 14px;
}

@media (max-width: 760px) {
  .mobile-menu-cart span {
    height: 14px;
    width: 14px;
  }
}
.mobile-menu-cart img {
  height: 16px;
  width: 14px;
}

@media (max-width: 760px) {
  .mobile-menu-cart img {
    height: 16px;
    width: 14px;
  }
}
@media (max-width: 760px) {
  .cart img {
    height: 16px;
    width: 14px;
  }

  .cart span {
    height: 14px;
    right: 12px;
    top: 4px;
    width: 14px;
  }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .cart {
    height: 42px;
    width: 78px;
  }

  .cart img {
    height: 16px;
    width: 14px;
  }

  .cart span {
    height: 20px;
    right: 14px;
    top: 10px;
    width: 20px;
  }

  .cart span::after {
    font-size: 12px;
  }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .nav {
    align-items: center;
  }

  .menu-toggle {
    align-self: center;
    height: 42px;
    width: 42px;
  }
}

@media (max-width: 1100px) {
  .footer-contact-info {
    text-align: center;
    font-size: 14px;
  }

  .footer-contact-line {
    text-align: center;
    text-transform: none;
  }

  .footer-contact-line a {
    justify-content: center;
  }
}

.button.primary.small.faq-more{
  padding: 14px 32px 14px 32px;
  height: 54px;
}

@media (min-width: 761px) and (max-width: 1010px) {
  .hero {
    background-position: center top;
    background-size: cover;
  }
}


/* za produkte dale */
.products-page {
  background: var(--white);
  color: var(--ink);
  padding: 32px var(--page-pad) 90px;
}

.products-breadcrumb {
  box-sizing: border-box;
  color: #888;
  display: flex;
  font-size: 12px;
  gap: 6px;
  margin: 0 auto 44px;
  max-width: 1320px;
  padding-left: 40px;
  padding-right: 40px;
}

.products-breadcrumb a:hover,
.products-card h2 a:hover {
  color: var(--gold-dark);
}

.products-layout {
  box-sizing: border-box;
  display: grid;
  gap: clamp(36px, 5vw, 78px);
  grid-template-columns: 240px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1320px;
  padding: 20px 40px 40px;
}

.products-filters {
  min-width: 0;
}

.products-filter-heading {
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
}

.products-filter-heading h2 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 140%;
  margin: 0;
}

.products-filter-heading button {
  background: none;
  border: 0;
  color: #999;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  padding: 0;
  text-decoration: underline;
}

.products-filters fieldset {
  border: 0;
  border-bottom: 1px solid #ececec;
  margin: 0;
  padding: 22px 0;
}

.products-filters fieldset:last-child {
  border-bottom: 0;
}

.products-filters legend {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.48%;
  line-height: 150%;
  margin-bottom: -10px;
  padding-top: 20px;
}

.products-filters label {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  gap: 12px;
  padding-bottom: 8px;
  padding-top: 8px;
}

.products-filters legend + label {
  padding-top: 4px;
}

.products-filters input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 1px solid #B3B3B3;
  border-radius: 4px;
  cursor: pointer;
  flex: 0 0 18px;
  height: 18px;
  margin: 0;
  position: relative;
  width: 18px;
}

.products-filters input[type="checkbox"]:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.products-filters input[type="checkbox"]:checked:after {
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  height: 8px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  width: 4px;
}

.products-mobile-actions {
  display: none;
}

.products-content {
  min-width: 0;
  padding: 20px 40px 40px;
}

.products-toolbar {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: -8px 0 28px;
}

.products-toolbar h1 {
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 18px;
}

.products-toolbar p {
  color: #999;
  font-size: 12px;
  margin: 0;
}

.products-sort {
  align-items: center;
  color: #999;
  display: flex;
  font-size: 16px;
  gap: 0;
}

.products-sort-menu {
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  position: relative;
}

.products-sort-menu summary,
.products-mobile-dropdown > summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 6px;
  list-style: none;
}

.products-sort-menu summary {
  padding: 7px 0 7px 2px;
}

.products-sort-menu summary::-webkit-details-marker,
.products-mobile-dropdown > summary::-webkit-details-marker {
  display: none;
}

.products-sort-menu summary:after,
.products-mobile-dropdown > summary:after {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23002211' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 10px 6px;
  content: "";
  display: block;
  height: 6px;
  margin-left: 2px;
  width: 10px;
}

.products-sort-menu[open] summary:after,
.products-mobile-dropdown[open] > summary:after {
  transform: rotate(180deg);
}

.products-sort-options {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  min-width: 170px;
  overflow: hidden;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 20;
}

.products-sort-options button {
  background: transparent;
  border: 0;
  border-radius: 7px;
  color: var(--ink);
  cursor: pointer;
  display: block;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  text-align: left;
  width: 100%;
}

.products-sort-options button:hover,
.products-sort-options button:first-child {
  background: var(--gold);
  color: var(--white);
}

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

.products-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.products-card-image {
  align-items: center;
  aspect-ratio: 1 / 1.14;
  background: linear-gradient(145deg, #fbfcfd, #eef2f6);
  display: flex;
  justify-content: center;
  margin-bottom: 13px;
  overflow: hidden;
  position: relative;
}

.products-card-image img {
  object-fit: cover;
  height: 100%;
  max-width: 100%;
  transition: transform .25s ease;
  width: 100%;
}

.products-card:hover .products-card-image img {
  transform: scale(1.025);
}

.products-badge {
  align-items: center;
  background: #ef5046;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 9px;
  font-weight: 600;
  height: 45px;
  justify-content: center;
  left: 18px;
  line-height: 1.05;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 18px;
  transform: rotate(-8deg);
  width: 45px;
  z-index: 1;
}

.products-card h2 {
  font-family: 'Figtree', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.46%;
  line-height: 130%;
  margin: 0 5px 5px;
}

.products-card h2 a {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.products-card > p {
  color: #666666;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.46%;
  line-height: 130%;
  margin: 0 5px 7px;
}

.products-card-price {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: auto 5px 8px;
  min-height: 26px;
}

.products-card-price strong {
  color: #000000;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.46%;
  line-height: 130%;
}

.products-card-price.is-discounted strong {
  font-size: 18px;
}

.products-card-price del {
  color: #a5a5a5;
  font-size: 13px;
  font-weight: 400;
}

.products-card-discount {
  background: #bd985c;
  border-radius: 5px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 7px;
}

.products-add-cart {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 14px;
  justify-content: center;
  letter-spacing: -0.46%;
  line-height: 130%;
  min-height: 38px;
  padding: 8px 14px;
  transition: background .2s ease;
}

.products-cart-icon {
  display: block;
  flex: 0 0 auto;
  height: 19px;
  margin-right: 8px;
  object-fit: contain;
  width: 19px;
}

.products-add-cart:hover {
  background: var(--gold-dark);
}

.products-add-cart.is-disabled {
  background: #e5e5e5;
  color: #666;
  cursor: not-allowed;
}

.products-switch .products-switch-text {
  left: -9999px;
  position: absolute;
}

.products-switch input {
  height: 1px !important;
  opacity: 0;
  position: absolute;
  width: 1px !important;
}

.products-switch-track {
  background: #ccc;
  border-radius: 999px;
  display: block;
  height: 24px;
  position: relative;
  transition: background .2s ease;
  width: 40px;
}

.products-switch-track:after {
  background: var(--white);
  border-radius: 50%;
  content: "";
  height: 16px;
  left: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .2s ease;
  width: 16px;
}

.products-switch input:checked + .products-switch-track {
  background: var(--gold);
}

.products-switch input:checked + .products-switch-track:after {
  transform: translate(16px, -50%);
}

.drobni_tisk p {
  color: #5c5f6a;
  font-size: 15px;
  font-weight: 399;
  letter-spacing: -0.48px;
  line-height: 25.6px;
  margin: 0;
}

.drobni_tisk h1 {
  color: #000000;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 100%;
  margin: 0 0 16px;
  padding-top: 30px;
}

@media (max-width: 1200px) {
  .products-page,
  .products-page * {
    box-sizing: border-box;
  }

  .products-page {
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;
  }

  .products-breadcrumb,
  .products-layout {
    max-width: none;
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
  }

  .products-breadcrumb {
    margin-bottom: 28px;
  }

  .products-layout {
    display: block;
    padding-bottom: 34px;
    padding-top: 0;
  }

  .products-layout > .products-filters,
  .products-toolbar > .products-sort {
    display: none;
  }

  .products-content {
    padding: 0;
  }

  .products-mobile-actions {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-bottom: 22px;
    max-width: 100%;
    position: relative;
    width: 100%;
    z-index: 30;
  }

  .products-mobile-dropdown {
    min-width: 0;
    position: relative;
  }

  .products-mobile-dropdown > summary {
    background: var(--white);
    border: 1px solid #e5e5e5;
    color: var(--ink);
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 130%;
    min-height: 40px;
    padding: 7px 16px;
    width: 100%;
  }

  .products-mobile-filter[open] {
    z-index: 80;
  }

  .products-mobile-filter[open]::after {
    background: rgba(0, 0, 0, .28);
    bottom: 0;
    content: "";
    left: min(500px, calc(100vw - 34px));
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 60;
  }

  .products-mobile-filter[open] > summary {
    align-items: center;
    background: var(--white);
    border: 0;
    color: transparent;
    display: flex;
    font-size: 0;
    height: 42px;
    justify-content: center;
    min-height: 42px;
    padding: 0;
    position: fixed;
    left: calc(min(500px, calc(100vw - 34px)) - 60px);
    right: auto;
    top: 22px;
    width: 42px;
    z-index: 90;
  }

  .products-mobile-filter[open] > summary:after {
    background-image: none;
    color: var(--ink);
    content: "×";
    font-size: 30px;
    height: 42px;
    line-height: 38px;
    text-align: center;
    margin: 0;
    transform: none;
    width: 42px;
  }

  .products-mobile-panel .products-filter-heading {
    padding-right: 54px;
  }

  .products-mobile-panel {
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-left: 0;
    border-radius: 0 14px 14px 0;
    bottom: 0;
    box-shadow: 16px 0 34px rgba(0, 0, 0, .14);
    left: 0;
    margin: 0;
    max-width: calc(100vw - 34px);
    min-width: 0;
    overflow-y: auto;
    padding: 22px 18px 40px;
    position: fixed;
    top: 0;
    width: min(500px, calc(100vw - 34px));
    z-index: 70;
  }

  .products-mobile-sort .products-sort-options {
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .14);
    left: auto;
    margin-top: 8px;
    max-width: 100%;
    min-width: 0;
    padding: 8px;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 40;
  }

  .products-mobile-sort .products-sort-options button {
    font-size: 16px;
    padding: 12px 14px;
  }

  .products-mobile-panel.products-filters {
    height: auto;
  }

  .products-mobile-panel form {
    display: block;
  }

  .products-toolbar {
    align-items: flex-start;
    margin: 0 0 26px;
  }

  .products-toolbar h1 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .products-toolbar p {
    font-size: 14px;
  }

  .products-grid {
    display: grid;
    gap: 42px 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .products-card,
  .products-card-image,
  .products-add-cart {
    max-width: 100%;
    min-width: 0;
  }

  .products-card-image {
    
    background: transparent;
    border: 0;
    margin-bottom: 14px;
  }

  .products-card h2 {
    font-size: 15px;
    margin: 0 0 4px;
  }

  .products-card > p {
    font-size: 11px;
    line-height: 125%;
    margin: 0 0 6px;
  }

  .products-card-price {
    gap: 5px 7px;
    margin: auto 0 8px;
  }

  .products-card-price.is-discounted strong {
    font-size: 16px;
  }

  .products-card-discount {
    font-size: 10px;
    padding: 5px 6px;
  }

  .products-add-cart {
    font-size: 11px;
    min-height: 34px;
    padding: 7px 10px;
  }

  .products-cart-icon {
    height: 14px;
    margin-right: 6px;
    width: 14px;
  }
}


.pdetail-page {
  color: #0b2f16;
  font-family: 'Figtree', sans-serif;
  margin: 0 auto;
  max-width: 1440px;
  padding: 16px 44px 64px;
}

.pdetail-page * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.pdetail-breadcrumb {
  align-items: center;
  color: #8c8c8c;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 7px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.pdetail-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.pdetail-breadcrumb a:hover {
  color: #0b2f16;
}

.pdetail-layout {
  align-items: start;
  display: grid;
  gap: 62px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
}

.pdetail-gallery {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.pdetail-media {
  align-items: center;
  background: #fcfbf8;
  display: flex;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.pdetail-media--primary {
  aspect-ratio: .72;
}

.pdetail-media--secondary {
  aspect-ratio: 1.48;
}

.pdetail-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.pdetail-info {
  min-width: 0;
  padding: 18px 0 0;
  position: sticky;
  top: 20px;
}

.pdetail-heading h1 {
  color: #0a0a0a;
  font-size: 48px;
  font-weight: 400;
  line-height: 120%;
  margin: 0 0 12px;
}

.pdetail-heading p {
  color: #999999;
  font-size: 16px;
  line-height: 140%;
  margin: 0;
  max-width: 600px;
}

.pdetail-heading a {
  color: #858585;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdetail-price-row {
  align-items: center;
  display: flex;
  gap: 18px;
  margin: 26px 0 30px;
}

.pdetail-price-row strong {
  color: #050505;
  font-size: 20px;
  font-weight: 700;
}

.pdetail-price-row del {
  color: #a5a5a5;
  font-size: 15px;
}

.pdetail-price-row span {
  background: #bd985c;
  border-radius: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 10px;
}

.pdetail-lowest-price {
  color: #777777;
  font-size: 13px;
  line-height: 140%;
  margin: -18px 0 26px;
}

.pdetail-lowest-price strong {
  color: #4f4f4f;
  font-weight: 600;
}

.pdetail-option-group {
  border: 0;
  margin: 0 0 22px;
  padding: 0;
}

.pdetail-option-group legend,
.pdetail-quantity-block > span {
  color: #777777;
  display: block;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.pdetail-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdetail-size-options label {
  cursor: pointer;
  display: block;
}

.pdetail-size-options input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.pdetail-size-options span {
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 7px;
  color: #141414;
  display: flex;
  font-size: 15px;
  justify-content: center;
  min-height: 42px;
  min-width: 76px;
  padding: 8px 15px;
}

.pdetail-size-options input:checked + span {
  border-color: #0b2f16;
  box-shadow: inset 0 0 0 1px #0b2f16;
}

.pdetail-size-options input:focus-visible + span {
  outline: 2px solid #bd985c;
  outline-offset: 2px;
}

.pdetail-quantity-block {
  margin-bottom: 18px;
}

.pdetail-stepper {
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 7px;
  display: grid;
  grid-template-columns: 38px 34px 38px;
  min-height: 42px;
  width: max-content;
}

.pdetail-stepper button {
  background: transparent;
  border: 0;
  color: #555555;
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  height: 40px;
  padding: 0;
}

.pdetail-stepper output {
  color: #232323;
  font-size: 14px;
  text-align: center;
}

.pdetail-stock {
  align-items: center;
  color: #22a75a;
  display: flex;
  font-size: 12px;
  gap: 6px;
  margin: 0 0 22px;
}

.pdetail-stock span {
  background: currentColor;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.pdetail-stock.is-out-of-stock {
  color: #d93025;
}

.pdetail-cart-button {
  align-items: center;
  background: #bd985c;
  border: 0;
  border-radius: 24px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 11px 24px;
  transition: background-color .2s ease;
  width: 100%;
}

.pdetail-cart-button:hover {
  background: #a88248;
}

.pdetail-cart-button:disabled,
.pdetail-cart-button:disabled:hover {
  background: #e5e5e5;
  color: #666666;
  cursor: not-allowed;
}

.pdetail-cart-button img {
  filter: brightness(0) invert(1);
  height: 17px;
  object-fit: contain;
  width: 17px;
}

.pdetail-benefits {
  border-bottom: 1px solid #e3e3e3;
  border-top: 1px solid #e3e3e3;
  margin-top: 14px;
  padding: 12px 0;
}

.pdetail-benefits p {
  align-items: center;
  color: #202020;
  display: flex;
  font-size: 13px;
  gap: 12px;
  line-height: 1.4;
  margin: 0;
  min-height: 32px;
}

.pdetail-benefit-mark {
  align-items: center;
  color: #0b2f16;
  display: inline-flex;
  font-size: 16px;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.pdetail-benefit-mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.pdetail-accordions {
  border-bottom: 1px solid #e3e3e3;
}

.pdetail-accordion {
  border-top: 1px solid #e3e3e3;
}

.pdetail-accordion:first-child {
  border-top: 0;
}

.pdetail-accordion-title {
  align-items: center;
  color: #131313;
  display: flex;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  min-height: 76px;
  padding: 12px 0;
}

.pdetail-accordion > div {
  color: #202020;
  font-size: 14px;
  line-height: 1.45;
  max-width: 620px;
  padding: 0 30px 30px 0;
}

.pdetail-accordion > div p {
  margin: 0 0 12px;
}

.pdetail-accordion > div h3 {
  border-top: 1px solid #e3e3e3;
  color: #131313;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin: 24px 0 12px;
  padding-top: 24px;
}

.pdetail-accordion > div h3:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.pdetail-accordion > div ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

@media (max-width: 1050px) {
  .pdetail-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pdetail-layout {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr);
  }

  .pdetail-heading h1 {
    font-size: 34px;
  }

  .pdetail-accordion-title {
    font-size: 21px;
  }

  .pdetail-accordion > div h3 {
    font-size: 21px;
  }
}

@media (max-width: 760px) {
  .pdetail-page {
    padding: 14px 16px 40px;
  }

  .pdetail-layout {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .pdetail-info {
    order: 1;
    padding-top: 0;
    position: static;
    width: 100%;
  }

  .pdetail-gallery {
    order: 2;
    width: 100%;
  }

  .pdetail-heading h1 {
    font-size: 32px;
  }

  .pdetail-price-row {
    margin-bottom: 24px;
    margin-top: 22px;
  }

  .pdetail-accordion-title {
    font-size: 19px;
    min-height: 64px;
  }

  .pdetail-accordion > div h3 {
    font-size: 19px;
  }

  .pdetail-media--primary {
    aspect-ratio: .82;
  }

  .pdetail-media--secondary {
    aspect-ratio: 1.2;
  }
}


.pdetail-related {
  background: #fdfaf5;
  margin: 64px -44px -64px;
  padding: 74px 44px 96px;
}
.pdetail-related-head {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 42px;
}
.pdetail-related-head h2 {
  color: #0b2f16;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}
.pdetail-related-head > a {
  align-items: center;
  border: 1px solid #d8d5cf;
  border-radius: 28px;
  color: #151515;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 16px;
  gap: 18px;
  min-height: 52px;
  padding: 12px 24px;
  text-decoration: none;
}
.pdetail-related-head > a img {
  height: 24px;
  object-fit: contain;
  width: 20px;
}
.pdetail-related-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pdetail-related-card {
  color: #111;
  min-width: 0;
}
.pdetail-related-photo {
  aspect-ratio: .82;
  background: #f1f4f6;
  display: block;
  margin-bottom: 14px;
  overflow: hidden;
}
.pdetail-related-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
  width: 100%;
}
.pdetail-related-photo:hover img {
  transform: scale(1.02);
}
.pdetail-related-card h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 8px 5px;
}
.pdetail-related-card h3 a {
  color: inherit;
  text-decoration: none;
}
.pdetail-related-card > p {
  color: #666666;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 8px 10px;
}
.pdetail-related-card > strong {
  display: block;
  font-size: 15px;
  margin: 0 8px 12px;
}
.pdetail-related-card > button {
  align-items: center;
  background: #bd985c;
  border: 0;
  border-radius: 22px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 15px;
  gap: 10px;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  width: 100%;
  font-weight: 300;
}
.pdetail-related-card > button:hover {
  background: #a88248;
}
.pdetail-related-card > button img {
  filter: brightness(0) invert(1);
  height: 16px;
  object-fit: contain;
  width: 16px;
}
@media (max-width: 1050px) {
  .pdetail-related {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .pdetail-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }
}
@media (max-width: 760px) {
  .pdetail-related {
    margin: 44px -16px -40px;
    padding: 46px 16px 58px;
  }
  .pdetail-related-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }
  .pdetail-related-head h2 {
    font-size: 32px;
  }
  .pdetail-related-head > a {
    min-height: 46px;
  }
  .pdetail-related-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }
  .pdetail-related-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }
}

/* Cart prototype */
.basketview-page {
  color: #111111;
  font-family: 'Figtree', sans-serif;
  margin: 0 auto;
  max-width: 1440px;
  padding: 18px 44px 96px;
}
.basketview-page * { box-sizing: border-box; letter-spacing: 0; }
.basketview-breadcrumb {
  align-items: center; color: #8c8c8c; display: flex; flex-wrap: wrap;
  font-size: 13px; gap: 7px; margin-bottom: 42px;
}
.basketview-breadcrumb a { color: inherit; text-decoration: none; }
.basketview-heading {
  align-items: end; display: flex; gap: 30px; justify-content: space-between;
  margin-bottom: 48px;
}
.basketview-heading p { color: #8c8c8c; font-size: 14px; margin: 0 0 8px; }
.basketview-heading h1 {
  color: #0b2f16; font-size: 52px; font-weight: 400; line-height: 1.1; margin: 0;
}
.basketview-heading h1 span {
  color: #898989; font-size: 17px; font-weight: 400; white-space: nowrap;
}
.basketview-heading > a {
  align-items: center; border: 1px solid #d8d5cf; border-radius: 27px; color: #171717;
  display: inline-flex; flex: 0 0 auto; font-size: 14px; gap: 14px; min-height: 50px;
  padding: 11px 22px; text-decoration: none;
}
.basketview-heading > a img { height: 18px; width: 18px; }
.basketview-layout {
  align-items: start; display: grid; gap: clamp(42px, 7vw, 108px);
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .8fr);
}
.basketview-products { border-top: 1px solid #dedede; min-width: 0; }
.basketview-item {
  border-bottom: 1px solid #dedede; display: grid; gap: 28px;
  grid-template-columns: 190px minmax(0, 1fr); padding: 24px 0;
}
.basketview-item-photo {
  aspect-ratio: .85; background: #f5f6f6; display: block; overflow: hidden;
}
.basketview-item-photo img { height: 100%; object-fit: cover; width: 100%; }
.basketview-item-info { display: flex; flex-direction: column; min-width: 0; }
.basketview-item-topline {
  align-items: start; display: flex; gap: 18px; justify-content: space-between;
}
.basketview-item-topline h2 {
  font-size: 22px; font-weight: 600; line-height: 1.25; margin: 4px 0 7px;
}
.basketview-item-topline h2 a { color: inherit; text-decoration: none; }
.basketview-item-topline p {
  color: #777777; font-size: 14px; line-height: 1.4; margin: 0;
}
.basketview-remove {
  background: transparent; border: 0; color: #777777; cursor: pointer; flex: 0 0 auto;
  font-family: inherit; font-size: 13px; padding: 5px 0; text-decoration: underline;
  text-underline-offset: 3px;
}
.basketview-item-meta { display: flex; gap: 42px; margin: 30px 0 24px; }
.basketview-item-meta div { display: grid; gap: 4px; }
.basketview-item-meta dt { color: #8a8a8a; font-size: 12px; }
.basketview-item-meta dd { font-size: 14px; margin: 0; }
.basketview-item-bottomline {
  align-items: center; display: flex; gap: 20px; justify-content: space-between; margin-top: auto;
}
.basketview-item-bottomline > strong { font-size: 17px; }
.basketview-quantity {
  align-items: center; border: 1px solid #dcdcdc; border-radius: 7px; display: grid;
  grid-template-columns: 38px 34px 38px; min-height: 42px;
}
.basketview-quantity button {
  background: transparent; border: 0; color: #555555; cursor: pointer; font: inherit;
  font-size: 19px; height: 40px; padding: 0;
}
.basketview-quantity output { font-size: 14px; text-align: center; }
.basketview-delivery-note {
  align-items: start; background: #fdfaf5; display: grid; gap: 16px;
  grid-template-columns: 26px minmax(0, 1fr); margin-top: 24px; padding: 20px 22px;
}
.basketview-delivery-note > img { height: 24px; width: 24px; }
.basketview-delivery-note strong {
  color: #0b2f16; display: block; font-size: 14px; margin-bottom: 12px;
}
.basketview-delivery-note p { color: #777777; font-size: 12px; margin: 9px 0 0; }
.basketview-delivery-track { background: #e6e2db; height: 4px; overflow: hidden; width: 100%; }
.basketview-delivery-track span { background: #bd985c; display: block; height: 100%; width: 14%; }
.basketview-summary {
  background: #fdfaf5; padding: 34px 32px 30px; position: sticky; top: 24px;
}
.basketview-summary > h2 {
  color: #0b2f16; font-size: 27px; font-weight: 500; margin: 0 0 30px;
}
.basketview-summary-row {
  align-items: start; display: flex; font-size: 14px; gap: 20px;
  justify-content: space-between; margin-bottom: 15px;
}
.basketview-summary-row > :last-child { text-align: right; }
.basketview-promo {
  border-bottom: 1px solid #dedad3; border-top: 1px solid #dedad3;
  margin: 28px 0 24px; padding: 22px 0;
}
.basketview-promo label { display: block; font-size: 13px; margin-bottom: 10px; }
.basketview-promo > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
.basketview-promo input {
  background: #ffffff; border: 1px solid #d7d4ce; border-radius: 7px 0 0 7px;
  font: inherit; font-size: 14px; min-width: 0; padding: 11px 12px;
}
.basketview-promo button {
  background: #ffffff; border: 1px solid #d7d4ce; border-left: 0;
  border-radius: 0 7px 7px 0; color: #0b2f16; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 600; padding: 10px 14px;
}
.basketview-total {
  align-items: baseline; display: flex; font-size: 18px; gap: 20px; justify-content: space-between;
}
.basketview-total strong { font-size: 24px; }
.basketview-tax { color: #858585; font-size: 12px; margin: 6px 0 24px; text-align: right; }
.basketview-checkout {
  align-items: center; background: #bd985c; border-radius: 25px; color: #ffffff;
  display: flex; font-size: 15px; font-weight: 600; gap: 12px; justify-content: center;
  min-height: 50px; padding: 12px 22px; text-decoration: none;
  transition: background-color .2s ease; width: 100%;
}
.basketview-checkout:hover { background: #a88248; }
.basketview-checkout img { filter: brightness(0) invert(1); height: 18px; width: 18px; }
.basketview-assurances {
  border-top: 1px solid #dedad3; margin-top: 26px; padding-top: 18px;
}
.basketview-assurances p {
  align-items: center; display: flex; font-size: 12px; gap: 10px; margin: 0; min-height: 30px;
}
.basketview-assurances img { height: 19px; object-fit: contain; width: 19px; }
.basketview-item[aria-busy="true"] { opacity: .55; pointer-events: none; }
.basketview-item-meta del { color: #8a8a8a; margin-left: 6px; }
.basketview-promo-message { color: #a33b32; font-size: 12px; margin: 9px 0 0; min-height: 15px; }

@media (max-width: 900px) {
  .basketview-page { padding-left: 24px; padding-right: 24px; }
  .basketview-layout { grid-template-columns: 1fr; }
  .basketview-summary { position: static; }
}
@media (max-width: 620px) {
  .basketview-page { padding: 14px 16px 58px; }
  .basketview-breadcrumb { margin-bottom: 28px; }
  .basketview-heading {
    align-items: flex-start; flex-direction: column; margin-bottom: 30px;
  }
  .basketview-heading h1 { font-size: 38px; }
  .basketview-heading > a { min-height: 44px; }
  .basketview-item { gap: 15px; grid-template-columns: 112px minmax(0, 1fr); }
  .basketview-item-topline h2 { font-size: 17px; margin-top: 0; }
  .basketview-item-topline p { font-size: 12px; }
  .basketview-remove { font-size: 0; height: 28px; position: relative; width: 28px; }
  .basketview-remove::before,
  .basketview-remove::after {
    background: #777777; content: ''; height: 1px; left: 6px;
    position: absolute; top: 13px; width: 16px;
  }
  .basketview-remove::before { transform: rotate(45deg); }
  .basketview-remove::after { transform: rotate(-45deg); }
  .basketview-item-meta { gap: 18px; margin: 16px 0; }
  .basketview-item-bottomline {
    align-items: flex-end; flex-direction: column-reverse; gap: 8px;
  }
  .basketview-quantity { grid-template-columns: 32px 28px 32px; min-height: 36px; }
  .basketview-quantity button { height: 34px; }
  .basketview-delivery-note { padding: 18px 16px; }
  .basketview-summary {
    margin-left: -16px; margin-right: -16px; padding: 30px 16px;
  }
}

/* Mini basket drawer */
body.mini-basket-open { overflow: hidden; }
.mini-basket-backdrop {
  background: rgba(16, 27, 18, .38);
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: opacity .25s ease;
  z-index: 1200;
}
.mini-basket-backdrop.is-visible { opacity: 1; }
.mini-basket-panel {
  background: #ffffff;
  box-shadow: -12px 0 30px rgba(0, 0, 0, .12);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100dvh;
  max-width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform .3s ease;
  width: 450px;
  z-index: 1201;
}
.mini-basket-panel.is-open { transform: translateX(0); }
.mini-basket-header {
  align-items: center;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  justify-content: space-between;
  min-height: 88px;
  padding: 20px 28px;
}
.mini-basket-header h2 { color: #0b3718; font-size: 22px; margin: 0; }
.mini-basket-close,
.mini-basket-item-heading button {
  background: transparent;
  border: 0;
  color: #111111;
  cursor: pointer;
  font: inherit;
}
.mini-basket-close { font-size: 32px; height: 44px; line-height: 1; width: 44px; }
.mini-basket-content { min-height: 0; overflow-y: auto; padding: 16px 28px; }
.mini-basket-items { display: grid; gap: 14px; }
.mini-basket-item {
  border-bottom: 1px solid #e5e5e5;
  display: grid;
  gap: 16px;
  grid-template-columns: 100px minmax(0, 1fr);
  padding: 0 0 18px;
}
.mini-basket-item[aria-busy="true"] { opacity: .55; pointer-events: none; }
.mini-basket-photo { background: #f7f7f5; display: block; height: 120px; }
.mini-basket-photo img { height: 100%; object-fit: contain; width: 100%; }
.mini-basket-item-body { min-width: 0; }
.mini-basket-item-heading { align-items: start; display: flex; gap: 8px; justify-content: space-between; }
.mini-basket-item-heading h3 { font-size: 16px; margin: 2px 0 6px; }
.mini-basket-item-heading h3 a { color: #0b3718; text-decoration: none; }
.mini-basket-item-heading button { font-size: 23px; line-height: 1; padding: 0 2px; }
.mini-basket-item-body > p { color: #777777; font-size: 13px; margin: 0 0 8px; }
.mini-basket-price { align-items: baseline; display: flex; gap: 8px; font-size: 14px; }
.mini-basket-price del { color: #8b8b8b; }
.mini-basket-item-bottom { align-items: center; display: flex; gap: 12px; justify-content: space-between; margin-top: 15px; }
.mini-basket-quantity {
  border: 1px solid #d9d9d9;
  display: grid;
  grid-template-columns: 34px 28px 34px;
  min-height: 36px;
}
.mini-basket-quantity button { background: transparent; border: 0; cursor: pointer; font-size: 17px; }
.mini-basket-quantity output { align-self: center; font-size: 14px; text-align: center; }
.mini-basket-footer { border-top: 1px solid #e4e4e4; display: grid; gap: 12px; padding: 20px 28px 26px; }
.mini-basket-total { display: flex; font-size: 18px; justify-content: space-between; margin-bottom: 4px; }
.mini-basket-basket-link,
.mini-basket-checkout-link {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 48px;
  text-decoration: none;
}
.mini-basket-basket-link { border: 1px solid #0b3718; color: #0b3718; }
.mini-basket-checkout-link { background: #bd985c; color: #ffffff; }
.mini-basket-empty { padding: 60px 10px; text-align: center; }
.mini-basket-empty p { color: #0b3718; font-size: 20px; }
.mini-basket-empty a { color: #0b3718; text-decoration: underline; }
.mini-basket-loading,
.mini-basket-error { color: #777777; padding: 40px 0; text-align: center; }

@media (max-width: 520px) {
  .mini-basket-panel { width: calc(100% - 20px); }
  .mini-basket-header { min-height: 72px; padding: 14px 18px; }
  .mini-basket-content { padding: 14px 18px; }
  .mini-basket-footer { padding: 16px 18px 20px; }
  .mini-basket-item { grid-template-columns: 82px minmax(0, 1fr); }
  .mini-basket-photo { height: 104px; }
}

/* Dynamic products carousel */
.products-carousel .section-heading .products-carousel-link {
  background: #ffffff;
  border: 1px solid #dddddd;
  box-shadow: none;
  gap: 18px;
  height: 46px;
  padding: 0 22px 0 28px;
}
.products-carousel-link img {
  display: block;
  height: 24px;
  width: 20px;
}
.products-carousel .product-image { display: block; }
.products-carousel .product-card h3 a {
  color: inherit;
  text-decoration: none;
}
.products-carousel .product-info .add-cart {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.products-carousel .product-info .add-cart.is-disabled,
.products-carousel .product-info .add-cart:disabled {
  background: #e5e5e5;
  color: #666666;
  cursor: not-allowed;
}
.products-carousel .product-buyline {
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}
.products-carousel .product-buyline del {
  color: var(--muted);
  font-size: 13px;
}
.products-carousel .product-buyline.has-discount .price {
  font-size: 18px;
  font-weight: 700;
}
.products-carousel .product-discount-badge {
  background: #bd985c;
  border-radius: 5px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 7px;
}

.products-carousel .product-slider-footer[hidden] {
  display: none;
}

.pp_class_page {
    background: var(--white);
    color: var(--ink);
    font-family: inherit;
    padding: 100px var(--page-pad) 96px;
  }

  .pp_class_page * {
    box-sizing: border-box;
  }

  .pp_class_shell {
    margin: 0 auto;
    max-width: 1180px;
  }

  .pp_class_header {
    margin: 0 auto 54px;
    max-width: 760px;
    text-align: center;
  }

  .pp_class_eyebrow {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .28px;
    line-height: 1.4;
    margin: 0 0 16px;
  }

  .pp_class_title {
    color: var(--ink);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 399;
    line-height: 1.16;
    margin: 0;
  }

  .pp_class_intro {
    color: #5c5f6a;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    margin: 22px auto 0;
    max-width: 680px;
  }

  .pp_class_layout {
    margin: 0 auto;
    max-width: 860px;
  }

  .pp_class_content {
    display: grid;
    gap: 12px;
  }

  .pp_class_section {
    background: var(--soft);
    border-radius: 20px;
    color: var(--ink);
    margin: 0 auto 12px;
    max-width: 860px;
    overflow: hidden;
    padding: clamp(24px, 4vw, 38px);
    width: 100%;
  }

  .pp_class_content .pp_class_section {
    margin-bottom: 0;
  }

  .pp_class_section_title {
    color: var(--ink);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.22;
    margin: 0 0 18px;
  }

  .pp_class_subtitle {
    color: var(--ink);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin: 28px 0 10px;
  }

  .pp_class_text,
  .pp_class_list_item {
    color: #5c5f6a;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 25.6px;
  }

  .pp_class_text {
    margin: 0 0 14px;
  }

  .pp_class_text:last-child {
    margin-bottom: 0;
  }

  .pp_class_note {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    margin-top: 20px;
    padding: 18px 20px;
  }

  .pp_class_note .pp_class_text {
    color: #5c5f6a;
  }

  .pp_class_contact {
    display: grid;
    gap: 8px;
    margin-top: 18px;
  }

  .pp_class_link {
    color: var(--ink);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  @media (max-width: 980px) {
    .pp_class_page {
      padding-bottom: 72px;
      padding-top: 72px;
    }
  }

  @media (max-width: 640px) {
    .pp_class_page {
      padding: 54px var(--page-pad) 64px;
    }

    .pp_class_header {
      margin-bottom: 34px;
      text-align: left;
    }

    .pp_class_intro {
      font-size: 16px;
      line-height: 1.6;
    }
  }

.sp_class_page {
    background: var(--white);
    color: var(--ink);
    font-family: inherit;
    padding: 100px var(--page-pad) 96px;
  }

  .sp_class_page * {
    box-sizing: border-box;
  }

  .sp_class_shell {
    margin: 0 auto;
    max-width: 1180px;
  }

  .sp_class_header {
    margin: 0 auto 54px;
    max-width: 760px;
    text-align: center;
  }

  .sp_class_eyebrow {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .28px;
    line-height: 1.4;
    margin: 0 0 16px;
  }

  .sp_class_title {
    color: var(--ink);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 399;
    line-height: 1.16;
    margin: 0;
  }

  .sp_class_intro {
    color: #5c5f6a;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    margin: 22px auto 0;
    max-width: 680px;
  }

  .sp_class_layout {
    align-items: start;
    display: grid;
    gap: 48px;
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .sp_class_nav {
    background: var(--soft);
    border-radius: 20px;
    display: grid;
    gap: 4px;
    padding: 22px;
    position: sticky;
    top: 110px;
  }

  .sp_class_nav_title {
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px;
  }

  .sp_class_nav_link {
    border-radius: 999px;
    color: #5c5f6a;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    padding: 9px 12px;
    text-decoration: none;
  }

  .sp_class_nav_link:hover {
    background: var(--white);
    color: var(--ink);
  }

  .sp_class_content {
    display: grid;
    gap: 12px;
  }

  .sp_class_section {
    background: var(--soft);
    border-radius: 20px;
    color: var(--ink);
    overflow: hidden;
    padding: clamp(24px, 4vw, 38px);
  }

  .sp_class_section_title {
    color: var(--ink);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.22;
    margin: 0 0 18px;
  }

  .sp_class_subtitle {
    color: var(--ink);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin: 28px 0 10px;
  }

  .sp_class_text,
  .sp_class_list_item {
    color: #5c5f6a;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 25.6px;
  }

  .sp_class_text {
    margin: 0 0 14px;
  }

  .sp_class_text:last-child {
    margin-bottom: 0;
  }

  .sp_class_list {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding-left: 20px;
  }

  .sp_class_note {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    margin-top: 20px;
    padding: 18px 20px;
  }

  .sp_class_contact {
    display: grid;
    gap: 8px;
    margin-top: 18px;
  }

  .sp_class_link {
    color: var(--ink);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  @media (max-width: 980px) {
    .sp_class_page {
      padding-bottom: 72px;
      padding-top: 72px;
    }

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

    .sp_class_nav {
      position: static;
    }
  }

  @media (max-width: 640px) {
    .sp_class_page {
      padding: 54px var(--page-pad) 64px;
    }

    .sp_class_header {
      margin-bottom: 34px;
      text-align: left;
    }

    .sp_class_intro {
      font-size: 16px;
      line-height: 1.6;
    }

    .sp_class_nav {
      display: none;
    }
  }

  .ko_class_page {
    background: var(--white);
    color: var(--ink);
    font-family: inherit;
    padding: 100px var(--page-pad) 96px;
  }

  .ko_class_page * {
    box-sizing: border-box;
  }

  .ko_class_shell {
    margin: 0 auto;
    max-width: 1180px;
  }

  .ko_class_hero {
    align-items: end;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
    margin-bottom: 58px;
  }

  .ko_class_eyebrow {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .28px;
    line-height: 1.4;
    margin: 0 0 16px;
  }

  .ko_class_title {
    color: var(--ink);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 399;
    line-height: 1.16;
    margin: 0;
    max-width: 720px;
  }

  .ko_class_intro {
    color: #5c5f6a;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    margin: 22px 0 0;
    max-width: 660px;
  }

  .ko_class_quick_card {
    background: var(--soft);
    border-radius: 20px;
    padding: clamp(26px, 4vw, 40px);
  }

  .ko_class_quick_title {
    color: var(--ink);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 20px;
  }

  .ko_class_quick_list {
    display: grid;
    gap: 12px;
  }

  .ko_class_quick_link {
    align-items: center;
    background: var(--white);
    border-radius: 999px;
    color: var(--ink);
    display: flex;
    font-size: 15px;
    font-weight: 500;
    gap: 12px;
    min-height: 50px;
    padding: 10px 18px;
    text-decoration: none;
  }

  .ko_class_icon {
    align-items: center;
    background: rgba(184, 151, 97, .14);
    border-radius: 50%;
    color: var(--gold-dark);
    display: inline-flex;
    flex: 0 0 30px;
    font-size: 15px;
    height: 30px;
    justify-content: center;
    width: 30px;
  }

  .ko_class_grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 12px;
  }

  .ko_class_card {
    background: var(--soft);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 34px);
  }

  .ko_class_card_title {
    color: var(--ink);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 12px;
  }

  .ko_class_text,
  .ko_class_list_item {
    color: #5c5f6a;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 25.6px;
  }

  .ko_class_text {
    margin: 0 0 14px;
  }

  .ko_class_text:last-child {
    margin-bottom: 0;
  }

  .ko_class_link {
    color: var(--ink);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .ko_class_section {
    background: var(--soft);
    border-radius: 20px;
    margin-top: 12px;
    padding: clamp(28px, 4vw, 46px);
  }

  .ko_class_section_header {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, .85fr) minmax(280px, 1fr);
    margin-bottom: 28px;
  }

  .ko_class_section_title {
    color: var(--ink);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 400;
    line-height: 1.16;
    margin: 0;
  }

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

  .ko_class_info_box {
    background: var(--white);
    border-radius: 16px;
    padding: 22px;
  }

  .ko_class_info_label {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .28px;
    line-height: 1.3;
    margin: 0 0 10px;
  }

  .ko_class_info_value {
    color: var(--ink);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
  }

  .ko_class_form_preview {
    background: var(--white);
    border-radius: 20px;
    display: grid;
    gap: 12px;
    padding: clamp(24px, 3vw, 34px);
  }

  .ko_class_field,
  .ko_class_textarea {
    background: var(--soft);
    border: 0;
    border-radius: 999px;
    color: #5c5f6a;
    font-family: inherit;
    font-size: 15px;
    min-height: 50px;
    padding: 0 18px;
    width: 100%;
  }

  .ko_class_textarea {
    border-radius: 18px;
    min-height: 132px;
    padding: 16px 18px;
    resize: vertical;
  }

  .ko_class_button {
    align-items: center;
    background: var(--gold);
    border: 0;
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    height: 52px;
    justify-content: center;
    justify-self: start;
    min-width: 180px;
    padding: 0 28px;
    text-decoration: none;
  }

  .ko_class_note {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    margin-top: 18px;
    padding: 18px 20px;
  }

  @media (max-width: 980px) {
    .ko_class_page {
      padding-bottom: 72px;
      padding-top: 72px;
    }

    .ko_class_hero,
    .ko_class_section_header,
    .ko_class_contact_panel {
      grid-template-columns: 1fr;
    }

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

  @media (max-width: 640px) {
    .ko_class_page {
      padding: 54px var(--page-pad) 64px;
    }

    .ko_class_intro {
      font-size: 16px;
      line-height: 1.6;
    }

    .ko_class_quick_link {
      border-radius: 18px;
      align-items: flex-start;
    }
  }

  .on_class_page {
    background: var(--white);
    color: var(--ink);
    font-family: inherit;
    padding: 100px var(--page-pad) 96px;
  }

  .on_class_page * {
    box-sizing: border-box;
  }

  .on_class_shell {
    margin: 0 auto;
    max-width: 1180px;
  }

  .on_class_hero {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    margin: 0 auto 14px;
    max-width: 1180px;
    width: 100%;
  }


  .on_class_page > .on_class_hero,
  .on_class_page > .on_class_quote,
  .on_class_page > .on_class_grid,
  .on_class_page > .on_class_section,
  .on_class_page > .on_class_cta,
  .on_class_shell > .on_class_hero,
  .on_class_shell > .on_class_quote,
  .on_class_shell > .on_class_grid,
  .on_class_shell > .on_class_section,
  .on_class_shell > .on_class_cta,
  .on_class_hero,
  .on_class_quote,
  .on_class_grid,
  .on_class_section,
  .on_class_cta {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1180px !important;
    width: calc(100% - 2 * var(--page-pad, 36px)) !important;
  }

  .on_class_hero {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
  }

  .on_class_quote,
  .on_class_grid,
  .on_class_section {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .on_class_cta {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
  }

  .on_class_eyebrow {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .28px;
    line-height: 1.4;
    margin: 0 0 16px;
  }

  .on_class_title {
    color: var(--ink);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 399;
    line-height: 1.16;
    margin: 0;
    max-width: 760px;
  }

  .on_class_intro {
    color: #5c5f6a;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    margin: 24px 0 0;
    max-width: 690px;
  }

  .on_class_visual {
    background: var(--soft);
    border-radius: 20px;
    min-height: 520px;
    overflow: hidden;
    position: relative;
  }

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

  .on_class_visual_badge {
    background: var(--white);
    border-radius: 18px;
    bottom: 18px;
    color: var(--ink);
    left: 18px;
    max-width: calc(100% - 36px);
    padding: 18px 20px;
    position: absolute;
    z-index: 1;
  }

  .on_class_visual_badge strong {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .on_class_visual_badge span {
    color: #5c5f6a;
    display: block;
    font-size: 14px;
    line-height: 1.45;
  }

  .on_class_quote {
    background: var(--soft);
    border-radius: 20px;
    margin: 12px auto;
    max-width: 1180px;
    padding: clamp(30px, 5vw, 54px);
    width: 100%;
  }

  .on_class_quote p {
    color: var(--ink);
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 399;
    line-height: 1.22;
    margin: 0;
    max-width: 980px;
  }

  .on_class_grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 12px auto;
    max-width: 1180px;
    width: 100%;
  }

  .on_class_card {
    background: var(--soft);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 34px);
  }

  .on_class_card_title {
    color: var(--ink);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 12px;
  }

  .on_class_text,
  .on_class_list_item {
    color: #5c5f6a;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 25.6px;
  }

  .on_class_text {
    margin: 0 0 14px;
  }

  .on_class_text:last-child {
    margin-bottom: 0;
  }

  .on_class_section {
    align-items: center;
    background: var(--soft);
    border-radius: 20px;
    display: grid;
    gap: 38px;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    margin: 12px auto;
    max-width: 1180px;
    padding: clamp(28px, 4vw, 46px);
    width: 100%;
  }

  .on_class_section_title {
    color: var(--ink);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 400;
    line-height: 1.16;
    margin: 0 0 18px;
  }

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

  .on_class_list_item {
    background: var(--white);
    border-radius: 16px;
    padding: 18px 20px;
  }

  .on_class_list_item strong {
    color: var(--ink);
    display: block;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 5px;
  }

  .on_class_cta {
    align-items: center;
    background: var(--gold);
    border-radius: 20px;
    color: var(--white);
    display: flex;
    gap: 22px;
    justify-content: space-between;
    margin: 12px auto 0;
    max-width: 1180px;
    padding: clamp(26px, 4vw, 42px);
    width: 100%;
  }

  .on_class_cta h2 {
    color: var(--white);
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 400;
    line-height: 1.18;
    margin: 0;
  }

  .on_class_cta p {
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    line-height: 1.55;
    margin: 12px 0 0;
    max-width: 620px;
  }

  .on_class_button {
    align-items: center;
    background: var(--white);
    border-radius: 999px;
    color: var(--ink);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 500;
    height: 52px;
    justify-content: center;
    min-width: 190px;
    padding: 0 28px;
    text-decoration: none;
  }

  .on_class_link {
    color: var(--ink);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  @media (max-width: 980px) {
    .on_class_page {
      padding-bottom: 72px;
      padding-top: 72px;
    }

    .on_class_hero,
    .on_class_section {
      grid-template-columns: 1fr;
    }

    .on_class_visual {
      min-height: 420px;
    }

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

    .on_class_cta {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  @media (max-width: 640px) {
    .on_class_page {
      padding: 54px var(--page-pad) 64px;
    }

    .on_class_intro {
      font-size: 16px;
      line-height: 1.6;
    }

    .on_class_visual {
      min-height: 340px;
    }

    .on_class_visual_badge {
      border-radius: 16px;
      padding: 16px;
    }

    .on_class_button {
      width: 100%;
    }
  }

  .qa_class_page {
    background: var(--white);
    color: var(--ink);
    font-family: inherit;
    padding: 100px var(--page-pad) 96px;
  }

  .qa_class_page * {
    box-sizing: border-box;
  }

  .qa_class_shell {
    margin: 0 auto;
    max-width: 900px;
  }

  .qa_class_page > .qa_class_header,
  .qa_class_page > .qa_class_layout,
  .qa_class_page > .qa_class_side,
  .qa_class_page > .qa_class_groups,
  .qa_class_page > .qa_class_group,
  .qa_class_page > .qa_class_item,
  .qa_class_page > .qa_class_block,
  .qa_class_page > .qa_class_note,
  .qa_class_shell > .qa_class_header,
  .qa_class_shell > .qa_class_layout,
  .qa_class_shell > .qa_class_side,
  .qa_class_shell > .qa_class_groups,
  .qa_class_shell > .qa_class_group,
  .qa_class_shell > .qa_class_item,
  .qa_class_shell > .qa_class_block,
  .qa_class_shell > .qa_class_note,
  .qa_class_header,
  .qa_class_layout,
  .qa_class_side,
  .qa_class_groups,
  .qa_class_group,
  .qa_class_block,
  .qa_class_item,
  .qa_class_note {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 760px !important;
    width: calc(100% - 2 * var(--page-pad, 36px)) !important;
  }

  .qa_class_header {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }

  .qa_class_layout,
  .qa_class_side,
  .qa_class_groups,
  .qa_class_group,
  .qa_class_block,
  .qa_class_item {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }

  .qa_class_note {
    margin-top: 22px !important;
    margin-bottom: 12px !important;
  }

  .qa_class_layout > .qa_class_side,
  .qa_class_layout > .qa_class_groups,
  .qa_class_groups > .qa_class_group,
  .qa_class_groups > .qa_class_item,
  .qa_class_groups > .qa_class_block,
  .qa_class_groups > .qa_class_note,
  .qa_class_group > .qa_class_item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
    width: 100% !important;
  }


  .qa_class_page .faq,
  .qa_class_shell .faq {
    background: transparent !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 14px auto !important;
    max-width: 760px !important;
    padding: 0 !important;
    text-align: left !important;
    width: calc(100% - 2 * var(--page-pad, 36px)) !important;
  }

  .qa_class_page .faq > div,
  .qa_class_shell .faq > div {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .qa_class_page .faq .qa_class_item,
  .qa_class_shell .faq .qa_class_item {
    margin: 0 !important;
    width: 100% !important;
  }


  .qa_class_shell > .qa_class_side,
  .qa_class_shell > .qa_class_groups,
  .qa_class_shell > .qa_class_group,
  .qa_class_shell > .qa_class_block,
  .qa_class_shell > .qa_class_item,
  .qa_class_shell > .qa_class_note,
  .qa_class_layout > .qa_class_block,
  .qa_class_layout > .qa_class_item,
  .qa_class_layout > .qa_class_note {
    max-width: 760px !important;
    width: 100% !important;
  }

  .qa_class_header {
    margin: 0 auto 54px;
    max-width: 760px;
    text-align: center;
  }

  .qa_class_eyebrow {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .28px;
    line-height: 1.4;
    margin: 0 0 16px;
  }

  .qa_class_title {
    color: var(--ink);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 399;
    line-height: 1.16;
    margin: 0;
  }

  .qa_class_intro {
    color: #5c5f6a;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    margin: 22px auto 0;
    max-width: 680px;
  }

  .qa_class_layout {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 760px;
  }

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

  .qa_class_card {
    background: var(--soft);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 34px);
  }

  .qa_class_card_title {
    color: var(--ink);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 14px;
  }

  .qa_class_text {
    color: #5c5f6a;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 25.6px;
    margin: 0 0 14px;
  }

  .qa_class_text:last-child {
    margin-bottom: 0;
  }

  .qa_class_link {
    color: var(--ink);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .qa_class_button {
    align-items: center;
    background: var(--gold);
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    font-size: 15px;
    font-weight: 500;
    height: 52px;
    justify-content: center;
    margin-top: 6px;
    min-width: 180px;
    padding: 0 26px;
    text-decoration: none;
  }

  .qa_class_groups {
    display: grid;
    gap: 22px;
  }

  .qa_class_group {
    display: grid;
    gap: 10px;
  }

  .qa_class_group_title {
    color: var(--ink);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 6px;
  }


  .qa_class_block {
    background: transparent;
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .qa_class_block > .qa_class_item {
    margin: 0;
    width: 100% !important;
  }

  .qa_class_item {
    background: var(--soft);
    border-radius: 20px;
    color: var(--ink);
    overflow: hidden;
  }

  .qa_class_item summary,
  .qa_class_fake_summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 22px;
    justify-content: space-between;
    list-style: none;
    min-height: 76px;
    padding: 20px 30px;
  }

  .qa_class_item summary::-webkit-details-marker {
    display: none;
  }

  .qa_class_question {
    color: var(--ink);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
  }

  .qa_class_mark {
    align-items: center;
    color: rgba(7, 39, 8, .38);
    display: inline-flex;
    flex: 0 0 28px;
    font-size: 28px;
    font-weight: 300;
    height: 28px;
    justify-content: center;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform .2s ease;
    width: 28px;
  }

  .qa_class_item[open] .qa_class_mark,
  .qa_class_item.is-open .qa_class_mark {
    transform: rotate(45deg);
  }

  .qa_class_answer {
    color: #5c5f6a;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 25.6px;
    margin: -4px 0 0;
    padding: 0 30px 26px;
    text-align: left;
  }

  .qa_class_item:not(.is-open):not([open]) > .qa_class_answer {
    display: none;
  }

  .qa_class_note {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    margin-top: 18px;
    padding: 18px 20px;
  }

  @media (max-width: 980px) {
    .qa_class_page {
      padding-bottom: 72px;
      padding-top: 72px;
    }

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

  }

  @media (max-width: 640px) {
    .qa_class_page {
      padding: 54px var(--page-pad) 64px;
    }

    .qa_class_header {
      margin-bottom: 34px;
      text-align: left;
    }

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

    .qa_class_intro {
      font-size: 16px;
      line-height: 1.6;
    }

    .qa_class_item summary {
      min-height: 68px;
      padding: 18px 20px;
    }

    .qa_class_question {
      font-size: 17px;
    }

    .qa_class_answer {
      padding: 0 20px 22px;
    }

    .qa_class_button {
      width: 100%;
    }
  }

  .made_class_page {
    background: var(--white);
    color: var(--ink);
    font-family: inherit;
    padding: 100px var(--page-pad) 96px;
  }

  .made_class_page * {
    box-sizing: border-box;
  }

  .made_class_shell {
    margin: 0 auto;
    max-width: 1180px;
  }

  .made_class_hero {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    margin: 0 auto 12px;
    max-width: 1180px;
    width: 100%;
  }


  .made_class_page > .made_class_hero,
  .made_class_page > .made_class_values,
  .made_class_page > .made_class_step,
  .made_class_page > .made_class_cta,
  .made_class_shell > .made_class_hero,
  .made_class_shell > .made_class_values,
  .made_class_shell > .made_class_step,
  .made_class_shell > .made_class_cta,
  .made_class_hero,
  .made_class_values,
  .made_class_step,
  .made_class_cta {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1180px !important;
    width: calc(100% - 2 * var(--page-pad, 36px)) !important;
  }

  .made_class_hero + .made_class_values,
  .made_class_hero + .made_class_step,
  .made_class_values + .made_class_step,
  .made_class_step + .made_class_step,
  .made_class_step + .made_class_cta,
  .made_class_values + .made_class_cta {
    margin-top: 12px !important;
  }


  .made_class_hero {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
  }

  .made_class_values,
  .made_class_step {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .made_class_cta {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
  }

  .made_class_eyebrow {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .28px;
    line-height: 1.4;
    margin: 0 0 16px;
  }

  .made_class_title {
    color: var(--ink);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 399;
    line-height: 1.16;
    margin: 0;
    max-width: 780px;
  }

  .made_class_intro {
    color: #5c5f6a;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    margin: 24px 0 0;
    max-width: 690px;
  }

  .made_class_visual {
    background: var(--soft);
    border-radius: 20px;
    min-height: 520px;
    overflow: hidden;
    position: relative;
  }

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

  .made_class_badge {
    background: var(--white);
    border-radius: 18px;
    bottom: 18px;
    color: var(--ink);
    left: 18px;
    max-width: calc(100% - 36px);
    padding: 18px 20px;
    position: absolute;
    z-index: 1;
  }

  .made_class_badge strong {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .made_class_badge span {
    color: #5c5f6a;
    display: block;
    font-size: 14px;
    line-height: 1.45;
  }

  .made_class_values {
    background: var(--soft);
    border-radius: 20px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 12px auto;
    max-width: 1180px;
    padding: clamp(24px, 4vw, 38px);
    width: 100%;
  }

  .made_class_value {
    align-items: center;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    gap: 18px;
    padding: 20px;
  }

  .made_class_icon {
    height: 48px;
    object-fit: contain;
    width: 48px;
  }

  .made_class_value h2 {
    color: var(--ink);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.32;
    margin: 0;
  }


  .made_class_step {
    align-items: start;
    background: var(--soft);
    border-radius: 20px;
    display: grid;
    gap: 24px;
    grid-template-columns: 82px minmax(0, 1fr);
    margin: 0 auto 12px;
    max-width: 1180px;
    padding: clamp(24px, 4vw, 38px);
    width: 100%;
  }

  .made_class_number {
    align-items: center;
    background: var(--gold);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    font-size: 22px;
    font-weight: 500;
    height: 64px;
    justify-content: center;
    line-height: 1;
    width: 64px;
  }

  .made_class_step h2 {
    color: var(--ink);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.22;
    margin: 0 0 12px;
  }

  .made_class_text {
    color: #5c5f6a;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 25.6px;
    margin: 0 0 14px;
  }

  .made_class_text:last-child {
    margin-bottom: 0;
  }

  .made_class_note {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    margin-top: 18px;
    padding: 18px 20px;
  }

  .made_class_cta {
    align-items: center;
    background: var(--gold);
    border-radius: 20px;
    color: var(--white);
    display: flex;
    gap: 22px;
    justify-content: space-between;
    margin: 12px auto 0;
    max-width: 1180px;
    padding: clamp(26px, 4vw, 42px);
    width: 100%;
  }

  .made_class_cta h2 {
    color: var(--white);
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 400;
    line-height: 1.18;
    margin: 0;
  }

  .made_class_cta p {
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    line-height: 1.55;
    margin: 12px 0 0;
    max-width: 640px;
  }

  .made_class_button {
    align-items: center;
    background: var(--white);
    border-radius: 999px;
    color: var(--ink);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 500;
    height: 52px;
    justify-content: center;
    min-width: 190px;
    padding: 0 28px;
    text-decoration: none;
  }

  @media (max-width: 980px) {
    .made_class_page {
      padding-bottom: 72px;
      padding-top: 72px;
    }

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

    .made_class_visual {
      min-height: 420px;
    }

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

    .made_class_cta {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  @media (max-width: 640px) {
    .made_class_page {
      padding: 54px var(--page-pad) 64px;
    }

    .made_class_intro {
      font-size: 16px;
      line-height: 1.6;
    }

    .made_class_visual {
      min-height: 340px;
    }

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

    .made_class_number {
      height: 54px;
      width: 54px;
    }

    .made_class_button {
      width: 100%;
    }
  }


.stock-popup[hidden] {
  display: none;
}

.stock-popup {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 9999;
}

.stock-popup-backdrop {
  background: rgba(7, 39, 8, .42);
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .18s ease;
}

.stock-popup-dialog {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(7, 39, 8, .18);
  color: var(--ink);
  max-width: 460px;
  opacity: 0;
  padding: 34px;
  position: relative;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
  width: min(100%, 460px);
  z-index: 1;
}

.stock-popup.is-open .stock-popup-backdrop,
.stock-popup.is-open .stock-popup-dialog {
  opacity: 1;
}

.stock-popup.is-open .stock-popup-dialog {
  transform: translateY(0);
}

.stock-popup-close {
  align-items: center;
  background: var(--soft);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
}

.stock-popup-eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .28px;
  line-height: 1.4;
  margin: 0 0 12px;
}

.stock-popup h2 {
  color: var(--ink);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.18;
  margin: 0 42px 14px 0;
}

.stock-popup p[data-stock-popup-message] {
  color: #5c5f6a;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  margin: 0 0 24px;
}

.stock-popup-button {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  min-width: 140px;
  padding: 0 26px;
}

@media (max-width: 640px) {
  .stock-popup {
    padding: 18px;
  }

  .stock-popup-dialog {
    padding: 28px 22px 24px;
  }

  .stock-popup h2 {
    font-size: 26px;
  }

  .stock-popup-button {
    width: 100%;
  }
}


.kontakt-fragment {
  background: var(--soft);
  border-radius: 20px;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  margin: 12px auto 0;
  max-width: 1180px;
  padding: clamp(28px, 4vw, 46px);
}

.kontakt-fragment__intro {
  align-self: start;
}

.kontakt-fragment__eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .28px;
  line-height: 1.4;
  margin: 0 0 16px;
}

.kontakt-fragment h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.16;
  margin: 0 0 18px;
}

.kontakt-fragment p {
  color: #5c5f6a;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 25.6px;
  margin: 0;
}

.kontakt-fragment__form {
  background: var(--white);
  border-radius: 20px;
  display: grid;
  gap: 12px;
  padding: clamp(24px, 3vw, 34px);
}

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

.kontakt-fragment__field {
  display: grid;
  gap: 8px;
}

.kontakt-fragment__field span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.kontakt-fragment__field strong {
  color: var(--gold);
  font-weight: 600;
}

.kontakt-fragment__field input,
.kontakt-fragment__field textarea {
  background: var(--soft);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  min-height: 52px;
  outline: none;
  padding: 0 18px;
  width: 100%;
}

.kontakt-fragment__field textarea {
  border-radius: 18px;
  line-height: 1.5;
  min-height: 148px;
  padding: 16px 18px;
  resize: vertical;
}

.kontakt-fragment__field input:focus,
.kontakt-fragment__field textarea:focus {
  box-shadow: 0 0 0 2px rgba(184, 151, 97, .35);
}

.kontakt-fragment__footer {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 6px;
}

.kontakt-fragment__button {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  justify-content: center;
  min-width: 180px;
  padding: 0 28px;
}

@media (max-width: 980px) {
  .kontakt-fragment {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .kontakt-fragment {
    padding: 24px;
  }

  .kontakt-fragment__grid,
  .kontakt-fragment__footer {
    grid-template-columns: 1fr;
  }

  .kontakt-fragment__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .kontakt-fragment__button {
    width: 100%;
  }
}

/* Dynamic GrapesJS form block */
.placeholder-form {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
}

.placeholder-form form {
  display: grid;
  gap: 12px;
  margin: 0;
}

.placeholder-form label,
.placeholder-form .form-label {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 7px;
}

.placeholder-form input,
.placeholder-form textarea,
.placeholder-form select {
  background: var(--soft);
  border: 0;
  border-radius: 999px;
  color: #5c5f6a;
  font-family: inherit;
  font-size: 15px;
  min-height: 50px;
  padding: 0 18px;
  width: 100%;
}

.placeholder-form textarea {
  border-radius: 18px;
  min-height: 132px;
  padding: 16px 18px;
  resize: vertical;
}

.placeholder-form input:focus,
.placeholder-form textarea:focus,
.placeholder-form select:focus {
  box-shadow: 0 0 0 2px rgba(184, 151, 97, .22);
  outline: 0;
}

.placeholder-form .form-input-group {
  margin-bottom: 18px;
}

.placeholder-form .validationMessages {
  color: #d93025;
  display: none;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 7px;
  min-height: 18px;
}

.placeholder-form .validationMessages.extra-space {
  margin-bottom: 14px;
  margin-top: 4px;
}

.placeholder-form .formInput.errorValidation {
  box-shadow: 0 0 0 2px rgba(217, 48, 37, .35);
}

.placeholder-form .formInput.errorValidation:focus {
  box-shadow: 0 0 0 2px rgba(217, 48, 37, .5);
}

.placeholder-form button,
.placeholder-form input[type="submit"] {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  justify-content: center;
  justify-self: start;
  min-width: 180px;
  padding: 0 28px;
  text-decoration: none;
}

.placeholder-form button:disabled,
.placeholder-form input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.placeholder-form .error,
.placeholder-form .form-error,
.placeholder-form [class*="error"] {
  color: #a94442;
  font-size: 13px;
  line-height: 1.4;
}

.placeholder-form .success,
.placeholder-form .form-success,
.placeholder-form [class*="success"] {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.placeholder-form .form-alert-message {
  display: none;
  margin: 0;
  padding: 0;
}

.placeholder-form .form-alert-message.alert-danger {
  background: rgba(217, 48, 37, .08);
  border-radius: 12px;
  color: #d93025;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 14px;
  padding: 12px 14px;
}

.placeholder-form .form-alert-message.alert-success {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  display: flex;
  min-height: 330px;
}

.placeholder-form .form-success-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
  text-align: center;
  width: 100%;
}

.placeholder-form .form-success-icon {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 24px;
  font-weight: 600;
  height: 54px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 20px;
  width: 54px;
}

.placeholder-form .form-success-title {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.16;
  margin: 0 0 12px;
}

.placeholder-form .form-success-text {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.placeholder-form .form-success-text p {
  margin: 0;
}

.placeholder-form .form-success-note {
  color: #5c5f6a;
  font-size: 15px;
  line-height: 1.55;
  margin: 12px auto 0;
  max-width: 360px;
}

@media (max-width: 640px) {
  .placeholder-form {
    padding: 22px;
  }

  .placeholder-form button,
  .placeholder-form input[type="submit"] {
    width: 100%;
  }
}


.not-found-page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 520px;
  padding: 96px 20px;
  text-align: center;
}

.not-found-page-inner {
  max-width: 680px;
}

.not-found-eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
}

.not-found-page h1 {
  color: var(--brown);
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 18px;
}

.not-found-content {
  color: #5d5247;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 30px;
}

.not-found-content p {
  margin: 0 0 14px;
}

@media (max-width: 700px) {
  .not-found-page {
    min-height: 420px;
    padding: 70px 18px;
  }

  .not-found-page h1 {
    font-size: 32px;
  }

  .not-found-content {
    font-size: 16px;
  }
}

.obrazec-placeholder {
  border: 1px dashed #bd985c;
  background: #fff8ec;
  color: #bd985c;
  padding: 28px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}


/* Cookie policy content generated by the rich-text editor. */
.is-cookie-policy .site-content {
  background: var(--white);
  color: var(--ink);
  min-height: 60vh;
  padding: 96px var(--page-pad);
}

.is-cookie-policy .site-content > h1,
.is-cookie-policy .site-content > h2,
.is-cookie-policy .site-content > h3,
.is-cookie-policy .site-content > p,
.is-cookie-policy .site-content > ul,
.is-cookie-policy .site-content > ol,
.is-cookie-policy .site-content > div[align="center"] {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
  width: 100%;
}

.is-cookie-policy .site-content > h1 {
  color: var(--ink);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  margin-top: 0;
}

.is-cookie-policy .site-content > h1 + p {
  color: #5c5f6a;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.is-cookie-policy .site-content > h2 {
  color: var(--ink);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 16px;
  margin-top: 34px;
}

.is-cookie-policy .site-content > h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  margin-top: 24px;
}

.is-cookie-policy .site-content > p,
.is-cookie-policy .site-content > ul,
.is-cookie-policy .site-content > ol {
  color: #5c5f6a;
  font-size: 16px;
  line-height: 1.7;
}

.is-cookie-policy .site-content > p {
  margin-bottom: 14px;
  margin-top: 0;
}

.is-cookie-policy .site-content > ul,
.is-cookie-policy .site-content > ol {
  margin-bottom: 18px;
  margin-top: 8px;
  padding-left: 24px;
}

.is-cookie-policy .site-content > ul li,
.is-cookie-policy .site-content > ol li {
  margin-bottom: 7px;
  padding-left: 4px;
}

.is-cookie-policy .site-content a {
  color: #1769aa;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.is-cookie-policy .site-content > div[align="center"] {
  height: 1px;
  margin-bottom: 34px;
  margin-top: 34px;
  overflow: hidden;
}

.is-cookie-policy .site-content > div[align="center"] hr {
  border: 0;
  border-top: 1px solid #dedad3;
  margin: 0;
}

@media (max-width: 700px) {
  .is-cookie-policy .site-content {
    padding: 56px 20px 64px;
  }

  .is-cookie-policy .site-content > h1 {
    font-size: 38px;
  }

  .is-cookie-policy .site-content > h1 + p {
    font-size: 16px;
  }

  .is-cookie-policy .site-content > h2 {
    font-size: 25px;
  }

  .is-cookie-policy .site-content > h3 {
    font-size: 18px;
  }
}


/* Dynamic contact form consent checkbox */
.placeholder-form .form-checkbox-group {
  align-items: flex-start;
  display: grid;
  gap: 10px;
  grid-template-columns: 20px minmax(0, 1fr);
  margin-top: 4px;
}

.placeholder-form .form-checkbox-group input[type="checkbox"] {
  accent-color: var(--gold);
  border-radius: 4px;
  cursor: pointer;
  height: 18px;
  margin: 1px 0 0;
  min-height: 0;
  padding: 0;
  width: 18px;
}

.placeholder-form .form-checkbox-group label {
  color: #5c5f6a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
}

.placeholder-form .form-checkbox-group label a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.placeholder-form .form-checkbox-group label a:hover,
.placeholder-form .form-checkbox-group label a:focus-visible {
  color: var(--gold);
}

.placeholder-form .form-checkbox-group input.errorValidation {
  outline: 2px solid rgba(217, 48, 37, .55);
  outline-offset: 2px;
}

/* Basket coupon applied state */
.basketview-promo-applied {
  background: #eef6ef;
  border: 1px solid #b9d5be;
  border-radius: 7px;
  color: #0b2f16;
  padding: 16px;
}
.basketview-promo-applied-head {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}
.basketview-promo-applied-head > span {
  font-size: 14px;
  font-weight: 700;
}
.basketview-promo-applied-head > span::before {
  content: "\2713";
  margin-right: 7px;
}
.basketview-promo-applied strong {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
.basketview-promo-applied p {
  color: #42634a;
  font-size: 12px;
  margin: 5px 0 0;
}
.basketview-promo-applied button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #42634a;
  padding: 2px 0;
  text-decoration: underline;
}
.basketview-coupon-row {
  color: #24723a;
}
.basketview-coupon-row strong {
  white-space: nowrap;
}
.zg_class_page {
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  padding: 100px var(--page-pad) 96px;
}

.zg_class_page * {
  box-sizing: border-box;
}

.zg_class_shell {
  margin: 0 auto;
  max-width: 1180px;
}

.zg_class_breadcrumb {
  align-items: center;
  color: #5c5f6a;
  display: flex;
  font-size: 14px;
  gap: 8px;
  margin: 0 0 40px;
}

.zg_class_breadcrumb a {
  color: #5c5f6a;
  text-decoration: none;
}

.zg_class_breadcrumb span:last-child {
  color: var(--ink);
}

.zg_class_hero {
  margin: 0 auto 56px;
  max-width: 720px;
  text-align: center;
}

.zg_class_eyebrow {
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 6px;
}

.zg_class_title {
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 48px);
  font-weight: 400;
  line-height: 1.16;
  margin: 0;
}

.zg_class_quote {
  color: #5c5f6a;
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
  margin: 22px auto 0;
  max-width: 440px;
}

.zg_class_columns {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto 56px;
  max-width: 1180px;
}

.zg_class_columns h2 {
  color: var(--ink);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 16px;
  text-align: center;
}

.zg_class_columns p {
  color: #5c5f6a;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -.48px;
  line-height: 25.6px;
  margin: 0 auto;
  max-width: 490px;
  text-align: center;
}

.zg_class_columns strong {
  color: var(--ink);
  font-weight: 700;
}

.zg_class_visual {
  align-items: center;
  background: var(--soft);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  margin: 0 auto 56px;
  max-width: 1180px;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
}

.zg_class_visual img {
  height: auto;
  max-height: 360px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.zg_class_media {
  border-radius: 20px;
  height: 700px;
  margin: 0 auto;
  max-width: 1180px;
  overflow: hidden;
  position: relative;
}

.zg_class_media video,
.zg_class_media_video {
  background: var(--soft);
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.zg_class_play {
  align-items: center;
  aspect-ratio: 1;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, visibility .2s ease;
  width: min(340px, 60%);
  
}

.zg_class_media.is-playing .zg_class_play {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.zg_class_play_logo {
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(7, 39, 8, .28);
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.zg_class_play_icon {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 20px;
  height: 64px;
  justify-content: center;
  left: 50%;
  padding-left: 4px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
}

@media (max-width: 980px) {
  .zg_class_page {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .zg_class_columns {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .zg_class_visual {
    min-height: 360px;
  }

  .zg_class_media {
    height: 480px;
  }
}

@media (max-width: 640px) {
  .zg_class_page {
    padding: 54px var(--page-pad) 64px;
  }

  .zg_class_hero {
    margin-bottom: 40px;
  }

  .zg_class_quote {
    font-size: 15px;
  }

  .zg_class_columns {
    margin-bottom: 40px;
  }

  .zg_class_visual {
    margin-bottom: 40px;
    min-height: 280px;
  }

  .zg_class_media {
    height: 320px;
    margin-bottom: 40px;
  }

  .zg_class_play {
    width: min(220px, 70%);
  }

  .zg_class_play_icon {
    height: 52px;
    width: 52px;
  }
}

.basketview-promo-message.is-success {
  color: #24723a;
}
