:root {
  /* COLORS */
  --primary: #533df5;
  --border: #442fe0;
  --yellow: #feffdb;
  --sable: #fdf2d8;
  --danger: #eaac8b;
  --danger-secondary: #59C9A5;

  --dark-002: #4b37dd;
  --dark-003: #4231c4;
  --dark-004: #322593;
  --dark-005: #2a1f7b;
  --dark-006: #211862;
  --dark-007: #191249;
  --dark-008: #080618;

  --light-001: #6450f6;
  --light-002: #7564f7;
  --light-003: #8777f8;
  --light-004: #988bf9;
  --light-005: #a99efa;
  --light-006: #bab1fb;
  --light-007: #cbc5fc;
  --light-008: #ddd8fd;
  --light-009: #eeecfe;
  --light-010: #fdfffc;

  /* SPACING */
  --marginXXS: 4px;
  --marginXS: 8px;
  --marginS: 16px;
  --marginM: 32px;
  --marginL: 40px;
  --marginXL: 64px;
  --marginXXL: 128px;
  --headerHeight: var(--marginXL);

  /* GRID template */
  --grid-template: 2fr 1fr;

  /* BORDER */
  --border-width: 2px;
  --border-style: solid;
  --border-styles: var(--border-width) var(--border-style) var(--border);
  --border-half: 1px var(--border-style) var(--border);

  /* ANIMATIONS */
  --animationStyle: cubic-bezier(0.79, 0.14, 0.15, 0.86);

  /* BREAKPOINTS */
  --mobileS: 320px;
  --mobileM: 375px;
  --mobileL: 425px;
  --tablet: 768px;
  --laptop: 1024px;
  --laptopL: 1440px;
  --desktop: 2560px;
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default margin */
html,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"],
ul,
li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  position: relative;
  width: 100vw;
  /* RESPONSIVE HEIGHT FALLBACK for iOS tool bar */
  min-height: 100vh;
  min-height: 100svh;
  min-height: -webkit-fill-available;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Inter", helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: var(--primary);
  background: var(--light-010);
  overflow-x: hidden;
}

.bodyActive {
  overflow: hidden;
}

/* A elements that don't have a class get default styles */
a,
a:visited,
a:focus {
  text-decoration: none;
  color: inherit;
}

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

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

img {
  display: block;
}

.grid {
  display: grid;
  grid-template-columns: 2fr minmax(386px, 1fr);
}
.grid div {
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.borderContainer {
  border: var(--border-styles);
}

.borderPanelLeft {
  border-left: var(--border-styles);
}

.borderPanelRight {
  border-left: var(--border-styles);
  border-right: var(--border-styles);
}

.borderTop {
  border-top: var(--border-styles);
}

.boxBorder {
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}

.bgLight {
  background: var(--light-010);
}

.bgPrimary {
  background: var(--primary);
}

.magnetItem {
  --x: 0;
  --y: 0;
}
@media (min-width: 768px) {
  .magnetItem {
    transform-origin: 50% 50%;
    transform: translate(var(--x), var(--y));
  }
}
.layout {
  position: relative;
  width: 100%;
}
/* TYPEFACES */

h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 100%;

    @media (max-width: 425px) {
        font-size: 32px;
        font-weight: 400;
        line-height: 110%;
    }
}

h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 110%;

    @media (max-width: 425px) {
        font-size: 24px;
        font-weight: 500;
        line-height: 120%;
    }
}

h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;

    @media (max-width: 425px) {
        font-size: 16px;
        font-weight: 500;
        line-height: 120%;
    }
}

.textLarge {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;

    @media (max-width: 425px) {
        font-size: 20px;
        font-weight: 500;
        line-height: 140%;
    }
    @media (max-width: 375px) {
        font-size: 16px;
        font-weight: 500;
        line-height: 140%;
    }
}

.callToActionText {
    text-transform: uppercase;
}

.smallText {
    font-size: 12px;
    font-weight: 500;
    line-height: 140%;
}
.revealAnimationSettings {
  opacity: 0;
  transform: translateY(-16px);
  transition: 350ms var(--animationStyle);
  transition-property: opacity, transform;
}

.revealAnimationOpacity {
  opacity: 0;
  transition: 500ms var(--animationStyle);
  transition-property: opacity;
}
button {
  background: var(--primary);
  border: none;
  width: 100%;
  color: var(--light-010);
  text-transform: uppercase;
  cursor: pointer;
}

