@charset "UTF-8";
/* Reset */
@import url("https://fonts.cdnfonts.com/css/helvetica-neue-55");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
  color: inherit;
  background: none;
  outline: inherit;
  cursor: pointer;
}

[hidden] {
  display: none;
}

/* Theme */
/* Root */
:root {
  font-size: 14.5px;
  line-height: 1.5;
  --black: #1a1a1a;
  --honeyberry: #6e89c8;
  --bold-grey: #666666;
  --light-grey: #999999;
  --white: #ffffff;
  --ivory: #fffff0;
  --almost-white: #f8f7f5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
}

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

p,
a {
  font-size: 1rem;
}

a {
  color: var(--black);
  text-decoration: none;
}

/* Body */
body {
  width: 100%;
  height: 100%;
  color: var(--black);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: var(--white);
}

/* Cookies */
#cookie {
  display: none;
}

.cookies {
  width: 100%;
  max-width: 33.3333333333%;
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 30px;
  background: var(--honeyberry);
  z-index: 666;
}
.cookies__actions {
  display: flex;
  gap: 30px;
}
.cookies__actions--tab {
  font-size: 0.875rem;
  background: none;
  border: 0;
  opacity: 0.5;
  cursor: pointer;
}
.cookies__actions--tab.active {
  opacity: 1;
}
.cookies__content {
  padding: 15px 0;
}
.cookies__content--panel {
  display: none;
}
.cookies__content--panel.active {
  display: block;
}
.cookies__content--panel__notice {
  font-size: 0.875rem;
}
.cookies__content--panel__agreements {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.cookies__content--panel__agreements label {
  font-size: 0.875rem;
}
.cookies__content--panel__accordion {
  border-top: 1px solid var(--black);
}
.cookies__content--panel__accordion--header {
  width: 100%;
  padding: 15px 0;
  font-size: 0.875rem;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
}
.cookies__content--panel__accordion--body {
  display: none;
  margin-bottom: 15px;
  font-size: 0.875rem;
}
.cookies__content--panel__accordion.is-open > .cookies__content--panel__accordion--body {
  display: block;
}
.cookies__cta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.cookies__cta--accept {
  font-size: 0.875rem;
  background-color: transparent;
  border: 1px solid var(--black);
  padding: 7px 14px;
  opacity: 1;
  transition: opacity 0.16s ease;
  cursor: pointer;
}
.cookies__cta--accept:hover {
  opacity: 0.5;
}
.cookies__cta--stack {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.cookies__cta--stack__accept-selected, .cookies__cta--stack__reject {
  font-size: 0.875rem;
  background-color: transparent;
  padding: 7px 0;
  cursor: pointer;
}
.cookies__cta--stack__accept-selected {
  opacity: 1;
  transition: opacity 0.16s ease;
}
.cookies__cta--stack__accept-selected:hover {
  opacity: 0.5;
}
.cookies__cta--stack__reject {
  opacity: 0.5;
  transition: opacity 0.16s ease;
}
.cookies__cta--stack__reject:hover {
  opacity: 1;
}

/* Navigation */
.navigation {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 30px;
}
.navigation__url a {
  transition: color 0.16s ease;
}
.navigation__url a:hover {
  color: var(--bold-grey);
}
.navigation__menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.navigation__menu--primary, .navigation__menu--secondary {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navigation__menu--primary li, .navigation__menu--secondary li {
  margin: 0;
  padding: 0;
}
.navigation__menu--primary li a,
.navigation__menu--primary li span, .navigation__menu--secondary li a,
.navigation__menu--secondary li span {
  color: inherit;
  text-decoration: none;
  transition: color 0.16s ease;
}
.navigation__menu--primary li a:hover,
.navigation__menu--primary li span:hover, .navigation__menu--secondary li a:hover,
.navigation__menu--secondary li span:hover {
  color: var(--bold-grey);
}
.navigation__menu--primary li span, .navigation__menu--secondary li span {
  cursor: pointer;
}
.navigation__menu--primary {
  display: inherit;
  flex-direction: inherit;
  justify-content: flex-start;
  gap: 15px;
}

/* Information */
.information {
  width: calc(50% - 30px);
  height: calc(100svh - 30px - 14.5px - 7.25px - 30px);
  display: none;
  position: fixed;
  top: 81.75px;
  right: 30px;
  padding: 30px 0;
  background-color: var(--white);
  border-top: 1px solid var(--black);
  z-index: 666;
}
.information__wrapper {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-column-gap: 30px;
  position: relative;
}
.information__wrapper--sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.information__wrapper--sidebar ul li {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
  color: var(--bold-grey);
  transition: color 0.16s ease-in-out;
  cursor: pointer;
}
.information__wrapper--sidebar ul li span {
  pointer-events: none;
}
.information__wrapper--sidebar ul li.active {
  color: var(--black);
}
.information__wrapper--sidebar ul li:hover {
  color: var(--black);
}
.information__wrapper--content {
  height: 100%;
  overflow-y: auto;
}
.information__wrapper--content__details {
  display: none;
}
.information__wrapper--content__details p,
.information__wrapper--content__details span,
.information__wrapper--content__details a {
  line-height: 1.3;
}
.information__wrapper--content__details p:not(:first-of-type) {
  margin-top: 15px;
}
.information__wrapper--content__details span {
  display: block;
}
.information__wrapper--content__details a {
  transition: color 0.16s ease;
}
.information__wrapper--content__details a:hover {
  color: var(--bold-grey);
}
.information__wrapper--content__details ol {
  margin-top: 15px;
  padding-left: 0;
  list-style-type: none;
}
.information__wrapper--content__details ol li {
  position: relative;
  margin: 0;
  padding: 0;
  padding-left: 10px;
}
.information__wrapper--content__details ol li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
}
.information__wrapper--content__details--separator {
  margin: 30px 0;
  border-top: 1px solid var(--black);
}
.information__wrapper--content__details.active {
  display: block;
  animation: fadeIn 0.33s ease;
}
.information__wrapper--content::-webkit-scrollbar {
  width: 3px;
}
.information__wrapper--content::-webkit-scrollbar-track {
  background: transparent;
}
.information__wrapper--content::-webkit-scrollbar-thumb {
  background: var(--bold-grey);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Container */
.container {
  width: 100%;
  height: auto;
  padding: 0 30px;
}

/* Categories */
.categories {
  width: inherit;
  height: auto;
  margin-top: calc(33svh - 30px - 14.5px - 7.25px - 30px);
  margin-left: 50%;
}
.categories__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.categories__list li {
  margin: 0;
  padding: 0;
}
.categories__list li a {
  color: inherit;
  font-size: 2.5rem;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.16s ease;
}
.categories__list li a:hover {
  color: var(--bold-grey);
}

/* Blog */
.blog {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.blog__article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 60px;
}
.blog__article:only-child {
  width: 100%;
  max-width: 960px;
  grid-column: 1/-1;
  margin: 0 auto;
  margin-top: calc(33svh - 30px - 14.5px - 7.25px - 30px);
}
.blog__article--header h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}
.blog__article--header span {
  font-size: 1.241rem;
  font-size: 1.3;
}
.blog__article--content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}
.blog__article--content p {
  font-size: 1.241rem;
  line-height: 1.3;
}
.blog__article--footer {
  padding: 30px 0;
  border-top: 1px solid var(--black);
}
.blog__sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.blog__sidebar--categories {
  padding-left: 15px;
  list-style: none;
}
.blog__sidebar--categories__action {
  margin: 0;
  padding: 0;
}
.blog__sidebar--categories__action a {
  color: var(--bold-grey);
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.16s ease-in-out;
}
.blog__sidebar--categories__action a:hover {
  color: var(--black);
}
.blog__sidebar--categories__action.blog__sidebar--categories__active a {
  color: var(--black);
  pointer-events: none;
}
.blog__archive--year {
  border-top: 1px solid var(--black);
}
.blog__archive--year__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}
.blog__archive--year__data--chevron {
  width: 7.25px;
  height: 7.25px;
  margin-right: 2px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg);
  transition: transform 0.33s ease;
}
.blog__archive--year__articles {
  display: none;
  margin-left: calc(25% + 30px);
}
.blog__archive--year__articles--meta {
  padding: 15px 0;
  border-bottom: 1px solid var(--black);
  display: flex;
  justify-content: space-between;
  color: var(--black);
  text-decoration: none;
  transition: color 0.16s ease;
}
.blog__archive--year__articles--meta:last-of-type {
  border-bottom: none;
}
.blog__archive--year__articles--meta:hover {
  color: var(--black) !important;
}
.blog__archive--year__articles:hover .blog__archive--year__articles--meta:not(:hover) {
  color: var(--bold-grey);
}
.blog__archive--year.blog__archive--year__active .blog__archive--year__data--chevron {
  transform: rotate(-135deg);
}
.blog__archive--year:last-child {
  border-bottom: 1px solid var(--black);
}

