.product-page{
  margin-top: 150px;
}

.product-content {
  display: flex; /* Use flexbox for layout */
  justify-content: space-between; /* Space between text and image */
  align-items: flex-start;
  max-width: 1200px; /* Optional: Limit the max width */
  margin: 0 auto; /* Center the wrapper on the page */
  padding-top: 80px; /* Optional padding */
}

.product-text {
  flex: 1; /* Take available space */
  max-width: 60%; /* Optional: Limit text width */
  padding-left: 10%;
}



.swiper-container {
  width: 100%;
  margin: auto;
  position: relative;
  user-select: none;
}

/* .swiper-slide img {
  width: 100%;
  height: auto;
} */

.swiper-pagination {
  bottom: 10px;
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  width: 4px;
  height: 0px;
  top: 100%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1em; /* Try larger size for more impact */
}


:root {
--swiper-theme-color: #3EB489 !important; /* Override the Swiper theme color */
}


.product-title {
  margin-bottom: 10px;
}

.product-price {
  margin-bottom: 25px;
}

.product-description-short {
  margin-bottom: 10px;
}

.product-description-long {
  margin-top: 50px;
}

.product-description-long ul {
  list-style-position: inside;
  padding-left: 0;
}

.product-description-long h3 {
  margin-bottom: 20px; /* Adjust the value to your preference */
  margin-top: 20px;
}

.product-image {
  flex: 1; 
  max-width: 35%;
  overflow: hidden;
}

.product-image img {
  width: 100%; 
  height: auto; 
  display: block; 
}

.button {
  display: inline-block; /* Makes the anchor behave like a button */
  padding: 10px 20px; /* Adjust padding for size */
  background-color: #3EB489; /* Button color */
  color: white; /* Text color */
  text-decoration: none; /* Remove underline */
  border-radius: 5px; /* Rounded corners */
  margin-top: 20px; /* Space above the button */
  margin-bottom: 20px;
}

.button:hover {
  background-color: #3eb48987; /* Darker shade on hover */
}

.testing{
  margin-top: 200px;
}


@media (max-width: 768px) {
  .product-page{
    margin-top: 25%;
  }

  .product-content{
    flex-direction: column;
    padding-top: 0%;
  }

  .product-image{
    max-width: 100%;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none;
  }

  .product-text{
    padding-left: 0;
    padding-top: 5%;
    max-width: 100%;
  }

  .product-description-long {
    margin-top: 20px;
  }

  .button{
    width: 100%;
    text-align: center;
  }

}