.buttonLink {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  padding: var(--marginS);
  padding-right: var(--marginM);
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
@media (max-width: 768px) {
  .buttonLink {
    box-shadow: 0px 0 0 0 var(--border), 0 0px 0 0 var(--border), 0px 0px 0 0 var(--border), 0px 0 0 0 var(--border) inset, 0 0px 0 0 var(--border) inset;
  }
}

.buttonLink {
  transition: 200ms ease-in-out;
  transition-property: background, color;
}
.buttonLink span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--marginXS);
}
.buttonLink span svg {
  fill: var(--primary);
  transition: 200ms ease-in-out;
  transition-property: fill, transform;
  transition-delay: 0ms, 0ms;
}
@media (min-width: 768px) {
  .buttonLink:hover {
    color: var(--light-010);
    background: var(--danger);
  }
  .buttonLink:hover span > svg {
    fill: var(--light-010);
    transform: translateX(4px);
    transition-delay: 0ms, 75ms;
  }
}
.buttonWorkshop {
  position: relative;
  width: 100%;
  min-height: var(--marginXL);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-008);
}
.buttonWorkshop::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
  pointer-events: none;
}
.buttonWorkshop a {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  font-weight: 500;
  padding: var(--marginM) var(--marginM);
  transition: 150ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-property: padding-top;
}
.buttonWorkshop a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--danger);
  opacity: 0;
  z-index: 0;
  transition: 100ms ease-in-out;
  transition-property: opacity;
}
.buttonWorkshop a span, .buttonWorkshop a svg {
  z-index: 1;
}
.buttonWorkshop a span {
  color: var(--primary);
}
.buttonWorkshop a svg {
  fill: var(--primary) !important;
  transition: 100ms ease-in-out;
  transition-property: transform;
  transition-delay: 0ms;
}
@media (min-width: 768px) {
  .buttonWorkshop a:hover {
    padding-top: calc((64px * 3) + 32px);
  }
  .buttonWorkshop a:hover::after {
    opacity: 1;
  }
  .buttonWorkshop a:hover svg {
    transform: translateX(4px);
    transition-delay: 50ms;
  }
}
@media (max-width: 425px) {
  .buttonWorkshop a {
    padding: var(--marginS);
  }
}
.section {
  position: relative;
  width: calc(100vw - 2px);
  margin-right: 2px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100vw - 2px);
  height: var(--headerHeight);
  background: var(--light-010);
  z-index: 99;
}

.header {
  transition: opacity 200ms ease-in-out;
}

.header-logo {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
}
.header-logo a {
  padding-left: var(--marginS);
}

.nav {
  display: grid;
  grid-template-columns: 1fr 64px;
}
@media screen and (max-width: 768px) {
  .nav {
    display: none !important;
  }
}

.nav-ul {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.nav-ul li {
  display: flex;
  justify-content: start;
  align-items: center;
  cursor: pointer;
  transition: 100ms ease-in-out;
  transition-property: background, color;
}

.nav-ul li a {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  padding-left: var(--marginS);
}

@media screen and (min-width: 768px) {
  .nav-ul li:hover {
    color: var(--light-010);
    background: var(--light-001);
  }
}
nav .selected {
  color: var(--light-010);
  background: var(--primary);
}

nav .selected svg {
  stroke: var(--light-010);
  background: var(--primary);
}

.navLink {
  position: relative;
}

nav div {
  height: 100%;
  width: var(--marginXL);
}

.cart-link-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  transition: 100ms ease-in-out;
  transition-property: background;
}

.cart-link-item svg {
  stroke: var(--primary);
  transition: 100ms ease-in-out;
  transition-property: stroke;
}

@media screen and (min-width: 768px) {
  .cart-link-item:hover {
    background: var(--light-001);
  }

  .cart-link-item:hover svg {
    stroke: var(--light-010);
  }
}
.navMobile {
  display: none;
}

.menuIcon {
  display: none;
  cursor: pointer;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeActive {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    display: none;
  }

  header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  header .header-logo {
    width: max-content;
  }

  .menuIcon {
    display: block;
    margin-right: var(--marginS);
    color: var(--primary);
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    animation: fade 600ms alternate var(--animationStyle);
  }

  .navMobile {
    display: block;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: var(--light-008);
    opacity: 0;
    pointer-events: none;
    transition: 200ms var(--animationStyle);
    transition-property: opacity, transform;
    transition-delay: 250ms;
    z-index: -1;
    box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
  }

  .navMobileActive {
    display: block !important;
    pointer-events: auto;
    opacity: 1;
    transition-delay: 50ms;
  }

  .navMobileUl {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }
  .navMobileUl li {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
  }
  .navMobileUl li a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 24px;
    text-transform: uppercase;
    padding: 16px;
    opacity: 0;
    transform: translateX(-32px);
    transition: 200ms ease-in-out;
    transition-property: opacity, transform;
  }
  .navMobileUl li a svg {
    stroke: var(--primary);
    margin-right: var(--marginXS);
  }
  .navMobileUl li:nth-child(1) {
    background: var(--light-008);
  }
  .navMobileUl li:nth-child(2) {
    background: var(--light-007);
  }
  .navMobileUl li:nth-child(3) {
    background: var(--light-006);
  }
  .navMobileUl li:nth-child(4) {
    background: var(--light-005);
  }
  .navMobileUl li:nth-child(5) {
    background: var(--light-004);
  }
  .navMobileUl li.selected {
    background: var(--primary);
  }
}
.hero {
  height: calc(100vh - (var(--headerHeight)));
  height: calc(100svh - (var(--headerHeight)));
  margin-top: calc(var(--headerHeight) - 2px);
  background: var(--primary);
}

