@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "woodmart-font";
	src: url("//electrocontect.com/wp-content/themes/woodmart/fonts/woodmart-font-1-400.woff2?v=7.6.0") format("woff2");
}

:root {
	--wd-text-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: #767676;
	--wd-text-font-size: 14px;
	--wd-title-font: "Montserrat", Arial, Helvetica, sans-serif;
	--wd-title-font-weight: 600;
	--wd-title-color: #242424;
	--wd-entities-title-font: "Montserrat", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 600;
	--wd-entities-title-color: #333333;
	--wd-entities-title-color-hover: rgb(51 51 51 / 65%);
	--wd-alternative-font: "Montserrat", Arial, Helvetica, sans-serif;
	--wd-widget-title-font: "Montserrat", Arial, Helvetica, sans-serif;
	--wd-widget-title-font-weight: 600;
	--wd-widget-title-transform: uppercase;
	--wd-widget-title-color: #333;
	--wd-widget-title-font-size: 16px;
	--wd-header-el-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-header-el-font-weight: 700;
	--wd-header-el-transform: uppercase;
	--wd-header-el-font-size: 13px;
	--wd-primary-color: rgb(255,127,0);
	--wd-alternative-color: rgb(53,80,255);
	--wd-link-color: #333333;
	--wd-link-color-hover: #242424;
	--btn-default-bgcolor: #f7f7f7;
	--btn-default-bgcolor-hover: #efefef;
	--btn-accented-bgcolor: rgb(10,55,97);
	--btn-accented-bgcolor-hover: rgb(1,83,170);
	--wd-form-brd-width: 2px;
	--notices-success-bg: #459647;
	--notices-success-color: #fff;
	--notices-warning-bg: #E0B252;
	--notices-warning-color: #fff;
}
.woodmart-woocommerce-layered-nav .wd-scroll-content {
	max-height: 223px;
}
.wd-popup.wd-age-verify {
	--wd-popup-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: #111111;
	background-image: url(https://res.cloudinary.com/drwv6htcs/images/v1731709080/electronics-2-popup/electronics-2-popup.jpg?_i=AA);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	--wd-popup-width: 800px;
}
.page-title-default {
	background-color: rgba(67,176,42,0);
	background-image: url(https://res.cloudinary.com/drwv6htcs/images/v1731714387/Nintendo-Switch-OLED-Meet-the-newest-member-of-the-family.-5/Nintendo-Switch-OLED-Meet-the-newest-member-of-the-family.-5.jpg?_i=AA);
	background-size: cover;
	background-position: center center;
}
.footer-container {
	background-color: rgb(40,40,40);
	background-image: none;
}
.page .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
.wd-popup.popup-quick-view {
	--wd-popup-width: 920px;
}
:root{
--wd-container-w: 1222px;
--wd-form-brd-radius: 35px;
--btn-default-color: #333;
--btn-default-color-hover: #333;
--btn-accented-color: #fff;
--btn-accented-color-hover: #fff;
--btn-default-brd-radius: 35px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-accented-brd-radius: 35px;
--btn-accented-box-shadow: none;
--btn-accented-box-shadow-hover: none;
--wd-brd-radius: 0px;
}

@media (min-width: 1222px) {
[data-vc-full-width]:not([data-vc-stretch-content]),
:is(.vc_section, .vc_row).wd-section-stretch {
padding-left: calc((100vw - 1222px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
padding-right: calc((100vw - 1222px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
}
}


/* --- 1. Style Général du Header (Fond blanc et ombre portée) --- */
.whb-general-header.whb-sticky-row {
    background-color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    /* Ajoute une légère marge en bas pour mieux décoller du contenu */
    margin-bottom: 10px !important; 
}

/* --- 2. Amélioration des Titres du Menu de Navigation --- */
/* Cible les liens principaux du menu */
.wd-header-nav .menu > .menu-item > a .nav-link-text {
    font-weight: 600 !important; /* Rend le texte plus affirmé et lisible */
    font-size: 16px !important; /* Augmente légèrement la taille pour une meilleure visibilité */
    color: #111111 !important; /* Assure une couleur de texte noire sur fond blanc */
    transition: color 0.3s ease !important;
    position: relative;
    padding-bottom: 5px !important; /* Ajoute de l'espace pour le soulignement */
}

/* --- 3. Amélioration du "Reste" (Effets au survol et Lisibilité) --- */
/* Crée un effet de soulignement subtil au survol */
.wd-header-nav .menu > .menu-item > a::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background-color: #007bff !important; /* Couleur d'accentuation, à changer si besoin */
    transition: width 0.3s ease !important;
}

/* Affiche le soulignement au survol de l'élément de menu */
.wd-header-nav .menu > .menu-item:hover > a::after {
    width: 100% !important;
}

/* Change la couleur du texte au survol pour correspondre au soulignement */
.wd-header-nav .menu > .menu-item:hover > a .nav-link-text {
    color: #007bff !important; /* Même couleur que le soulignement pour une belle harmonie */
}

/* Amélioration des sous-menus pour une meilleure lisibilité */
.wd-dropdown-menu .wd-sub-menu a {
    font-weight: 500 !important;
    color: #333333 !important;
}

.wd-dropdown-menu .wd-sub-menu a:hover {
    background-color: rgba(0, 123, 255, 0.05) !important; /* Léger fond bleu au survol */
    color: #007bff !important;
}

/* --- 4. Amélioration des Icônes Mobiles (Panier, Menu) --- */
.whb-hidden-lg .wd-tools-icon {
    color: #111111 !important; /* Assure que les icônes mobiles sont bien visibles */
}

.whb-hidden-lg .wd-cart-number {
    background-color: #007bff !important; /* Rend la pastille du panier plus visible */
    color: #FFFFFF !important;
}

.vc_custom_1645532275593 {
        margin-right: 5px !important;
}
.whb-top-bar {
    background: linear-gradient(90deg, #307abe 0%, #004a95 100%);
}
.whb-general-header {
    background-color: white;
}
.wd-nav[class*="wd-style-"]>li>a {
    color: #474d52;
}
.wd-nav[class*="wd-style-"]>li>a:hover {
    color: #307abe;
}
.category-card {
   position: relative;
   overflow: hidden;
}

.category-card img {
   transition: transform 0.3s ease-in-out, filter 0.3s ease;
	cursor:pointer;
}

.category-card:hover img {
   transform: scale(1.05);
   filter: brightness(1.1);
	
}

/* Effet de brillance */
.category-card::after {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: linear-gradient(
       45deg,
       rgba(255,255,255,0) 0%,
       rgba(255,255,255,0.1) 50%,
       rgba(255,255,255,0) 100%
   );
   transform: rotate(45deg);
   transition: 0.6s;
   opacity: 0;
}

.category-card:hover::after {
   opacity: 1;
	cursor:pointer;
}
.footer-container,.main-footer {
  color: #fff;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 14px;
	
    background: transparent url(https://electrocontect.com/wp-content/uploads/footerbanner__2_1.jpg) 0 0 no-repeat;
	background-size: cover;
}
.footer-container ul li a {
	color:white;
}
.vc_sep_holder.vc_sep_holder_l{
	display:none;
}
.whb-row.whb-general-header{
	border-bottom: 1px solid #EBEBEB;
	width: 100%;
	
}
.brand_tab_tab{
	display:none;
}@media (min-width: 1025px) {
	.whb-row.whb-general-header .whb-flex-row{
	justify-content:center;align-content}
.whb-row.whb-general-header .whb-empty-column{
	display:none;
}
}

