/* ============================================
   ULM74 — Thème PrestaShop 8
   Identité visuelle alignée sur ulm74.netlify.app
   Palette : Navy / Sky / Gold / Offwhite
   Police : Poppins (corps) + Playfair Display (titres)
   ============================================ */

/* ----- Import des polices Google Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ----- Variables de couleurs ----- */
:root {
  --navy: #001F4D;
  --navy-light: #002D6B;
  --navy-dark: #001535;
  --sky: #0099FF;
  --sky-light: #33ADFF;
  --sky-dark: #007ACC;
  --gold: #FFB81C;
  --gold-light: #FFC94D;
  --gold-dark: #E6A000;
  --offwhite: #F8FAFB;
  --white: #FFFFFF;
  --text-dark: #001F4D;
  --text-mid: #334E68;
  --text-light: #627D98;
  --border-light: rgba(0, 31, 77, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 31, 77, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 31, 77, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 31, 77, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
}

/* =============================================
   TYPOGRAPHIES GLOBALES
   ============================================= */
body,
body#checkout {
  font-family: 'Poppins', -apple-system, sans-serif !important;
  color: var(--text-dark);
  background-color: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4 {
  font-family: 'Playfair Display', Georgia, serif !important;
  color: var(--navy);
  font-weight: 700;
}

p, li, td, th, label, span, input, select, textarea, button, a {
  font-family: 'Poppins', sans-serif;
}

/* =============================================
   LIENS ET BOUTONS
   ============================================= */
a {
  color: var(--sky);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sky-dark);
  text-decoration: none;
}

/* Bouton primaire — Doré (CTA principal) */
.btn-primary,
.btn-primary:visited {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 184, 28, 0.35);
}

/* Bouton secondaire — Navy */
.btn-secondary,
.btn-secondary:visited {
  background-color: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--navy-light) !important;
  border-color: var(--navy-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 31, 77, 0.25);
}

/* Bouton outline */
.btn-outline-primary {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

/* =============================================
   HEADER — Style vitrine navy
   ============================================= */
#header {
  background: var(--navy);
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(0, 31, 77, 0.15);
}

#header .header-banner {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

#header .header-banner a {
  color: var(--gold);
}

#header .header-nav {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-height: none;
}

#header .header-nav .right-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#header .header-nav a,
#header .header-nav span,
#header .header-nav .material-icons {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.85rem;
}

#header .header-nav a:hover {
  color: var(--white) !important;
}

/* Zone logo + menu */
#header .header-top {
  background: var(--navy);
  padding: 0.6rem 0;
  border: none;
}

#header .header-top a,
#header .header-top span,
#header .header-top .material-icons {
  color: rgba(255, 255, 255, 0.8);
}

#header .header-top a:hover {
  color: var(--gold);
}

/* Logo */
.header-top .logo img {
  max-height: 55px;
  filter: brightness(0) invert(1);
}

/* Menu principal */
#_desktop_top_menu .top-menu > li > a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  text-transform: none;
  padding: 0.8rem 1.2rem;
  transition: color 0.3s ease;
}

#_desktop_top_menu .top-menu > li > a:hover,
#_desktop_top_menu .top-menu > li > a:focus {
  color: var(--gold) !important;
}

#_desktop_top_menu .top-menu > li > a[data-depth="0"]::after {
  border-top-color: rgba(255, 255, 255, 0.5);
}

/* Sous-menus */
#_desktop_top_menu .popover {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

#_desktop_top_menu .popover a {
  color: var(--text-dark) !important;
}

#_desktop_top_menu .popover a:hover {
  color: var(--sky) !important;
}

/* Barre de recherche */
#header #search_widget input[type="text"] {
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

#header #search_widget input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#header #search_widget input[type="text"]:focus {
  border-color: var(--sky);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.2);
}

#header #search_widget button {
  color: rgba(255, 255, 255, 0.7);
}

/* Icônes panier / compte */
#header .blockcart .header,
#header .user-info a,
#header .user-info .account {
  color: rgba(255, 255, 255, 0.85) !important;
}

#header .blockcart .header:hover,
#header .user-info a:hover {
  color: var(--gold) !important;
}

#header .blockcart .cart-products-count {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Mobile header */
#header .header-nav .mobile {
  background: var(--navy);
}

#header .header-nav .mobile #menu-icon .material-icons {
  color: var(--white) !important;
}

#mobile_top_menu_wrapper {
  background: var(--navy);
}

#mobile_top_menu_wrapper .top-menu a {
  color: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* =============================================
   FIL D'ARIANE
   ============================================= */
