html,
body,
ul,
li,
figure,
button {
  margin: 0;
  padding: 0;
}

button,
input {
  border: none;
  outline: none;
  font: inherit;
}

button {
  cursor: pointer;
  background-color: transparent;
}

img,
video {
  width: 100%;
  height: 100%;
  display: block;
}

li {
  list-style: none;
}

@font-face {
  font-family: FKGroteskNeue;
  font-weight: normal;
  src: url("/assets/fonts/FKGroteskNeueTrial-Regular.otf") format("opentype");
}
@font-face {
  font-family: FKGroteskNeue;
  font-weight: light;
  src: url("/assets/fonts/FKGroteskNeueTrial-Light.otf") format("opentype");
}
@font-face {
  font-family: Optima;
  font-weight: medium;
  src: url("/assets/fonts/OptimaLTStd-Medium.otf") format("opentype");
}
:root {
  --fs-s: 0.4922rem;
  --fs-m: 0.8125rem;
  --color-white: #fffefb;
  --color-red: #c22c11;
  --color-grey: #e9e8e6;
  --space-indent: 0.5rem;
}

body {
  background-color: var(--color-white);
}
body > header,
body > footer {
  box-sizing: border-box;
  padding: 0 var(--space-indent) 0 0;
}

main {
  min-height: 80vh;
  margin-bottom: 4rem;
}

a.full {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0;
}

a:not(.logo):hover,
.active {
  color: var(--color-red);
}

html {
  scrollbar-width: thin; /* Options: auto, thin, none */
  scrollbar-color: var(--color-grey) transparent; /* thumb color and track color */
}
html::-webkit-scrollbar {
  width: 5px; /* Width of the scrollbar for WebKit browsers */
}
html::-webkit-scrollbar-track {
  background: transparent; /* Track background color */
}
html::-webkit-scrollbar-thumb {
  background-color: var(--color-grey); /* Thumb color */
  border-radius: 2px; /* Rounded corners for the thumb */
}

.mobile {
  display: none;
}

figure {
  background-color: var(--color-dominant);
}
figure picture {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

figure.is-visible picture {
  opacity: 1;
}

.hide-scrollbar {
  /*FireFox*/
  scrollbar-width: none;
  /*IE10+*/
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin; /* Options: auto, thin, none */
  scrollbar-color: transparent transparent; /* thumb color and track color */
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 5px; /* Width of the scrollbar for WebKit browsers */
}
.hide-scrollbar::-webkit-scrollbar-track {
  background: transparent; /* Track background color */
}
.hide-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent; /* Thumb color */
  border-radius: 2px; /* Rounded corners for the thumb */
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
figcaption,
em,
strong,
button,
li,
a {
  font-family: "FKGroteskNeue", sans-serif;
  font-weight: normal;
  font-size: var(--fs-m);
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  margin: 0;
  padding: 0;
}

body > header {
  background-color: var(--color-white);
  width: 100%;
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  justify-content: space-between;
}
body > header .mobile {
  display: none !important;
}
body > header .logo {
  margin-top: 3rem;
  font-family: "Optima", sans-serif;
  font-size: 4.3rem;
  line-height: 1.95rem;
  transform: translateX(-0.4rem);
}
body > header .logo * {
  font-family: "Optima", sans-serif;
  font-size: 4.3rem;
  line-height: 1.95rem;
}
body > header > nav {
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-end;
  height: 0.88rem;
}
body > header > nav * {
  font-size: var(--fs-m);
}
body > header > nav ul {
  display: flex;
}
body > header > nav ul li:not(:last-child) {
  margin-right: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
}
.grid > a {
  display: contents;
}
.grid .column {
  grid-column: span var(--span);
}
.grid .column .blocks,
.grid .column figure {
  height: 100%;
}
.grid .column.caption {
  margin-bottom: 2rem;
  padding-left: var(--space-indent);
}
.grid .newsletter-insert {
  display: none;
}
.grid .blocks > p {
  width: min(55rem, 90vw);
  padding: 4rem 0;
  margin: auto;
  text-align: center;
}

[data-template=shop] .looks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
[data-template=shop] .looks-grid img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 46.5vw;
}

.look {
  position: relative;
}
.look figure {
  height: 100%;
}
.look figure picture[orientation=portrait] img {
  -o-object-fit: cover;
     object-fit: cover;
}
.look figure picture[orientation=landscape] img {
  -o-object-fit: contain;
     object-fit: contain;
}
.look figcaption {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  color: #fff;
  display: none;
  position: absolute;
  bottom: 0;
  padding: 0.3rem;
  padding-bottom: 0.7rem;
  line-height: 1;
}
.look figcaption a {
  mix-blend-mode: difference;
}
.look:hover figcaption {
  display: block;
}
.look:hover figcaption a:hover {
  mix-blend-mode: normal;
}

