html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

/* Fonts */
@font-face {
  font-family: "florea";
  src: url("/fonts/Barlow-Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "florea";
  src: url("/fonts/Barlow-LightItalic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "florea";
  src: url("/fonts/Barlow-Medium.ttf") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "florea";
  src: url("/fonts/Barlow-MediumItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "florea";
  src: url("/fonts/Barlow-Regular.ttf") format("woff2");
  font-weight: bolder;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "florea";
  src: url("/fonts/Barlow-Italic.woff2") format("woff2");
  font-weight: bolder;
  font-style: italic;
  font-display: swap;
}
/* Color */
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
*::-webkit-scrollbar-track {
  box-shadow: none;
  background: hsl(332, 75%, 20%);
}
*::-webkit-scrollbar-thumb {
  background: hsl(9, 66%, 71%);
  border: 2px solid hsl(332, 75%, 20%);
  border-radius: 6px;
}

details summary {
  cursor: pointer;
  transition: color 0.3s;
}
@media only screen and (min-width: 900px) {
  details summary:hover {
    color: hsl(9, 66%, 71%);
  }
}

/* Lenis */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/*	General	*/
html,
body {
  height: 100%;
}

body {
  background-color: hsl(332, 75%, 20%);
  color: hsl(332, 75%, 20%);
  font-size: 16px;
  font-family: "florea", sans-serif;
}
@media only screen and (max-width: 560px) {
  body {
    font-size: 14px;
  }
}

a {
  cursor: pointer;
  outline: none;
  color: inherit;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}
@media only screen and (min-width: 900px) {
  a:hover {
    text-decoration: none;
  }
}

a img {
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}

h1, h2, h3, h4 {
  font-weight: normal;
  line-height: 110%;
  margin-bottom: 0.2em;
  text-wrap: balance;
}

p {
  font-size: 1em;
  line-height: 120%;
  text-wrap: balance;
}
p b, p strong {
  font-weight: bold;
}

p + p {
  margin-top: 1em;
}

/* Forms */
button,
.btn,
input[type=submit] {
  font-family: "florea", sans-serif;
  font-size: 1.25em;
  line-height: 100%;
  font-feature-settings: "tnum" on, "lnum" on;
  background-color: hsl(0, 0%, 100%);
  color: hsl(332, 75%, 20%);
  border: none;
  height: 2.5em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5em;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  transition-property: color, background-color, border;
  vertical-align: bottom;
  box-sizing: border-box;
  text-decoration: none;
}
button svg,
.btn svg,
input[type=submit] svg {
  transition: transform 0.3s;
}
button svg path,
.btn svg path,
input[type=submit] svg path {
  transition: fill 0.3s;
  fill: hsl(9, 66%, 71%);
}
button:hover, button:focus,
.btn:hover,
.btn:focus,
input[type=submit]:hover,
input[type=submit]:focus {
  background-color: hsl(332, 75%, 20%);
  color: hsl(9, 66%, 71%);
}
button:hover svg,
.btn:hover svg,
input[type=submit]:hover svg {
  transform: scale(1.1);
}
button:active,
.btn:active,
input[type=submit]:active {
  opacity: 0.7;
  transform: scale(0.97);
}
button.btn-ghost,
.btn.btn-ghost,
input[type=submit].btn-ghost {
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  color: hsl(0, 0%, 100%);
}
button.btn-ghost svg path,
.btn.btn-ghost svg path,
input[type=submit].btn-ghost svg path {
  fill: hsl(0, 0%, 100%);
}
button.btn-ghost:hover, button.btn-ghost:focus,
.btn.btn-ghost:hover,
.btn.btn-ghost:focus,
input[type=submit].btn-ghost:hover,
input[type=submit].btn-ghost:focus {
  border-color: hsl(332, 75%, 20%);
  color: hsl(332, 75%, 20%);
}
button.btn-ghost:hover svg path, button.btn-ghost:focus svg path,
.btn.btn-ghost:hover svg path,
.btn.btn-ghost:focus svg path,
input[type=submit].btn-ghost:hover svg path,
input[type=submit].btn-ghost:focus svg path {
  fill: hsl(332, 75%, 20%);
}
button.btn-ico,
.btn.btn-ico,
input[type=submit].btn-ico {
  padding-right: 5px;
}
button.btn-only-ico,
.btn.btn-only-ico,
input[type=submit].btn-only-ico {
  padding: 0;
}
button.btn-full,
.btn.btn-full,
input[type=submit].btn-full {
  width: 100%;
}
button:disabled, button.disabled,
.btn:disabled,
.btn.disabled,
input[type=submit]:disabled,
input[type=submit].disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

body {
  overflow: hidden;
}

.main {
  background-color: hsl(9, 66%, 71%);
  background-image: linear-gradient(hsl(9, 66%, 71%) 30%, hsl(341, 83%, 62%));
  margin: 20px;
  border-radius: 20px;
  position: relative;
}
@media only screen and (max-width: 560px) {
  .main {
    margin: 10px;
  }
}
.main .all {
  position: relative;
  z-index: 1;
}

header {
  position: fixed;
  z-index: 2;
  top: 20px;
  left: 20px;
  right: 20px;
  border-radius: 20px 20px 0 0;
  padding: 30px 80px;
}
@media only screen and (min-width: 560px) {
  header {
    background-image: linear-gradient(hsl(9, 66%, 71%) 0%, hsla(9, 66%, 71%, 0));
  }
}
@media only screen and (max-width: 560px) {
  header {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 10px 20px;
  }
}
header .box {
  display: flex;
  justify-content: space-between;
}
header .logo {
  position: relative;
  margin-left: -50px;
}
@media only screen and (max-width: 560px) {
  header .logo {
    margin-left: -10px;
  }
}
header .logo img {
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 560px) {
  header .logo img:first-child {
    display: none;
  }
}
header .logo img:last-child {
  transform: scale(0);
}
@media only screen and (max-width: 560px) {
  header .logo img:last-child {
    transform: scale(1);
  }
}

@media only screen and (min-width: 560px) {
  body.mini header {
    background-image: linear-gradient(hsl(9, 66%, 71%) 30%, hsla(9, 66%, 71%, 0));
  }
}

nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
@media only screen and (max-width: 560px) {
  nav ul {
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    z-index: 10;
    inset: 0;
    background-color: hsl(332, 75%, 20%);
    padding: 40px 20px;
    transition: transform 0.3s;
    transform: translateX(101%);
  }
  nav ul a {
    font-size: 2em;
    color: hsl(9, 66%, 71%);
  }
}
nav.open ul {
  transform: translateX(0%);
}

@media only screen and (min-width: 560px) {
  .show-menu {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .show-menu {
    position: fixed;
    z-index: 1102;
    top: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px 10px;
    gap: 5px;
    height: 40px;
    width: 40px;
    background-color: hsl(332, 75%, 20%);
  }
}
.show-menu i {
  display: block;
  height: 1px;
  background-color: hsl(9, 66%, 71%);
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
}
.show-menu.open i {
  background-color: hsl(9, 66%, 71%);
}
.show-menu.open i:nth-child(1) {
  transform: scaleY(0);
}
.show-menu.open i:nth-child(2) {
  transform: rotate(45deg) translateX(4px);
}
.show-menu.open i:nth-child(3) {
  transform: rotate(-45deg) translateX(4px);
}
.show-menu.open i:nth-child(4) {
  transform: scaleY(0);
}

.supertitle {
  font-size: 4em;
  line-height: 100%;
  text-wrap: balance;
}

.title {
  font-size: 2.25em;
  text-wrap: balance;
}

.subtitle {
  font-size: 1.5em;
  text-wrap: balance;
}
.subtitle + p {
  margin-top: 0.4em;
}

.small {
  font-size: 0.75em;
  text-wrap: balance;
}

.back {
  text-align: right;
  margin-block: 1em;
}

footer {
  padding: 10px 80px 30px;
  color: hsl(9, 66%, 71%);
  font-size: 0.85em;
}
@media only screen and (max-width: 560px) {
  footer {
    padding: 10px 20px 20px;
  }
}
footer a {
  color: hsl(9, 66%, 71%);
}
footer .copy {
  display: flex;
}
@media only screen and (max-width: 560px) {
  footer .copy {
    flex-direction: column;
  }
}
footer .copy > a {
  margin-left: 20px;
}
@media only screen and (max-width: 560px) {
  footer .copy > a {
    margin-left: 0;
    margin-top: 10px;
  }
}
footer .copy .legal {
  margin-left: auto;
  display: flex;
}
@media only screen and (max-width: 560px) {
  footer .copy .legal {
    margin-left: 0;
    margin-top: 20px;
    flex-direction: column;
  }
}
footer .copy .legal a + a {
  margin-left: 20px;
}
@media only screen and (max-width: 560px) {
  footer .copy .legal a + a {
    margin-left: 0;
    margin-top: 10px;
  }
}

.loading {
  position: fixed;
  inset: 0;
  background: hsl(332, 75%, 20%);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.loading i {
  animation: rotate 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}
.loading i svg {
  width: 100px;
  height: auto;
}

.corners > * {
  position: fixed;
  z-index: 10;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 560px) {
  .corners > * {
    width: 20px;
    height: 20px;
  }
}
.corners > * path {
  fill: hsl(332, 75%, 20%);
}
.corners > *:first-child {
  left: 0;
  top: 0;
}
.corners > *:nth-child(2) {
  right: 0;
  top: 0;
  transform: rotate(90deg);
}
.corners > *:nth-child(3) {
  left: 0;
  bottom: 0;
  transform: rotate(270deg);
}
.corners > *:nth-child(4) {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.bds > * {
  position: fixed;
  z-index: 10;
  background-color: hsl(332, 75%, 20%);
}
.bds > *:first-child {
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
}
@media only screen and (max-width: 560px) {
  .bds > *:first-child {
    width: 10px;
  }
}
.bds > *:nth-child(2) {
  left: 0;
  right: 0;
  top: 0;
  height: 20px;
}
@media only screen and (max-width: 560px) {
  .bds > *:nth-child(2) {
    height: 10px;
  }
}
.bds > *:nth-child(3) {
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
}
@media only screen and (max-width: 560px) {
  .bds > *:nth-child(3) {
    width: 10px;
  }
}
.bds > *:nth-child(4) {
  right: 0;
  left: 0;
  bottom: 0;
  height: 20px;
}
@media only screen and (max-width: 560px) {
  .bds > *:nth-child(4) {
    height: 10px;
  }
}

.grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  padding: 0 80px;
  pointer-events: none;
}
@media only screen and (max-width: 560px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 20px;
    gap: 0 20px;
  }
}
.grid .grd {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-top: none;
  border-bottom: none;
}

.intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-end;
  gap: 20px;
  padding: 80px;
}
@media only screen and (max-width: 560px) {
  .intro {
    padding: 40px 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.intro .txt .supertitle {
  font-size: 6vw;
  line-height: 90%;
}
@media only screen and (max-width: 560px) {
  .intro .txt .supertitle {
    font-size: 12vw;
  }
}
.intro .txt .title {
  margin-top: 0.75em;
}
.intro .image {
  background-color: hsl(9, 66%, 71%);
  border-radius: 10px;
  overflow: hidden;
  height: calc(100vh - 200px);
  transition: background-color 1s;
}
@media only screen and (max-width: 560px) {
  .intro .image {
    height: 70vh;
  }
}
.intro .image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  transition-duration: 3s;
  transition-property: filter, mix-blend-mode;
}
@media only screen and (min-width: 900px) {
  .intro .image:hover {
    background-color: hsl(0, 0%, 100%);
  }
  .intro .image:hover img {
    filter: grayscale(0);
  }
}

.about .big {
  font-size: 1.25em;
  margin-top: 1em;
  padding-right: calc(25% + 5px);
}
@media only screen and (max-width: 560px) {
  .about .big {
    padding-right: 0;
  }
}

.header-bar {
  padding: 160px 60px 40px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 560px) {
  .header-bar {
    padding: 80px 10px 20px;
    flex-direction: column;
    gap: 20px;
  }
}
.header-bar .title p {
  font-size: 0.75em;
  margin-top: 0.5em;
  max-width: 800px;
}
.header-bar .filters {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
  font-size: 1.5em;
  white-space: nowrap;
}
.header-bar .filters li {
  list-style: none;
}
.header-bar .filters a.active {
  text-decoration: none;
}

@media only screen and (min-width: 560px) {
  .products-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    padding: 0px 60px 80px;
  }
  .products-list > * {
    grid-column: span 2;
  }
  .products-list > *:nth-child(5), .products-list > *:nth-child(12) {
    grid-column: 2/4;
  }
}
@media only screen and (max-width: 560px) {
  .products-list {
    padding: 20px 10px;
  }
}
.products-list a {
  text-decoration: none;
}
@media only screen and (min-width: 560px) {
  .products-list article {
    transform: translateY(300px);
    opacity: 0;
  }
}
.products-list article .image img {
  width: 100%;
  border-radius: 10px;
}
.products-list article .txt {
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.products-list article .txt .name {
  font-weight: bold;
}

.product-view article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;
}
@media only screen and (max-width: 560px) {
  .product-view article {
    grid-template-columns: 1fr;
  }
}
.product-view article .images {
  overflow: hidden;
  border-radius: 0 0 0 20px;
}
@media only screen and (max-width: 560px) {
  .product-view article .images {
    border-radius: 0 0 20px 20px;
  }
}
.product-view article .images img {
  width: 100%;
  display: block;
}
.product-view article .txt {
  padding-top: 160px;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 20px;
}
@media only screen and (max-width: 560px) {
  .product-view article .txt {
    position: static;
    padding: 0px 20px;
  }
}
.product-view article .txt .meta {
  display: flex;
  gap: 20px;
}
.product-view article .txt .body {
  padding-right: calc(25% + 60px);
}
@media only screen and (max-width: 560px) {
  .product-view article .txt .body {
    padding-right: 0;
  }
}
