@charset "UTF-8";
/*
  $list: a, b, d, e, f;
  $new-list: insert-nth($list, 3, c);     // a, b, c, d, e, f
*/
/*
  $list: a, b, r, a, c a, d a, b, r, a;
  $new-list: replace($list, a, u);       // u, b, r, u, c a, d a, b, r, u;
*/
/*
  $list: a, b, z, d, e, f;
  $new-list: replace-nth($list,   3, c); // a, b, c, d, e, f
  $new-list: replace-nth($list,  -2, c); // a, b, c, d, z, f
*/
/*
  $list: a, b z, c, z, d, z, e, f;
  $new-list: remove($list, z);       // a, b z, c, d, e, f;
*/
/*
  $list: a, b, z, c, d, e, f;
  $new-list: remove-nth($list,   3); // a, b, c, d, e, f
  $new-list: remove-nth($list,  -2); // a, b, z, c, d, f
*/
/*
  $list: a, b, c, d, e, f;
  $new-list: slice($list, 3, 5);   // c, d, e
  $new-list: slice($list, 4, 4);   // d
*/
/*
  $list: a, b, c d e, f, g, h;
  $new-list: reverse($list);       // h, g, f, c d e, b, a
  $new-list: reverse($list, true); // h, g, f, e d c, b, a
*/
/*
    Добавляет константу к каждому значению карты.

    Пример:
      $map: (
        (1024px, 0): 100px,
        (768px, 1024px): 80px,
        (0, 768px): 60px,
      )

      > map_add($map, 10px)
      (
        (1024px, 0): 110px,
        (768px, 1024px): 90px,
        (0, 768px): 70px,
      )
 */
/*
    Получение ключа карты $map media-интервалов,
    в который входит искомый интервал $media.
    Если искомый интервал находится на границе
    двух или более интервалов карты, генерируется ошибка.

    Пример:
      $map: (
        (1024px, 0): 100px,
        (768px, 1024px): 80px,
        (0, 768px): 60px,
      )

      > media_map_key($map, (1200px, 0))
      (1024px, 0)
 */
/*
    Получение среза media-карты.

    Пример:
      $map: (
        (1024px, 0): 100px,
        (768px, 1024px): 80px,
        (0, 768px): 60px,
      )

      > media_map_slice($map, (640px, 1200px))
      (
        (1024px, 1200px): 100px,
        (768px, 1024px): 80px,
        (640px, 768px): 60px,
      )
 */