[data-template=product] .product {
  display: flex;
  justify-content: space-between;
}
[data-template=product] .product-gallery {
  width: 40vw;
}
[data-template=product] .product-order-panel {
  position: sticky;
  background-color: var(--color-white);
  box-sizing: border-box;
  width: calc(34vw + 1rem);
  max-height: calc(100vh - 9rem);
  overflow: auto;
  padding-right: 1rem;
  top: 8rem;
  right: calc(14vw - 1rem);
  margin-bottom: 4rem;
}
[data-template=product] .product-order-panel header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
[data-template=product] .product-order-panel header * {
  font-size: var(--fs-m);
}
[data-template=product] .product-order-panel .description p:not(:last-child) {
  margin-bottom: 1rem;
}
[data-template=product] .product-order-panel .snipcart-add-item {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--color-grey);
  text-align: center;
  margin: 2rem 0;
}
[data-template=product] .product-order-panel .snipcart-add-item:hover {
  background-color: #000;
  color: var(--color-white);
}
[data-template=product] .product-order-panel .other-products {
  margin-bottom: 2rem;
}
[data-template=product] .product-order-panel .other-products ul {
  display: flex;
}
[data-template=product] .product-order-panel .other-products ul li {
  position: relative;
  width: 20%;
}
[data-template=product] .product-order-panel .other-products ul li:hover {
  color: var(--color-red);
}
[data-template=product] .product-order-panel .other-products ul li picture[orientation=portrait] img {
  -o-object-fit: cover;
     object-fit: cover;
}
[data-template=product] .product-order-panel .other-products ul li picture[orientation=landscape] img {
  -o-object-fit: contain;
     object-fit: contain;
}
[data-template=product] .product-order-panel .other-products ul li figcaption {
  margin-top: 0.1rem;
  font-size: var(--fs-s);
}
[data-template=product] .other-looks {
  margin-top: 1rem;
}
[data-template=product] .other-looks h2 {
  margin-left: var(--space-indent);
}
[data-template=product] .other-looks > ul {
  display: flex;
  overflow: auto;
  scroll-snap-type: x mandatory;
}
[data-template=product] .other-looks > ul li {
  scroll-snap-align: start;
}
[data-template=product] .other-looks > ul li figure {
  width: 25vw;
}