.heroPlaceholder {
  position: relative;
  width: 100%;
  height: inherit;
}
.heroPlaceholder .boxBorder {
  position: absolute;
  inset: 0;
}
.heroPlaceholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroPanel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--marginS);
  background: var(--primary);
}
.heroPanel h1 {
  color: var(--light-010);
  text-transform: uppercase;
  user-select: none;
}
.heroPanel div {
  position: sticky;
}
.heroPanel .heroFirstPanel {
  top: calc(64px + 16px);
  padding-bottom: 160px;
}
.heroPanel .heroSecondPanel {
  top: calc(64px + 16px + 64px);
  padding-bottom: 80px;
}
.heroPanel .heroThirdPanel {
  padding-top: 80px;
  top: calc(64px + 16px);
}
.heroPanel .heroPanelStart {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: sticky;
  top: calc(64px + 16px);
}
.heroPanel .heroPanelEnd {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: calc(64px + 16px);
}
.heroPanel .heroPanelCenter {
  width: 100%;
  display: flex;
  justify-content: center;
  position: sticky;
  top: calc(64px + 16px);
}
@media (max-width: 768px) {
  .heroPanel {
    position: absolute;
    inset: 0;
    background: none;
  }
}
.sectionHeader {
  height: 128px;
}
@media (max-width: 768px) {
  .sectionHeader {
    height: auto;
  }
}

.bgLight {
  background: var(--light-010);
  color: var(--primary);
}

.bgLight a span svg {
  fill: var(--primary);
}

.bgPrimary {
  background: var(--primary);
  color: var(--light-010);
}

.bgPrimary a span svg {
  fill: var(--light-010);
}

.sectionTitleContainer {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  text-transform: uppercase;
  padding: var(--marginS);
}
.featuredProducts {
  width: 100%;
  height: 100%;
}
.featuredProducts .featuredMainItem,
.featuredProducts .featuredSecondaryItems {
  height: 100vh;
}

.featuredMainItem {
  height: calc(100vh - (64px * 2));
  width: 100%;
}
.featuredMainItem .featuredItemLink {
  height: calc(100vh - (64px * 2));
}
.featuredMainItem img {
  width: 100%;
  height: calc(100vh - (64px * 2));
  padding-bottom: 64px;
  object-fit: cover;
}

.featuredSecondaryItems {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.featuredSecondaryItems .featuredItemLink {
  height: calc(50vh - 64px);
}
.featuredSecondaryItems img {
  width: 100%;
  height: calc(50vh - 64px);
  padding-bottom: 64px;
  object-fit: cover;
}

.placeholderBorder {
  position: absolute;
  inset: 0;
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}

.featuredItemLink {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.featuredItemLink .homeProductPlaceholder {
  position: relative;
  width: 100%;
  height: calc(50vh - 64px);
}
.featuredItemLink .homeProductPlaceholder :nth-child(2) {
  opacity: 0;
}
.featuredItemLink .homeProductPlaceholder img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: -1;
  transition: 200ms ease-in-out;
  transition-property: opacity, transform;
}
@media (min-width: 768px) {
  .featuredItemLink:hover :nth-child(2) {
    opacity: 1;
  }
  .featuredItemLink:hover .featuredItemName {
    background: var(--danger);
  }
}

.featuredItemName {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  z-index: 10;
  transition: 150ms ease-in-out;
  transition-property: background;
}
.workshopPlaceholder {
  position: relative;
  width: 100%;
  height: 100%;
  height: calc(100vh - 64px);
}
.workshopPlaceholder .boxBorder {
  position: absolute;
  inset: 0;
}
.workshopPlaceholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workshopPlaceholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  mix-blend-mode: hue;
}
@media (max-width: 768px) {
  .workshopPlaceholder {
    height: 100%;
    width: calc(100vw - 2px);
  }
}

.workshopPanel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.workshopPanelContent {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--marginXL);
  padding: var(--marginM);
}
.workshopPanelContent div {
  display: flex;
  flex-direction: column;
  gap: var(--marginS);
}
@media (max-width: 425px) {
  .workshopPanelContent {
    padding: var(--marginS);
  }
}

