.productpage-main {
  padding: 40px 25px 2em 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  max-width: 1600px;
  margin: auto;
}

/* Järjestä tuotekuvat ja informaatio rinnakkain leveillä näytöillä */
#productpage-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: auto;
}

#productpage-info {
  margin-top: 1em;
  max-width: 600px;
}

/* Tuoteinformaation asettelu */
@media (min-width: 1000px) {
  #productpage-details {
    flex-direction: row;
  }
  .productpage-carousel,
  #productpage-info {
    flex: 1;
  }
  #productpage-details {
    gap: 50px;
  }
}

/* Tuotekuvakarusellin ja painikkeiden tyylit */
.productpage-carousel {
  position: relative;
  max-width: 600px;
  overflow: hidden;
}

.productpage-carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

#productpage-images {
  display: flex;
}

#productpage-images img {
  flex-shrink: 0;
  width: 100%;
  display: block;
}

.productpage-carousel .arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 9;
}

.productpage-carousel .arrow.left {
  left: 2px;
}

.productpage-carousel .arrow.right {
  right: 2px;
}

.productpage-carousel .arrow img {
  filter: invert(100%) drop-shadow(0 0 4px rgba(0, 0, 0, 1));
  height: 25px;
  transition: filter 0.2s ease;
}

.productpage-carousel .arrow img:hover {
  filter: invert(83%) drop-shadow(0 0 4px rgba(0, 0, 0, 1));
}

.carousel-indicators {
  text-align: center;
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}

/* Hienosäädetty koko-valitsin */
#size-select {
  width: 200px;
  padding: 0.6em 1em;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 0px;
  margin-bottom: 1.5em;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
  color: black;
  background-image: url("data:image/svg+xml,<svg width='24' height='24' xmlns='http://www.w3.org/2000/svg'><path d='m0,6l12,12l12,-12l-24,0z'/><path fill='none' d='m0,0l24,0l0,24l-24,0l0,-24z'/></svg>") ;
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.7rem auto;
}

#size-select:hover {
  background-color: #fff;
  border-color: #aaa;
}

/* Houkutteleva lisää ostoskoriin -painike */
#add-to-cart {
  background-color: #28a745;
  color: white;
  font-size: 1rem;
  padding: 15px 23px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
}

#add-to-cart:hover {
  background-color: #218939;
}

#add-to-cart:active {
  transform: scale(0.9);
}

#add-to-cart img {
  height: 18px;
  margin-right: 6px;
  margin-top: -10px;
  filter: invert(100%);
  transform: translate(-3px, 3px);
}

/* 404-virhetyyli */
#error-message {
  text-align: center;
  margin-top: 2em;
}

.productpage-discount-tag {
  background-color: red;
  color: white;
  padding: 1px 10px 1px 10px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Lisää varjon, jotta tagi erottuu paremmin */
  margin-left: 2px;
}

.productpage-share-icon {
  height: 20px;
  filter: invert(50%) sepia(0%) saturate(455%) hue-rotate(153deg) brightness(96%) contrast(90%);
  transform: translateY(5px);
}

.share-link {
  margin-top: 40px;
}

.productpage-bottom-information {
  margin: auto;
  padding: 0 25px 8px 25px;
  max-width: 1317px;
}

@media (max-width: 999px) {
  .productpage-bottom-information {
    max-width: 666px;
  }
  .share-link {
    margin-top: 25px;
  }
  .productpage-main {
    padding-bottom: 10px;
  }
}

.productpage-bottom-information .info-list{
  padding-top: 10px;
  padding-left: 15px;
}

.product-page-climate-padge {
  border: 1px solid #53d170;
  padding: 7px 11px;
  max-width: 550px;
  border-radius: 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  color:#097e24
}
.product-page-climate-padge-earth-image {
  height: 40px;
  margin-right: 10px;
}