.sa-product{
  --sa-product-yellow: #fff001;
  --sa-product-black: #111111;
  background: #ffffff;
  color: var(--sa-color-ink);
}

.sa-product__masthead{
  padding-top: var(--sa-space-5);
}

.sa-product__breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--sa-color-muted);
  font-size: 0.875rem;
}

.sa-product__breadcrumbs a{
  color: inherit;
  text-decoration: none;
}

.sa-product__main{
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
  gap: var(--sa-space-7);
  align-items: start;
  padding-block: var(--sa-space-5) var(--sa-space-7);
}

.sa-product__side{
  position: sticky;
  top: 18px;
  display: grid;
  gap: var(--sa-space-4);
}

.sa-product-gallery{
  display: grid;
  gap: var(--sa-space-4);
}

.sa-product-gallery__stage{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sa-color-line);
  border-radius: var(--sa-radius-md);
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 60%);
}

.sa-product-gallery__badge{
  position: absolute;
  z-index: 2;
  top: var(--sa-space-4);
  left: var(--sa-space-4);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: var(--sa-product-yellow);
  color: var(--sa-product-black);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sa-product-gallery__main{
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: var(--sa-space-6);
}

.sa-product-gallery__main img,
.sa-product-gallery__thumb img,
.sa-product-related__card img{
  display: block;
  max-width: 100%;
  height: auto;
}

.sa-product-gallery__main img{
  width: min(100%, 680px);
}

.sa-product-gallery__thumbs{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--sa-space-3);
}

.sa-product-gallery__thumb{
  overflow: hidden;
  border: 1px solid var(--sa-color-line);
  border-radius: var(--sa-radius-sm);
  padding: 0;
  background: #fff;
  cursor: default;
}

.sa-product-gallery__thumb.is-active{
  border-color: var(--sa-product-black);
  box-shadow: inset 0 0 0 2px var(--sa-product-yellow);
}

.sa-product-summary{
  display: grid;
  gap: var(--sa-space-4);
  border: 1px solid var(--sa-color-line);
  border-radius: var(--sa-radius-md);
  padding: var(--sa-space-5);
  background: #fff;
  box-shadow: var(--sa-shadow-soft);
}

.sa-product-summary__tags,
.sa-product-summary__promise{
  display: flex;
  flex-wrap: wrap;
  gap: var(--sa-space-2);
}

.sa-product-summary__tags span,
.sa-product-summary__promise span{
  border: 1px solid var(--sa-color-line);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  background: var(--sa-color-soft);
  color: var(--sa-color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.sa-product-summary__title{
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 0.98;
}

.sa-product-summary__excerpt{
  color: var(--sa-color-muted);
  font-size: 1.03rem;
}

.sa-product-summary__meta-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sa-space-3);
}

.sa-product-summary__price{
  color: var(--sa-product-black);
  font-size: 1.45rem;
  font-weight: 950;
}

.sa-product-summary__price .amount{
  color: inherit;
}

.sa-product-summary__sku{
  color: var(--sa-color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.sa-product-panel{
  border: 1px solid var(--sa-color-line);
  border-radius: var(--sa-radius-md);
  padding: var(--sa-space-5);
  background: var(--sa-color-surface);
  box-shadow: var(--sa-shadow-soft);
}

.sa-product-panel__header{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sa-space-3);
  align-items: start;
}

.sa-product-panel__step{
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--sa-product-black);
  color: var(--sa-product-yellow);
  font-weight: 950;
}

.sa-product-panel__title{
  margin: 0 0 var(--sa-space-2);
  font-size: 1.13rem;
}

.sa-product-panel__text{
  margin: 0;
  color: var(--sa-color-muted);
}

.sa-product-options-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sa-space-3);
  margin-top: var(--sa-space-4);
}

.sa-product-option-pill{
  display: grid;
  gap: 0.25rem;
  border: 1px dashed var(--sa-color-line);
  border-radius: var(--sa-radius-sm);
  padding: var(--sa-space-3);
  background: var(--sa-color-soft);
}

.sa-product-option-pill span{
  color: var(--sa-color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sa-upload-shell__dropzone{
  display: grid;
  gap: var(--sa-space-2);
  place-items: center;
  border: 1px dashed var(--sa-product-black);
  border-radius: var(--sa-radius-md);
  margin-top: var(--sa-space-4);
  padding: var(--sa-space-5);
  background: #fffce6;
  color: var(--sa-product-black);
  text-align: center;
}

.sa-upload-shell__icon{
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--sa-product-yellow);
  font-size: 1.5rem;
  font-weight: 950;
}

.sa-pricing-shell__rows{
  display: grid;
  gap: var(--sa-space-3);
  margin-top: var(--sa-space-4);
}

.sa-pricing-shell__rows > div{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sa-space-4);
  border-bottom: 1px solid var(--sa-color-line);
  padding-bottom: var(--sa-space-3);
}

.sa-pricing-shell__total strong{
  color: var(--sa-product-black);
}

.sa-add-to-cart-shell__controls{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--sa-space-3);
  margin-top: var(--sa-space-4);
}

.sa-add-to-cart-shell__qty{
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid var(--sa-color-line);
  border-radius: var(--sa-radius-sm);
}

.sa-add-to-cart-shell__qty button,
.sa-add-to-cart-shell__qty span{
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  font-weight: 900;
}

.sa-add-to-cart-shell__button{
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sa-product-black);
  border-radius: var(--sa-radius-sm);
  background: var(--sa-product-yellow);
  color: var(--sa-product-black);
  font-weight: 950;
}

