.container{
    padding-top: 35px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    gap: 25px;
}



.description{
    text-align: center;
    padding: 10px;
}


@media screen and (min-width: 320px) {
    .picture-container, #mainImage{
      width: calc(230px + 95 * ((100vw - 320px) / 680));
      height: calc(230px + 95 * ((100vw - 320px) / 680));
    }
    .product-title {
        font-size: calc(35px + 15 * ((100vw - 320px) / 680));
    }
    .thumbnails img {
      width: calc(60px + 40 * ((100vw - 320px) / 680));
      height: calc(60px + 40 * ((100vw - 320px) / 680));
    }
}


@media screen and (min-width: 1000px) {
    .picture-container, #mainImage{
      width: 400px;
      height: 400px;
    }
    .product-title {
      font-size: 50px;
    }
    .thumbnails img {
      width: 100px;
      height: 100px;
    }
}


.paypal-wrapper {
  display: block;
  margin:auto;
  width: 40%;
  min-width: 275px;
  text-align: center;
  background-color: #FBFBFB;
  padding: 20px;
  border: 1.75px solid #4b3f3f;
  border-radius:10px;
}

.smallImage {
  border-radius: 10px; 
}

#mainImage {
  padding: 15px;
  background-color: #FBFBFB; 
  border: 5px solid #E9EDC9;
  border-radius: 20px; 
}



.product-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-gallery img {
  margin-bottom: 10px;
}

.thumbnails img {
  margin: 0 5px;
  cursor: pointer;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnails img:hover{
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


