/* ============================================================
   PRODHYS – Custom Design Override pour Hummingbird (PrestaShop)
   
   INSTALLATION :
   Back Office → Apparence → Thème & Logo → Avancé
   → Ajouter CSS personnalisé → coller ce fichier
   
   OU : déposer dans hummingbird/assets/css/custom.css
   et l'enregistrer via le hook displayHeader ou theme.yml
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display&display=swap');


/* ============================================================
   2. DESIGN TOKENS
   ============================================================ */
:root {
  --prodhys-blue:        #003DA5;
  --prodhys-blue-mid:    #0055CC;
  --prodhys-blue-light:  #E8F0FF;
  --prodhys-accent:      #FF3A3A;
  --prodhys-gold:        #F5A623;
  --prodhys-dark:        #0A0F1E;
  --prodhys-dark2:       #141B2D;
  --prodhys-gray:        #6B7280;
  --prodhys-light:       #F7F8FC;
  --prodhys-green:       #059669;
  --prodhys-green-light: #ECFDF5;
  --prodhys-radius:      14px;
  --prodhys-radius-sm:   10px;
  --prodhys-shadow:      0 4px 32px rgba(0,61,165,0.10);
  --prodhys-shadow-lg:   0 16px 64px rgba(0,61,165,0.18);
}


/* ============================================================
   3. GLOBAL BASE
   ============================================================ */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--prodhys-light);
  color: var(--prodhys-dark);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--prodhys-blue);
  transition: color 0.2s ease;
}
a:hover { color: var(--prodhys-blue-mid); }

/* Shimmer animation (topbar) */
@keyframes prodhys-shimmer {
  0%, 100% { transform: translateX(-100%); }
  50%       { transform: translateX(100%); }
}

/* Floating card animation */
@keyframes prodhys-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Brand carousel scroll */
@keyframes prodhys-scroll-brands {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   4. TOPBAR / BANNER
   ============================================================ */
.header__banner {
  background: var(--prodhys-blue);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
}
.header__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  animation: prodhys-shimmer 3s infinite;
  pointer-events: none;
}
.header__banner a { color: rgba(255,255,255,0.90); }
.header__banner p { margin: 0; color: #fff; }


/* ============================================================
   5. HEADER
   ============================================================ */
#header {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,61,165,0.10) !important;
}

.header-bottom {
  background: #fff;
}
.header-bottom .navbar-brand .logo {
  height: 44px;
  width: auto;
}

/* Nav links */
.main-menu__tree > li > a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--prodhys-dark);
  padding: 1.5rem 1rem;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}
.main-menu__tree > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 3px;
  background: var(--prodhys-blue);
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
}
.main-menu__tree > li > a:hover,
.main-menu__tree > li > a.active {
  color: var(--prodhys-blue);
}
.main-menu__tree > li > a:hover::after,
.main-menu__tree > li > a.active::after {
  right: 0;
}

/* Header icons (cart, account) */
.header-block__badge {
  background: var(--prodhys-accent) !important;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.header-block:hover .header-block__icon { color: var(--prodhys-blue); }


/* ============================================================
   6. BREADCRUMB
   ============================================================ */
.breadcrumb {
  font-size: 13px;
  padding: 16px 0;
  margin-bottom: 24px;
}
.breadcrumb-item a { color: var(--prodhys-gray); text-decoration: none; transition: color 0.2s; }
.breadcrumb-item a:hover { color: var(--prodhys-blue); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(0,0,0,0.25); }
.breadcrumb-item.active { color: var(--prodhys-dark); font-weight: 600; }


/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--prodhys-radius-sm);
  letter-spacing: 0.02em;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  padding: 13px 26px;
}

.btn-primary {
  background: var(--prodhys-blue) !important;
  border-color: var(--prodhys-blue) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0,61,165,0.30);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--prodhys-blue-mid) !important;
  border-color: var(--prodhys-blue-mid) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,61,165,0.40) !important;
  color: #fff !important;
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary,
.btn-outline-secondary {
  background: transparent !important;
  color: var(--prodhys-dark) !important;
  border: 1.5px solid rgba(0,0,0,0.15) !important;
  box-shadow: none !important;
}
.btn-secondary:hover,
.btn-outline-secondary:hover {
  border-color: var(--prodhys-blue) !important;
  color: var(--prodhys-blue) !important;
  background: var(--prodhys-blue-light) !important;
}

