/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2026 | 23:22:22 */
/* ------------------------------------------------------------------ */
/* 1) Sidebar / main column proportions                               */
/* ------------------------------------------------------------------ */
@media screen and (min-width: 1024.1px) {
  /* Cart page: "TOTAL PANIER" sidebar */
  .woocommerce-cart-wrapper .cart-wrapper > *.cart-collaterals {
    width: 27.5rem; /* was 20rem */
  }

  /* Checkout page: "Your order" sidebar */
  .woocommerce-cart-wrapper .cart-wrapper > *.order-review-wrapper {
    width: 30rem; /* was 23.75rem */
  }

  /* Keep the main column from getting squeezed by its flex-basis */
  .woocommerce-cart-wrapper .cart-wrapper > *.woocommerce-cart-form,
  .woocommerce-cart-wrapper .cart-wrapper > *#customer_details {
    min-width: 0;
  }
}

/* ------------------------------------------------------------------ */
/* 2) Cart-totals / order-review tables: convert to block layout      */
/* ------------------------------------------------------------------ */
/*
 * Why the whole table (not just the shipping <tr>) has to become block:
 * these tables keep their default `display: table` / `table-row-group`.
 * If only tr.woocommerce-shipping-totals were switched to display:block,
 * the browser's CSS table anonymous-box fixup would wrap that lone row
 * in an auto-generated table-cell to keep the table structure valid —
 * and that anonymous cell shrinks-to-fit (sized off the other rows'
 * narrow th column), so width:100% never reaches the card's real width.
 * Converting table/thead/tbody/tfoot to block too avoids that mismatch,
 * so every row is a genuine block box and width:100% works as expected.
 */
.cart-collaterals .cart_totals .shop_table,
.cart-collaterals .cart_totals .shop_table tbody,
.order-review-wrapper .shop_table,
.order-review-wrapper .shop_table thead,
.order-review-wrapper .shop_table tbody,
.order-review-wrapper .shop_table tfoot {
  display: block;
  width: 100%;
}

/* Default row: label on the left, value on the right (Subtotal, Total,
   taxes, fees, product name/price...) */
.cart-collaterals .cart_totals .shop_table tr,
.order-review-wrapper .shop_table tr {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--gray-200);
}
.cart-collaterals .cart_totals .shop_table tr:last-child,
.order-review-wrapper .shop_table tr:last-child {
  border-bottom: 0;
}

.cart-collaterals .cart_totals .shop_table tr th,
.cart-collaterals .cart_totals .shop_table tr td,
.order-review-wrapper .shop_table tr th,
.order-review-wrapper .shop_table tr td {
  display: block;
  width: auto;
  padding: 0;
  border-bottom: 0;
}

/* Second cell of a row (the value: price, total, product subtotal...)
   sticks to the right without needing text-align on every cell type. */
.cart-collaterals .cart_totals .shop_table tr > *:last-child,
.order-review-wrapper .shop_table tr > *:last-child {
  margin-left: auto;
  text-align: right;
}

/* ------------------------------------------------------------------ */
/* 3) Shipping row: stacked, not side-by-side                         */
/* ------------------------------------------------------------------ */

/* Turn the shipping row from a 2-col row (label | options)
   into a stacked block: label on top, options list below. */
.cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals,
.order-review-wrapper .shop_table tr.woocommerce-shipping-totals {
  display: block;
}

.cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals th,
.cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals td,
.order-review-wrapper .shop_table tr.woocommerce-shipping-totals th,
.order-review-wrapper .shop_table tr.woocommerce-shipping-totals td {
  display: block;
  width: 100%;
  margin-left: 0;
  text-align: left;
}

.cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals th,
.order-review-wrapper .shop_table tr.woocommerce-shipping-totals th {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.625rem;
}

/* Each carrier option on its own line, with breathing room */
.cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods,
.order-review-wrapper .shop_table tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods li,
.order-review-wrapper .shop_table tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods li + li,
.order-review-wrapper .shop_table tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods li + li {
  border-top: 1px solid var(--gray-200);
}

.cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods li input.shipping_method,
.order-review-wrapper .shop_table tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods li input.shipping_method {
  position: relative;
  flex: 0 0 auto;
  margin-top: 0.1875rem;
}

.cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods li label,
.order-review-wrapper .shop_table tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods li label {
  flex: 1 0 0%;
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: left;
}

.cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals .woocommerce-shipping-destination,
.order-review-wrapper .shop_table tr.woocommerce-shipping-totals .woocommerce-shipping-destination {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ------------------------------------------------------------------ */
/* 4) Cart line items: bigger thumbnail, more breathing room           */
/* ------------------------------------------------------------------ */
/*
 * The theme caps td.product-thumbnail at max-width:2.875rem, but the
 * <img> (and its <a> wrapper, when the product is a link) has no size
 * cap of its own, so the photo renders at its native size and spills
 * OUT of the tiny column, sliding under the product name next to it.
 *
 * Fixes, belt-and-suspenders because the theme sheet may load after
 * this file (equal specificity would otherwise win):
 *   - pin a real square box on the cell, the <a> and the <img>;
 *   - `overflow:hidden` on the cell so nothing can bleed past its edge;
 *   - object-fit:cover so every photo gets the same clean crop.
 */
.woocommerce-cart-wrapper .shop_table tr td.product-thumbnail {
  width: 4.5rem !important;
  max-width: 4.5rem !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}
.woocommerce-cart-wrapper .shop_table tr td.product-thumbnail > a,
.woocommerce-cart-wrapper .shop_table tr td.product-thumbnail img {
  display: block;
  width: 4.5rem !important;
  height: 4.5rem !important;
  max-width: 4.5rem !important;
}
.woocommerce-cart-wrapper .shop_table tr td.product-thumbnail img {
  object-fit: cover;
  object-position: center;
  border-radius: var(--theme-radius-base, 0.5rem);
  border: 1px solid var(--gray-200);
  background-color: rgb(var(--theme-color-white));
}
.woocommerce-cart-wrapper .shop_table tr td.product-name {
  padding-left: 1rem; /* was 0.75rem */
  min-width: 0;
  overflow: hidden; /* stops the clamped title below from bleeding sideways */
}

/* Product title: two lines max, then clip. `-webkit-box` gives the
   ellipsis; `max-height` is a hard fallback so a title can never grow
   taller than two lines even where line-clamp misbehaves. */
.woocommerce-cart-wrapper .shop_table tr td.product-name > a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
  max-height: 2.8em;
  line-height: 1.4;
  overflow: hidden;
  overflow-wrap: anywhere;
}

/* ------------------------------------------------------------------ */
/* 5) "Free Gifts for WooCommerce" — turn it into an eye-catching,     */
/*    "you got a bonus" card list, gift photo on the left and big.     */
/* ------------------------------------------------------------------ */

.fgf_gift_products_wrapper {
  position: relative;
  margin-top: 1.875rem;
  padding: 1.5rem 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.07), rgba(233, 30, 99, 0.02));
  border: 1px dashed rgba(233, 30, 99, 0.35);
  border-radius: var(--theme-radius-base, 0.75rem);
  overflow: hidden;
}

.fgf_gift_products_wrapper > h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1875rem;
  font-weight: 800;
  margin-bottom: 1.125rem;
}
.fgf_gift_products_wrapper > h3::before {
  content: "\1F381"; /* 🎁 */
  font-size: 1.375rem;
  line-height: 1;
}

/* The header row (Nom du produit / Image / Ajouter) is redundant once
   each row reads as a self-contained gift card — hide it visually. */
.fgf_gift_products_table thead {
  display: none;
}

/* Escape the table layout algorithm (see section 2 above for why the
   ancestors, not just the row, need to become block) so each row can
   be reflowed as a flex "card" and its columns reordered visually. */