/* Shop */
.shop {
  width: 100%;
  height: auto;
}
.shop__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 15px;
}
.shop__products--item {
  display: block;
  background-color: var(--almost-white);
  text-decoration: none;
  overflow: hidden;
}
.shop__products--item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.33s ease-in-out;
}
.shop__products--item:hover img {
  transform: scale(1.1);
}
.shop__product {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 0px;
  margin-bottom: 30px;
}
.shop__product--thumbnail {
  width: 100%;
  max-width: calc(100% - 60px);
  height: auto;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.shop__product--thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.33s ease-out;
  transform-origin: center center;
}
.shop__product--thumbnail:hover img {
  transform: scale(1.1);
}
.shop__product--wrapper__details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.shop__product--wrapper__details--description p {
  color: var(--bold-grey);
  line-height: 1.3;
}
.shop__product--wrapper__details--price span {
  font-size: 1.241rem;
  line-height: 1.3;
}
.shop__product--wrapper__details--actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.shop__product--wrapper__details--actions__buy {
  display: block;
  padding: 7.25px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  background-color: var(--black);
  border: 1px solid var(--black);
  border-radius: 30px;
  transition: background-color 0.33s ease, border-color 0.33s ease, color 0.33s ease;
}
.shop__product--wrapper__details--actions__buy:hover {
  background-color: var(--honeyberry);
  border: 1px solid var(--honeyberry);
}
.shop__product--wrapper__details--actions__contact {
  display: block;
  padding: 7.25px;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--black);
  border-radius: 30px;
  transition: background-color 0.33s ease, border-color 0.33s ease, color 0.33s ease;
}
.shop__product--wrapper__details--actions__contact:hover {
  color: var(--white);
  background-color: var(--black);
}
.shop__product--wrapper__details--actions__buy, .shop__product--wrapper__details--actions__contact {
  cursor: pointer;
}
.shop__product--wrapper__details--faq {
  margin-top: 15px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.shop__product--wrapper__details--faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.shop__product--wrapper__details--faq__question--chevron {
  width: 7.25px;
  height: 7.25px;
  margin-right: 2px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg);
  transition: transform 0.33s ease;
}
.shop__product--wrapper__details--faq--answer {
  display: none;
  padding: 15px 0;
}
.shop__product--wrapper__details--faq--answer p {
  color: var(--bold-grey);
  line-height: 1.3;
}
.shop__product--wrapper__details--faq.shop__product--wrapper__details--faq--active .shop__product--wrapper__details--faq__question--chevron {
  transform: rotate(-135deg);
}
.shop__product--wrapper__details--form {
  display: none;
}
.shop__product--wrapper__details--form__back {
  display: inline-block;
  position: relative;
  color: var(--light-grey);
  text-decoration: none;
  cursor: pointer;
}
.shop__product--wrapper__details--form__back::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background: var(--light-grey);
  transition: width 0.33s ease;
}
.shop__product--wrapper__details--form__back:hover::after {
  width: 0;
}
.shop__product--wrapper__details--form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.shop__product--wrapper__details--form form input,
.shop__product--wrapper__details--form form textarea {
  width: 100%;
  padding: 10px 0;
  color: var(--black);
  font-size: 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--light-grey);
  outline: none;
}
.shop__product--wrapper__details--form form input::-moz-placeholder, .shop__product--wrapper__details--form form textarea::-moz-placeholder {
  color: var(--bold-grey);
  opacity: 1;
}
.shop__product--wrapper__details--form form input::placeholder,
.shop__product--wrapper__details--form form textarea::placeholder {
  color: var(--bold-grey);
  opacity: 1;
}
.shop__product--wrapper__details--form form input:focus,
.shop__product--wrapper__details--form form textarea:focus {
  border-bottom-color: var(--black);
}
.shop__product--wrapper__details--form form textarea {
  min-height: 90px;
  resize: vertical;
}
.shop__product--wrapper__details--form form #checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 0.83rem;
}
.shop__product--wrapper__details--form form #checkbox a {
  display: inline-block;
  position: relative;
  color: inherit;
  font-size: 0.83rem;
  text-decoration: none;
}
.shop__product--wrapper__details--form form #checkbox a::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background: currentColor;
  transition: width 0.33s ease;
}
.shop__product--wrapper__details--form form #checkbox a:hover::after {
  width: 0;
}
.shop__product--wrapper__details--form form #checkbox input[type=checkbox] {
  width: auto;
  height: auto;
}
.shop__product--wrapper__details--form form #captcha {
  margin-top: 10px;
}
.shop__product--wrapper__details--form form button {
  display: block;
  margin-top: 10px;
  padding: 7.25px;
  color: var(--white);
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  background-color: var(--black);
  border: 1px solid var(--black);
  border-radius: 30px;
  transition: background-color 0.33s ease, border-color 0.33s ease, color 0.33s ease;
}
.shop__product--wrapper__details--form form button:hover {
  background-color: var(--honeyberry);
  border: 1px solid var(--honeyberry);
}
.shop__product--wrapper.is-form-open .shop__product--wrapper__details--title,
.shop__product--wrapper.is-form-open .shop__product--wrapper__details--description,
.shop__product--wrapper.is-form-open .shop__product--wrapper__details--price,
.shop__product--wrapper.is-form-open .shop__product--wrapper__details--actions,
.shop__product--wrapper.is-form-open .shop__product--wrapper__details--faq {
  display: none;
}
.shop__product--wrapper.is-form-open .shop__product--wrapper__details--form {
  display: block;
}