.workshopTabContainer {
  position: relative;
  padding-bottom: 86px;
}
.workshopTabContainer .buttonWorkshop {
  position: absolute;
  bottom: 0;
}
@media (max-width: 768px) {
  .workshopTabContainer {
    padding-bottom: 0px;
    padding-top: var(--marginXL);
  }
  .workshopTabContainer .buttonWorkshop {
    position: relative;
  }
}
.sectionInstagram {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100vw - 2px);
  height: 25vw;
  overflow-x: hidden;
}
.sectionInstagram::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
  pointer-events: none;
}
.sectionInstagram .textLarge {
  font-size: 2vw;
}
@media (max-width: 768px) {
  .sectionInstagram {
    height: 50vw;
  }
  .sectionInstagram .textLarge {
    font-size: 4vw;
  }
}

@keyframes instagramSlide {
  0% {
    transform: translateX(0vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
.instagramContainer {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: instagramSlide 40000ms infinite linear;
}
.instagramContainer:hover {
  animation-play-state: paused;
}
.instagramContainer .instagramPlaceholder {
  position: relative;
}
.instagramContainer .instagramPlaceholder::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
.instagramContainer .instagramPlaceholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}
.instagramContainer .instagramPlaceholder:hover::after {
  opacity: .5;
}
.instagramContainer img, .instagramContainer div {
  width: 25vw;
  aspect-ratio: 1 / 1;
}
@media (max-width: 768px) {
  .instagramContainer img, .instagramContainer div {
    width: 50vw;
  }
}
.instagramContainer img {
  display: block;
  object-fit: cover;
}
.instagramContainer div {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-009);
  transition: background 150ms ease-in-out;
}
.instagramContainer div span {
  font-weight: 500;
  text-transform: uppercase;
  transition: color 150ms ease-in-out;
  transition-delay: 0ms;
}
.instagramContainer div:hover {
  background: var(--primary);
}
.instagramContainer div:hover span {
  color: var(--light-009);
  transition-delay: 150ms;
}
.tabContainer {
  width: 100%;
  min-height: var(--marginXL);
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--primary);
  background: var(--light-007);
}
.tabContainer p {
  font-weight: 500;
  padding: var(--marginS) var(--marginM);
}
@media (max-width: 425px) {
  .tabContainer p {
    padding: var(--marginS);
  }
}
.sectionProducts {
  width: calc(100vw - 2px);
  margin-top: var(--marginXL);
  background: var(--light-009);
}

.category_list {
  position: sticky;
  top: 64px;
  z-index: 10;
  background: var(--light-008);
}
@media (max-width: 768px) {
  .category_list {
    position: relative;
    top: 0px;
  }
}
.category_list ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
@media (max-width: 768px) {
  .category_list ul {
    grid-template-columns: 1fr 1fr;
  }
}
.category_list ul .categoryButton, .category_list ul .currentCategory {
  min-height: var(--marginXL);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .category_list ul .categoryButton, .category_list ul .currentCategory {
    min-height: var(--marginM);
  }
}
.category_list ul .categoryButton a, .category_list ul .currentCategory a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--marginS);
  text-transform: uppercase;
  background: var(--light-009);
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
  transition: 200ms ease-in-out;
  transition-property: color, background;
}
@media (max-width: 768px) {
  .category_list ul .categoryButton a, .category_list ul .currentCategory a {
    padding: var(--marginXS);
  }
}
@media (min-width: 768px) {
  .category_list ul .categoryButton:hover a, .category_list ul .currentCategory:hover a {
    background: var(--light-004);
  }
}
.category_list ul .currentCategory a {
  background: var(--primary);
  color: var(--light-009);
}

.productsContainer ul {
  display: grid;
  grid-template-columns: 2fr minmax(386px, 1fr);
}
@media (max-width: 768px) {
  .productsContainer ul {
    grid-template-columns: 1fr;
  }
}
.productsContainer ul li .productPlaceholder :nth-child(2) {
  opacity: 0;
}
@media (max-width: 768px) {
  .productsContainer ul li .productPlaceholder {
    height: calc(100vh - 64px - 64px - 2px - (38px * 2));
  }
}
@media (min-width: 768px) {
  .productsContainer ul li:hover .productPlaceholder :nth-child(2) {
    opacity: 1;
  }
  .productsContainer ul li:hover .productItemName {
    background: var(--danger);
  }
}
.productsContainer ul img {
  width: 100%;
  height: calc(100vh - (64px + 64px + 64px + 2px));
  object-fit: cover;
}
@media (max-width: 768px) {
  .productsContainer ul img {
    height: calc(100vh - 64px - (38px * 2));
  }
}

.productPlaceholder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - (64px + 64px + 64px + 2px));
}
.productPlaceholder::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
.productPlaceholder img {
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: 200ms ease-in-out;
  transition-property: opacity, transform;
}

.productItemName {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  text-transform: uppercase;
  background: var(--light-010);
  transition: 150ms ease-in-out;
  transition-property: background;
}

.productsOnylItem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  background: var(--light-008);
  color: var(--primary);
  font-size: 32px;
  line-height: 1.3;
  text-transform: uppercase;
  padding: var(--marginS);
}
@media (max-width: 768px) {
  .productsOnylItem {
    display: none;
  }
}