.btn-outline-primary {
  color: var(--prodhys-blue) !important;
  border-color: var(--prodhys-blue) !important;
  background: transparent !important;
}
.btn-outline-primary:hover {
  background: var(--prodhys-blue) !important;
  color: #fff !important;
}


/* ============================================================
   8. FORM INPUTS
   ============================================================ */
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="search"],
input[type="number"],
select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--prodhys-dark);
  border: 1.5px solid rgba(0,0,0,0.12) !important;
  border-radius: var(--prodhys-radius-sm) !important;
  padding: 11px 16px;
  background: #fff;
  transition: border-color 0.2s;
}
.form-control:focus,
.form-select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus {
  border-color: var(--prodhys-blue) !important;
  box-shadow: 0 0 0 3px rgba(0,61,165,0.12) !important;
  outline: none;
}


/* ============================================================
   9. PRODUCT CARDS (miniatures)
   ============================================================ */
.product-miniature .card {
  background: #fff;
  border-radius: var(--prodhys-radius) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow: var(--prodhys-shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-miniature .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--prodhys-shadow-lg) !important;
  filter: none !important;
}
.product-miniature__image-container {
  border-radius: var(--prodhys-radius) var(--prodhys-radius) 0 0 !important;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--prodhys-light);
}
.product-miniature__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease !important;
}
.product-miniature__link:hover .product-miniature__image {
  transform: scale(1.06) !important;
}
.product-miniature .card-body {
  padding: 16px;
}
.product-miniature__title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--prodhys-dark);
  line-height: 1.4;
  margin-bottom: 8px !important;
}
.product-miniature__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px !important;
  color: var(--prodhys-blue) !important;
  font-weight: 400;
  line-height: 1;
}
.product-miniature__regular-price {
  font-size: 12px;
  color: var(--prodhys-gray);
  text-decoration: line-through;
}
.product-flag.discount,
.discount-badge {
  background: var(--prodhys-accent) !important;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(255,58,58,0.35);
}
.product-flag.new  { background: var(--prodhys-blue) !important; color: #fff !important; border-radius: 6px; }
.product-flag.on-sale { background: var(--prodhys-accent) !important; color: #fff !important; border-radius: 6px; }


/* ============================================================
   10. HOMEPAGE HERO SLIDER
   ============================================================ */
#home-slider .carousel-item { background: var(--prodhys-dark); }
#home-slider .carousel-link { position: relative; overflow: hidden; }
#home-slider .carousel-link::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,15,30,0.85) 40%, rgba(0,61,165,0.20) 100%);
  pointer-events: none;
  z-index: 1;
}
#home-slider img { opacity: 0.45; object-fit: cover; }
#home-slider .carousel-caption {
  z-index: 2;
  text-align: left;
  left: 8%; right: 40%;
  bottom: auto; top: 50%;
  transform: translateY(-50%);
}
#home-slider .caption-description h2,
#home-slider .carousel-caption h2 {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: clamp(40px, 6vw, 80px) !important;
  line-height: 1.0;
  letter-spacing: 0.03em;
  color: #fff !important;
  margin-bottom: 16px;
}
#home-slider .carousel-control-prev,
#home-slider .carousel-control-next {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%; bottom: auto;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s;
}
#home-slider .carousel-control-prev:hover,
#home-slider .carousel-control-next:hover { background: rgba(255,255,255,0.30); }
#home-slider .carousel-control-prev { left: 1.5rem; }
#home-slider .carousel-control-next { right: 1.5rem; }