.fgf_gift_products_table.shop_table,
.fgf_gift_products_table tbody {
  display: block;
  width: 100%;
}

.fgf_gift_products_table tbody tr {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  background-color: rgb(var(--theme-color-white));
  border: 1px solid var(--gray-200);
  border-radius: var(--theme-radius-base, 0.625rem);
  padding: 0.875rem 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
}
.fgf_gift_products_table tbody tr + tr {
  margin-top: 0.75rem;
}

.fgf_gift_products_table tbody td {
  display: block;
  padding: 0;
  border-bottom: 0;
  font-size: 0.875rem;
}

/* Column order in the markup is Name, Image, Add-to-cart — reorder so
   the gift photo reads first, big and unmissable. */
.fgf_gift_products_table tbody td:nth-child(1) {
  order: 2;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
}
.fgf_gift_products_table tbody td:nth-child(2) {
  order: 1;
  position: relative;
  flex: 0 0 auto;
}
.fgf_gift_products_table tbody td:nth-child(3) {
  order: 3;
  flex: 0 0 auto;
}

.fgf_gift_products_table td img {
  display: block;
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border-radius: 0.625rem;
  border: 1px solid var(--gray-200);
  background-color: rgb(var(--theme-color-white));
  padding: 0.25rem;
}

/* "GRATUIT" ribbon on the gift photo — the visual cue that sells the
   "you got a free bonus" feeling. */
.fgf_gift_products_table tbody td:nth-child(2)::after {
  content: "GRATUIT";
  position: absolute;
  bottom: -0.4375rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f5768e;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.1875rem 0.5625rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Add-to-cart link renders WooCommerce's generic .button class — style
   it like the rest of the cart's black CTAs (coupon / checkout button)
   instead of the default plain gray button. */
.fgf_gift_products_table .fgf_add_to_cart_link a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #f5768e;
  background: rgba(245, 118, 142, 0.1);
  border-radius: var(--theme-radius-base, 0.375rem);
  padding: 0.625rem 1.125rem;
  transition: background-color 0.1s ease;
}
.fgf_gift_products_table .fgf_add_to_cart_link a.button:hover {
  background: rgba(245, 118, 142, 1);
  color: #fff;
}
.fgf_gift_products_table .fgf_add_to_cart_link.fgf_disable_links a.button {
  background-color: var(--gray-300);
}

.fgf_gift_products_table .fgf-product-variations {
  display: block;
  margin-bottom: 0.5rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.8125rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--theme-radius-base, 0.375rem);
}

.cart-collaterals, .order-review-wrapper {
	background-color: #fff;
}

.cart-collaterals .wc-proceed-to-checkout a, .order-review-wrapper .place-order > button {
  color: #fff;
}

.woocommerce-message, .woocommerce-info, .woocommerce-form-coupon-toggle {
	background-color: #fff;
	border-radius: 8px;
	border: 1px solid var(--gray-200);
}

#customer_details {
	background-color: #fff;
	border-radius: 8px;
	padding: 12px 16px;
	margin-top: 24px;
	border: 1px solid var(--gray-200);
}

.woocommerce-billing-fields h3 {
	margin-bottom: 1rem;
}