.paginationContainer {
  width: 100%;
  height: var(--marginXL);
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--light-008);
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
.paginationContainer .pagination {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--marginS);
  padding: var(--marginS);
}
.paginationContainer .pagination :last-child {
  margin-left: auto;
}
.paginationContainer .pagination span {
  cursor: pointer;
}
.paginationContainer .pagination span.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.productSection {
  display: grid;
  grid-template-columns: 2fr minmax(386px, 1fr);
  margin-top: var(--marginXL);
  height: calc(100vh - 66px);
}
@media (max-width: 768px) {
  .productSection {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.productSection .productImagesContainer {
  position: relative;
  width: 100%;
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  overflow-x: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}
.productSection .productImagesContainer .productImagePlaceholder {
  position: relative;
  z-index: 0;
  scroll-snap-align: start;
  height: calc(100vh - 64px);
  cursor: pointer;
}
.productSection .productImagesContainer .productImagePlaceholder::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
  pointer-events: none;
}
.productSection .productImagesContainer .productImagePlaceholder img {
  width: 100%;
  height: calc(100vh - 64px);
  object-fit: cover;
}
.productSection .productImagesContainer {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.productSection .productImagesContainer::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .productSection .productImagesContainer {
    display: flex;
    flex-direction: row;
    width: calc(100vw - 2px);
    height: calc(50vh - 64px - 2px);
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
  }
  .productSection .productImagesContainer .productImagePlaceholder {
    height: 100%;
    width: calc(100vw - 2px);
    scroll-snap-align: start;
  }
  .productSection .productImagesContainer .productImagePlaceholder img {
    height: 100%;
    width: calc(100vw - 2px);
  }
}

.productPanel {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .productPanel {
    height: auto;
    justify-content: flex-end;
  }
}

.productContent {
  position: sticky;
  top: var(--marginXL);
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .productContent {
    position: relative;
    top: 0;
    min-height: auto;
    justify-content: flex-start;
  }
}
.productContent .productInfos {
  display: flex;
  flex-direction: column;
  padding: var(--marginS);
  min-height: 180px;
}
.productContent h2 {
  text-transform: uppercase;
  margin-bottom: var(--marginS);
}

.productRoutingContainer {
  display: flex;
  gap: var(--marginXS);
  margin-bottom: var(--marginS);
}
.productRoutingContainer a,
.productRoutingContainer span {
  color: var(--light-005);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .productRoutingContainer a:hover {
    color: var(--danger);
  }
}

.productDefaultPrice {
  margin-bottom: var(--marginM);
}
.productDefaultPrice h5 {
  font-weight: 500;
}

.productDescription .productDescriptionContent {
  display: flex;
  flex-direction: column;
  gap: var(--marginS);
  margin-bottom: var(--marginM);
}
.productDescription .productDescriptionTrigger {
  cursor: pointer;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .productDescription span {
    display: none;
  }
}
@media (max-width: 768px) {
  .productDescription span {
    display: block;
  }
  .productDescription .productDescriptionContainer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 200ms ease-out;
    transition-delay: 200ms;
  }
  .productDescription .productDescriptionContainer.active {
    grid-template-rows: 1fr;
    transition-delay: 0ms;
  }
  .productDescription .productDescriptionContainer.active div {
    opacity: 1;
    transition-delay: 200ms;
  }
  .productDescription .productDescriptionContent {
    margin-bottom: 0px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 200ms ease-out;
    transition-delay: 0ms;
  }
}

.productForm .productFormSelect {
  position: relative;
  width: 100%;
  height: var(--marginXL);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-008);
  padding: var(--marginS);
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
.productForm .productFormSelect select {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  color: var(--primary);
  background: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.productForm .productFormSelect select::-ms-expand {
  display: none;
}
.productForm .productFormSelect svg {
  right: 16px;
  width: 24px;
  height: 24px;
  pointer-events: none;
  fill: none;
  stroke: var(--primary);
  stroke-width: 3px;
}
.productForm button {
  width: 100%;
  height: var(--marginXL);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--light-009);
  padding: var(--marginS);
  transition: 200ms ease-in-out;
  transition-property: background;
}
.productForm button svg {
  fill: var(--light-009);
  transition: 200ms ease-in-out;
  transition-property: fill, transform;
  transition-delay: 0ms, 0ms;
}
.productForm button.disabledButton {
  background: #9fa3ae;
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .productForm button:hover {
    background: var(--danger);
  }
  .productForm button:hover svg {
    transform: translateX(4px);
    transition-delay: 0ms, 75ms;
  }
  .productForm button:hover.disabledButton {
    background: #9fa3ae;
  }
}