/* ============================================================
   11. BANDEAU MARQUES (Brand Carousel)

   INSTRUCTIONS PRESTASHOP :
   Back Office → Modules → "Bloc texte personnalisé" (ps_customtext)
   → Ajouter un bloc → hook "displayHome" → mode HTML source
   → Coller le bloc HTML ci-dessous.
   ============================================================

   HTML À COLLER DANS LE MODULE :

<section class="prodhys-brands">
  <div class="prodhys-brands__title">NOS MARQUES</div>
  <div class="prodhys-brands__wrap">
    <div class="prodhys-brands__track">
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/Eclador.webp" alt="Eclador" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/Jagprima.png" alt="Jagprima" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/JEDOR.png" alt="Jédor" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/King.webp" alt="King" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/Laboratoires rochex.png" alt="Laboratoires Rochex" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/Prodifa.webp" alt="Prodifa" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/SICO.png" alt="SICO" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/Sodel.png" alt="Sodel" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/4B Distribution.png" alt="4B Distribution" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/Electromann.png" alt="Electromann" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/Ghibli.png" alt="Ghibli" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/Global Hygi&egrave;ne.png" alt="Global Hygiène" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/Gouble Boussemart.jpg" alt="Gouble Boussemart" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/Guialto.png" alt="Guialto" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/H De Paoli.jpg" alt="H De Paoli" /></div>
      <div class="prodhys-brands__item"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/ICA.jpg" alt="ICA" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/Eclador.webp" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/Jagprima.png" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/JEDOR.png" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/King.webp" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/Laboratoires rochex.png" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/Prodifa.webp" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/SICO.png" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/CHIMIE/Sodel.png" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/4B Distribution.png" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/Electromann.png" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/Ghibli.png" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/Global Hygi&egrave;ne.png" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/Gouble Boussemart.jpg" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/Guialto.png" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/H De Paoli.jpg" alt="" /></div>
      <div class="prodhys-brands__item" aria-hidden="true"><img src="/themes/hummingbird/assets/img-dist/Logo partenaires/MATERIEL/ICA.jpg" alt="" /></div>
    </div>
  </div>
</section>

   ============================================================ */
.prodhys-brands {
  background: #fff;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.prodhys-brands__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--prodhys-blue);
  letter-spacing: 0.08em;
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 0 32px;
}
.prodhys-brands__wrap {
  position: relative;
  overflow: hidden;
}
.prodhys-brands__wrap::before,
.prodhys-brands__wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px; z-index: 2;
  pointer-events: none;
}
.prodhys-brands__wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.prodhys-brands__wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }

.prodhys-brands__track {
  display: flex;
  animation: prodhys-scroll-brands 28s linear infinite;
  width: max-content;
}
.prodhys-brands__track:hover { animation-play-state: paused; }

.prodhys-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s;
}
.prodhys-brands__item:hover { filter: grayscale(0%) opacity(1); }
.prodhys-brands__item img {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}


/* ============================================================
   12. RÉASSURANCE (blockreassurance)
   ============================================================ */
.blockreassurance {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 40px 0;
}
.blockreassurance__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--prodhys-radius);
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  box-shadow: var(--prodhys-shadow);
  transition: transform 0.2s;
}
.blockreassurance__item:hover { transform: translateX(4px); }
.blockreassurance__icon {
  width: 48px; height: 48px;
  background: var(--prodhys-blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.blockreassurance__icon img { width: 24px; height: 24px; }
.blockreassurance__icon .material-icons { color: var(--prodhys-blue); font-size: 22px; }
p.blockreassurance__title { font-weight: 700; font-size: 15px; color: var(--prodhys-dark); margin-bottom: 2px; }
p.blockreassurance__description { font-size: 13px; color: var(--prodhys-gray); line-height: 1.5; margin: 0; }


/* ============================================================
   13. NEWSLETTER (email-subscription)
   ============================================================ */
.email-subscription {
  background: linear-gradient(135deg, var(--prodhys-blue) 0%, var(--prodhys-blue-mid) 100%) !important;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}
.email-subscription::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -100px; right: -80px;
  pointer-events: none;
}
.email-subscription__label {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 30px !important;
  letter-spacing: 0.04em;
  color: #fff !important;
  margin-bottom: 8px;
  line-height: 1;
}
.email-subscription__content__infos p {
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.email-subscription__content__inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.email-subscription__content__inputs input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.12) !important;
  border: 1.5px solid rgba(255,255,255,0.30) !important;
  color: #fff !important;
  border-radius: var(--prodhys-radius-sm) !important;
  padding: 13px 18px;
}
.email-subscription__content__inputs input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }
.email-subscription__content__inputs input[type="email"]:focus {
  border-color: rgba(255,255,255,0.80) !important;
  box-shadow: none !important;
}
.email-subscription__content__inputs .btn-primary {
  background: #fff !important;
  color: var(--prodhys-blue) !important;
  border-color: #fff !important;
  box-shadow: none !important;
}
.email-subscription__content__inputs .btn-primary:hover {
  background: rgba(255,255,255,0.90) !important;
  transform: translateY(-2px);
}


/* ============================================================
   14. SECTION TITLES
   ============================================================ */
