main {
  padding: 4rem 0rem 4rem 0rem;
}

nav.woocommerce-breadcrumb,
nav.woocommerce-breadcrumb a {
  font-family: var(--font-family-helvetica-regular);
  color: #202020;
  text-decoration: none;
  font-size: 15px;
}

nav.woocommerce-breadcrumb {
  margin-left: 3rem;
  margin-bottom: 2rem;
  width: 10rem;
}

.product {
  background-color: #f9f9f8;
  padding: 2rem 1.5rem 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.summary {
  padding: 1rem 2rem 1rem 2rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* flex-grow: 1; */
  position: relative;
  min-height: 85vh;
  height: auto;
  width: 22vw;
}

div.title-price-area {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

h1.product-title {
  font-family: var(--font-family-baskerville-regular);
  font-size: 19px;
  flex-shrink: 1;
}

span.product-price {
  font-family: var(--font-family-helvetica-regular);
  width: 210px;
  text-align: right;
  font-size: 17px;
}

.woocommerce-product-description {
  font-family: var(--font-family-helvetica-regular);
  font-size: 14px;
  color: #000;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  flex-grow: 3;
  margin-top: 2rem;
}

.woocommerce-breadcrumb {
  color: #202020;
  font-family: var(--font-family-helvetica-regular);
  font-size: 17.71px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.woocommerce-product-cart {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.add_to_cart_button {
  width: 100%;
  height: 39px;
  border: 1px solid #000;
  border-radius: 35px;
  text-align: left;
  text-transform: uppercase;
  font-family: var(--font-family-helvetica-regular);
  font-size: 17px;
  color: #000;
  text-decoration: none;
  padding-top: 5px;
  background: url("../imgs/ArrowUpRight.svg") right center no-repeat;
  padding-right: 25px; /* Ajuste conforme necessário */
  padding-left: 20px;
}

a.add_to_cart_button:hover {
  color: "#394D7C";
}

.product-image img {
  min-height: 80vh;
  height: auto;
  width: 56vw;
  max-width: 56vw;
}

/*
cursor de la section produits similaires
*/

#cursorProduct {
  position: absolute;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-color: black;
  background-position: center;
  pointer-events: none;
  transition: background-color 0.5s ease;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cursorProduct span {
  font-family: "Helvetica-Regular";
  color: white;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-20%, -50%);
}

.product-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-bottom: 4rem;
  width: 100%;
}

.product-gallery img {
  margin-right: 10px;
}

section#img-gallery {
  padding: 2rem 1.5rem 2rem 1.5rem;
}

section#similar-products {
  border-top: 1px solid black;
  padding: 2rem 1.5rem 2rem 1.5rem;
}

section#similar-products ul.products {
  padding: 0;
}

section#similar-products h2 {
  color: #000;
  font-family: var(--font-family-anton);
  font-size: 42.62px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.related-products ul.products {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.related-products ul.products li {
  margin-right: 15px;
}

.related-products ul.products li a {
  text-decoration: none;
  color: #000;
}

.related-products ul.products li h3 {
  color: #000;
  font-family: var(--font-family-baskerville-semibold);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-top: 10px;
  width: 18rem;
  height: 5rem;
  text-align: left;
}

.related-products ul.products li span.price {
  color: #000;
  font-family: var(--font-family-helvetica-regular);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 1500px) {
  .summary {
    margin: 2rem 1rem 2rem 1rem;
    min-height: 60vh;
    width: 25vw;
  }
  .product-image img {
    min-height: 60vh;
    width: 60vw;
    max-width: 60vw;
  }

  .woocommerce-product-description {
    margin-top: 1rem;
  }
}

@media (max-width: 1300px) {
  .summary {
    min-height: 40vh;
    width: 35vw;
  }
}

@media (max-width: 1150px) {
  .summary {
    min-height: 30vh;
    width: 35vw;
  }

  .product-image img {
    min-height: auto;
    width: auto;
    max-width: auto;
  }

  .product-gallery img {
    width: 20vw;
  }

  .related-products ul.products li {
    margin-bottom: 2rem;
  }

  #cursorProduct {
    position: absolute;
    width: 6rem;
    height: 6rem;
  }

  #cursorProduct span {
    font-size: 0.8rem;
  }
}

@media (max-width: 950px) {
  .add_to_cart_button {
    width: 200px;
    height: 30px;
    font-size: 13px;
  }
}

@media (max-width: 800px) {
  .product {
    flex-direction: column;
  }

  .product-image img {
    height: auto;
    width: 80vw;
    max-width: 80vw;
    margin-left: -1rem;
  }

  .summary {
    padding: 1rem;
    margin-left: 0vw;
    min-height: auto;
    width: 80vw;
  }

  .related-products ul.products {
    margin-left: -1rem;
  }

  nav.woocommerce-breadcrumb {
    margin-left: 1rem;
  }
}

@media (max-width: 600px) {
  #cursorProduct {
    width: 4rem;
    height: 4rem;
  }

  #cursorProduct span {
    font-size: 0.5rem;
  }
}