.breadcrumb {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  margin: 1rem 0;
  border: 1px solid var(--border-light);
}

.breadcrumb li {
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb a:hover {
  color: var(--sky);
}

.breadcrumb li:last-child span {
  color: var(--navy);
  font-weight: 500;
}

/* =============================================
   PAGE D'ACCUEIL
   ============================================= */

/* =============================================
   HERO SLIDER — Style plein écran vitrine
   ============================================= */
.ulm74-hero-slider {
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  /* Breakout du container Bootstrap pour slider plein écran */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.ulm74-hero-slider .carousel-inner {
  border: none;
}

.ulm74-hero-slider .carousel-item {
  border: none;
}

.ulm74-slide {
  position: relative;
  margin: 0;
  overflow: hidden;
}

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

.ulm74-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 31, 77, 0.85) 0%, rgba(0, 31, 77, 0.3) 50%, rgba(0, 31, 77, 0.15) 100%);
}

.ulm74-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 4rem;
  z-index: 2;
}

.ulm74-slide-caption h2 {
  font-family: 'Playfair Display', serif !important;
  color: var(--white) !important;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  max-width: 600px;
  text-transform: none;
}

.ulm74-slide-desc {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.6;
}

/* Indicateurs slider */
.ulm74-hero-slider .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  margin: 0 6px;
  transition: all 0.3s;
}

.ulm74-hero-slider .carousel-indicators li.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

/* Flèches slider */
.ulm74-hero-slider .carousel-control {
  opacity: 0;
  transition: opacity 0.3s;
  width: 60px;
}

.ulm74-hero-slider:hover .carousel-control {
  opacity: 1;
}

.ulm74-hero-slider .carousel-control .material-icons {
  font-size: 2.5rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Slider / Bannière ancien format (fallback) */
#index .carousel:not(.ulm74-hero-slider),
.carousel:not(.ulm74-hero-slider) {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}

/* Sections de la homepage */
#index #content {
  background: var(--offwhite);
}

/* =============================================
   SECTION PRODUITS — Header avec sous-titre
   ============================================= */
.featured-products {
  padding: 4rem 0;
}

.ulm74-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.featured-products .products-section-title {
  font-family: 'Playfair Display', serif !important;
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: none;
  position: relative;
}

.featured-products .products-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.ulm74-section-subtitle {
  color: var(--text-mid);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.ulm74-all-products {
  text-align: center;
  margin-top: 2rem;
}

.ulm74-all-products .all-product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.7rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ulm74-all-products .all-product-link:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 31, 77, 0.25);
  color: var(--white);
}

.ulm74-all-products .all-product-link .material-icons {
  font-size: 1.2rem;
}

/* Section titles general */
.products-section-title,
h2.products-section-title {
  font-family: 'Playfair Display', serif !important;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: none;
}

/* =============================================
   CARTES PRODUITS — Style visuel et aérien
   ============================================= */
.product-miniature {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-miniature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-miniature .thumbnail-container {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.product-miniature .thumbnail-container img {
  transition: transform 0.5s ease;
}

.product-miniature:hover .thumbnail-container img {
  transform: scale(1.05);
}

.product-miniature .product-description {
  padding: 1.2rem;
}

.product-miniature .product-title a {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  transition: color 0.3s;
}

.product-miniature .product-title a:hover {
  color: var(--sky);
}

.product-miniature .price,
.product-miniature .product-price-and-shipping .price {
  color: var(--sky) !important;
  font-weight: 700;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
}

.product-miniature .regular-price {
  color: var(--text-light) !important;
  font-size: 0.9rem;
}

/* Badge promo / nouveau */
.product-flag {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  min-width: auto;
  min-height: auto;
}

.product-flag.new {
  background: var(--sky);
  color: var(--white);
}

.product-flag.on-sale {
  background: var(--gold);
  color: var(--navy);
}

/* =============================================
   PAGE PRODUIT DÉTAIL
   ============================================= */
#product h1 {
  font-family: 'Playfair Display', serif !important;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

#product .product-prices .current-price span,
#product .product-prices .current-price .current-price-value {
  color: var(--sky);
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

#product .product-prices .regular-price {
  color: var(--text-light);
}

#product .product-prices .discount {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.8rem;
  font-size: 0.85rem;
}

/* Description produit */
#product .product-description {
  font-family: 'Poppins', sans-serif;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Bouton ajouter au panier */
.product-add-to-cart .add-to-cart {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.product-add-to-cart .add-to-cart:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 184, 28, 0.35);
}

/* Quantité */
#product .product-quantity .qty {
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-light);
  font-family: 'Poppins', sans-serif;
}

