/* Basic Styling */

.product-view {
  margin-top: 100px;
  margin-bottom: 100px;
}

.product-image {
  width: 650px;
}

.imagealign {
  align-items: start;
  justify-content: center;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  backdrop-filter: blur(10px);
  color: black;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
}

/* Lightbox Styling */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

#lightbox.active {
  display: flex;
}

/* Fix Image Layout */
.product-image {
  cursor: pointer;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.2s;
}

/* Columns */
.right-column {
  width: 100%;
}

/* Product Description */
.product-description {
  border-bottom: 1px solid #E1E8EE;
}

.product-description span {
  font-size: 12px;
  color: #358ED7;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.product-description h1 {
  font-weight: 300;
  font-size: 52px;
  color: #43484D;
  letter-spacing: -2px;
}

.product-description p {
  font-size: 16px;
  font-weight: 300;
  color: #86939E;
  line-height: 24px;
}

/* Product Price */
.product-price {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.product-price span {
  font-size: 26px;
  font-weight: 300;
  color: #43474D;
  margin-right: 20px;
}

.cart-btn {
  display: inline-block;
  background-color: #000000;
  border-radius: 1px;
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px 30px;
  transition: all .5s;
}

.cart-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid black;
}

/* Responsive */

.textalign {
  display: flex;
  align-items: start;
  justify-content: center;
}

@media (max-width :1200px) {
  .product-image {
    width: 550px;
  }

}

@media (max-width :990px) {
  .product-image {
    width: 500px;
  }

  .right-column {
    margin-top: 30px;
    width: 500px;
  }

}

@media (max-width :768px) {
  .product-image {
    width: 400px;
  }

  .right-column {
    margin-top: 30px;
    width: 400px;
  }

}

@media (max-width :440px) {
  .product-image {
    width: 300px;
  }

  .right-column {
    margin-top: 30px;
    width: 300px;
  }

}

#product a {
  text-decoration: none;
  width: 99.99vw;
}

#product {
  width: 99.99vw;
}

#related_test {
  text-align: center;
  font-weight: 400;
  padding: 30px;
}

#related_test h3 {
  font-family: sans-serif;
  letter-spacing: 2px !important;
}

.trend-image {
  width: 450px;
}

.main-space {
  display: flex;
  align-items: start;
  justify-content: center;
}

.capitalize-first-letter::first-letter {
  text-transform: uppercase;
}

.decaration {
  color: #000000;
  text-decoration: none;
  max-width: 450px;
}

@media (max-width :1700px) {
  .trend-image {
    width: 400px;
  }

  .decaration {
    width: 400px;
  }

}

@media (max-width :1300px) {
  .trend-image {
    width: 350px;
  }

  .decaration {
    width: 350px;
  }

}

@media (max-width :1200px) {
  .trend-image {
    width: 300px;
  }

  .decaration {
    width: 300px;
  }

}

@media (max-width :991px) {
  .trend-image {
    width: 350px;
  }

  .decaration {
    width: 350px;
  }

}

@media (max-width :344px) {
  .trend-image {
    width: 300px;
  }

  .decaration {
    width: 300px;
  }

}