.promo-banner {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  user-select: none !important;
  -webkit-user-drag: none !important;
  background-color: var(--bg-color-900);
  z-index: 100000;
}

.promo-banner p {
  color: var(--text-color-000);
}

.hero {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero .hero-overlay {
  position: absolute;
  width: 100%;
  height: 80vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.hero .hero-overlay .hero-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
  height: 80vh;
}

.hero-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: 80vh;
}

.hero-content-left img {
  width: 100%;
}

.hero-content-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.hero .hero-overlay h1 {
  font-size: 56pt;
  font-weight: 900;
  color: var(--text-color-000);
}

.hero .hero-overlay p {
  font-size: 22pt;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--text-color-000);
}

.hero .hero-overlay a {
  display: inline-block;
  padding: 12px 24px;
  font-size: 12pt;
  font-weight: 600;
  letter-spacing: 0.4px;
  background-color: var(--bg-color);
  color: var(--text-color);
  border-radius: 4px;
  transition: all 0.12s ease-in-out;
}

.hero .hero-overlay a:hover {
  background-color: var(--bg-color-300);
}

.hero .hero-overlay a:active {
  background-color: var(--bg-color-400);
}

.hero > img {
  position: absolute;
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: 50% 35%;
  filter: blur(4px);
}

/* Popular Products */
.product-list {
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: space-between;
  padding-top: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color-100);
  border-radius: 4px;
}

.product-image {
  width: 100%;
}

.product-image img {
  width: 100%;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
}

.product-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 10px;
}

.product-actions a {

}