/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1775218684
Updated: 2026-04-03 14:18:04

   Sommaire
   ─────────────────────────────────────────────
   1. Title Accent
   2. Ticker Reassurance
   3. Expertise Cards
   4. Prix produit
   5. Bouton ajout au panier
   6. Filtres boutique
   7. Listes à tirets bleus
   8. Product Card
*/


/* ============================================================
   1. TITLE ACCENT — Surlignage sur les titres
   ============================================================ */

.title-accent {
  position: relative;
  display: inline;
  background-image: linear-gradient(transparent 68%, rgba(74, 124, 155, 0.18) 68%);
  padding: 0 4px;
  margin: 0 -4px;
}


/* ============================================================
   2. TICKER REASSURANCE — Bandeau défilant (animation en JS)
   ============================================================ */

.reassurance-wrap {
  background: #1a2535;
  overflow: hidden;
  padding: 0;
}

.reassurance-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  white-space: nowrap;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

.reassurance-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: .7;
}

.reassurance-item .euro-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A7C9B;
  font-weight: 700;
  opacity: .7;
  line-height: 1;
}

.reassurance-dot {
  width: 4px;
  height: 4px;
  background: #4A7C9B;
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
  opacity: .35;
}


/* ============================================================
   3. EXPERTISE CARDS — Grille avec overlay dégradé + hover
   ============================================================ */

.expertise-card {
  position: relative !important;
  overflow: hidden;
  border-radius: 12px;
}

.expertise-card .elementor-widget-image,
.expertise-card .elementor-widget-image a,
.expertise-card .elementor-widget-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-card .elementor-widget-image img {
  transition: transform 0.8s ease;
}

.expertise-card:hover .elementor-widget-image img {
  transform: scale(1.06);
}

/* Dégradé */

.expertise-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 37, 53, 0.92) 0%,
    rgba(26, 37, 53, 0.05) 55%
  );
  transition: background 0.5s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 12px;
}

.expertise-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(26, 37, 53, 0.95) 0%,
    rgba(26, 37, 53, 0.20) 55%
  );
}

/* Contenu au-dessus du dégradé */

.expertise-card > .elementor-widget-wrap > *,
.expertise-card > * {
  position: relative;
  z-index: 2;
}

/* Flèche */

.expertise-card .card-arrow {
  position: absolute !important;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  z-index: 3;
}

.expertise-card .card-arrow svg {
  width: 14px;
  height: 14px;
  color: #ffffff;
  stroke: #ffffff;
  transition: stroke 0.3s;
}

.expertise-card:hover .card-arrow {
  background: #4A7C9B;
  border-color: #4A7C9B;
  transform: rotate(-45deg);
}

/* Titre blanc */

.expertise-card .elementor-heading-title {
  color: #ffffff !important;
  margin-bottom: 4px !important;
  transition: transform 0.3s ease;
}

.expertise-card:hover .elementor-heading-title {
  transform: translateY(-5px);
}

/* Tag fixe sans surélévation */

.expertise-card .no-lift.elementor-widget-heading .elementor-heading-title {
  transform: none !important;
  transition: none !important;
}

.expertise-card:hover .no-lift.elementor-widget-heading .elementor-heading-title {
  transform: none !important;
}

/* Texte caché révélé au survol */

.expertise-card .hidden-text {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expertise-card:hover .hidden-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: auto !important;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

/* Mobile : tout visible sans hover */

@media (hover: none) {
  .expertise-card .hidden-text {
    opacity: 1;
    visibility: visible;
    height: auto !important;
    transform: none;
  }
}

/* Grille expertise — 3 en haut, 2 centrés en bas */

[data-id="9c19219"] {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 20px !important;
  justify-items: center !important;
}

[data-id="9c19219"] > .e-child:nth-child(1) { grid-column: 1 / 3; }
[data-id="9c19219"] > .e-child:nth-child(2) { grid-column: 3 / 5; }
[data-id="9c19219"] > .e-child:nth-child(3) { grid-column: 5 / 7; }
[data-id="9c19219"] > .e-child:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
[data-id="9c19219"] > .e-child:nth-child(5) { grid-column: 4 / 6; grid-row: 2; }

@media (max-width: 1024px) and (min-width: 769px) {
  [data-id="9c19219"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    justify-items: stretch !important;
  }
  [data-id="9c19219"] > .e-child { grid-column: auto !important; grid-row: auto !important; }
}

@media (max-width: 768px) {
  [data-id="9c19219"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    justify-items: stretch !important;
  }
  [data-id="9c19219"] > .e-child { grid-column: auto !important; grid-row: auto !important; }
}


/* ============================================================
   4. PRIX PRODUIT
   ============================================================ */

.product-price {
  font-size: 11px !important;
  font-weight: 400 !important;
  color: #888888 !important;
  text-transform: lowercase !important;
  text-decoration: none !important;
  display: block !important;
  line-height: 1.4 !important;
  letter-spacing: 0.03em !important;
}


/* ============================================================
   5. BOUTON AJOUT AU PANIER
   ============================================================ */

/* Reset du widget icône */
.btn-cart {
  background: transparent !important;
  width: auto !important;
  height: auto !important;
}

/* Fond coloré sur le wrapper */
.btn-cart .elementor-icon-wrapper {
  width: 40px !important;
  height: 40px !important;
  border-radius: 8px !important;
  background: #1a2535 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s, transform 0.3s !important;
}

/* Icône centrée et taille fixe */
.btn-cart .elementor-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
}