#snipcart {
  --bgColor-default: var(--color-white);
  --color-buttonDanger: #000;
  --color-link: #000;
  --color-link-hover: var(--color-red);
}
#snipcart .snipcart-cart-summary--edit.snipcart-modal__container {
  width: 40%;
  max-width: 550px;
}
#snipcart .snipcart-cart-summary--edit.snipcart-modal__container .close-section {
  padding-top: 4rem;
  display: flex;
  justify-content: flex-end;
  background-color: var(--color-white);
}
#snipcart .snipcart-cart-summary--edit.snipcart-modal__container button[aria-label="Remove item"] {
  position: absolute;
  align-self: flex-end;
  padding: 0;
  left: min(8px + 18vw, 259px);
  background-color: transparent;
}
#snipcart .snipcart-cart-summary--edit.snipcart-modal__container button[aria-label="Remove item"]:hover {
  box-shadow: none;
  color: var(--color-red);
}
#snipcart .snipcart-cart-summary--edit.snipcart-modal__container button[aria-label="Remove item"]::after {
  content: "remove";
}
#snipcart .snipcart-cart-summary--edit.snipcart-modal__container button[aria-label="Remove item"] svg {
  display: none;
}
#snipcart .snipcart-typeahead__suggestion img {
  display: none;
}
#snipcart input:not(.snipcart-textbox--hidden),
#snipcart .snipcart-textbox {
  border-bottom: 1px solid #000;
}
#snipcart .snipcart-layout__content--side {
  min-height: 92%;
}
#snipcart .snipcart-cart-summary-side .snipcart-cart__content .snipcart-item-list .snipcart-item-line .snipcart-item-line__container,
#snipcart .close-section,
#snipcart .snipcart-cart__footer {
  padding-left: 16px;
  padding-right: 8px;
}
#snipcart * {
  font-family: "FKGroteskNeue", sans-serif;
  font-weight: normal;
  font-size: var(--fs-m);
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
#snipcart .snipcart-cart__secondary-header {
  display: none;
}
#snipcart .snipcart-item-line__product {
  position: relative;
}
#snipcart .snipcart-item-line__product .snipcart-item-line__header {
  align-items: flex-start;
}
#snipcart .snipcart-item-line__product figure {
  height: auto;
}
#snipcart .snipcart-item-line__product figure img {
  width: min(18vw, 251px);
  max-width: none;
}
#snipcart .snipcart-item-line__product .snipcart-item-quantity__quantity {
  width: 5.5rem;
}
#snipcart .snipcart-item-line__product .snipcart-item-quantity__quantity button {
  background-color: transparent;
}
#snipcart .snipcart-item-line__product .snipcart-item-quantity__quantity button svg {
  display: none;
}
#snipcart .snipcart-item-line__product .snipcart-item-quantity__quantity button:hover {
  box-shadow: none;
  color: var(--color-red);
}
#snipcart .snipcart-item-line__product .snipcart-item-quantity__quantity button[aria-label="Decrement quantity"]::after {
  content: "-";
}
#snipcart .snipcart-item-line__product .snipcart-item-quantity__quantity button[aria-label="Increment quantity"]::after {
  content: "+";
}
#snipcart .snipcart-base-button.is-icon-right .snipcart-base-button__label {
  margin-right: 0;
  margin-left: 0;
}
#snipcart .snipcart-summary-fees__notice {
  font-size: var(--fs-m);
}
#snipcart .snipcart-modal__container:not(.snipcart-cart-summary-side,
.snipcart-cart-summary--edit) .close-section {
  background-color: transparent;
  padding: 0;
  padding-top: 2rem;
  width: 80%;
  margin: auto;
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-end;
}
#snipcart .snipcart-modal__container:not(.snipcart-cart-summary-side,
.snipcart-cart-summary--edit) .snipcart-item-line__header button[aria-label="Remove item"] {
  position: static;
  align-self: auto;
  left: auto;
  margin-right: 3rem;
}
#snipcart .snipcart-modal__container:not(.snipcart-cart-summary-side,
.snipcart-cart-summary--edit) .snipcart-item-line__header button[aria-label="Remove item"] {
  display: block;
  background-color: transparent;
}
#snipcart .snipcart-modal__container:not(.snipcart-cart-summary-side,
.snipcart-cart-summary--edit) .snipcart-item-line__header button[aria-label="Remove item"] path {
  fill: transparent;
}
#snipcart .snipcart-modal__container:not(.snipcart-cart-summary-side,
.snipcart-cart-summary--edit) .snipcart-item-line__header button[aria-label="Remove item"]::after {
  content: "REMOVE";
  position: absolute;
  transform: translate(0.7rem, -1.8rem);
}
#snipcart .snipcart-button-primary.snipcart-base-button,
#snipcart .snipcart-empty-cart .snipcart-button-secondary {
  border-radius: 0;
  background-color: var(--color-grey);
  color: #000;
  transition: none;
}
#snipcart .snipcart-button-primary.snipcart-base-button:hover,
#snipcart .snipcart-empty-cart .snipcart-button-secondary:hover {
  background-color: #000;
  color: #fff;
}
#snipcart .snipcart-button-primary.snipcart-base-button .snipcart-base-button__icon,
#snipcart .snipcart-empty-cart .snipcart-button-secondary .snipcart-base-button__icon {
  display: none;
}
#snipcart .snipcart-item-quantity__total-price.snipcart__font--bold.snipcart__font--secondary,
#snipcart .snipcart-summary-fees__amount.snipcart-summary-fees__amount--highlight.snipcart__font--large {
  font-family: sans-serif;
  font-weight: 100;
}

[data-template=campaigns] section.campaigns ul {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}
[data-template=campaigns] section.campaigns ul li {
  scroll-snap-align: start;
}
[data-template=campaigns] section.campaigns ul img {
  width: 30rem;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}
[data-template=campaigns] section.campaigns ul li:first-child figcaption {
  margin-left: 0.2rem;
}

body > footer {
  display: flex;
  justify-content: space-between;
  padding-left: var(--space-indent);
  padding-bottom: var(--space-indent);
}
body > footer #mobile-nav-button {
  display: none;
}
body > footer > *:nth-child(2) {
  margin-left: 60vw;
}
body > footer * {
  font-size: var(--fs-s) !important;
}