#fullscreenModal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
  pointer-events: none;
  background-color: rgba(8, 6, 24, 0.25);
}
#fullscreenModal .fullScreenPlaceholder {
  width: 100vw;
  height: calc(100vh - 64px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
  background-color: rgba(8, 6, 24, 0.75);
}
#fullscreenModal .fullScreenPlaceholder img {
  max-width: 100%;
  max-height: 100%;
}

#fullscreenModal.active {
  opacity: 1;
  pointer-events: auto;
}

#closeModal {
  position: absolute;
  top: 0px;
  right: 2px;
  width: calc(100vw - 2px);
  height: 64px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}
#closeModal span {
  width: 64px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--primary);
  background-color: var(--danger);
  padding: 16px;
}
.contactSection {
  margin-top: var(--marginXL);
}
.contactSection form {
  height: calc(100vh - var(--marginXL));
  display: grid;
  grid-template-rows: 54px 54px 54px 1fr 128px;
}
@media (max-width: 768px) {
  .contactSection form {
    height: 100%;
    order: 2;
    display: flex;
    flex-direction: column;
  }
}
.contactSection .contactGroup,
.contactSection .contactMessageGroup {
  display: grid;
  grid-template-columns: 168px 1fr;
}
@media (max-width: 768px) {
  .contactSection .contactGroup,
  .contactSection .contactMessageGroup {
    grid-template-columns: 1fr;
  }
}
.contactSection .contactLabel {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 16px 32px;
  height: 54px;
}
@media (max-width: 768px) {
  .contactSection .contactLabel {
    padding: 16px 16px;
  }
}
.contactSection .contactMessageLabel {
  display: flex;
  justify-content: start;
  align-items: start;
  padding: 16px 32px;
}
@media (max-width: 768px) {
  .contactSection .contactMessageLabel {
    padding: 16px 16px;
  }
}
.contactSection label {
  color: var(--light-009);
}
.contactSection :nth-child(1) > label {
  background: var(--light-004);
}
.contactSection :nth-child(2) > label {
  background: var(--light-003);
}
.contactSection :nth-child(3) > label {
  background: var(--light-002);
}
.contactSection :nth-child(4) > label {
  background: var(--light-001);
}
.contactSection input,
.contactSection textarea {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 16px;
  color: var(--primary);
  background: var(--light-009);
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
.contactSection input::placeholder,
.contactSection textarea::placeholder {
  color: var(--light-006);
}
.contactSection textarea {
  resize: none;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .contactSection textarea {
    min-height: 25vh;
  }
}
.contactSection button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  transition: 150ms ease-in-out;
  transition-property: background;
}
@media (min-width: 768px) {
  .contactSection button:hover {
    background: var(--danger);
  }
}
.contactSection button svg {
  fill: var(--light-009);
}
@media (max-width: 768px) {
  .contactSection button {
    padding: 16px;
  }
}

.contactDetailsContainer {
  display: flex;
  flex-direction: column;
  gap: var(--marginS);
  padding: var(--marginS);
}
.contactDetailsContainer h2 {
  text-transform: uppercase;
}
.contactDetailsContainer .sectionParagraphEmail {
  transition: 200ms var(--animationStyle);
  transition-property: color;
}
.contactDetailsContainer .sectionParagraphEmail:hover {
  color: var(--danger);
}
@media (max-width: 768px) {
  .contactDetailsContainer {
    padding-bottom: var(--marginXL);
    order: 1;
  }
}
.cartSection {
  display: flex;
  flex-direction: column;
  margin-top: var(--marginXL);
}

.emptyCartSection {
  min-height: calc(100vh - 64px);
  margin-top: 0px;
}

.cartGroupMargin {
  padding: var(--marginM) 0;
}

.cartGroupWrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: var(--marginXS);
  padding: var(--marginS);
}

.cartGroupCheckout {
  display: flex;
  justify-content: end;
  align-items: end;
  flex-direction: column;
  background: var(--light-008);
}
.cartGroupCheckout button {
  width: 100%;
  height: calc(var(--marginXL) * 2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--marginS);
  background: var(--light-001);
  transition: 150ms ease-in-out;
  transition-property: background;
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
@media (min-width: 768px) {
  .cartGroupCheckout button:hover {
    background: var(--danger);
  }
}
.cartGroupCheckout button svg {
  fill: var(--light-010);
}

.cartGroupCheckout div {
  display: flex;
  gap: var(--marginS);
  padding: var(--marginS);
  margin-top: var(--marginXL);
}

.cartGroupCheckout div p,
.cartGroupCheckout div span {
  font-weight: 600;
}

.cartItems {
  font-size: 24px;
}

.cartProductPannel {
  width: 100%;
  display: flex;
  gap: var(--marginS);
  justify-content: space-between;
  transition: 100ms ease-in-out;
  transition-property: background;
}
@media screen and (max-width: 425px) {
  .cartProductPannel {
    flex-direction: column;
    gap: 0px;
  }
}
@media screen and (min-width: 780px) {
  .cartProductPannel:hover {
    background: var(--sable);
  }
}

.cartProduct {
  display: grid;
  grid-template-columns: 180px 1fr;
}
@media screen and (max-width: 425px) {
  .cartProduct {
    grid-template-columns: 1fr;
  }
}

.cartProductImgPlaceholder {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.cartProductImgPlaceholder::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
  pointer-events: none;
}
@media screen and (max-width: 425px) {
  .cartProductImgPlaceholder {
    width: 100%;
    max-width: 100%;
    height: 25vh;
  }
}

.cartProductImg {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 /1;
  object-fit: cover;
}
@media screen and (max-width: 425px) {
  .cartProductImg {
    width: 100%;
    max-width: 100%;
  }
}

.cartProductPannel .cartProductTitle {
  display: flex;
  flex-direction: column;
  gap: var(--marginXS);
}

.cartProductPannel .cartProductTitle .productName {
  font-weight: 600;
}

.cartProductPannel .cartProductTitle span > span {
  text-decoration: underline;
}

.cartProductDetails {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--marginM);
  padding: var(--marginS);
}
@media screen and (max-width: 425px) {
  .cartProductDetails {
    flex-direction: row;
  }
}