.section-title,
.featured-products .section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.06em;
  color: var(--prodhys-dark);
  position: relative;
  padding-left: 20px;
  margin-bottom: 32px;
}
.section-title::before,
.featured-products .section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  background: var(--prodhys-blue);
  border-radius: 2px;
}
.all-product-link.btn i { color: var(--prodhys-blue) !important; }


/* ============================================================
   15. CATEGORY / LISTING PAGE
   ============================================================ */
.block-category {
  background: linear-gradient(110deg, var(--prodhys-dark) 0%, var(--prodhys-dark2) 60%, #1a2a5e 100%);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.block-category::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,61,165,0.30) 0%, transparent 70%);
  top: -150px; right: -80px;
  pointer-events: none;
}
.block-category h1,
.block-category #js-category-description h1,
.block-category #category-description { color: #fff !important; position: relative; z-index: 1; }
.block-category h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.04em;
}
.block-category #category-description p { color: rgba(255,255,255,0.65); font-size: 15px; }

/* Products toolbar */
.products-selection {
  background: #fff;
  border-radius: var(--prodhys-radius);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--prodhys-shadow);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.products-selection .total-products p {
  font-size: 13px;
  font-weight: 600;
  background: var(--prodhys-blue-light);
  color: var(--prodhys-blue);
  padding: 6px 14px;
  border-radius: 100px;
  margin: 0;
  display: inline-block;
}
.products-selection .select-title {
  border-radius: var(--prodhys-radius-sm) !important;
  border: 1.5px solid rgba(0,0,0,0.12) !important;
  padding: 10px 16px !important;
  font-size: 14px; font-weight: 500;
}

/* Left column filters */
#search-filters,
.search-filters {
  background: #fff;
  border-radius: var(--prodhys-radius);
  padding: 24px;
  box-shadow: var(--prodhys-shadow);
  border: 1px solid rgba(0,0,0,0.06);
}
.search-filters-title,
#search-filters h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--prodhys-dark);
  margin-bottom: 20px;
}
.search-filters-subtitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--prodhys-gray);
  margin-bottom: 12px;
}
.facet { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.facet:last-child { border-bottom: none; margin-bottom: 0; }
.facet-label {
  font-size: 14px; color: var(--prodhys-dark);
  padding: 5px 0; cursor: pointer; transition: color 0.2s;
}
.facet-label:hover { color: var(--prodhys-blue); }


/* ============================================================
   16. PRODUCT PAGE (fiche produit)
   ============================================================ */
.page-product { background: var(--prodhys-light); }

.page-product .product__name,
.page-product h1.product__name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  color: var(--prodhys-dark);
  margin-bottom: 16px;
}

.page-product .product__current-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px !important;
  color: var(--prodhys-blue) !important;
  line-height: 1;
  font-weight: 400;
}
.page-product .product__price-regular {
  font-size: 14px;
  color: var(--prodhys-gray);
  text-decoration: line-through;
}
.page-product .product__prices {
  background: var(--prodhys-blue-light);
  border-radius: var(--prodhys-radius);
  padding: 20px 24px;
  display: flex; align-items: baseline;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 20px;
}

.page-product .product__images .carousel { border-radius: 20px !important; overflow: hidden; box-shadow: var(--prodhys-shadow); }

.thumbnails__container .thumbnail img {
  border-radius: 12px !important;
  border: 2px solid transparent !important;
  transition: border-color 0.2s;
}
.thumbnails__container .thumbnail.active img { border-color: var(--prodhys-blue) !important; }

/* Accordion tabs */
.page-product .product__infos .accordion-button {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px !important;
  letter-spacing: 0.04em;
  color: var(--prodhys-dark) !important;
  background: #fff;
  padding: 20px 24px !important;
}
.page-product .product__infos .accordion-button:not(.collapsed) {
  color: var(--prodhys-blue) !important;
  background: var(--prodhys-blue-light);
  box-shadow: none;
}
.page-product .product__infos .accordion-item {
  border-radius: var(--prodhys-radius) !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  overflow: hidden;
  margin-bottom: 8px;
  background: #fff;
  box-shadow: var(--prodhys-shadow);
}
.page-product .product__infos .accordion-body {
  padding: 24px !important;
  font-size: 15px; line-height: 1.75; color: #374151;
}

/* Details table */
.product__details,
.product__features {
  background: #fff !important;
  border-radius: var(--prodhys-radius);
  overflow: hidden;
  box-shadow: var(--prodhys-shadow);
}
.detail {
  padding: 14px 20px !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}