@media screen and (max-width: 800px) {
  :root {
    --fs-m: 0.5625rem;
    --fs-l: 1.3rem;
  }
  .mobile {
    display: inherit;
  }
  body > header .logo {
    margin-top: 1.5rem;
    z-index: 2;
  }
  body > header .logo h1,
  body > header .logo h2 {
    font-size: 12.95vw;
  }
  body > header nav {
    display: none;
  }
  body > header #mobile-nav.open {
    position: fixed;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: #fff;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
  }
  body > header #mobile-nav.open ul {
    flex-direction: column;
    text-align: center;
  }
  body > header #mobile-nav.open ul li {
    margin-right: 0;
  }
  body > header #mobile-nav.open ul li * {
    font-size: var(--fs-l);
  }
  body > header #mobile-nav.open .footer-pages {
    position: absolute;
    bottom: 16vh;
  }
  body > header #mobile-nav.open .footer-pages a {
    font-size: var(--fs-m);
    line-height: 1.5;
  }
  .grid .column.caption {
    margin-bottom: 1rem;
    padding-left: 0.2rem;
  }
  .grid.three-col .column:nth-child(1) {
    grid-column: span 6;
  }
  .grid.three-col .column:nth-child(2) {
    grid-column: span 6;
  }
  .grid.three-col .column:nth-child(3) {
    grid-column: span 12;
  }
  [data-template=shop] .looks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  [data-template=shop] .looks-grid .look img {
    height: 70vw;
  }
  .look figure,
  .look figcaption,
  .look picture {
    display: block;
  }
  .look figcaption {
    position: relative;
    background-color: #fff;
    height: 100%;
  }
  .snipcart-button-primary.snipcart-base-button:hover {
    background-color: white;
    color: #000;
  }
  [data-template=product] .product {
    display: block;
  }
  [data-template=product] .product .product-gallery {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    --header-height: 14.72vw;
    --add-btn-height: 2.35rem;
    --footer-height: 2rem;
    height: calc(100vh - var(--header-height) - var(--add-btn-height) - var(--footer-height));
  }
  [data-template=product] .product .product-gallery .prev,
  [data-template=product] .product .product-gallery .next {
    position: absolute;
    --button-height: 1.75rem;
    top: calc(50vh - var(--button-height) / 2);
    padding: var(--space-indent);
    color: #fff;
  }
  [data-template=product] .product .product-gallery .next {
    right: 0;
  }
  [data-template=product] .product .product-gallery figure {
    width: 100vw;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  [data-template=product] .product .product-gallery picture[orientation=portrait] img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  [data-template=product] .product .product-gallery picture[orientation=landscape] img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  [data-template=product] .product .product-order-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-height: none;
    padding: 0;
  }
  [data-template=product] .product .product-order-panel > header {
    margin-top: 2rem;
  }
  [data-template=product] .product .product-order-panel > header,
  [data-template=product] .product .product-order-panel > .description,
  [data-template=product] .product .product-order-panel .generic-indications,
  [data-template=product] .product .product-order-panel .other-products > p,
  [data-template=product] .product .product-order-panel .other-products > ul > li:first-child figcaption {
    padding: 0 0.1rem;
  }
  [data-template=product] .product .product-order-panel button.snipcart-add-item {
    order: -1;
    margin: 0;
  }
  [data-template=product] .product .product-order-panel .other-products {
    margin-top: 2rem;
  }
  [data-template=product] .product .product-order-panel .other-products li {
    width: 30%;
  }
  [data-template=product] section.other-looks > ul > li figure {
    width: 45vw;
  }
  [data-template=product] section.other-looks > ul > li figure img {
    max-height: 63vw;
  }
  [data-template=product] section.other-looks > ul > li figure figcaption {
    text-align: left;
  }
  [data-template=campaigns] section.campaigns ul li img {
    width: 20rem;
  }
  body > footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0;
    pointer-events: none;
  }
  body > footer > * {
    display: none;
  }
  body > footer #mobile-nav-btn {
    padding: 0.7rem 0.7rem 0 0.1rem;
  }
  body > footer #mobile-cart {
    padding: 0.7rem var(--space-indent) 0 0.7rem;
  }
  body > footer button#mobile-nav-btn,
  body > footer button#mobile-cart {
    display: block;
    pointer-events: all;
    font-size: var(--fs-l) !important;
    line-height: 1;
    mix-blend-mode: difference;
  }
  body > footer button#mobile-nav-btn .snipcart-items-count,
  body > footer button#mobile-cart .snipcart-items-count {
    font-size: inherit !important;
  }
}/*# sourceMappingURL=style.css.map */