* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background-color: black;
  --text-color: #faf7f0;
}

.darkmode {
  background-color: var(--background-color);
  color: var(--text-color);
}

.lightmode {
  background-color: var(--text-color);
  color: var(--background-color);
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  cursor: none;
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none;
  /* overflow-x: hidden; */
}

#cart-page {
  z-index: 9999;
  position: fixed;
  background-color: var(--background-color);
  color: var(--text-color);
  width: 400px;
  height: 97%;
  margin-top: 10px;
  padding: 25px;
  right: -500px;
  display: flex;
}

.head-cart {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
}

.head-cart h1 {
  font-size: 40px;
}

#checkout {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.cross-icon {
  fill: white;
  margin-right: 20px;
  top: 2px;
  position: relative;
}

#main {
  overflow-x: hidden;
}

#cursor {
  position: fixed;
  z-index: 9999;
  top: -10px;
  left: -10px;
  pointer-events: none;
}

#cursor svg {
  width: 40px;
}

#header {
  position: fixed;
  height: 160px;
  width: 100%;
  /* background-color: violet; */
  top: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 11;
}

#logo-header {
  height: 110px;
  width: 110px;
  position: relative;
  left: 25px;
}

#logo-header img {
  width: 70%;
  height: 70%;
  object-fit: cover;
}

#items-header {
  display: flex;
  flex-direction: column;
  align-items: end;
  position: relative;
  right: 25px;
  /* background-color: red; */
}

#items-header .items {
  font-size: 35px;
  font-weight: 600;

  isolation: isolate;
  background-color: rgba(242, 237, 237, 0.01);
}

#hero-page {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

#hero-page video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

@font-face {
  font-family: "typo-text";
  src: url("/fonts/Ashley\ Southine\ Demo.ttf");
}

#written-logo {
  /* background-color: red; */
  position: absolute;
  rotate: -20deg;
  top: 130px;
  left: 100px;
}
#written-logo h1 {
  font-size: 100px;
  font-family: "typo-text";
  line-height: 110px;
  color: var(--text-color);
}

@font-face {
  font-family: "europa";
  src: url("/fonts/europa-grotesk-sh-bold.otf");
}

@font-face {
  font-family: "europa-reg";
  src: url("/fonts/EuropaGroteskSH-Reg.otf");
}

#about-page {
  width: 100%;
  height: 100vh;
  position: relative;
}

#heading-text {
  position: relative;
  top: 30px;
  left: 25px;
}

#heading-text h1 {
  font-size: 60px;
  line-height: 55px;
  font-family: "europa";
  letter-spacing: 3px;
}

#text-container {
  position: relative;
  top: 10px;
  width: 80%;
  /* background-color: red; */
}

#text-container .parent .child {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 22px;
}

#typo-text {
  position: relative;
  top: 10px;
  height: 450px;
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ticker-container {
  width: 100%;
  overflow: hidden;
  /* background: #000000; */
  color: var(--background-color);
  padding: 10px 0;
  border-top: var(--background-color) 1px solid;
  border-bottom: var(--background-color) 1px solid;
  position: relative;
  white-space: nowrap;
  font-family: europa;
  top: 40px;
}

.ticker-content {
  display: inline-flex;
}

.ticker-item {
  padding: 0 2rem;
  font-size: 3.5rem;
  white-space: nowrap;
}

#heading-text img {
  position: absolute;
  top: 200px;
  right: 40px;
  width: 400px;
}

@font-face {
  font-family: "typo-text";
  src: url("/fonts/Ashley\ Southine\ Demo.ttf");
}

#typo-text .text {
  font-family: "typo-text";
  line-height: 80px;
  font-size: 70px;
}

#product-page {
  width: 100%;
  /* background-color: red; */
  margin-bottom: 20px;
}

#collection-link {
  position: relative;
  left: 25px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

#product-page h1 {
  font-family: "europa";
  letter-spacing: 5px;
  font-size: 100px;
  position: relative;
  left: 25px;
  top: 15px;
  display: inline-block;
  z-index: 999;
}

#collection-link h2 {
  font-size: 40px;
}

.product-grid {
  display: grid;
  gap: 20px;
  padding: 25px;
  margin: 0 auto;
  max-width: 100%;
  grid-template-columns: 1fr; /* Default: 1 column */
}

.product {
  /* background-color: #222; */
  overflow: hidden;
  /* border: 1px solid #333; */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 5px;
  display: flex;
  justify-content: space-between;
}

.product-info h2 {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 400;
}

.product-info p {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 400;
}

/* ≥ 600px: 2 columns */
@media screen and (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ≥ 900px: 3 columns */
@media screen and (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ≥ 1920px: 4 columns */
@media screen and (min-width: 2100px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

#product-page-2 h1 {
  font-family: "europa";
  letter-spacing: 5px;
  font-size: 100px;
  position: relative;
  left: 25px;
  top: 15px;
}

#gallery {
  width: 100%;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* background-color: red; */
  position: relative;
}

#gallery .im2 {
  position: absolute;
  right: 30px;
  top: -10px;
  z-index: 999;
  width: 400px;
}

.photos {
  width: 300px;
  height: 400px;
  background-color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.p1 {
  position: relative;
  top: -50px;
  left: -5px;
  rotate: -10deg;
}

.p2 {
  position: relative;
  top: 30px;
  rotate: 3deg;
}

.p3 {
  position: relative;
  top: 150px;
  right: 20px;
  rotate: 10deg;
}

.photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reveal .parent {
  overflow: hidden;
  display: block;
  /* background-color: red; */
}

.reveal .child {
  display: inline-block;
}

#our-story {
  width: 100%;
  min-height: 100vh;
  position: relative;
  /* background-color: red; */
  margin-bottom: 20px;
}

#our-story-text {
  width: 100%;
  height: 100%;
  /* background-color: red; */
  width: 95%;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
}

#our-story h1 {
  font-family: "europa";
  letter-spacing: 2px;
  font-size: 100px;
  text-transform: uppercase;
  left: 25px;
  position: relative;
}

#our-story-text h2 {
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  left: 25px;
  font-size: 50px;
  margin-bottom: 20px;
  font-family: "europa";
}

#our-story #image-team {
  max-width: 100%;
  display: grid;
  gap: 25px;
  position: relative;
  /* background-color: red; */
  grid-template-columns: repeat(1, 1fr);
  padding: 25px;
}

#our-story #image-team img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.poster {
  width: 400px;
  position: absolute;
  right: 10%;
  rotate: -6deg;
  /* height: 800px; */
}