.detail:last-child { border-bottom: none !important; }
.detail__left { font-size: 13px; color: var(--prodhys-gray); font-weight: 500; }
.detail__title { font-weight: 600; font-size: 14px; color: var(--prodhys-dark); }


/* ============================================================
   17. CART PAGE (panier)
   ============================================================ */
.page-cart { background: var(--prodhys-light); }

.page-cart .page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.05em;
  color: var(--prodhys-dark);
}

.cart-overview {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--prodhys-shadow);
  overflow: hidden;
}
.cart__item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 24px;
  transition: background 0.2s;
}
.cart__item:hover { background: rgba(232,240,255,0.25); }
.cart__item:last-child { border-bottom: none; }

.cart__item .product-line__image img {
  border-radius: 12px !important;
  width: 90px; height: 90px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.07);
}
.cart__item .product-line__title a {
  font-size: 15px; font-weight: 700; color: var(--prodhys-dark);
}
.cart__item .product-line__title a:hover { color: var(--prodhys-blue); }

.cart__item .product-line__current span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px !important;
  color: var(--prodhys-blue);
  font-weight: 400; line-height: 1;
}
.cart__item .product-line__regular {
  font-size: 12px; color: var(--prodhys-gray); text-decoration: line-through;
}
.cart__item .product-line__actions a {
  font-size: 13px; font-weight: 600; color: var(--prodhys-gray); transition: color 0.2s;
}
.cart__item .product-line__actions a::after { display: none !important; }
.cart__item .product-line__actions a:hover { color: var(--prodhys-accent); opacity: 1; }

/* Quantity input (touchspin) */
.input-group.bootstrap-touchspin {
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--prodhys-radius-sm);
  overflow: hidden;
  background: #fff;
  width: fit-content;
}
.input-group.bootstrap-touchspin input[type="number"] {
  border: none !important;
  border-left: 1px solid rgba(0,0,0,0.10) !important;
  border-right: 1px solid rgba(0,0,0,0.10) !important;
  width: 44px;
  text-align: center;
  font-weight: 700; font-size: 14px;
  padding: 8px 4px;
  background: #fff;
  box-shadow: none !important;
}
.input-group.bootstrap-touchspin .btn-touchspin {
  background: #fff !important;
  border: none !important;
  padding: 8px 12px;
  font-size: 18px;
  color: var(--prodhys-dark);
  transition: background 0.2s, color 0.2s;
  box-shadow: none !important;
}
.input-group.bootstrap-touchspin .btn-touchspin:hover {
  background: var(--prodhys-blue-light) !important;
  color: var(--prodhys-blue) !important;
}

/* Cart summary */
.cart-summary {
  background: #fff !important;
  border-radius: 20px !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  box-shadow: var(--prodhys-shadow-lg) !important;
  padding: 28px !important;
}
.cart-summary .card-header { background: #fff !important; }
.cart-summary h2,
.cart-summary .card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--prodhys-dark);
}
.cart-summary__line,
.cart-summary__total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; font-size: 14px;
}
.cart-summary__line .label,
.cart-summary__total .label { color: var(--prodhys-gray); font-weight: 500; }
.cart-summary__line .value { font-weight: 700; color: var(--prodhys-dark); }

.cart-summary__totals,
.cart-summary__total.total-value {
  background: var(--prodhys-blue-light);
  border-radius: 12px;
  padding: 16px !important;
  margin-top: 8px;
}
.cart-summary__totals .value,
.cart-summary__total.total-value .value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--prodhys-blue);
  line-height: 1; font-weight: 400;
}

.cart-footer { background: #fff !important; }
.cart-detailed-actions .btn-primary,
.cart-footer .btn-primary {
  background: linear-gradient(135deg, var(--prodhys-blue) 0%, var(--prodhys-blue-mid) 100%) !important;
  border-color: transparent !important;
  font-size: 15px;
  padding: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 24px rgba(0,61,165,0.35) !important;
}
.cart-detailed-actions .btn-primary:hover,
.cart-footer .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,61,165,0.45) !important;
}

/* Promo code */
.promo-code {
  background: var(--prodhys-light);
  border-radius: var(--prodhys-radius);
  padding: 20px 24px;
}


/* ============================================================
   18. CHECKOUT
   ============================================================ */