/* Onglets produit */
#product .nav-tabs {
  border-bottom: 2px solid var(--border-light);
}

#product .nav-tabs .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--text-light);
  border: none;
  padding: 0.8rem 1.5rem;
  transition: color 0.3s;
}

#product .nav-tabs .nav-link.active {
  color: var(--navy);
  border-bottom: 3px solid var(--gold);
  background: transparent;
}

#product .nav-tabs .nav-link:hover {
  color: var(--navy);
}

/* Images produit */
#product .product-cover img {
  border-radius: var(--radius);
}

#product .product-images > li .thumb {
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

#product .product-images > li .thumb.selected,
#product .product-images > li .thumb:hover {
  border-color: var(--sky);
}

/* =============================================
   CATÉGORIES
   ============================================= */
#category #js-product-list-header h1 {
  font-family: 'Playfair Display', serif !important;
  color: var(--navy);
  font-size: 2.2rem;
  text-align: center;
}

#category #js-product-list-header .block-category .category-description {
  color: var(--text-mid);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   PANIER
   ============================================= */
.cart-grid .card {
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.cart-grid .card-block h1 {
  font-size: 1.6rem;
}

.cart-summary-line .value {
  color: var(--sky);
  font-weight: 700;
}

.cart-summary-totals .cart-total .value {
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 700;
}

/* =============================================
   CHECKOUT
   ============================================= */
body#checkout #header {
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}

body#checkout #header .logo img {
  filter: brightness(0) invert(1);
}

body#checkout section.checkout-step {
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

body#checkout section.checkout-step .step-title {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.3rem;
}

body#checkout section.checkout-step .step-number {
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

body#checkout section.checkout-step.-current .step-number {
  background: var(--gold);
  color: var(--navy);
}

body#checkout section.checkout-step.-complete .step-title {
  color: var(--sky);
}

/* =============================================
   FORMULAIRES
   ============================================= */
input.form-control,
select.form-control,
textarea.form-control {
  border-radius: var(--radius-sm);
  border: 2px solid rgba(0, 31, 77, 0.12);
  font-family: 'Poppins', sans-serif;
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
}

input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus {
  border-color: var(--sky) !important;
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.12) !important;
}

label {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
}

/* =============================================
   PAGES CMS
   ============================================= */
#cms .page-content {
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  color: var(--text-mid);
}

#cms .page-content h2,
#cms .page-content h3 {
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* =============================================
   FOOTER — Style vitrine navy
   ============================================= */
#footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 3rem;
  margin-top: 3rem;
}

#footer h4,
#footer .h4 {
  color: var(--gold) !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

#footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--white);
}

#footer .footer-container {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

#footer .footer-container .row {
  padding-bottom: 1rem;
}

/* Copyright */
#footer .footer-container p.text-sm-center a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

/* Links */
#footer .links .collapse {
  color: rgba(255, 255, 255, 0.6);
}

/* Contact info in footer */
#footer .block-contact .data {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

#footer .block-contact .data .icon {
  color: var(--gold);
}

/* Newsletter */
#footer .block_newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

#footer .block_newsletter p {
  color: rgba(255, 255, 255, 0.6);
}

#footer .block_newsletter input[type="email"] {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  color: var(--white);
  padding: 0.6rem 1.2rem;
}

#footer .block_newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#footer .block_newsletter input[type="email"]:focus {
  border-color: var(--sky);
  background: rgba(255, 255, 255, 0.15);
}

#footer .block_newsletter .btn-primary {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
}

/* Réassurance */
#footer .blockreassurance_product,
.blockreassurance {
  background: transparent;
}

/* =============================================
   BLOC REASSURANCE
   ============================================= */
.blockreassurance .block-icon {
  color: var(--gold);
}

.blockreassurance .block-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
}

/* =============================================
   ALERTES & NOTIFICATIONS
   ============================================= */
.alert-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
  border-radius: var(--radius-sm);
}

.alert-danger {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
  border-radius: var(--radius-sm);
}

.alert-warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
  border-radius: var(--radius-sm);
}