/*
  Многоколоночная верстка через flexbox.

  Пример:
    .list {
      display: flex;
      flex-wrap: wrap;

      .item {
        @include flex-columns(2, 10px, 10px);
      }
    }
*/
/*
  Пример:
    input {
      color: #808080;
      ...
      @include placeholder {
        color: red;
      }
    }
*/
.main-block {
  position: relative;
  min-height: 100vh;
}
.main-block__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.main-block__bg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  pointer-events: none;
}
.main-block__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding-top: 15.8%;
  padding-bottom: 0;
}
@media all and (min-width: 768px) {
  .main-block__inner {
    padding-bottom: 0;
  }
}
.awards-strip--hero {
  margin-top: auto;
  width: 100%;
  border: none !important;
  background: none;
  backdrop-filter: none;
  padding: 18px 110px;
  margin-bottom: 0;
  justify-content: space-between;
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  .awards-strip--hero { padding-left: 30px; padding-right: 30px; }
}
@media all and (max-width: 767px) {
  .awards-strip--hero { padding-left: 20px; padding-right: 20px; }
}
.awards-strip--hero .award-badge__title {
  font-size: 1.05rem;
  line-height: 1.5;
}
.awards-strip--hero .award-badge__sub {
  font-size: .93rem;
  line-height: 1.5;
}
.awards-strip--hero .award-divider {
  display: none;
}
.main-block__title {
  margin-top: 175px;
  margin-bottom: 60px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .main-block__title {
    margin-top: 150px;
  }
}
.main-block__title-item {
  position: relative;
  display: inline-block;
  font-weight: normal;
  font-family: "Cookie", cursive;
  font-size: 80px;
  font-size: 5rem;
  line-height: 1;
}
@media all and (min-width: 360px) and (max-width: 374px) {
  .main-block__title-item {
    font-size: 90px;
    font-size: 5.625rem;
    line-height: 1;
  }
}
@media all and (min-width: 375px) and (max-width: 783px) {
  .main-block__title-item {
    font-size: 100px;
    font-size: 6.25rem;
    line-height: 0.9;
  }
}
@media all and (min-width: 784px) and (max-width: 1023px) {
  .main-block__title-item {
    padding-bottom: 4.8%;
    font-size: 140px;
    font-size: 8.75rem;
    line-height: 0.35;
  }
}
@media all and (min-width: 1024px) {
  .main-block__title-item {
    padding-bottom: 4.8%;
    font-size: 176px;
    font-size: 11rem;
    line-height: 0.2784090909;
  }
}
.main-block__title-item span {
  position: absolute;
  left: 0;
  top: 95%;
  width: 100%;
  max-width: 77%;
  text-align: right;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.1538461538;
  letter-spacing: 0.04em;
}
@media all and (max-width: 767px) {
  .main-block__title-item span {
    max-width: 100%;
    text-align: center;
  }
}
@media all and (min-width: 360px) and (max-width: 374px) {
  .main-block__title-item span {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.1333333333;
  }
}
@media all and (min-width: 375px) and (max-width: 767px) {
  .main-block__title-item span {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 1.1176470588;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .main-block__title-item span {
    top: 100%;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.65625;
  }
}
@media all and (min-width: 1024px) {
  .main-block__title-item span {
    top: 100%;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.325;
    letter-spacing: 0;
  }
}
.main-block__info {
  text-align: center;
  padding-top: 45px;
  opacity: 0;
  color: #FFFFFF;
}
.main-block__info-title {
  margin-bottom: 4px;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}
.main-block__info-description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
}
.main-block__info-description a {
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  text-decoration: underline;
  transition: color 0.35s;
}
@media all and (min-width: 1024px) {
  .main-block__info-description a:hover {
    color: #00d6a2;
  }
}
.main-block .swiper-slide {
  text-align: center;
  transform: scale(0.8);
  transition: all 200ms linear;
}
.main-block .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.main-block .swiper-slide.swiper-slide-active .main-block__info {
  opacity: 1;
}
.main-block .swiper-box {
  width: 100%;
  margin-top: auto;
}
.main-block .swiper-slide {
  opacity: 0;
  position: relative;
  pointer-events: none;
  transition: all 0.3s;
}
.main-block .swiper-slide.swiper-slide-active, .main-block .swiper-slide.swiper-slide-prev, .main-block .swiper-slide.swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
}
.main-block .swiper-pagination {
  margin-top: 25px;
}


/* ── Category Grid — flex, centered last row ──────────────── */
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 32px 0;
}

/* Dark card — no white box artifact, products float on depth */
.cat-grid__item {
  flex: 0 0 240px;
  max-width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  background: #0e1810;
  border: 1px solid rgba(45,122,79,.28);
  position: relative;
  box-shadow: 0 4px 22px rgba(0,0,0,.45);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.cat-grid__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(0,0,0,.55);
  border-color: rgba(45,122,79,.55);
}

.cat-grid__thumb {
  width: 100%;
  aspect-ratio: 7 / 4;
  overflow: hidden;
  background: transparent;
}
.cat-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .38s ease;
}
.cat-grid__item:hover .cat-grid__thumb img {
  transform: scale(1.06);
}
.cat-grid__thumb--placeholder {
  width: 100%;
  height: 100%;
  background: rgba(45,122,79,.08);
}

/* Hairline separator between image and text — seamless not harsh */
.cat-grid__label {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(45,122,79,.2);
}

