.product-complete {
  padding: 80px 80px;
  position: relative;
}

.product-complete__title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: -0.12px;
  color: #000000;
  text-align: left;
  margin-bottom: 40px;
  max-width: 874px;
}

.product-complete__description {
  font-family: "IvyPresto Headline", serif;
  font-weight: 600;
  font-size: 45px;
  line-height: 56px;
  letter-spacing: -0.151389px;
  color: #000000;
  max-width: 874px;
  margin-bottom: 40px;
}

.product-complete__button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 60px;
}

.product-complete__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  margin: 0 auto;
}

.product-complete__item--large {
  width: 424px;
  flex-shrink: 0;
}

.product-complete__item:not(.product-complete__item--large) {
  /* width: calc((100% - 40% - 60px) / 3); */
  width: 210px;
}

.product-complete__link {
  display: block;
  text-decoration: none;
  color: #000;
}

.product-complete__image-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  aspect-ratio: 1;
}

.product-complete__item--large .product-complete__image-container {
}

.product-complete__item:not(.product-complete__item--large)
  .product-complete__image-container {
}

.product-complete__image-container .product-complete__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.product-complete__name {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: 2px;
  line-height: 13px;
  color: #000;
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Marble background container */
.product-complete::after {
  content: "";
  position: absolute;
  width: 722px;
  height: 1516px;
  right: -200px;
  top: 0;
  transform: rotate(90deg);
  background-image: url("../../../images/marble-lab-breccia-sarda.jpg"),
    url("../../../images/breccia-sarda.jpg");
  background-size: cover;
  z-index: -1;
  opacity: 0.3;
}

@media (max-width: 992px) {
  .product-complete {
    padding: 40px 40px;
  }

  .product-complete__grid {
    gap: 20px;
  }

  .product-complete__item--large {
    width: 45%;
  }

  .product-complete__item:not(.product-complete__item--large) {
    width: calc((100% - 45% - 40px) / 3);
  }

  .product-complete__title,
  .product-complete__description {
    font-size: 36px;
    line-height: 44px;
  }

  .product-complete::after {
    width: 500px;
    height: 1000px;
    right: -250px;
  }
}

@media (max-width: 768px) {
  .product-complete {
    padding: 20px 20px;
  }

  .product-complete__item--large {
    width: 100%;
    margin-bottom: 10px;
  }

  .product-complete__item:not(.product-complete__item--large) {
    width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 576px) {
  .product-complete {
    padding: 10px 10px;
  }

  .product-complete__grid {
    gap: 20px;
  }

  .product-complete__item:not(.product-complete__item--large) {
    width: 100%;
  }

  .product-complete__title,
  .product-complete__description {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  .product-complete::after {
    display: none;
  }
}

/* Aggiungi queste regole al file product-complete.css */

/* Contenitore titolo e pulsante */
.product-complete__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

/* Stile per il titolo */
.product-complete__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  /* Previene che il titolo si espanda troppo */
}

/* Stile per il pulsante su desktop */
.product-complete__header .product-info-request {
  margin-left: 2rem;
  white-space: nowrap;
}

/* Stile per mobile */
@media (max-width: 767px) {
  .product-complete__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .product-complete__header .product-info-request {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