.page-checkout { background: var(--prodhys-light); }
.checkout-step {
  background: #fff;
  border-radius: var(--prodhys-radius);
  border: 1px solid rgba(0,0,0,0.07) !important;
  box-shadow: var(--prodhys-shadow);
  overflow: hidden;
  margin-bottom: 16px;
}
.checkout-step__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.order-checkout .card {
  border-radius: 20px !important;
  box-shadow: var(--prodhys-shadow-lg) !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
}


/* ============================================================
   19. PAGINATION
   ============================================================ */
.pagination { gap: 6px; margin-top: 40px; justify-content: center; }
.pagination .page-item .page-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--prodhys-radius-sm);
  font-size: 14px; font-weight: 600;
  color: var(--prodhys-dark);
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #fff;
  transition: all 0.2s;
  padding: 0;
}
.pagination .page-item .page-link:hover {
  border-color: var(--prodhys-blue);
  color: var(--prodhys-blue);
  background: var(--prodhys-blue-light);
}
.pagination .page-item.active .page-link {
  background: var(--prodhys-blue) !important;
  color: #fff !important;
  border-color: var(--prodhys-blue) !important;
  box-shadow: 0 4px 12px rgba(0,61,165,0.30);
}
.pagination .page-item.disabled .page-link { opacity: 0.40; cursor: not-allowed; }


/* ============================================================
   20. ALERTS & BADGES
   ============================================================ */
.alert { border-radius: var(--prodhys-radius-sm); border: none; font-size: 14px; }
.alert-info    { background: var(--prodhys-blue-light); color: var(--prodhys-blue); }
.alert-success { background: var(--prodhys-green-light); color: var(--prodhys-green); }
.alert-danger  { background: rgba(255,58,58,0.10); color: var(--prodhys-accent); }
.alert-warning { background: rgba(245,166,35,0.12); color: #b37d00; }

.badge { border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; padding: 4px 10px; }
.badge.bg-primary { background: var(--prodhys-blue) !important; }
.badge.bg-danger  { background: var(--prodhys-accent) !important; }
.badge.bg-warning { background: var(--prodhys-gold) !important; color: var(--prodhys-dark) !important; }
.badge.bg-success { background: var(--prodhys-green) !important; }


/* ============================================================
   21. STARS
   ============================================================ */
.star_on, .grade-stars .star.on { color: var(--prodhys-gold) !important; }
.star_off, .grade-stars .star.off { color: rgba(0,0,0,0.18) !important; }


/* ============================================================
   22. SEARCH BAR
   ============================================================ */
.search-widget form { position: relative; }
.search-widget input[type="text"],
.search-widget input[type="search"] {
  padding-right: 44px;
  border-radius: 100px !important;
}
.search-widget button[type="submit"] {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--prodhys-blue);
  cursor: pointer;
  display: flex; align-items: center;
  transition: color 0.2s;
}
.search-widget button[type="submit"]:hover { color: var(--prodhys-blue-mid); }


/* ============================================================
   23. FOOTER
   ============================================================ */
.footer__main { background-color: var(--prodhys-dark) !important; }
.footer__block__title,
.footer__block h2,
.footer__block h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff !important;
  text-transform: uppercase !important;
}
.footer__block__content-list a {
  color: rgba(255,255,255,0.60) !important;
  font-size: 13px; transition: color 0.2s !important;
}
.footer__block__content-list a:hover { color: #fff !important; }
.footer .copyright {
  color: rgba(255,255,255,0.40) !important;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px; margin-top: 16px;
}
.footer .copyright a { color: rgba(255,255,255,0.40) !important; }
.footer .copyright a:hover { color: #fff !important; }


/* ============================================================
   24. CARDS GÉNÉRIQUES
   ============================================================ */
.card {
  border-radius: var(--prodhys-radius) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow: var(--prodhys-shadow);
}


/* ============================================================
   25. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .prodhys-brands__item { padding: 12px 28px; }
  .prodhys-brands__item img { height: 36px; }
  .block-category { padding: 32px 16px; }
  .page-product .product__current-price { font-size: 36px !important; }
  #home-slider .carousel-caption { left: 5%; right: 5%; }
  .cart-summary { padding: 20px !important; }
}
@media (max-width: 576px) {
  .products-selection { padding: 12px 16px; flex-direction: column; align-items: flex-start; }
  .email-subscription { padding: 32px 16px; }
  .prodhys-brands__title { padding: 0 16px; }
}


.header-bottom .navbar-brand .logo {
    height: 84px !important;
    width: auto;
}