.cat-grid__title {
  font-size: .97rem;
  font-weight: 700;
  color: #e8f0ea;
  margin: 11px 14px 4px;
}

.cat-grid__more {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

@media (min-width: 1140px) {
  .cat-grid__item { flex: 0 0 260px; }
}
@media (max-width: 600px) {
  .cat-grid { gap: 12px; }
  .cat-grid__item {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
}

/* ── "View All CBD" button — dark green, one family with wiki cards */
.popular-block .btn-wr {
  display: flex;
  justify-content: center;
  margin: 8px 0 28px;
}

.popular-block__btn.btn--gradient {
  background-image: linear-gradient(135deg, #1a472a 0%, #2d7a4f 100%);
  background-color: transparent;
  background-size: 200% auto;
  background-position: left center;
  border-radius: 10px;
  border: 1px solid rgba(45,122,79,.5);
  padding: 14px 52px;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(26,71,42,.35);
  transition: background-position .4s ease, box-shadow .25s;
}
.popular-block__btn.btn--gradient:hover {
  background-position: right center;
  opacity: 1;
  box-shadow: 0 8px 28px rgba(26,71,42,.55);
}
.popular-block__btn .btn__content {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #fff;
  color: #fff;
  letter-spacing: .08em;
}

/* ── Wiki Cards — same family, same border language ─────────── */
.wiki-card-row {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.wiki-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 260px;
  min-width: 220px;
  background: linear-gradient(135deg, #1a472a 0%, #2d7a4f 100%);
  border-radius: 14px;
  padding: 20px 24px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(45,122,79,.45);
  box-shadow: 0 4px 20px rgba(26,71,42,.32);
  transition: transform .22s, box-shadow .22s;
}
.wiki-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26,71,42,.5);
  opacity: 1;
  color: #fff;
}
.wiki-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.wiki-card__body { flex: 1; }
.wiki-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  margin-bottom: 3px;
}
.wiki-card__sub {
  font-size: .8rem;
  opacity: .82;
}
.wiki-card__arrow {
  font-size: 1.3rem;
  opacity: .6;
  flex-shrink: 0;
  transition: transform .22s, opacity .22s;
}
.wiki-card:hover .wiki-card__arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Payment brand icons */
.payment-brands {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 20px;
  flex-wrap: wrap;
}
.payment-brands img {
  height: 28px;
  width: auto;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 3px 6px;
  background: #fff;
}


/* ── Awards / Trust strip ──────────────────────────────────── */
.awards-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 22px 0 28px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(45,122,79,.18);
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  text-decoration: none;
  transition: opacity .2s;
}
a.award-badge:hover { opacity: .75; }
.award-badge__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(2,194,148,.25));
}
.award-badge__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.award-badge__title {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  white-space: nowrap;
}
.award-badge__sub {
  font-size: .68rem;
  color: #02C294;
  opacity: .8;
  white-space: nowrap;
}
.award-divider {
  width: 1px;
  height: 34px;
  background: rgba(45,122,79,.25);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .award-badge { padding: 8px 14px; }
  .award-divider { display: none; }
}

/* ── Payment badges ────────────────────────────────────────── */
.payment-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0 6px;
  flex-wrap: wrap;
}
.payment-badges__label {
  font-size: .68rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-right: 4px;
}
.payment-badges__logos {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  transition: opacity .18s;
}
.pay-badge:hover { opacity: .85; }
.pay-badge--visa {
  width: 54px;
  height: 34px;
  padding: 4px 6px;
  background: #fff;
}
.pay-badge--visa svg {
  width: 100%;
  height: 100%;
}
.pay-badge--maestro {
  width: 54px;
  height: 34px;
  padding: 4px;
  background: #fff;
}
.pay-badge--maestro svg {
  width: 100%;
  height: 100%;
}
.pay-badge--ssl {
  width: 54px;
  height: 34px;
  padding: 2px;
  background: #0e1810;
  border-color: rgba(45,122,79,.4);
}
.pay-badge--ssl svg {
  width: 100%;
  height: 100%;
}
