@charset "UTF-8";
/* Bouton Ajouter au panier */
.added_to_cart.wc-forward {
  display: none !important;
}

.add_to_cart_button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 4px;
}

.add_to_cart_button:hover {
  background-color: #45a049;
}

/* Icône du panier */
.cart-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.cart-icon a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #4CAF50;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cart-icon a:hover {
  background-color: #45a049;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4d4d;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Overlay du panier */
#cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

#cart-overlay.active {
  display: block;
  opacity: 1;
}

/* Panier latéral */
.side-cart {
  position: fixed;
  top: 0;
  right: -460px;
  width: 460px;
  height: 100%;
  background-color: white;
  -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  z-index: 1001;
}

@media (max-width: 768px) {
  .side-cart {
    width: 383px;
    right: -383px;
    max-width: 80%;
  }
}

.side-cart.open {
  right: 0;
}

.side-cart-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}

.side-cart-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100% - 48px);
  overflow: hidden;
  padding: 24px;
}

.side-cart-header {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 10px 0;
  height: 32px;
}

.side-cart-header h2 {
  font-size: 32px;
}

.close-cart {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.close-cart:hover {
  color: #333;
}

.side-cart-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 16px 0;
  overflow-y: auto;
}

.side-cart-continue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

.side-cart-continue a {
  text-decoration: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 125% */
}

.side-cart-continue a svg {
  margin-left: 8px;
}

/* Éléments du panier */
.side-cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.side-cart-item-name {
  font-weight: bold;
}

.side-cart-item-image {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.side-cart-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.side-cart-item-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.side-cart-item-name {
  margin-bottom: 5px;
  display: block;
}

.side-cart-item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .side-cart-item-quantity {
    display: none !important;
  }
}

.side-cart-qty {
  width: 50px;
  text-align: center;
  margin-right: 10px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.side-cart-item-price {
  color: var(--Black-900, #121212);
  margin-right: 8px;
}

.side-cart-remove-item {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 18px;
  padding: 0 5px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.side-cart-remove-item:hover {
  color: #ff4d4d;
}

/* Coupons */
.side-cart-inner .applied-coupons {
  margin-top: 0;
  margin-bottom: 5px;
}

.side-cart-inner .coupon label {
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  text-transform: none !important;
}

.side-cart-inner .coupon-code {
  position: relative;
  display: inline-block;
  background-color: #f0f0f0;
  padding: 5px 25px 5px 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 14px;
}

.side-cart-inner .remove-coupon {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  color: #999;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.side-cart-inner .remove-coupon:hover {
  color: #ff4d4d;
}

/* Total du panier */
.cart-total {
  border-radius: 6px;
  border: 1px solid var(--Black-300, #CBCBCB);
  background: var(--White, #FFF);
  padding: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.cart-total .line-total {
  color: var(--Black-900, #121212);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  /* 162.5% */
}

.cart-total .total-btn {
  margin-top: 24px;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.cart-total .total-btn a {
  background-color: var(--color-qw-green) !important;
  border-color: var(--color-qw-green) !important;
  color: var(--color-qw-white) !important;
  border-radius: 30px !important;
}

body.single-product .total-btn a {
  border-radius: 30px !important;
  background-color: var(--color-qw-green) !important;
  border-color: var(--color-qw-green) !important;
  color: var(--color-qw-white) !important;
}

.side-cart-item-line-2 {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .side-cart-item-line-2 {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.side-cart-item-line-2-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.side-cart-view-cart a {
  color: var(--Black-900, #121212);
  text-decoration: underline !important;
}

/* Styles pour les appareils mobiles */
@media (max-width: 480px) {
  .side-cart {
    width: 100%;
    right: -100%;
  }
  .cart-icon {
    top: 10px;
    right: 10px;
  }
  .cart-icon a {
    width: 50px;
    height: 50px;
  }
  .side-cart-header h2 {
    font-size: 20px;
  }
  .side-cart-item-image {
    width: 60px;
    height: 60px;
  }
}

/* Styles généraux */
html.cart-open {
  overflow: hidden;
}

html.cart-open body {
  height: 100%;
  overflow: hidden;
}

/* coupon */
#side-cart .woocommerce-coupon-form .coupon {
  width: 100%;
}

#side-cart .woocommerce-coupon-form label {
  margin-bottom: 16px;
  display: block;
}

.coupon-message.error {
  font-size: 12px;
  color: red;
}

.applied-coupons-title {
  color: var(--Black-900, #121212);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  /* 162.5% */
  margin-bottom: 12px;
}

#side-cart-total .line-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single-product .wcmmq-custom-stock-msg {
  display: none !important;
}

.single-product .summary.entry-summary .stock.in-stock {
  display: none !important;
}
/*# sourceMappingURL=side-cart.css.map */