@media screen and (max-width: 480px) {
  .fgf_gift_products_table tbody tr {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .fgf_gift_products_table tbody td:nth-child(1),
  .fgf_gift_products_table tbody td:nth-child(2),
  .fgf_gift_products_table tbody td:nth-child(3) {
    flex: 0 0 100%;
  }
  .fgf_gift_products_table tbody td:nth-child(2) {
    display: flex;
    justify-content: center;
  }
  .fgf_gift_products_table .fgf_add_to_cart_link a.button {
    width: 100%;
  }
}

/* ------------------------------------------------------------------ */
/* 6) Cart line items: same "card" language as the free-gift list,    */
/*    so the two sections don't feel like they belong to two designs. */
/* ------------------------------------------------------------------ */
/* Scoped to >=768px: the theme already has its own compact mobile
   layout for this table (stacked data-title rows), left untouched. */
@media screen and (min-width: 768.1px) {
  .woocommerce-cart-wrapper .shop_table.cart,
  .woocommerce-cart-wrapper .shop_table.cart tbody {
    display: block;
    width: 100%;
  }
  .woocommerce-cart-wrapper .shop_table.cart thead {
    display: none; /* redundant once every row reads as its own card */
  }

  .woocommerce-cart-wrapper .shop_table.cart tbody tr {
    display: block;
    width: 100%;
  }
  .woocommerce-cart-wrapper .shop_table.cart tbody tr td {
    display: block;
    border-bottom: 0;
  }

  .woocommerce-cart-wrapper .shop_table.cart tbody tr.cart_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    background-color: rgb(var(--theme-color-white));
    border: 1px solid var(--gray-200);
    border-radius: var(--theme-radius-base, 0.625rem);
    padding: 0.875rem 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
  }
  .woocommerce-cart-wrapper .shop_table.cart tbody tr.cart_item + tr.cart_item {
    margin-top: 0.75rem;
  }
  .woocommerce-cart-wrapper .shop_table.cart tbody tr.cart_item td {
    padding: 0;
  }

  .woocommerce-cart-wrapper .shop_table.cart tbody tr.cart_item td.product-thumbnail {
    flex: 0 0 auto;
    width: 4.5rem;
    max-width: 4.5rem;
    margin-right: 0.25rem; /* extra guard on top of the row's flex gap */
  }
  .woocommerce-cart-wrapper .shop_table.cart tbody tr.cart_item td.product-name {
    flex: 1 1 10rem;
    min-width: 0;
    overflow: hidden;
    font-size: 0.9375rem;
  }
  /* Right-hand columns kept deliberately narrow so the title always
     has the lion's share of the row width. */
  .woocommerce-cart-wrapper .shop_table.cart tbody tr.cart_item td.product-price {
    flex: 0 0 auto;
    width: 4.5rem;
    text-align: right;
    font-size: 0.8125rem;
    color: var(--gray-500);
  }
  .woocommerce-cart-wrapper .shop_table.cart tbody tr.cart_item td.product-quantity {
    flex: 0 0 auto;
    width: 6rem;
  }
  .woocommerce-cart-wrapper .shop_table.cart tbody tr.cart_item td.product-subtotal {
    flex: 0 0 auto;
    width: 4.5rem;
    text-align: right;
    font-weight: 700;
  }
  .woocommerce-cart-wrapper .shop_table.cart tbody tr.cart_item td.product-remove {
    flex: 0 0 auto;
    margin-left: 0.25rem;
  }

  /* Coupon / update-cart row: keep it as plain full-width content,
     not boxed like the product cards above it. */
  .woocommerce-cart-wrapper .shop_table.cart tbody tr:not(.cart_item) td.actions {
    padding: 1.125rem 0 0.25rem;
  }
}

/* ------------------------------------------------------------------ */
/* 7) Sticky sidebar on cart & checkout                               */
/* ------------------------------------------------------------------ */
/* Adjust `top` if the site ever gets a sticky/fixed header — it should
   match that header's height so the card doesn't tuck underneath it. */
@media screen and (min-width: 1024.1px) {
  .woocommerce-cart-wrapper .cart-wrapper > *.cart-collaterals,
  .woocommerce-cart-wrapper .cart-wrapper > *.order-review-wrapper {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    overflow-y: auto;
  }
	
	.site-mini-cart .site-mini-cart-inner {
		max-width: 100%;
	}
}

/*-------------- Side Cart ---------------------- */
body .site-drawer.drawer-cart {
	z-index: 9999999990;
}

.site-mini-cart .fl-mini-cart-content .products .product-inner .thumbnail-wrapper {
	width: 4.5rem;
}

.cart-widget-side {
	width: 480px;
	max-width: 90vw;
}
