/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*******************************/
/*           HEADER            */
/*******************************/

/* Style du header */
#site-header {
  height:170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #10a105 ; /* Couleur par défaut */
  padding: 10px 20px;
  position: relative; /* Pour positionner ::before */
  transition: background 0.3s ease; /* Inclut opacity */
  box-shadow: 0px 0px 15px black !important;
  z-index: 1;
}

/* Image de fond avec opacité */
#site-header {
    --header-bg-image: none;
    --header-bg-opacity: 0;
    background-image: var(--header-bg-image);
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
}
/*#site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-image: var(--header-bg-image, none); /* Pas d’image par défaut */
  /*opacity: var(--header-bg-opacity, 0); /* Opacité par défaut */
  /*transition: background-image 0.3s ease, opacity 0.3s ease;
  z-index: 1;
}*/

/* Contenu au-dessus de l’image */
/*#site-header > * {
  position: relative;
  z-index: 2;
}*/

/* Fond animé */
.site-navigation .menu .highlight {
  padding: 0 20px 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #FFFFFF;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
  z-index: 1;
  display: none;
}

/* Afficher le highlight au survol ou pour l’actif */
.site-navigation .menu li:hover .highlight,
.site-navigation .menu li.current-menu-item .highlight {
  display: block;
}

/* Ajouter cerises ou piments via ::before */

/*.site-navigation .menu .highlight::before {
  content: attr(data-icon);
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
  font-size: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}*/

/* Style du menu */
.site-navigation .menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
}

/* Style des items */
.site-navigation .menu li {
  position: relative;
}


/* Style des liens */
.site-navigation .menu li a {
  text-decoration: none;
  padding: 8px 10px !important;
  display: inline-block;
  color: #000000;
  position: relative;
  z-index: 2;
  transition: color 0.2s ease-in-out;
}
.site-navigation .menu li.current-menu-item a, .site-navigation .menu li a:hover{
  color:black !important;
  font-weight: 500;
}

/* Style pour les liens visités */
.site-navigation .menu li a:visited {
  color: #333;
}

/* Losange entre les items */
.site-navigation .menu li:not(:last-child)::after {
  content: '\1F336';
  font-size: 15px;
  color: red;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
/***************************/
/****  MON COMPTE-PANIER ***/
/***************************/
/*Style pour les icones*/
.site-navigation .menu .menu-item i.fa {
    display: inline-block !important;
    font-family: "FontAwesome" !important;
    font-size: 18px;
}
/* Style pour le compteur du panier */
.site-navigation .menu .cart-count {
    display: inline-block;
    background: #10a105; 
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    margin-left: 5px;
}
/**************************/
/*      PANIER - Menu     */
/*************************/
.cart-icon {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #333;
}
.cart-icon .cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-size: 23px;
}
.fas {
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
}
/**************************/
/*       Sous menu        */
/**************************/
.site-header .site-navigation .sub-menu li a{color:#000 !important;}

/**************************/
/*      RGPD - Account    */
/*************************/
.woocommerce-account-fields .form-row-wide input[type="checkbox"] {
       margin-right: 10px;
}
.woocommerce-account-fields .form-row-wide label {
       display: inline;
       font-size: 14px;
}
/******************************/
/*      WOOCOMMERCE FILTRE    */
/******************************/
.woocommerce-layout {
    display: flex;
    flex-wrap: wrap;
}
.woocommerce-filters-sidebar {
    width: 25%;
    margin-right: 3%;
}
.woocommerce-products {
    width: 72%;
}
.widget {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.widget-title {
    color: #c90404;
    border-bottom: 2px solid #c90404;
    padding-bottom: 5px;
}
.widget ul {
    list-style: none;
    padding: 0;
}
.widget ul li {
    padding: 5px 0;
}
.widget ul li a {
    text-decoration: none;
    color: #333;
}
.widget ul li a:hover {
    color: #c90404;
}
@media (max-width: 768px) {
    .woocommerce-filters-sidebar, .woocommerce-products {
        width: 100%;
        margin-right: 0;
    }
}
/*************************/
/*       THEME NOEL      */
/*************************/
.snow-bg {
   position: relative;
}

.snow-bg:after {
   content: '';
   display: block;
   position: absolute;
   z-index: 2;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   pointer-events: none;
   background-image: url('https://library.elementor.com/resources/christmas-snow-effect/s1.png'), url('https://library.elementor.com/resources/christmas-snow-effect/s2.png'), url('https://library.elementor.com/resources/christmas-snow-effect/s3.png');
    animation: snow 10s linear infinite;
}

@keyframes snow {
 0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
 50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
 100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
/*************************/
/*        FOOTER         */
/*************************/
.basque-footer {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-top: -50px;
}

.footer-top {
    background-size: cover;
    background-position: center bottom;
    width: 100%;
    position: relative;
    height:300px;
    background-color: #fff;
}

.footer-top .slogan {
    font-family: 'Playball', cursive;
    font-size: 3.5rem;
    color: #DC241F;
    text-align: left;
    padding-left: 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    background-color: #10a105;
    padding: 40px 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 2fr;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    margin-right: 50px; /* Espacement de la 1ère colonne */
}

/*.footer-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}*/

.footer-column h3 {
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 1em;
    color:#aae847;
    padding-left:15px;
}


/* Style des colonnes*/
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d81e05; /* Rouge basque pour survol */
}
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*  REASSURANCE */
.footer-reassurance ul li {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: #fff;
}

.reassurance-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

/*     CONTACT   */
.footer-contact p {
    margin: 10px 0;
    font-size: 1em;
    color: #fff;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #d81e05;
}

/*    HOVER MENU    */
.footer-hover-display {
    position: absolute;
    left: 40%;
    top: 43%;
    transform: translateY(-50%);
    font-family: 'Playball', sans-serif;
    font-size: 3em;
    color: #41542375;
    display: none;
    z-index: 10;
}

/* 3eme footer */
.footer-bottom {
    background-color: #10a105;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom .footer-legal {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-bottom .footer-legal li a {
    color: #fff;
    font-size: 0.9em;
    text-decoration: none;
}

.footer-bottom .footer-legal li a:hover {
    color: #d81e05;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #fff;
}
/***************************/
/*        Responsive       */
/***************************/
/*****     MENU      *******/
.header-inner {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
@media (max-width: 1200px) {
    .header-inner {
        max-width: 1000px !important;
    }
}
@media (max-width: 768px) {
    .header-inner {
        width: 100% !important;
        padding: 0 15px !important; /* Pour mobile */
    }
/*****    *FOOTER*    ******/
@media (max-width: 767px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-slogan p {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .footer-flat-image img {
        max-width: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-logo {
        margin-right: 0;
    }

    .footer-logo-img {
        max-width: 150px;
    }

    .footer-column h3 {
        font-family: 'Poppins';
        font-weight: 300;
        font-size: 1em;
        color:#aae847;
    }

    .footer-column ul li,
    .footer-contact p,
    .footer-contact a {
        font-size: 0.9em;
    }

    .contact-button {
        margin: 15px auto;
        max-width: 250px;
    }

    .footer-hover-display {
        display: none !important; /* Caché sur mobile */
    }

    .footer-bottom .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}