.elementor-23 .elementor-element.elementor-element-a8f35d3{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:160px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-23 .elementor-element.elementor-element-a8f35d3:not(.elementor-motion-effects-element-type-background), .elementor-23 .elementor-element.elementor-element-a8f35d3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}/* Start custom CSS *//* ==========================================================================
   3. WOOCOMMERCE CART & POPUP CART (shortcode)
   ——————————————————————————————————————————————— */

/* Base: cart classico e cart-in-popup via shortcode */
.woocommerce table.shop_table.cart {
  width: 100%;
  border: 2px solid transparent;
  border-collapse: collapse;
  background: transparent;
}

/* Struttura colonne */
.woocommerce table.shop_table.cart thead th:nth-child(1),
.woocommerce table.shop_table.cart tbody td.product-thumbnail {
  width: 4%;
}
.woocommerce table.shop_table.cart thead th:nth-child(2),
.woocommerce table.shop_table.cart tbody td.product-name {
  width: 20%;
}
.woocommerce table.shop_table.cart thead th:nth-child(3),
.woocommerce table.shop_table.cart tbody td.product-price {
  width: 70%;
}

/* Intestazione colonne */
.woocommerce table.shop_table.cart thead th {
  padding-bottom: 48px;
  height: 50px;
  border: 2px solid transparent;
  border-bottom: 2px solid #BC553A;
  color: #BC553A;
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: 18px;
  text-transform: none;
}

/* Celle corpo */
.woocommerce table.shop_table.cart td {
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid transparent;
  color: #2D2B27;
  font-family: 'Inter', serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
}

/* Immagini prodotto */
.woocommerce table.shop_table.cart .product-thumbnail img {
  width: 167px;
  height: auto;
}

/* Nome prodotto */
.woocommerce table.shop_table.cart .product-name a {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  line-height: 32px;
  color: #BC553A;
}
.woocommerce table.shop_table.cart .variation {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #2D2B27;
}

/* Quantità */
.woocommerce .quantity input.qty {
  width: 65.75px;
  text-align: center;
  border: 0.6px solid #2D2B27;
  background: transparent;
  color: #2D2B27;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  border-radius: 0;
}

/* Rimuovi articolo */
.woocommerce a.remove {
  color: #BC553A !important;
}
.woocommerce a.remove:hover {
  color: #8a3925 !important;
  background: none;
}

/* Totale carrello (classico e popup) */
.woocommerce .cart_totals h2 {
  margin-bottom: 20px;
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 56px;
  color: #BC553A;
}
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300 !important;
  font-size: 30px;
  line-height: 32px;
  color: #BC553A;
}
.woocommerce .cart_totals table td {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
}

/* Pulsante checkout */
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce a.wc-forward {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: #BC553A;
  transition: background-color .2s;
	margin-top: 24px;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce a.wc-forward:hover {
  background-color: #84381a;
}

/* Nasconde le azioni default (quantità + aggiorna) */
.woocommerce.actions {
  display: none;
}

/* ==========================================================================
   4. MOBILE MEDIA QUERY PER IL CARRELLO
   ——————————————————————————————————————————————— */
@media only screen and (max-width: 767px) {
  /* Blocca il table e impila le righe */
  .woocommerce table.shop_table.cart {
    display: table;
    overflow-x: auto;
  }

.woocommerce table.shop_table.cart tr {
    display: block;
    margin-bottom: 12px;

  }
  
  .woocommerce table.shop_table.cart td {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.woocommerce table.shop_table.cart td:before {
    content: attr(data-title);
    font-weight: 600;
    font-size: 0.9rem;
    color: #BC553A;
  }

.woocommerce table.shop_table.cart tbody td.product-price
 {
    width: 100%;
}

}

a{
    color: #BC553A;
}

a:hover{
    color: #84381a;
}/* End custom CSS */