.alert-info {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
  border-radius: var(--radius-sm);
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination .page-item .page-link {
  border-radius: var(--radius-sm);
  border: none;
  color: var(--text-mid);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
  background: var(--navy);
  color: var(--white);
}

.pagination .page-item .page-link:hover {
  background: var(--offwhite);
  color: var(--navy);
}

/* =============================================
   CARDS GÉNÉRIQUES
   ============================================= */
.card {
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.card-header {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border-light);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* =============================================
   PAGE CONTACT
   ============================================= */
.contact-form .form-group label {
  font-weight: 500;
  color: var(--navy);
}

/* =============================================
   COMPTE CLIENT
   ============================================= */
#my-account .links a {
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  padding: 1.5rem;
}

#my-account .links a:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

#my-account .links a i {
  color: var(--sky);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  /* Header mobile */
  #header .header-top {
    padding: 0.4rem 0;
  }

  .header-top .logo img {
    max-height: 42px;
  }

  /* Slider hero */
  .ulm74-slide img {
    height: 380px;
  }

  .ulm74-slide-caption {
    padding: 2rem 1.5rem;
  }

  .ulm74-slide-caption h2 {
    font-size: 1.6rem;
  }

  .ulm74-slide-desc {
    font-size: 0.9rem;
  }

  /* Cartes produits */
  .product-miniature {
    border-radius: var(--radius-sm);
  }

  /* Titres */
  h1, .h1 {
    font-size: 1.6rem;
  }

  h2, .h2 {
    font-size: 1.3rem;
  }

  .featured-products .products-section-title {
    font-size: 1.5rem;
  }

  .featured-products {
    padding: 2.5rem 0;
  }

  /* Produit détail */
  #product h1 {
    font-size: 1.5rem;
  }

  #product .product-prices .current-price span,
  #product .product-prices .current-price .current-price-value {
    font-size: 1.6rem;
  }

  /* Footer */
  #footer {
    padding-top: 2rem;
  }

  #footer h4,
  #footer .h4 {
    font-size: 1rem;
  }

  /* Checkout */
  body#checkout section.checkout-step .step-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .product-add-to-cart .add-to-cart {
    width: 100%;
    text-align: center;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* =============================================
   TOPBAR — Bandeau supérieur header
   ============================================= */
.ulm74-topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ulm74-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.ulm74-topbar-link:hover {
  color: var(--white) !important;
}

.ulm74-topbar-link .material-icons {
  font-size: 1rem;
  color: var(--gold) !important;
}

.ulm74-site-link {
  color: var(--gold) !important;
  font-weight: 500;
}

.ulm74-site-link:hover {
  color: var(--gold-light) !important;
}

/* =============================================
   FOOTER CUSTOM — 3 colonnes style vitrine
   ============================================= */
.ulm74-footer-col {
  margin-bottom: 2rem;
}

.ulm74-footer-logo {
  max-height: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.ulm74-footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ulm74-footer-title {
  color: var(--gold) !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ulm74-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ulm74-footer-links li {
  margin-bottom: 0.5rem;
}

.ulm74-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.ulm74-footer-links a:hover {
  color: var(--white);
}

.ulm74-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ulm74-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.ulm74-footer-contact .material-icons {
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 0.1rem;
}

.ulm74-footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.ulm74-footer-contact a:hover {
  color: var(--white);
}

.ulm74-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 1rem;
  align-items: center;
}

.ulm74-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

.ulm74-footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.ulm74-footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.ulm74-footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   INFOS PRATIQUES — Fiche produit
   ============================================= */
.ulm74-practical-info {
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  margin: 1.5rem 0;
}

.ulm74-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.ulm74-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.ulm74-info-item .material-icons {
  font-size: 1.1rem;
  color: var(--sky);
}

/* =============================================
   CARTE PRODUIT — CTA
   ============================================= */
.ulm74-card-cta {
  margin-top: 1rem;
  text-align: center;
}

.ulm74-card-cta .btn {
  width: 100%;
}

/* Masquer le "Quick view" sur les miniatures */
.product-miniature .quick-view {
  display: none !important;
}

/* Description courte dans les cartes */
.product-miniature .product-description-short {
  color: var(--text-light);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ulm74-topbar-info {
    justify-content: center;
    gap: 1rem;
  }

  .ulm74-site-link {
    display: none;
  }

  .ulm74-info-grid {
    grid-template-columns: 1fr;
  }

  .ulm74-footer-legal {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .ulm74-copyright {
    text-align: center;
  }
}

/* Supprimer le footer de page vide */
.page-footer { display: none !important; }

/* Fix bande blanche */
#wrapper { background: #0a2540 !important; margin: 0 !important; padding: 0 !important; }
#content-wrapper { padding: 0 !important; }
section#wrapper { background: #0a2540 !important; }
.page-footer { display: none !important; }
.breadcrumb { display: none !important; }

/* Fix menu mobile visible en bas */
#ulm74-mobile-menu { display: none !important; }
#ulm74-mobile-menu.open { display: flex !important; }