.cartProductDetailsMargin {
  align-items: end;
}
@media screen and (max-width: 425px) {
  .cartProductDetailsMargin {
    align-items: flex-start;
  }
}

.cartProductQuantity {
  display: none;
}

.cartProductQuantity .cartProductQuantityButton {
  width: 16px;
  height: 16px;
  color: var(--primary);
  background: var(--secondary600);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  margin: 0px;
  border-radius: 0px;
}

.cartProductQuantity input {
  border: none;
  margin: 0px !important;
  padding: 0px !important;
  width: 16px;
  height: 16px;
  text-align: center;
  border-radius: 4px;
  color: var(--primary);
  font-weight: 500;
  background: var(--secondary600);
  pointer-events: none;
}

.cartProductQuantity input:focus {
  outline: 2px solid var(--primary);
}

.cartSubTotal {
  display: flex;
  flex-direction: column;
  gap: var(--marginXS);
}

.cartSubTotal p {
  text-decoration: underline;
}

.cartShopList {
  cursor: pointer;
}

.cartShopList a .cartShopLink {
  text-decoration: underline;
}

.cartShopList .cartShopArrow {
  position: absolute;
  opacity: 0;
  color: var(--danger);
  transform: translateX(-16px);
  transition: 100ms ease-in-out;
  transition-property: opacity, transform;
}

@media screen and (min-width: 768px) {
  .cartShopList:hover {
    color: var(--danger);
  }

  .cartShopList:hover > a {
    color: var(--danger);
  }

  .cartShopList:hover > .cartShopArrow {
    opacity: 1;
    transform: translateX(0px);
  }
}
.cartGroupEmpty {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px var(--marginM);
}

.removeActionContainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: var(--marginXS);
}
@media screen and (max-width: 425px) {
  .removeActionContainer {
    order: 2;
  }
  .removeActionContainer span {
    display: none;
  }
}

.removeActionContainer p {
  font-size: 20px;
  transition: 200ms var(--animationStyle);
  transition-property: opacity;
}

.removeActionContainer .removeActionDetail {
  color: var(--danger);
  opacity: 0;
  transform: translateX(-8px);
  transition: 200ms var(--animationStyle);
  transition-property: opacity, transform;
}

.removeActionContainer:hover p {
  color: var(--danger);
}

.removeActionContainer:hover .removeActionDetail {
  opacity: 1;
  transform: translateX(0px);
}

.cartProductPrice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

.cart-num-items {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: var(--secondary);
  background: var(--danger);
  padding: 4px;
  border-radius: 64px;
  transform: translateY(-2px);
}

.cartItemNotification {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--danger);
  border-radius: 64px;
  margin-left: 16px;
  margin-bottom: 10px;
}
@keyframes slide {
  0% {
    transform: translateX(0vw);
  }
  100% {
    transform: translateX(calc(-100vw - 5vw));
  }
}
.topFooterContainer {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-009);
  padding: 128px 0px;
  overflow-x: hidden;
}
.topFooterContainer svg {
  fill: var(--primary);
}
.topFooterContainer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  border: var(--border-styles);
  border-bottom: none;
  pointer-events: none;
}
.topFooterContainer:hover .topFooterWrapper {
  animation-play-state: paused;
}

.topFooterWrapper {
  width: 100vw;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5vw;
  animation: slide 150000ms infinite linear;
}
.topFooterWrapper div {
  width: 100vw;
}
.topFooterWrapper svg {
  width: 100vw;
  height: auto;
}
footer {
  position: relative;
  width: 100%;
  background: var(--primary900);
}

.footerContactPannel {
  padding: var(--marginXS) var(--marginS);
}
.footerContactPannel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  border: var(--border-styles);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footerContactPannel {
    padding: var(--marginS);
  }
}

