.cfvsw-swatches-option,
.variations {
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: var(--e-global-typography-accent-font-size);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  line-height: var(--e-global-typography-accent-line-height);
}

form.cart .variations {
  margin-bottom: 30px !important;
}

.variations .label {
  margin-top: 5px !important;
}

/* -------------------- */

.value {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
a.reset_variations {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
a.reset_variations:hover {
  opacity: 0.8;
}

a.reset_variations::after {
  content: 'les filtres';
  margin-left: 0.25rem;
}

/* -------------------- */

.cfvsw-swatches-container[swatches-attr='attribute_pa_taille'] {
  flex-direction: row-reverse;
  justify-content: start;
}
.cfvsw-swatches-container[swatches-attr='attribute_pa_taille'] .cfvsw-swatches-option::after {
  content: 'vide';
  margin-left: 0.3rem;
}
.cfvsw-swatches-container[swatches-attr='attribute_pa_taille'] .cfvsw-swatches-option[data-title='S']::after {
  content: '(4-6 pers.)';
}
.cfvsw-swatches-container[swatches-attr='attribute_pa_taille'] .cfvsw-swatches-option[data-title='M']::after {
  content: '(8-10 pers.)';
}
.cfvsw-swatches-container[swatches-attr='attribute_pa_taille'] .cfvsw-swatches-option[data-title='L']::after {
  content: '(14-20 pers.)';
}

.cfvsw-swatches-container[swatches-attr='attribute_pa_largeur'] .cfvsw-swatches-option::after {
  content: 'vide';
  margin-left: 0.3rem;
}

.cfvsw-swatches-container[swatches-attr='attribute_pa_largeur'] .cfvsw-swatches-option[data-slug='74cm']::after {
  content: '(8-10 pers.)';
}

.cfvsw-swatches-container[swatches-attr='attribute_pa_largeur'] .cfvsw-swatches-option[data-slug='83cm']::after {
  content: '(10-16 pers.)';
}

.cfvsw-swatches-container[swatches-attr='attribute_pa_largeur'] .cfvsw-swatches-option[data-slug='103cm']::after {
  content: '(14-20 pers.)';
}

.cfvsw-swatches-container[swatches-attr='attribute_pa_largeur'] .cfvsw-swatches-option[data-slug='133cm']::after {
  content: '(70-80 pers.)';
}
.cfvsw-swatches-container[swatches-attr='attribute_pa_largeur'] .cfvsw-swatches-option[data-slug='153cm']::after {
  content: '(90-100 pers.)';
}

.cfvsw-swatches-option {
  padding: 0.5rem 1.5rem;
  border-radius: 5px !important;
  background-color: white;
  border: solid 2px #a1bb8d;
}
.cfvsw-swatches-option:hover,
.cfvsw-swatches-option.cfvsw-selected-swatch {
  background-color: #66794f;
  border-color: #66794f !important;
  color: white;
}

/* -------------------- */

.cfvsw-swatches-option.cfvsw-image-option .cfvsw-swatch-inner {
  padding: 0;
  width: 16px;
  height: 16px;
  border-radius: 0px;
  background-size: contain;
}

.cfvsw-swatches-option.cfvsw-image-option::after {
  content: attr(data-title);
  margin-left: 0.3rem;
}
.cfvsw-swatches-option.cfvsw-image-option[data-title='Carré']::after {
  margin-left: 0.5rem;
}

[swatches-attr='attribute_pa_couleur-de-la-table'] .cfvsw-swatches-option,
[swatches-attr='attribute_pa_couleur'] .cfvsw-swatches-option {
  padding: 0.3rem;
}

/* -------------------- */

a.added_to_cart {
  display: flex !important;
  margin-left: 20px;
  padding-top: 0px !important;
  justify-content: center !important;
  align-items: center !important;
}

/* -------------------- */

button.single_add_to_cart_button.button.alt {
  position: relative;
  border: none;
  z-index: 1 !important;
  background: white !important;
  color: #000 !important;
  border: white 2px solid;
  border-radius: 20px;
  padding: 15px 30px;
}

button.single_add_to_cart_button.button.alt::before {
  content: '';
  position: absolute;
  width: 33%;
  height: 100%;
  border: 2px solid #0055a4;
  border-right: none;
  left: 0;
  bottom: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: width 0.3s ease-in-out;
}

button.single_add_to_cart_button.button.alt::after {
  content: '';
  position: absolute;
  width: 33%;
  height: 100%;
  border: 2px solid red;
  border-left: none;
  right: 0;
  bottom: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: width 0.3s ease-in-out;
}

button.single_add_to_cart_button.button.alt:hover::before,
button.single_add_to_cart_button.button.alt:hover::after {
  width: 50%;
  border-color: #000;
}

.single_add_to_cart_button.loading::after {
  animation: inherit !important;
  inset: unset !important;
  top: 0 !important;
  right: 0 !important;
}

.single_add_to_cart_button.loading {
  animation: respirationChargement 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
}

button.single_add_to_cart_button.loading::before {
  border: 2px solid #0055a4;
  border-right: none;
}
button.single_add_to_cart_button.loading::after {
  border: 2px solid red;
  border-left: none;
}

@keyframes respirationChargement {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

a.added_to_cart {
  display: flex !important;
  margin-left: 20px;
  padding-top: 0px !important;
  justify-content: center !important;
  align-items: center !important;
}

.cfvsw-tooltip {
  display: none !important;
}

/*--- popup bouton afficher ----*/

.cuve-label-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cuve-link {
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cuve-link i {
  font-size: 14px;
}

span.cuve-arrow-right-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url('https://grill-chic.com/wp-content/uploads/fleche.svg') no-repeat center / contain;
  vertical-align: middle;
  transition: filter 0.3s ease;
}

span.cuve-info-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('https://grill-chic.com/wp-content/uploads/icon-park-outline_info.svg') no-repeat center / contain;
  vertical-align: middle;
  transition: filter 0.3s ease;
}

span.cuve-label-wrapper {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

a.cuve-link {
  transition: color 0.3s ease;
  font-weight: 600;
  color: var(--e-global-color-secondary);
}

a.cuve-link:hover {
  color: #000;
}

a.cuve-link:hover span.cuve-arrow-right-icon,
a.cuve-link:hover span.cuve-info-icon {
  filter: brightness(0) saturate(100%);
}

/* --------- PACK PRODUCTS --------- */

.bundle_form {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.8rem;
}

.bundle_form::after,
.bundle_form::before {
  display: none !important;
}
.product::before,
.product::after {
  display: none !important;
}

.bundle_form .bundled_product {
  display: flex;
  align-items: center;
  width: calc(50% - 1rem);
  padding: 0 !important;
  gap: 0.7rem;
}
@media all and (max-width: 1024px) {
  .bundle_form .bundled_product {
    width: 100%;
  }
}

.bundle_form .cart.bundle_data {
  width: 100%;
}

.bundle_form .details {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  gap: 0.3rem;
  width: 65% !important;
}

/*  */

.bundle_form .bundled_product_summary {
  border-bottom: none !important;
}

.bundle_form .stock,
.bundle_form .bundled_product_excerpt,
.bundle_form .woocommerce-variation-description,
.bundle_form .woocommerce-variation-availability {
  display: none;
}

.bundle_form .bundled_product_images {
  width: 35% !important;
}
.bundle_form figure.bundled_product_image img {
  border-radius: 10px;
}

.bundle_form .bundled_product_title {
  margin: 0;
}

.bundle_form .bundled_product_title_inner .item_title {
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: 0.9rem !important;
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  line-height: var(--e-global-typography-accent-line-height);
  /* line-height: 0rem !important; */
  display: inline-block !important;
  padding-right: 10px;
  color: black !important;
}

.bundle_form .bundled_item_wrap::before,
.bundle_form .bundled_item_wrap::after {
  display: none !important;
}
.bundle_form span.price {
  margin: 0 !important;
}

/*  */

.bundle_form ins .woocommerce-Price-amount {
  font-size: 0;
}

.bundle_form .woocommerce-Price-amount::before,
.bundle_form .woocommerce-Price-amount span {
  font-size: 1.25rem;
}

.bundle_form ins .woocommerce-Price-amount::before {
  content: 'Offert';
  /* font-size:1rem; */
  font-weight: 400;
  font-family: 'Funkga City', Sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1em;
}

.bundle_form h4.bundled_product_title {
  display: flex;
}
.bundle_form .bundled_product_title_link {
  /* display:none; */
  margin: 0 !important;
}
.bundle_form ins .woocommerce-Price-currencySymbol {
  display: none;
}

.bundle_form ins bdi {
  font-size: 0 !important;
}

/*  */

.bundle_form ins {
  color: transparent !important;
  margin-bottom: -3px;
}

/* 
*/

body.variable-product .woocommerce-variation.single_variation {
  display: none !important;
}

body.variable-product p.price {
  text-decoration: none !important;
  font-weight: 400;
  color: #66794f !important;
  font-family: var(--e-global-typography-2de0afd-font-family), Sans-serif !important;
  font-size: var(--e-global-typography-2de0afd-font-size) !important;
  text-transform: var(--e-global-typography-2de0afd-text-transform) !important;
  line-height: var(--e-global-typography-2de0afd-line-height) !important;
}

/* body.simple-product .single_variation_wrap .price bdi {
  text-decoration: none !important;
  font-weight: 400;
  color: #66794f;
  font-family: var(--e-global-typography-2de0afd-font-family), Sans-serif !important;
  font-size: 2rem !important;
  text-transform: var(--e-global-typography-2de0afd-text-transform) !important;
  line-height: var(--e-global-typography-2de0afd-line-height) !important;
} */

/* .pricePackContainer {
  display: none;
}
body.product-bundle .pricePackContainer {
  display: block;
} */

del {
  text-decoration-color: #bd0909 !important;
}
del .woocommerce-Price-amount {
  color: #bd0909 !important;
  text-decoration: #bd0909 !important;
  accent-color: #bd0909 !important;
}

.otherProduct .prix-loop .price del {
  font-size: 1.2rem !important;
}

ins {
  text-decoration: none;
}

ins .woocommerce-Price-amount {
  text-decoration: none !important;
  font-weight: 400;
  color: #66794f;
}

span.ecotax-price {
  display: block !important;
  font-size: 0.8rem;
  font-family: 'Raleway';
  text-transform: lowercase;
  font-style: italic;
}

span.ecotax-price .woocommerce-Price-currencySymbol {
  font-size: 0.8rem;
  font-family: 'Raleway';
  text-transform: lowercase;
  font-style: italic;
}

.single-product span.ecotax-price {
  margin-left: 2px;
}

body.single-product p.price {
  text-decoration: none !important;
  font-weight: 400;
  color: #66794f !important;
  font-family: var(--e-global-typography-2de0afd-font-family), Sans-serif !important;
  font-size: var(--e-global-typography-2de0afd-font-size) !important;
  text-transform: var(--e-global-typography-2de0afd-text-transform) !important;
  line-height: var(--e-global-typography-2de0afd-line-height) !important;
}

@media all and (max-width: 767px) {
  body.single-product p.price {
    font-size: 2.5rem !important;
  }
}

.trp-shortcode-switcher .trp-switcher-dropdown-list {
  transition: none !important;
}

.wishlist_table span.ecotax-price {
  display: none;
}

.yith-wcwl-add-to-wishlist-button--added {
  background: var(--e-global-color-primary) !important;
}

.yith-wcwl-add-to-wishlist-button--added svg path {
  fill: white !important;
}

.xoo-wsc-products span.ecotax-price,
.xoo-wsc-products span.ecotax-price bdi {
  font-size: 14px !important;
  line-height: 1.1em !important;
  font-family: 'Raleway' !important;
}

.xoo-wsc-products .xoo-wsc-priceBox span.ecotax-price {
  display: none !important;
}
