main#MainContent.product-template {
  .facets-vertical .main-product_info.product {
    /* gap: 32px; */
  }
  .product__info-wrapper {
    --box-pad: 24px;
    --box-rad: 10px;
    padding-left: 32px;
    
    .product__info-container {
      border-radius: var(--box-rad);
      padding: var(--box-pad);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    }
    .product__title h1 {
      line-height: 1.1;
      text-wrap: balance;
    }
    legend.form__label {
      font-family: "Clash Display", sans-serif;
    }

    .price-wrapper {
      margin-top: 24px;
      margin-bottom: 0;
    }
    .price__regular span.price-item, span#subtotal-value {
      color: var(--clr-accent-10);
      font-size: 24px;
      font-weight: 600;
      line-height: 1.1;
    }


    .swatch-label-text legend {
      min-width: 20px;
      max-width: 100%;
      flex-wrap: wrap;
      column-gap: 6px;
      row-gap: 2px;
      span {
        margin-left: 0;
      }
    }
    .swatch-group label {
      margin-top: 4px;
      margin-right: 5px;
      border-radius: 100vw;
    }

    .product__tax.caption.rte {
      margin-top: 0;
      margin-bottom: 24px;
      font-size: 12px;
      text-transform: uppercase;
    }

    .sub-total {
      margin-top: 0;
      margin-bottom: 48px;
    }

    /* Zona pagamento */
    .product-form__buttons {
      * {
        transition: all 220ms;
      }
      .product-form__quantity {
        button svg {
          width: 20px;
        }
        input.quantity__input {
          font-size: 18px;
          font-weight: 600;
          line-height: 1;
        }
      }
      button.product-form__submit {
        border-radius: 100vw;
        padding-block: 16px;
        outline: 1px solid var(--clr-accent-10);
        outline-offset: -1px;
      }
      button.product-form__submit:hover {
        color: var(--clr-accent-10);
      }
      a.button--secondary:hover {
        background-color: var(--clr-accent-10);
      }
    }

    /* Pulsante condividi */
    share-button button {
      background-color: var(--clr-accent-off);
      border-radius: 100vw;
      padding: 6px 12px;
      margin-inline: auto;

      svg {
        margin-right: 6px;
      }
    }
    share-button button::after {
      content: "Condividi";
    }

    /* Lista metodi di pagamento */
    .product__payment {
      margin-top: 24px;
      margin-bottom: 56px;
      padding: 0;
      border: 0;

      .list-payment {
        border-radius: calc(var(--box-rad) - var(--box-pad));
        border-radius: 12px;
      }
      ul.list {
        padding: 16px;
        column-gap: 6px;
        row-gap: 0px;

        li {
          margin: 0;
        }
      }
    }
    
    /* Dettagli apribili */
    .product__accordion {
      border-radius: 0;
      border: 0;
      margin: 0;
      border-top: 1px solid rgb(224, 224, 224);
      transition: background-color 220ms;

      h6.accordion__title {
        line-height: 1;
      }
      summary {
        padding: 20px 24px;
        svg {
          transition: transform 120ms;
        }
      }
      .accordion__content {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 0 28px 28px 24px;
        p {
          line-height: 1.35;
          margin: 0;
        }
      }
      details[open] summary svg {
        transform: rotate(45deg);
      }
    }
    .product__accordion:hover {
      /* background-color:rgb(243, 241, 236); */
    }
  }


  /* RESPONSIVENESS MOBILE e TABLET */
  @media screen and (max-width: 990px) {
    .product__info-wrapper {
      padding: 0;
    }
    .main-product_info media-gallery .slider-buttons {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 20px;

      button {
        width: 100%;
        border-radius: 10px;
        height: 40px;
        transition: background-color 220ms;
      }
      button:hover {
        background-color: var(--clr-accent-off);
      }
      .slider-counter {
        display: none;
      }
    }
  }


  /* RESPONSIVENESS MOBILE */
  @media screen and (max-width: 576px) {
    .product__info-container {
      padding: 20px;
    }
    .product__title {
      margin-top: 0;
    }

    .product__accordion summary {
      padding: 16px !important;

      svg {
        width: 18px !important;
        height: 18px !important;
      }
    }
  }
}