.wp-block-woocommerce-cart  a.wc-block-components-product-name {
    font-size: 30px !important;
}

.wp-block-woocommerce-cart .wc-block-cart-items__header span {
    font-size: 30px;
}

.wc-block-cart-items__row .wc-block-cart-item__image {
    width: 150px;
}

.wc-block-cart-items__row .wc-block-cart-item__image img {
    width: 100% ;
    height: 100% ;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

/* Pour le slider d'images */
.vb_slider {
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: auto;
}

.vb_slide {
    display: none;
}

.vb_slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
}

/* Flèches personnalisées */
.vb_prev, .vb_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    width: 40px;  /* ajuste la taille de l'image */
    height: 40px;
    cursor: pointer;
    z-index: 10;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.vb_prev {
    left: 10px;
    background-image: url('https://valleeboreale.ca/img/fleche-gauche-carrousel.png');
}

.vb_next {
    right: 10px;
    background-image: url('https://valleeboreale.ca/img/fleche-droite-carrousel.png');
}

.vb_prev:hover, .vb_next:hover {
    opacity: 0.8;  /* effet léger au hover */
}
/* **************************************************************************************** */

.wc-block-cart-items__row span.wc-block-formatted-money-amount {
    font-size: 16px !important;
}

.wc-block-cart-items__row .wc-block-cart-item__remove-link {
    font-size: 16px !important;
}

.wp-block-woocommerce-cart-totals-block h2.wc-block-cart__totals-title {
    font-size: 25px !important;
}

.wp-block-woocommerce-cart-totals-block .wc-block-components-panel__button {
    font-size: 16px !important;
}

.wp-block-woocommerce-cart-totals-block .wc-block-components-totals-taxes {
    font-size: 16px !important;
}

.wp-block-woocommerce-cart-totals-block .wc-block-components-button__text {
    background: #2f7c42ff;
    
    height: 60px;
    width: 100%;
    
    line-height: 60px;
    font-size: 16px;
    color: #fff;
    
    border-radius: 999px;
}

.wp-block-woocommerce-cart-totals-block .wc-block-components-button__text:hover {
    background: #309048;
}









.wc-block-checkout__sidebar .wc-block-components-order-summary-item__quantity {
    box-shadow: 2px 2px 2px #a0a0a0;
}

.wc-block-checkout__sidebar .wc-block-components-product-name {
    font-size: 16px;
    font-weight: bold;
    line-height: 21px;
}

.wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__title-text {
    font-size: 25px;
}

.wc-block-checkout__sidebar .wc-block-components-product-metadata__description {
    display: none;
}

.wc-block-checkout__sidebar .wc-block-components-order-summary-item__individual-price {
    font-size: 16px;
}

.wc-block-checkout__sidebar .wc-block-components-product-price__value {
    font-size: 16px;
}

.wc-block-checkout__sidebar .wc-block-components-panel__button {
    font-size: 16px !important;
}

.wc-block-checkout__sidebar .wc-block-components-totals-item__label {
    font-size: 16px !important;
}

.wc-block-checkout__sidebar .wc-block-components-totals-item__value {
    font-size: 16px !important;
}

.wp-block-woocommerce-cart .wp-block-product-new {
    display: none;
}

.wp-block-woocommerce-cart h2.wp-block-heading:nth-of-type(2) {
    display: none;
}



/* ====== CSS uniquement pour mobile ====== */
@media (max-width: 768px) {

  /* Ligne du produit */
  .wc-block-cart-items__row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    position: relative !important;
    gap: 0.5rem;
  }

  /* Image du produit */
  .wc-block-cart-items__row .wc-block-cart-item__thumbnail img {
    width: 80px;
    height: auto;
    margin-bottom: 0.5rem;
  }

  /* Bloc titre / description / quantité / prix */
  .wc-block-cart-item__details {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin-top: 0 !important; /* s’assure qu’il est sous l’image */
    position: relative !important; /* supprime tout positionnement flottant */
    z-index: 1; /* assure que le bloc passe au-dessus si besoin */
  }

  /* Titre long */
  .wc-block-cart-item__title {
    word-wrap: break-word;
    margin-bottom: 0.25rem;
  }

  /* Quantité / prix */
  .wc-block-cart-item__quantity,
  .wc-block-cart-item__price {
    width: 100%;
    margin-top: 0.25rem;
  }
}



/* Pour l'ajout du popup horticole dans le panier WooCommerce */
.woocommerce-horticulture-pickup-message {
    background: #dff0d8;
    color: #3c763d;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 20px;
}