.footerContactPannel a {
  width: max-content;
  font-weight: 500;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: color 100ms ease-in-out;
}

.footerContactPannel a .footerContactMail {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .footerContactPannel a:hover {
    color: var(--danger);
  }
}
.footerNav {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footerNav li > a {
  display: flex;
  width: 100%;
  height: 100%;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary);
  padding: var(--marginXS) var(--marginS);
}
@media screen and (max-width: 768px) {
  .footerNav li > a {
    padding: var(--marginS);
  }
}

@media screen and (min-width: 768px) {
  .footerNav li:hover {
    color: var(--light-010);
    background: var(--light-001);
  }
}
.footerLegal {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-top: var(--marginS);
  padding-bottom: var(--marginXL);
  border-top: var(--border-styles);
}
.footerLegal p {
  padding: 0px var(--marginS);
  text-transform: uppercase;
}
.sectionAbout {
  margin-top: 64px;
  width: calc(100vw - 2px);
}
@media (max-width: 768px) {
  .sectionAbout {
    height: auto;
  }
}

.aboutPlaceholder,
.aboutContainer {
  display: grid;
  grid-template-rows: 1fr 64px;
}
.aboutPlaceholder .aboutLink,
.aboutContainer .aboutLink {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--light-009);
  text-transform: uppercase;
  padding: var(--marginS) var(--marginM);
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
  transition: 200ms ease-in-out;
  transition-property: background;
}
.aboutPlaceholder .aboutLink svg,
.aboutContainer .aboutLink svg {
  fill: var(--light-009);
}
@media (min-width: 768px) {
  .aboutPlaceholder .aboutLink:hover,
  .aboutContainer .aboutLink:hover {
    background: var(--danger);
  }
}

.aboutPlaceholder {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .aboutPlaceholder {
    aspect-ratio: 16 / 9;
    width: calc(100vw - 2px);
    height: 100%;
    order: 2;
  }
}
.aboutPlaceholder::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
.aboutPlaceholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .aboutPlaceholder img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
.aboutPlaceholder .aboutLink {
  background: var(--light-001);
}

.aboutContainer > div {
  display: flex;
  flex-direction: column;
  gap: var(--marginS);
  padding: var(--marginS);
}
.aboutContainer > div a {
  color: var(--danger);
}
.aboutContainer > div a:hover {
  color: var(--danger-secondary);
}
.aboutContainer .aboutLink {
  background: var(--primary);
}
@media (max-width: 768px) {
  .aboutContainer > div {
    padding: var(--marginM) var(--marginS) var(--marginXL) var(--marginS);
  }
}
.gallerySection {
  position: relative;
  width: calc(100vw - 2px);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr minmax(386px, 1fr);
  margin-top: var(--marginXL);
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
.gallerySection .galleryPlaceholder {
  position: relative;
}
.gallerySection .galleryPlaceholder::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
  z-index: 2;
  pointer-events: none;
}
.gallerySection .galleryPlaceholder img {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--marginXL));
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (max-width: 768px) {
  .gallerySection {
    grid-template-columns: 1fr;
  }
}
.layoutPageContainer {
  width: calc(100vw - 2px);
  margin-top: calc(var(--headerHeight));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(526px, 1fr));
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
.layoutPageContainer h2 {
  margin-bottom: var(--marginS);
}
.layoutPageContainer h3 {
  margin-top: var(--marginL);
}
.layoutPageContainer a {
  color: var(--danger);
}
.layoutPageContainer div {
  display: flex;
  flex-direction: column;
  gap: var(--marginS);
  padding: var(--marginM);
  box-shadow: 2px 0 0 0 var(--border), 0 2px 0 0 var(--border), 2px 2px 0 0 var(--border), 2px 0 0 0 var(--border) inset, 0 2px 0 0 var(--border) inset;
}
@media (max-width: 768px) {
  .layoutPageContainer div {
    padding: var(--marginS);
  }
}
.layoutPageContainer p {
  max-width: 76ch;
}
@media (max-width: 768px) {
  .layoutPageContainer {
    grid-template-columns: 1fr;
  }
}
/* ------------------------------------------------------------------------------------------------
 *
 * This is where all of the CSS code is handled for your theme.
 *
 * We recommend you break your CSS into multiple files and put them in a separate
 * directory. We've used a "stylesheets" directory in our example below. After that we'll use
 * Sprockets (getsprockets.org) to package them into one file. Sprockets also allows you to
 * use Sass/SCSS (sass-lang.com) by ending your file name with .sass or .scss, and you can also
 * use LESS (lesscss.org) by ending your file with .less.
 *
 * However, if you don't have much CSS, or you're just a glutton for punishment,
 * you could simply put all of your CSS in this file. It's up to you.
 *
 * ------------------------------------------------------------------------------------------------
 */

/*
 *
























  *
 */