/* SVG fill blanc (shopping-cart utilise fill et non stroke) */
.btn-cart .elementor-icon svg {
  width: 18px !important;
  height: 18px !important;
  fill: #ffffff !important;
}

/* Hover */
.btn-cart:hover .elementor-icon-wrapper {
  background: #4A7C9B !important;
  transform: scale(1.06) !important;
}


/* ============================================================
   6. FILTRES BOUTIQUE — Onglets Tous / Spas / Saunas / Cuisines
   ============================================================ */

.shop-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.shop-tab {
  padding: 9px 20px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #e0e3e8;
  color: #888888;
  background: transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.shop-tab:hover {
  border-color: #4A7C9B;
  color: #4A7C9B;
  background: rgba(74, 124, 155, 0.06);
}

.shop-tab.active {
  background: #1a2535;
  color: #ffffff;
  border-color: #1a2535;
}

/* Version sur fond sombre */

.shop-tab-dark {
  padding: 9px 20px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.shop-tab-dark:hover {
  border-color: #4A7C9B;
  color: #4A7C9B;
  background: rgba(74, 124, 155, 0.1);
}

.shop-tab-dark.active {
  background: #4A7C9B;
  color: #ffffff;
  border-color: #4A7C9B;
}

.title-accent-dark {
  position: relative;
  display: inline;
  background-image: linear-gradient(transparent 68%, rgba(240, 242, 245, 0.25) 68%);
  padding: 0 4px;
  margin: 0 -4px;
}

/* ============================================================
   ENGAGEMENT CARDS — Icônes larges en bandeau (fond nuit)
   ============================================================ */

/* Fond et picto — ligne 1 (3 cartes centrées) */

.eng-c-card-icon {
  width: 64px !important;
  height: 64px !important;
  border-radius: 14px !important;
  background: #3a4a5a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px !important;
  transition: background 0.4s !important;
}

.eng-c-card-icon .elementor-icon,
.eng-c-card-icon svg {
  width: 26px !important;
  height: 26px !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.eng-c-card:hover .eng-c-card-icon {
  background: #4A7C9B !important;
}

/* Fond et picto — ligne 2 (2 cartes horizontales) */

.eng-c-card2-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 12px !important;
  background: #3a4a5a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: background 0.4s !important;
}

.eng-c-card2-icon .elementor-icon,
.eng-c-card2-icon svg {
  width: 22px !important;
  height: 22px !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.eng-c-card2:hover .eng-c-card2-icon {
  background: #4A7C9B !important;
}

/* ============================================================
   GRILLE ENGAGEMENT — 3 colonnes ligne 1 + 2 colonnes ligne 2
   ============================================================ */

.elementor-element-fa82d70 {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 0 !important;
}

/* Ligne 1 — 3 cartes sur 2 colonnes chacune */
.elementor-element-fa82d70 > .e-child:nth-child(1) {
  grid-column: 1 / 3;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.elementor-element-fa82d70 > .e-child:nth-child(2) {
  grid-column: 3 / 5;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.elementor-element-fa82d70 > .e-child:nth-child(3) {
  grid-column: 5 / 7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Ligne 2 — 2 cartes centrées sur 3 colonnes chacune */
.elementor-element-fa82d70 > .e-child:nth-child(4) {
  grid-column: 1 / 4;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.elementor-element-fa82d70 > .e-child:nth-child(5) {
  grid-column: 4 / 7;
}

/* Tablette */
@media (max-width: 1024px) {
  .elementor-element-fa82d70 {
    grid-template-columns: 1fr !important;
  }

  .elementor-element-fa82d70 > .e-child:nth-child(n) {
    grid-column: 1 !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  }

  .elementor-element-fa82d70 > .e-child:last-child {
    border-bottom: none !important;
  }
}

.eng-c-card-icon2 .elementor-icon-wrapper {
  width: 52px !important;
  height: 52px !important;
  border-radius: 12px !important;
  background: #3a4a5a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: background 0.4s !important;
}

.eng-c-card-icon2 .elementor-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
}

.eng-c-card-icon2 .elementor-icon svg {
  width: 22px !important;
  height: 22px !important;
  fill: #ffffff !important;
}


/* ============================================================
   7. LISTES À TIRETS BLEUS
   ============================================================ */

.liste-tirets ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.liste-tirets ul li {
  list-style: none !important;
  position: relative;
  padding-left: 20px;
}

.liste-tirets ul li::marker {
  content: '' !important;
}

.liste-tirets ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 2px;
  background: #4A7C9B;
  border-radius: 1px;
}


/* ============================================================
   8. PRODUCT CARD — Overlay dégradé sur background (sans effets hover texte)
   ============================================================ */

.product-card {
  position: relative !important;
  overflow: hidden;
  border-radius: 12px;
}

/* Dégradé permanent */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 37, 53, 0.92) 0%,
    rgba(26, 37, 53, 0.05) 55%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: 12px;
}

/* Contenu au-dessus du dégradé */
.product-card > .elementor-widget-wrap > *,
.product-card > * {
  position: relative;
  z-index: 2;
}

/* Titre blanc */
.product-card .elementor-heading-title {
  color: #ffffff !important;
}