.sa-add-to-cart-shell__button[disabled],
.sa-add-to-cart-shell__qty button[disabled]{
  cursor: not-allowed;
  opacity: 0.78;
}

.sa-add-to-cart-shell__note{
  margin: var(--sa-space-3) 0 0;
  color: var(--sa-color-muted);
  font-size: 0.86rem;
}

.sa-product__description-wrap{
  padding-bottom: var(--sa-space-7);
}

.sa-product-description{
  border: 1px solid var(--sa-color-line);
  border-radius: var(--sa-radius-md);
  padding: var(--sa-space-6);
  background: var(--sa-color-soft);
}

.sa-product-description__body{
  max-width: 82ch;
  color: var(--sa-color-muted);
}

.sa-product-band{
  border-top: 1px solid var(--sa-color-line);
  background: var(--sa-color-soft);
}

.sa-product-section__head{
  display: grid;
  gap: var(--sa-space-2);
  margin-bottom: var(--sa-space-5);
}

.sa-product-section__eyebrow{
  margin: 0;
  color: var(--sa-color-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sa-product-section__title{
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.sa-product-trust-grid,
.sa-product-related-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sa-space-5);
}

.sa-product-trust__card,
.sa-product-related__card{
  border: 1px solid var(--sa-color-line);
  border-radius: var(--sa-radius-md);
  padding: var(--sa-space-5);
  background: #fff;
  box-shadow: var(--sa-shadow-soft);
}

.sa-product-trust__card h3,
.sa-product-related__card span{
  margin: 0 0 var(--sa-space-2);
  color: var(--sa-product-black);
  font-weight: 950;
}

.sa-product-faq__list{
  border: 1px solid var(--sa-color-line);
  border-radius: var(--sa-radius-md);
  background: #fff;
}

.sa-product-faq details{
  padding: var(--sa-space-4) var(--sa-space-5);
}

.sa-product-faq details + details{
  border-top: 1px solid var(--sa-color-line);
}

.sa-product-faq summary{
  cursor: pointer;
  font-weight: 900;
}

.sa-product-related__card a{
  display: grid;
  gap: var(--sa-space-3);
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1080px){
  .sa-product__main,
.sa-product-trust-grid,
.sa-product-related-grid{
    grid-template-columns: 1fr;
  }

  .sa-product__side{
    position: static;
  }
}

@media (max-width: 680px){
  .sa-product__main{
    gap: var(--sa-space-5);
  }

  .sa-product-gallery__main{
    min-height: 320px;
    padding: var(--sa-space-4);
  }

  .sa-product-gallery__thumbs,
.sa-product-options-grid,
.sa-add-to-cart-shell__controls{
    grid-template-columns: 1fr;
  }

  .sa-product-summary,
.sa-product-panel,
.sa-product-description{
    padding: var(--sa-space-4);
  }
}

/* Phase 14I: product page closer to Elementor yellow header + compact configurator card. */
.sa-product__masthead,
.sa-product__main{
  background: #fff001;
}

.sa-product__masthead{
  padding-top: 0.9rem;
}

.sa-product__main{
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 2rem;
  padding-block: 1rem 2rem;
}

.sa-product-gallery__stage,
.sa-product-summary,
.sa-product-panel,
.sa-product-description,
.sa-product-trust__card,
.sa-product-related__card,
.sa-product-faq__list{
  border-radius: 0;
  box-shadow: none;
}

.sa-product-gallery__stage{
  border: 0;
  background: transparent;
}

.sa-product-gallery__main{
  min-height: 420px;
  padding: 1rem;
}

.sa-product-summary{
  border: 2px solid #111;
}

.sa-product-summary__title{
  font-size: clamp(1.8rem, 3.4vw, 3.3rem);
  text-transform: uppercase;
}

.sa-product-panel{
  border: 1px solid #111;
}

.sa-product-band{
  background: #8cff9a;
}

@media (max-width: 680px){
  .sa-product__main{
    gap: 1rem;
    padding-block: 0.75rem 1.5rem;
  }

  .sa-product-gallery__main{
    min-height: auto;
    padding: 0;
  }
}

/* Live WooCommerce/EPO product template. */
.sa-product-live{
  --sa-product-yellow: #fff001;
  --sa-product-green: #7cf68e;
  --sa-product-black: #000;
  --sa-product-line: #000;
  background: #fff;
  color: #000;
  font-family: AvenirNextLTPro, Avenir, Arial, sans-serif;
}

.sa-product-live :where(h1, h2, h3, .price, .single_add_to_cart_button){
  letter-spacing: 0 !important;
}

.sa-product-live__breadcrumbs{
  padding: 18px 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.sa-product-live__breadcrumbs .woocommerce-breadcrumb{
  margin: 0;
  color: #000;
}

.sa-product-live__breadcrumbs a{
  color: #000;
  text-decoration: none;
}

.sa-product-live__hero{
  position: relative;
  overflow: hidden;
  background: #fff;
  border-top: 0;
  border-bottom: 0;
}

.sa-product-live__hero::before{
  content: "";
  position: absolute;
  z-index: 0;
  top: -145px;
  left: 0;
  width: 100%;
  height: 430px;
  background-image: url("/wp-content/uploads/2025/02/Onda-gialla-1-e1739300219561.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  pointer-events: none;
}

.sa-product-live__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(440px, 520px);
  gap: clamp(72px, 8vw, 150px);
  justify-content: center;
  align-items: start;
  padding: 205px 0 78px;
}

.sa-product-live__media,
.sa-product-live__summary{
  min-width: 0;
}

.sa-product-live__media{
  position: sticky;
  top: 18px;
}

.sa-product-live__media .woocommerce-product-gallery{
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.sa-product-live__media .woocommerce-product-gallery__wrapper{
  margin: 0;
}

.sa-product-live__media .woocommerce-product-gallery__image{
  overflow: hidden;
  border: 2px solid #000;
  background: #fff;
}

.sa-product-live__media .woocommerce-product-gallery__image:first-child{
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: clamp(18px, 3vw, 44px);
}

.sa-product-live__media .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child){
  display: none !important;
}

.sa-product-live__media .woocommerce-product-gallery__image img{
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 520px;
  margin: 0 auto;
  object-fit: contain;
}

.sa-product-live__media .flex-control-thumbs{
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 0 !important;
  padding: 0 !important;
}

.sa-product-live__media .flex-control-thumbs li{
  width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  display: block !important;
  overflow: hidden;
  list-style: none;
}

.sa-product-live__media .flex-control-thumbs img{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 1 / 1;
  border: 2px solid #000;
  background: #fff;
  object-fit: cover;
  opacity: 1 !important;
}

.sa-product-live__summary{
  border: 2px solid #000;
  background: #fff;
  padding: clamp(22px, 2.7vw, 42px);
}

.sa-product-live__summary .product_title{
  margin: 0 0 12px;
  color: #000;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.sa-product-live__summary .product_title::before{
  content: "Adesivi personalizzati";
  display: block;
  margin: 0 0 8px;
  font-family: AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1;
  font-weight: 300;
  text-transform: none;
}

.sa-product-live__summary .woocommerce-product-rating{
  margin: 0 0 14px;
}

.sa-product-live__summary .price{
  margin: 0 0 18px;
  color: #000;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
}

.sa-product-live__summary .price .amount{
  color: inherit;
}

.sa-product-live__summary .woocommerce-product-details__short-description{
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.35;
}

.sa-product-live__summary form.cart{
  display: block;
  margin: 0;
}

.sa-product-live__summary .quantity{
  display: inline-flex;
  align-items: stretch;
  margin: 18px 12px 0 0;
}

.sa-product-live__summary .quantity .qty{
  width: 88px;
  min-height: 54px;
  border: 2px solid #000;
  border-radius: 0;
  color: #000;
  font-weight: 900;
  text-align: center;
}

.sa-product-live__summary .single_add_to_cart_button{
  min-height: 58px;
  margin-top: 18px;
  border: 3px solid #000 !important;
  border-radius: 0 !important;
  background: var(--sa-product-green) !important;
  box-shadow: -8px 8px 0 rgba(0, 0, 0, .35);
  color: #000 !important;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.sa-product-live__summary .product_meta{
  margin-top: 22px;
  border-top: 1px solid #000;
  padding-top: 16px;
  font-size: 14px;
}

.sa-product-live__summary .product_meta a{
  color: #000;
}

.sa-product-live__summary .wapf-wrapper{
  margin: 22px 0 0;
  color: #000;
}

.sa-product-live__summary .wapf-field-label label{
  color: #000 !important;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 22px !important;
  line-height: 1.1;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.sa-product-live__summary .wapf-wrapper input,
.sa-product-live__summary .wapf-wrapper select{
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #000 !important;
}

.sa-product-live__summary .wapf-field-input label{
  color: #000;
}

.sa-product-live__summary .wapf-field-input label{
  border-color: #000;
}

.sa-product-live__details{
  padding: 58px 0 70px;
  background: #eee;
}

.sa-product-live__details .woocommerce-tabs,
.sa-product-live__details .related,
.sa-product-live__details .upsells{
  clear: both;
  margin: 0 0 44px;
}

.sa-product-live__details .woocommerce-tabs ul.tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px !important;
  padding: 0 !important;
}

.sa-product-live__details .woocommerce-tabs ul.tabs::before,
.sa-product-live__details .woocommerce-tabs ul.tabs li::before,
.sa-product-live__details .woocommerce-tabs ul.tabs li::after{
  display: none !important;
}

.sa-product-live__details .woocommerce-tabs ul.tabs li{
  margin: 0 !important;
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  background: #fff001 !important;
  padding: 0 !important;
}

.sa-product-live__details .woocommerce-tabs ul.tabs li a{
  padding: 12px 18px !important;
  color: #000 !important;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.sa-product-live__details .woocommerce-Tabs-panel{
  border: 2px solid #000;
  padding: clamp(22px, 3vw, 42px);
}

@media (max-width: 1100px){
  .sa-product-live__grid{
    grid-template-columns: 1fr;
  }

  .sa-product-live__media{
    position: static;
  }
}

@media (max-width: 680px){
  .sa-product-live__breadcrumbs{
    padding-inline: 14px;
  }

  .sa-product-live__grid{
    padding: 86px 14px 34px;
  }

  .sa-product-live__hero::before{
    top: -70px;
    height: 230px;
    background-size: 760px auto;
    background-position: top left;
  }

  .sa-product-live__media .woocommerce-product-gallery__image:first-child{
    min-height: 320px;
    padding: 14px;
  }

  .sa-product-live__media .flex-control-thumbs{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sa-product-live__summary{
    padding: 18px;
  }

  .sa-product-live__summary .product_title{
    font-size: 34px;
  }

  .sa-product-live__summary .single_add_to_cart_button,
.sa-product-live__summary .quantity,
.sa-product-live__summary .quantity .qty{
    width: 100%;
    margin-right: 0;
  }

  .sa-product-live__details{
    padding: 34px 14px 48px;
  }
}

/* Product parity pass: native Woo/EPO runtime, Elementor-like skin. */
.single-product .sa-product-live{
  --sa-product-yellow: #fff001;
  --sa-product-green: #7cf68e;
  --sa-product-grey: #ededed;
  overflow: hidden;
}

.single-product .sa-product-live__breadcrumbs,
.single-product .sa-product-live__summary .price,
.single-product .sa-product-live__summary .product_meta,
.single-product .sa-product-live__summary .quantity{
  display: none !important;
}

.single-product .sa-product-live__hero{
  position: relative !important;
  overflow: hidden !important;
  min-height: 720px;
  background: #fff !important;
}

.single-product .sa-product-live__hero::before{
  top: -84px !important;
  left: -5vw !important;
  width: 110vw !important;
  height: 360px !important;
  background-size: 100% auto !important;
  background-position: top center !important;
}

.single-product .sa-product-live__grid{
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: minmax(430px, 565px) minmax(430px, 525px) !important;
  gap: clamp(62px, 6vw, 118px) !important;
  align-items: start !important;
  justify-content: center !important;
  width: min(100% - 60px, 1240px) !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 88px 0 76px !important;
}

@media (min-width: 901px){
  .single-product .sa-product-live__hero{
    min-height: 0;
  }

  .single-product .sa-product-live__grid{
    grid-template-columns: 400px 430px !important;
    gap: 92px !important;
    width: min(100% - 56px, 922px) !important;
    max-width: 922px !important;
    padding: 82px 0 52px !important;
  }

  .single-product .sa-product-live__media .woocommerce-product-gallery__image:first-child{
    aspect-ratio: 1 / 1 !important;
  }

  .single-product .sa-product-live__media .flex-control-thumbs{
    gap: 12px !important;
    margin-top: 12px !important;
  }

  .single-product .sa-product-live__media .flex-control-thumbs li{
    flex-basis: 70px !important;
  }

  .single-product .sa-product-live__summary .product_title{
    margin-bottom: 9px !important;
    padding-bottom: 12px;
    font-size: 24px !important;
  }

  .single-product .sa-product-live__summary .product_title::before{
    font-size: 34px !important;
  }

  .single-product .sa-product-live__summary .woocommerce-product-rating{
    margin-top: -58px !important;
    margin-bottom: 14px !important;
    width: 86px;
  }

  .single-product .sa-product-live__summary .woocommerce-product-rating::before{
    font-size: 34px;
  }

  .single-product .sa-product-live .star-rating{
    font-size: 15px;
  }

  .single-product .sa-product-live__summary input[type="radio"],
.single-product .sa-product-live__summary input[type="checkbox"]{
    width: 18px !important;
    height: 18px !important;
  }

  .single-product .sa-product-live__summary .single_add_to_cart_button,
.single-product .sa-product-live__send-file-later{
    min-height: 38px !important;
    border-width: 2px !important;
    padding: 0 10px !important;
    font-size: 15px !important;
  }

  .single-product .sa-product-live__summary form.cart::after{
    padding-top: 7px;
    font-size: 10px;
  }
}

.single-product .sa-product-live__media,
.single-product .sa-product-live__summary{
  width: auto !important;
  min-width: 0 !important;
}

.single-product .sa-product-live__media{
  position: relative !important;
  top: auto !important;
}

.single-product .sa-product-live__summary{
  border: 0 !important;
  background: transparent !important;
  padding: 8px 0 0 !important;
}

.single-product .sa-product-live__summary .product_title{
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  align-items: end;
  margin: 0 0 16px !important;
  border-bottom: 3px solid #000;
  padding-bottom: 24px;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif !important;
  font-size: clamp(32px, 2.4vw, 44px) !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
}

.single-product .sa-product-live__summary .product_title::before{
  grid-column: 1 / -1;
  margin: 0 !important;
  font-family: AvenirNextLTPro, Avenir, Arial, sans-serif !important;
  font-size: clamp(32px, 2.35vw, 42px) !important;
  line-height: 1.05 !important;
  font-weight: 300 !important;
}

.single-product .sa-product-live__summary .woocommerce-product-rating{
  float: right;
  display: grid !important;
  justify-items: end;
  margin: -78px 0 28px auto !important;
  width: 124px;
  text-align: right;
}

.single-product .sa-product-live__summary .woocommerce-product-rating::before{
  content: "4.8";
  display: block;
  color: #000;
  font-family: AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 300;
}

.single-product .sa-product-live__summary .woocommerce-product-rating .woocommerce-review-link{
  display: none !important;
}

.single-product .sa-product-live .star-rating{
  color: #18b964;
  font-size: 20px;
}

.single-product .sa-product-live .star-rating::before,
.single-product .sa-product-live .star-rating span::before{
  color: #18b964;
}

.single-product .sa-product-live__media .woocommerce-product-gallery{
  opacity: 1 !important;
}

.single-product .sa-product-live__media .woocommerce-product-gallery__trigger{
  display: none !important;
}

.single-product .sa-product-live__media .woocommerce-product-gallery__wrapper{
  position: relative;
  width: 100% !important;
  transform: none !important;
}

.single-product .sa-product-live__media .woocommerce-product-gallery__image:first-child{
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.single-product .sa-product-live__media .woocommerce-product-gallery__image:first-child a,
.single-product .sa-product-live__media .woocommerce-product-gallery__image:first-child img,
.single-product .sa-product-live__media .woocommerce-product-gallery__image:first-child video,
.single-product .sa-product-live__media .woocommerce-product-gallery__image:first-child iframe{
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
}

.single-product .sa-product-live__media .flex-control-thumbs{
  display: flex !important;
  justify-content: center;
  gap: 18px !important;
  margin-top: 16px !important;
}

.single-product .sa-product-live__media .flex-control-thumbs li{
  flex: 0 0 86px !important;
}

.single-product .sa-product-live__media .flex-control-thumbs img{
  aspect-ratio: 1 / 1;
  border: 0 !important;
  object-fit: cover;
}

.single-product .sa-product-live__media::before,
.single-product .sa-product-live__media::after{
  content: "";
  position: absolute;
  z-index: 5;
  top: 46%;
  width: 42px;
  height: 42px;
  border: solid #1d1d1d;
  border-width: 0 0 3px 3px;
  pointer-events: none;
}

.single-product .sa-product-live__media::before{
  left: -58px;
  transform: rotate(45deg);
}

.single-product .sa-product-live__media::after{
  right: -58px;
  transform: rotate(225deg);
}

.single-product .sa-product-live__summary form.cart{
  clear: both;
}

.single-product .sa-product-live__summary .tc-input-wrap{
  display: inline-grid !important;
  width: 24px;
  height: 24px;
  place-items: center;
}

.single-product .sa-product-live__summary input[type="radio"],
.single-product .sa-product-live__summary input[type="checkbox"]{
  width: 22px !important;
  height: 22px !important;
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  appearance: none;
  background: #fff !important;
}

.single-product .sa-product-live__summary input[type="radio"]:checked,
.single-product .sa-product-live__summary input[type="checkbox"]:checked{
  background: linear-gradient(#000, #000) center / 12px 12px no-repeat #fff !important;
}

.single-product .sa-product-live__summary .tm-label{
  color: #2b2b2b !important;
}

.single-product .sa-product-live__summary .base-div,
.single-product .sa-product-live__summary .altezza-div{
  padding-top: 4px !important;
}

.single-product .sa-product-live__summary input[type="text"],
.single-product .sa-product-live__summary input[type="number"],
.single-product .sa-product-live__summary input[type="file"],
.single-product .sa-product-live__summary select{
  width: 100% !important;
  min-height: 58px;
  border: 3px solid #000 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #000 !important;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  text-align: center;
}

.single-product .sa-product-live__summary .tc-cell-description,
.single-product .sa-product-live__summary .tm-description{
  font-size: 11px !important;
  color: #222 !important;
}

.single-product .sa-product-live__summary .single_add_to_cart_button,
.single-product .sa-product-live__send-file-later{
  display: inline-flex !important;
  min-height: 58px !important;
  align-items: center;
  justify-content: center;
  border: 3px solid #000 !important;
  border-radius: 0 !important;
  padding: 0 18px !important;
  box-shadow: none !important;
  color: #000 !important;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif !important;
  font-size: clamp(18px, 1.4vw, 24px) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.single-product .sa-product-live__summary .single_add_to_cart_button{
  float: right !important;
  width: 47% !important;
  margin-top: 14px !important;
  background: var(--sa-product-yellow) !important;
}

.single-product .sa-product-live__send-file-later{
  float: left;
  width: 47%;
  margin-top: 14px;
  background: #d1d1d1;
}

.single-product .sa-product-live__summary form.cart::after{
  content: "⚠ Prima della stampa riceverai sempre un'anteprima da confermare\a☏ Scrivici se hai bisogno di supporto o chiarimenti";
  display: block;
  clear: both;
  padding-top: 12px;
  white-space: pre-line;
  font-size: 13px;
  line-height: 1.35;
}

.single-product .sa-product-live__benefits{
  background: var(--sa-product-green);
  padding: 24px 0;
}

.single-product .sa-product-live__benefits-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 88px;
  width: min(100% - 60px, 1040px);
}

.single-product .sa-product-live__benefit{
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px 14px;
  align-items: center;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 15px;
  font-weight: 950;
}

.single-product .sa-product-live__benefit strong,
.single-product .sa-product-live__benefit small{
  grid-column: 2;
}

.single-product .sa-product-live__benefit span{
  display: block;
  width: 38px;
  height: 38px;
  grid-row: 1 / span 2;
}

.single-product .sa-product-live__benefit span img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
}

.single-product .sa-product-live__benefit small{
  display: block;
  font-family: AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.single-product .sa-product-live__details{
  padding: 58px 0 0 !important;
  background: var(--sa-product-grey) !important;
}

.single-product .sa-product-live__details > .sa-container{
  width: min(100% - 90px, 1620px);
  max-width: 1620px;
}

.single-product .sa-product-live__details .woocommerce-tabs{
  margin: 0 0 54px !important;
}

.single-product .sa-product-live__details .woocommerce-tabs ul.tabs{
  position: relative;
  display: flex !important;
  gap: 22px !important;
  margin: 0 0 42px !important;
  border-bottom: 2px solid #000;
  padding: 0 0 0 0 !important;
}

.single-product .sa-product-live__details .woocommerce-tabs ul.tabs li{
  list-style: none !important;
  margin: 0 0 -2px !important;
  border: 2px solid #000 !important;
  border-bottom: 2px solid #000 !important;
  background: var(--sa-product-grey) !important;
}

.single-product .sa-product-live__details .woocommerce-tabs ul.tabs li::marker{
  content: "" !important;
}

.single-product .sa-product-live__details .woocommerce-tabs ul.tabs li.active{
  border-bottom-color: var(--sa-product-grey) !important;
}

.single-product .sa-product-live__details .woocommerce-tabs ul.tabs li a{
  min-width: 136px;
  padding: 12px 20px !important;
  text-align: center;
  font-size: 12px;
}

.single-product .sa-product-live__details .woocommerce-tabs ul.tabs li a:focus-visible{
  outline: 3px solid #000;
  outline-offset: 3px;
}

.single-product .sa-product-live__details .woocommerce-Tabs-panel{
  display: none !important;
  overflow: visible !important;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  font-size: 12px;
  line-height: 1.45;
}

.single-product .sa-product-live__details .woocommerce-Tabs-panel.is-active{
  display: block !important;
}

.single-product .sa-product-live__details .woocommerce-Tabs-panel h2{
  display: none;
}

.single-product .sa-product-live__details .woocommerce-Tabs-panel h3{
  margin: 0 0 18px;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.single-product .sa-product-live__details .woocommerce-Tabs-panel p{
  max-width: 510px;
  margin: 0 0 10px;
}

.single-product .sa-product-live__details .woocommerce-Tabs-panel img{
  display: block;
  max-width: min(100%, 520px);
  height: auto;
  margin-top: 18px;
}

.single-product .sa-product-live__details #tab-description.is-active{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 48px;
  align-items: start;
}

.single-product .sa-product-live__details #tab-description > *{
  grid-column: 1;
}

.single-product .sa-product-live__details #tab-description::after{
  content: "";
  grid-column: 2;
  grid-row: 1 / span 9;
  display: block;
  min-height: 310px;
  border-bottom-left-radius: 58px;
  background: url("/wp-content/uploads/2025/02/1.Descrizione.png") center / cover no-repeat;
}

.single-product .sa-product-live__details #tab-description > p:has(img){
  max-width: 500px;
}

.single-product .sa-product-live__details .sa-product-tab-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  gap: 48px;
  align-items: start;
}

.single-product .sa-product-live__details .sa-product-tab-layout img{
  width: 100%;
  max-width: none;
  margin: 0;
  border-bottom-left-radius: 58px;
}

.single-product .sa-product-live__details .related.products{
  clear: both;
  width: 100vw;
  margin: 42px 0 0 calc(50% - 50vw) !important;
  background: var(--sa-product-green);
  padding: 42px max(34px, calc((100vw - 1120px) / 2)) 42px;
}

.single-product .sa-product-live__details .related.products > h2{
  margin: 0 0 28px;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: underline;
}

.single-product .sa-product-live__details .related.products ul.products{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 760px;
}

.single-product .sa-product-live__details .related.products ul.products li.product{
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  text-align: center;
}

.single-product .sa-product-live__details .related.products img{
  width: 100% !important;
  aspect-ratio: 1 / 1;
  border: 0 !important;
  object-fit: contain;
}

.single-product .sa-product-live__details .related.products .woocommerce-loop-product__title{
  color: #000;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.single-product .sa-product-live__details .related.products .price,
.single-product .sa-product-live__details .related.products .button{
  display: none !important;
}

.single-product .sa-product-live__reviews{
  padding: 78px 0;
  background: #fff;
}

.single-product .sa-product-live__reviews > .sa-container{
  width: min(100% - 90px, 1540px);
  max-width: 1540px;
}

.single-product .sa-product-live__reviews .woocommerce-Reviews-title,
.single-product .sa-product-live__reviews .comment-reply-title{
  display: block;
  max-width: 360px;
  margin: 0 0 28px;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: clamp(30px, 2.6vw, 48px);
  line-height: .95;
  font-weight: 950;
  text-transform: uppercase;
}

.single-product .sa-product-live__reviews .commentlist{
  display: grid;
  gap: 12px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.single-product .sa-product-live__reviews li.review{
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 16px;
  background: #fff;
}

.single-product .sa-product-live__reviews .comment_container{
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
}

.single-product .sa-product-live__reviews .comment-text{
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.single-product .sa-product-live__reviews .description p{
  margin: 6px 0 0;
  font-size: 14px;
}

.single-product .sa-product-live__graphic{
  padding: 58px 0 0;
  background: #fff;
}

.single-product .sa-product-live__graphic-grid{
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  width: min(100% - 90px, 1460px);
  max-width: 1460px;
}

.single-product .sa-product-live__graphic h2{
  margin: 0 0 28px;
  border-bottom: 2px solid #000;
  padding-bottom: 16px;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  font-weight: 950;
}

.single-product .sa-product-live__graphic p{
  font-size: 16px;
  line-height: 1.45;
}

.single-product .sa-product-live__graphic-cta{
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 3px solid #000;
  margin-top: 18px;
  padding: 0 22px;
  background: var(--sa-product-yellow);
  box-shadow: -8px 8px 0 rgba(0, 0, 0, .28);
  color: #000;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-weight: 950;
  text-decoration: none;
}

.single-product .sa-product-live__graphic img{
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: center;
}

.single-product .sa-product-live__faq{
  padding: 34px 0;
  background: var(--sa-product-green);
}

.single-product .sa-product-live__faq h2{
  margin: 0 0 18px;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: .95;
  font-weight: 950;
}

.single-product .sa-product-live__faq-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.single-product .sa-product-live__faq details{
  border-top: 1px solid rgba(0, 0, 0, .35);
  padding: 11px 0;
}

.single-product .sa-product-live__faq summary{
  cursor: pointer;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 15px;
  font-weight: 950;
}

.single-product .sa-product-live__faq p{
  margin: 8px 0 0;
  font-size: 14px;
}

@media (max-width: 1180px){
  .single-product .sa-product-live__grid,
.single-product .sa-product-live__graphic-grid{
    grid-template-columns: 1fr !important;
  }

  .single-product .sa-product-live__media::before,
.single-product .sa-product-live__media::after{
    display: none;
  }

  .single-product .sa-product-live__summary .woocommerce-product-rating{
    float: none;
    margin: 0 0 20px auto !important;
  }
}

@media (max-width: 760px){
  .single-product .sa-product-live__hero{
    min-height: 0;
  }

  .single-product .sa-product-live__hero::before{
    top: -14px !important;
    width: 150vw !important;
    height: 282px !important;
    background-size: 1160px auto !important;
    background-position: top center !important;
  }

  .single-product .sa-product-live__grid,
.single-product .sa-product-live__benefits-grid,
.single-product .sa-product-live__details > .sa-container,
.single-product .sa-product-live__reviews > .sa-container,
.single-product .sa-product-live__graphic-grid{
    width: min(100% - 28px, 100%) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .single-product .sa-product-live__grid{
    padding-top: 54px !important;
  }

  .single-product .sa-product-live__summary .product_title{
    display: block;
    font-size: 30px !important;
  }

  .single-product .sa-product-live__summary .product_title::before{
    font-size: 34px !important;
  }

  .single-product .sa-product-live__benefits-grid,
.single-product .sa-product-live__faq-grid,
.single-product .sa-product-live__details .related.products ul.products{
    grid-template-columns: 1fr !important;
  }

  .single-product .sa-product-live__summary .single_add_to_cart_button,
.single-product .sa-product-live__send-file-later{
    float: none !important;
    width: 100% !important;
  }

  .single-product .sa-product-live__details .woocommerce-tabs ul.tabs{
    gap: 10px !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .single-product .sa-product-live__details .woocommerce-tabs ul.tabs li{
    flex: 0 0 auto;
  }

  .single-product .sa-product-live__details .woocommerce-tabs ul.tabs li a{
    min-width: 0;
    padding: 14px 16px !important;
    font-size: 15px;
  }

  .single-product .sa-product-live__details #tab-description.is-active{
    display: block !important;
  }

  .single-product .sa-product-live__details #tab-description::after{
    min-height: 240px;
    margin-top: 18px;
  }
}

.single-product .sa-product-live__details .related.products{
  padding-top: 48px;
  padding-bottom: 48px;
}

.single-product .sa-product-live__details .related.products > h2{
  width: min(100% - 60px, 1120px);
  margin-right: auto;
  margin-left: auto;
}

.single-product .sa-product-live__details .related.products ul.products{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(130px, 1fr)) !important;
  gap: 24px !important;
  width: min(100% - 60px, 960px);
  max-width: 960px;
  align-items: start;
}

.single-product .sa-product-live__details .related.products ul.products::before,
.single-product .sa-product-live__details .related.products ul.products::after{
  display: none !important;
  content: none !important;
}

.single-product .sa-product-live__details .related.products ul.products li.product{
  display: block !important;
  clear: none !important;
  grid-column: auto !important;
  order: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.single-product .sa-product-live__details .related.products .woocommerce-LoopProduct-link{
  display: grid !important;
  gap: 10px;
  justify-items: center;
  color: #000 !important;
  text-decoration: none !important;
}

.single-product .sa-product-live__details .related.products img{
  width: min(100%, 148px) !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  padding: 0 !important;
  object-fit: contain;
  transition: transform .18s ease;
}

.single-product .sa-product-live__details .related.products a:hover img,
.single-product .sa-product-live__details .related.products a:focus-visible img{
  transform: translateY(-3px);
}

.single-product .sa-product-live__details .related.products .woocommerce-loop-product__title{
  max-width: 150px;
  margin: 0 auto !important;
  padding: 0 !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}

.single-product .sa-product-live__details .related.products .star-rating,
.single-product .sa-product-live__details .related.products .onsale{
  display: none !important;
}

.single-product .sa-product-live__reviews{
  padding: 64px 0 70px;
  background: #fff;
}

.single-product .sa-product-live__reviews > .sa-container{
  width: min(100% - 64px, 1120px) !important;
  max-width: 1120px !important;
}

.single-product .sa-product-live__reviews #reviews{
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 28px 42px;
  align-items: start;
}

.single-product .sa-product-live__reviews #comments{
  display: contents;
}

.single-product .sa-product-live__reviews .woocommerce-Reviews-title{
  position: sticky;
  top: 126px;
  grid-column: 1;
  margin: 0 !important;
  max-width: 280px;
  font-size: 0 !important;
  line-height: .92 !important;
}

.single-product .sa-product-live__reviews .woocommerce-Reviews-title::before{
  content: "Lascia una";
  display: block;
  font-family: AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  text-transform: none;
  text-decoration: none;
}

.single-product .sa-product-live__reviews .woocommerce-Reviews-title::after{
  content: "RECENSIONE";
  display: block;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: .92;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
}

.single-product .sa-product-live__reviews .woocommerce-Reviews-title span,
.single-product .sa-product-live__reviews .woocommerce-Reviews-title .count{
  display: none;
}

.single-product .sa-product-live__reviews .commentlist{
  grid-column: 2;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px !important;
  align-items: stretch;
}

.single-product .sa-product-live__reviews li.review{
  min-height: 0 !important;
  padding: 18px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  overflow: hidden;
}

.single-product .sa-product-live__reviews .comment_container{
  display: block !important;
  min-height: 0 !important;
}

.single-product .sa-product-live__reviews img.avatar{
  display: none !important;
}

.single-product .sa-product-live__reviews .comment-text{
  display: grid !important;
  min-height: 0 !important;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.single-product .sa-product-live__reviews .comment-text .star-rating{
  float: none !important;
  order: 1;
  margin: 0 !important;
  font-size: 14px;
}

.single-product .sa-product-live__reviews .meta{
  order: 2;
  margin: 0 !important;
  color: #777;
  font-family: AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

.single-product .sa-product-live__reviews .woocommerce-review__author{
  display: block;
  color: #000;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
}

.single-product .sa-product-live__reviews .woocommerce-review__verified,
.single-product .sa-product-live__reviews .woocommerce-review__dash{
  display: none !important;
}

.single-product .sa-product-live__reviews .description{
  order: 3;
}

.single-product .sa-product-live__reviews .description:empty::before{
  content: "Valutazione verificata sul prodotto.";
  color: #777;
  font-size: 13px;
  line-height: 1.35;
}

.single-product .sa-product-live__reviews .description p{
  display: -webkit-box;
  margin: 0 !important;
  overflow: hidden;
  color: #111;
  font-size: 13px !important;
  line-height: 1.35 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.single-product .sa-product-live__reviews #review_form_wrapper{
  grid-column: 1 / -1;
  margin-top: 14px;
  padding: 22px;
  border: 2px solid #000;
  background: #f6f6f6;
}

.single-product .sa-product-live__reviews .comment-reply-title{
  margin: 0 0 16px !important;
  font-size: clamp(22px, 2vw, 30px) !important;
  line-height: 1 !important;
}

.single-product .sa-product-live__reviews .comment-form{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.single-product .sa-product-live__reviews .comment-form p{
  margin: 0 !important;
}

.single-product .sa-product-live__reviews .comment-notes,
.single-product .sa-product-live__reviews .comment-form-cookies-consent{
  display: none !important;
}

.single-product .sa-product-live__reviews .comment-notes,
.single-product .sa-product-live__reviews .comment-form-rating,
.single-product .sa-product-live__reviews .comment-form-comment,
.single-product .sa-product-live__reviews .form-submit{
  grid-column: 1 / -1;
}

.single-product .sa-product-live__reviews .comment-form label{
  display: block;
  margin-bottom: 6px;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.single-product .sa-product-live__reviews .comment-form input:not([type="submit"]),
.single-product .sa-product-live__reviews .comment-form textarea{
  width: 100%;
  min-height: 42px;
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
}

.single-product .sa-product-live__reviews .comment-form textarea{
  min-height: 92px;
}

.single-product .sa-product-live__reviews .comment-form-rating{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.single-product .sa-product-live__reviews .comment-form-rating label{
  margin: 0;
}

.single-product .sa-product-live__reviews .comment-form-rating p.stars{
  margin: 0 !important;
  font-size: 18px;
}

.single-product .sa-product-live__hero{
  isolation: isolate;
}

.single-product .sa-product-live__hero::before{
  z-index: 1 !important;
}

.single-product .sa-product-live__grid{
  z-index: auto !important;
}

.single-product .sa-product-live__media{
  position: relative !important;
  z-index: 2 !important;
}

.single-product .sa-product-live__summary{
  position: relative !important;
  z-index: 0 !important;
}

.single-product .sa-product-live__reviews .form-submit .submit{
  min-height: 46px;
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  background: var(--sa-product-yellow) !important;
  color: #000 !important;
  font-family: "Avenir bold", AvenirNextLTPro, Avenir, Arial, sans-serif;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, .22);
}

@media (max-width: 900px){
  .single-product .sa-product-live__reviews #reviews{
    display: block;
  }

  .single-product .sa-product-live__reviews .woocommerce-Reviews-title{
    position: static;
    margin-bottom: 22px !important;
  }

  .single-product .sa-product-live__reviews .commentlist{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px){
  .single-product .sa-product-live__details .related.products{
    padding: 34px 0 38px;
  }

  .single-product .sa-product-live__details .related.products > h2{
    width: min(100% - 28px, 100%);
    margin-bottom: 22px;
    font-size: 30px !important;
  }

  .single-product .sa-product-live__details .related.products ul.products{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px 16px !important;
    width: min(100% - 28px, 100%);
  }

  .single-product .sa-product-live__details .related.products img{
    width: min(100%, 132px) !important;
  }

  .single-product .sa-product-live__reviews{
    padding: 46px 0 52px;
  }

  .single-product .sa-product-live__reviews > .sa-container{
    width: min(100% - 28px, 100%) !important;
  }

  .single-product .sa-product-live__reviews li.review{
    padding: 15px !important;
  }

  .single-product .sa-product-live__reviews #review_form_wrapper{
    padding: 16px;
  }

  .single-product .sa-product-live__reviews .comment-form{
    grid-template-columns: 1fr;
  }
}
