 #star-rating::before {
     color: #ffcc33 !important
 }

 .fullwidth-slider {
     position: relative;
     width: 100%;
     height: 600px;
     overflow: hidden;
 }

 .simple-slider {
     position: relative;
     width: 100%;
     height: 100%;
 }

 .slide {
     position: absolute;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease-in-out;
 }

 .slide.active {
     opacity: 1;
     z-index: 1;
 }

 .slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .slide-content {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     text-align: center;
     color: white;
     width: 90%;
     max-width: 1200px;
     z-index: 2;
     text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
 }

 .slide.active .animated-text {
     animation: fadeInUp 1s ease-out forwards;
 }

 .slide.active .animated-text-delay {
     animation: fadeInUp 1s ease-out 0.3s forwards;
     opacity: 0;
     animation-fill-mode: forwards;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .slide h2 {
     font-size: 72px !important;
     margin-bottom: 30px !important;
     font-weight: 800 !important;
     line-height: 1.2 !important;
     letter-spacing: 1px !important;
     color: white !important;
     text-transform: uppercase !important;
 }

 @media (max-width: 768px) {
     .slide h2 {
         font-size: 42px !important;
     }
 }

 .slide-button {
     background: #c6213b;
     color: white !important;
     padding: 18px 50px !important;
     text-decoration: none;
     border-radius: 8px;
     display: inline-block;
     font-size: 20px !important;
     font-weight: 700 !important;
     transition: all 0.3s ease;
     border: 2px solid transparent;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     letter-spacing: 1px;
 }

 .slide-button:hover {
     background: #a01b2f;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
 }

 /* Pagination */
 .slider-pagination {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 12px;
     z-index: 10;
 }

 .slider-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     border: 2px solid white;
     background: transparent;
     cursor: pointer;
     padding: 0;
     transition: all 0.3s ease;
 }

 .slider-dot:hover {
     background: rgba(255, 255, 255, 0.5);
 }

 .slider-dot.active {
     background: white;
     transform: scale(1.2);
 }

 .slide::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     z-index: 1;
 }

 body .elementor-widget-slider_revolution {
     width: 100vw !important;
     margin-left: calc(-50vw + 50%) !important;
     position: relative !important;
     left: 0 !important;
     right: 0 !important;
 }

 #to-top a {

     position: absolute;

     right: 20px;
 }

 /* .menu {
            list-style: none;
            display: flex;
            gap: 25px;
        } */

 .menu-item a {

     font-weight: 500;
     transition: 0.3s;
 }



 .active-menu a {
     color: #e91e63;
     font-weight: 700;
     border-bottom: 2px solid #e91e63;
 }



 .chaty-channels {
     position: fixed;
     bottom: 20px;
     left: 20px;
     z-index: 9999;
     display: flex;
     flex-direction: column;
     align-items: flex-end;
 }

 .chaty-channel-list {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-bottom: 10px;
 }

 .chaty-channel {
     position: relative;
     display: inline-block;
 }

 .chaty-channel a,
 .chaty-cta-button button {
     display: block;
     transition: transform 0.3s ease;
 }

 .chaty-channel a:hover,
 .chaty-cta-button button:hover {
     transform: scale(1.1);
 }

 .chaty-svg {
     display: block;
     width: 54px;
     height: 54px;
 }

 .chaty-svg svg {
     width: 100%;
     height: 100%;
 }

 /* Tooltip styles */
 .chaty-tooltip {
     position: relative;
 }

 .on-hover-text {
     position: absolute;
     right: 70px;
     top: 50%;
     transform: translateY(-50%);
     background: #333;
     color: white;
     padding: 5px 10px;
     border-radius: 5px;
     font-size: 14px;
     white-space: nowrap;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease;
     pointer-events: none;
 }

 .on-hover-text::after {
     content: '';
     position: absolute;
     right: -5px;
     top: 50%;
     transform: translateY(-50%);
     border-width: 5px 0 5px 5px;
     border-style: solid;
     border-color: transparent transparent transparent #333;
 }

 .chaty-tooltip:hover .on-hover-text {
     opacity: 1;
     visibility: visible;
 }


 .chaty-i-trigger {
     position: relative;
 }

 .chaty-cta-main {
     margin-bottom: 10px;
 }

 .chaty-cta-close {
     position: absolute;
     bottom: 0;
     right: 0;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease;
 }

 .chaty-i-trigger.active .chaty-cta-close {
     opacity: 1;
     visibility: visible;
 }

 .chaty-i-trigger.active .chaty-cta-main {
     opacity: 0;
     visibility: hidden;
 }

 /* Animation pour l'ouverture/fermeture */
 .chaty-channel-list {
     opacity: 1;
     visibility: visible;
     transition: opacity 0.3s ease;
 }

 .chaty-i-trigger.active .chaty-channel-list {
     opacity: 0;
     visibility: hidden;
 }

 /* Styles pour le bouton open-chaty-channel (caché par défaut) */
 .open-chaty-channel {
     display: none;
 }

 .sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     border: 0;
 }


 .is-invalid {
     border-color: #dc3545 !important;
 }

 .is-valid {
     border-color: #28a745 !important;
 }

 .text-danger {
     color: #dc3545 !important;
     font-size: 80%;
     margin-top: 0.25rem;
 }




 /* ============ STYLES GÉNÉRAUX ============ */
 .language-selector-wrapper {
     position: relative;
     display: inline-block;
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
 }

 .language-selector {
     position: relative;
 }

 .language-dropdown-toggle {
     display: flex;
     align-items: center;
     gap: 8px;

     cursor: pointer;
     font-size: 14px;
     transition: all 0.3s ease;
     min-width: 120px;
     outline: none;
     border: none;
  background: transparent;
  color: black;
 }

 .language-dropdown-toggle:hover {
     background-color: #f8f9fa;
     border-color: rgba(0, 0, 0, 0.2);
     color: black
 }

 .flag-icon {
     width: 18px;
   
     object-fit: cover;

     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
 }

 .dropdown-arrow {
     margin-left: auto;
     transition: transform 0.3s ease;
 }

 .language-selector.active .dropdown-arrow {
     transform: rotate(180deg);
 }

 .language-dropdown-menu {
     position: absolute;
     top: calc(100% + 5px);
     left: -60px;
     background: white;
     border-radius: 5px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     padding: 8px 0;
     margin: 0;
     list-style: none;
     z-index: 1001;
     min-width: 154px;
     border: 1px solid rgba(0, 0, 0, 0.1);
 }

 .language-dropdown-menu li {
     margin: 0;
     padding: 0;
     list-style: none;
     border: none;
 }

 .language-dropdown-menu li:not(:last-child) {
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
 }

 .language-dropdown-item {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px 18px;
     text-decoration: none;
     color: #2c3e50 !important;
     font-size: 14px;
     font-weight: 500;
     transition: all 0.3s ease;
     cursor: pointer;
     border-left: 3px solid transparent;
 }

 .language-dropdown-item:hover {
     background: linear-gradient(90deg, rgba(52, 152, 219, 0.08) 0%, rgba(52, 152, 219, 0.02) 100%);
     border-left-color: #3498db;
 }

 .language-dropdown-item.active {
     background: linear-gradient(90deg, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0.02) 100%);
     border-left-color: #2ecc71;
     font-weight: 600;
     color: #27ae60;
 }

 .language-item-content {
     display: flex;
     align-items: center;
     gap: 12px;
     flex: 1;
 }

 .language-item-content .flag-icon {
     width: 24px;
     height: 18px;
     border-radius: 4px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
     transition: all 0.3s ease;
 }

 .language-dropdown-item:hover .flag-icon {
     transform: scale(1.15);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }

 .language-item-content span {
     font-size: 14px;
     letter-spacing: 0.3px;
     transition: all 0.3s ease;
 }

 .language-dropdown-item:hover .language-item-content span {
     transform: translateX(3px);
 }

 .check-icon {
     width: 16px;
     height: 16px;
     opacity: 0;
     transform: scale(0);
     transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
 }

 .language-dropdown-item.active .check-icon {
     opacity: 1;
     transform: scale(1);
 }

 /* ============ STYLE DU PANIER (CANVAS CART) ============ */
 .elementor-widget-clever-canvas-cart {
     display: inline-block;
 }

 /* CACHER COMPLÈTEMENT LA CHECKBOX */
 .cafe-toggle-input {
     display: none !important;
     position: absolute !important;
     opacity: 0 !important;
     width: 0 !important;
     height: 0 !important;
     pointer-events: none !important;
     visibility: hidden !important;
 }

 .cafe-canvas-cart {
     display: flex;
     align-items: center;
     gap: 10px;
     cursor: pointer;
     text-decoration: none;
     color: #333;
     position: relative;
     transition: all 0.3s ease;
 }

 .cafe-canvas-cart:hover {
     color: #FC6702;
 }

 .cafe-wrap-icon-cart {
     position: relative;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     color: #fff;
     transition: all 0.3s ease;
 }

 .cafe-canvas-cart:hover .cafe-wrap-icon-cart {
     color: #FC6702;
     transform: scale(1.05);
 }

 .cafe-cart-count {
     position: absolute;
     top: -8px;
     right: -12px;
     background-color: #FC6702;
     color: white;
     font-size: 11px;
     font-weight: 700;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     line-height: 1;
     box-shadow: 0 2px 6px rgba(252, 103, 2, 0.3);
     transition: all 0.3s ease;
 }

 .cafe-canvas-cart:hover .cafe-cart-count {
     transform: scale(1.1);
     box-shadow: 0 4px 10px rgba(252, 103, 2, 0.4);
 }

 .cafe-wrap-right-cart {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
 }

 .cafe-cart-subtotal {
     font-size: 14px;
     font-weight: 600;
     color: #2c3e50;
     white-space: nowrap;
 }

 .cafe-cart-subtotal .woocommerce-Price-amount {
     color: #FC6702;
     font-weight: 700;
 }

 .cafe-canvas-cart-mask {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     z-index: 9998;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s ease;
     cursor: pointer;
 }

 .cafe-toggle-input:checked~.cafe-canvas-cart-mask {
     opacity: 1;
     visibility: visible;
 }

 .cafe-canvas-cart-content {
     position: fixed;
     top: 0;
     right: -600px;
     width: 380px;
     max-width: 90vw;
     height: 100%;
     background: #fff;
     z-index: 9999;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
     display: flex;
     flex-direction: column;
     overflow-y: auto;
 }

 .cafe-toggle-input:checked~.cafe-canvas-cart-content {
     right: 0;
 }

 .cafe-heading-cart-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 25px;
     font-size: 18px;
     font-weight: 700;
     color: #2c3e50;
     border-bottom: 1px solid #e8e8e8;
     background: #fafafa;
     position: sticky;
     top: 0;
     z-index: 10;
 }

 .cafe-heading-cart-content .cafe-cart-count {
     position: static;
     display: inline;
     background: none;
     color: #FC6702;
     font-size: 18px;
     font-weight: 700;
     width: auto;
     height: auto;
     box-shadow: none;
 }

 .cafe-close-cart {
     cursor: pointer;
     font-size: 14px;
     color: #777;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
     padding: 5px 10px;
     border-radius: 5px;
 }

 .cafe-close-cart:hover {
     color: #FC6702;
     background: rgba(252, 103, 2, 0.05);
 }

 .cafe-close-cart label {
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 8px;
     margin: 0;
 }

 .cafe-close-cart i {
     font-size: 18px;
     transition: transform 0.3s ease;
 }

 .cafe-close-cart:hover i {
     transform: rotate(90deg);
 }

 .widget_shopping_cart_content {
     padding: 20px 25px;
     flex: 1;
     overflow-y: auto;
 }

 .woocommerce-mini-cart__empty-message {
     text-align: center;
     color: #999;
     font-size: 15px;
     padding: 40px 20px;
     border: 2px dashed #e0e0e0;
     border-radius: 10px;
     margin: 20px 0;
 }

 .woocommerce-mini-cart-item {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 15px 0;
     border-bottom: 1px solid #f0f0f0;
     position: relative;
 }

 .woocommerce-mini-cart-item img {
     width: 70px;
     height: 70px;
     object-fit: cover;
     border-radius: 8px;
     border: 1px solid #eee;
 }

 .woocommerce-mini-cart-item .product-info {
     flex: 1;
 }

 .woocommerce-mini-cart-item .product-name {
     font-weight: 600;
     color: #2c3e50;
     margin-bottom: 5px;
     font-size: 14px;
     display: block;
     text-decoration: none;
 }

 .woocommerce-mini-cart-item .product-name:hover {
     color: #FC6702;
 }

 .woocommerce-mini-cart-item .quantity {
     font-size: 13px;
     color: #777;
     display: flex;
     align-items: center;
     gap: 5px;
     margin: 5px 0;
 }



 .cart-quantity-input:focus {
     outline: none;
     border-color: #FC6702;
 }

 .woocommerce-mini-cart-item .product-subtotal {
     font-weight: 600;
     color: #FC6702;
     font-size: 14px;
     margin-top: 5px;
 }

 .woocommerce-mini-cart-item .remove {
     position: absolute;
     top: 5px;
     right: 0;
     color: #ccc;
     font-size: 20px;
     transition: all 0.3s ease;
     text-decoration: none;
     cursor: pointer;
     width: 24px;
     height: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
 }

 .woocommerce-mini-cart-item .remove:hover {
     color: #e74c3c;
     background: rgba(231, 76, 60, 0.1);
     transform: rotate(90deg);
 }

 .woocommerce-mini-cart__total {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 25px;
     border-top: 2px solid #FC6702;
     font-size: 16px;
     font-weight: 700;
     background: #fafafa;
 }

 .woocommerce-mini-cart__total .woocommerce-Price-amount {
     color: #FC6702;
     font-size: 20px;
 }

 .woocommerce-mini-cart__buttons {
     display: flex;
     gap: 10px;
     padding: 0 25px 25px;
     background: #fff;
 }

 .woocommerce-mini-cart__buttons .button {
     flex: 1;
     text-align: center;
     padding: 12px 20px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 14px;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
 }

 .woocommerce-mini-cart__buttons .button.wc-forward:first-child {
     background: #f5f5f5;
     color: #333;
     border: 2px solid #ddd;
 }

 .woocommerce-mini-cart__buttons .button.wc-forward:first-child:hover {
     background: #e8e8e8;
     border-color: #ccc;
 }

 .woocommerce-mini-cart__buttons .button.checkout {
     background: #FC6702;
     color: white;
     border: 2px solid #FC6702;
 }

 .woocommerce-mini-cart__buttons .button.checkout:hover {
     background: #e55d00;
     border-color: #e55d00;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(252, 103, 2, 0.3);
 }

 /* Notifications */
 .cart-notification {
     position: fixed;
     top: 20px;
     right: 20px;
     background: #4CAF50;
     color: white;
     padding: 15px 25px;
     border-radius: 8px;
     z-index: 10000;
     font-weight: 600;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     animation: slideInRight 0.3s ease;
 }

 @keyframes slideInRight {
     from {
         transform: translateX(100%);
         opacity: 0;
     }

     to {
         transform: translateX(0);
         opacity: 1;
     }
 }

 @keyframes slideOutRight {
     from {
         transform: translateX(0);
         opacity: 1;
     }

     to {
         transform: translateX(100%);
         opacity: 0;
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .language-dropdown-toggle {
         font-size: 13px;
         min-width: 100px;
     }

  

     .language-dropdown-item {
         padding: 8px 15px;
     }

     .language-item-content .flag-icon {
         width: 18px;
     
     }

     .language-item-content span {
         font-size: 13px;
     }
 }

 @media (max-width: 480px) {
     .cafe-canvas-cart-content {
         width: 100vw;
         max-width: 100vw;
     }

     .cafe-wrap-right-cart {
         display: none;
     }

     .cafe-wrap-icon-cart {
         font-size: 24px;
     }

     .cafe-cart-count {
         width: 18px;
         height: 18px;
         font-size: 10px;
         top: -6px;
         right: -10px;
     }
 }

 .logo{
    width:60px
 }