/* Footer */
.sneakpeak {
  width: 100%;
  max-width: 33.3333333333%;
  height: auto;
  position: absolute;
  right: 30px;
  bottom: 30px;
}
.sneakpeak p {
  line-height: 1.3;
}
.sneakpeak p span {
  display: inline-block;
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.sneakpeak p span::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background: currentColor;
  transition: width 0.33s ease;
}
.sneakpeak p span:hover::after {
  width: 0;
}

@media (max-width: 1024px) {
  /* Cookies */
  .cookies {
    width: 100%;
    max-width: 100%;
    bottom: 0px;
    right: 0px;
    padding: 15px;
  }
  .cookies__cta {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 15px;
  }
  .cookies__cta--accept {
    width: 100%;
  }
  .cookies__cta--stack {
    width: 100%;
    margin-top: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .cookies__cta--stack__accept-selected, .cookies__cta--stack__reject {
    width: 100%;
    border: 1px solid var(--black);
    padding: 7px 14px;
  }
  .cookies__cta--stack__accept-selected {
    opacity: 1;
    transition: opacity 0.16s ease;
  }
  .cookies__cta--stack__accept-selected:hover {
    opacity: 0.5;
  }
  /* Navigation */
  .navigation {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
  }
  .navigation__menu--primary {
    gap: 30px;
  }
  /* Information*/
  .information {
    width: 100%;
    height: calc(100svh - 30px - 14.5px - 7.25px - 30px - 14.5px - 7.25px - 30px);
    top: 133.5px;
    left: 0;
    padding: 0 30px 30px 30px;
    border-top: none;
  }
  .information__wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
    border-top: 1px solid var(--black);
  }
  .information__wrapper--sidebar ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0 30px 0;
  }
  .information__wrapper--sidebar ul li {
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid var(--black);
  }
  .information__wrapper--sidebar ul li:first-child {
    border-top: none;
  }
  .information__wrapper--sidebar ul li:last-child {
    border-bottom: 1px solid var(--black);
  }
  .information__wrapper--content {
    flex: 1;
    margin: 0;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
  }
  /* Container */
  /* Categories */
  .categories {
    margin-top: calc(33svh - 30px - 14.5px - 7.25px - 30px - 14.5px - 7.25px - 30px);
    margin-left: 0;
  }
  /* Blog */
  .blog {
    grid-template-columns: 1fr;
  }
  .blog__article:only-child {
    max-width: 100%;
    margin-top: 30px;
  }
  .blog__sidebar {
    display: none;
  }
  .blog__archive--year__articles {
    margin-left: 0;
  }
  /* Shop */
  .shop__products {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
  }
  .shop__product {
    display: block;
  }
  .shop__product--thumbnail {
    max-width: 100%;
    margin-bottom: 0;
  }
  .shop__product--wrapper {
    padding: 30px 0;
  }
  /* Footer */
  .sneakpeak {
    max-width: 100%;
    right: 0;
    bottom: 0;
  }
  .sneakpeak p {
    padding: 30px;
  }
}/*# sourceMappingURL=styles.css.map */