.product-showcase {
  height: 400vh;
  overflow: hidden;
}

/* --- PRODUCT IMAGE STYLES --- */
.pin-container {
  position: relative;
  width: 100%;
  top: -7%;
  z-index: 2;
}

.fixed-product-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}

.product-image-wrap {
  width: 600px;
  margin-left: -300%;
  transform: rotate(-30deg);
}

.product-image-wrap img {
  width: 70%;
}

.slide-section-wrap {
  height: 300vh;
}

.sliding-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.sliding-bg img {
  width: 1920px;
  opacity: 0.6;
  top: -7%;
}


/* --- CONTENT OVERLAY STYLES --- */
.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-left: -10%;
  color: white;
  text-align: right;
}

.product-name {
  font-size: 7rem;
  opacity: 0;
  max-width: 500px;
}

.view-button {
  margin-top: 20px;
  padding: 10px 30px;
  background-color: #ff4500;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  opacity: 0;
  transform: translateX(50px);
  transition: background-color 0.3s;
}

.view-button:hover {
  background-color: #e63e00;
}
