/* Jacqu'Cheminées — styles complémentaires */

/* Transitions globales */
*, *::before, *::after {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ligne focus sous les inputs */
input:focus, textarea:focus, select:focus {
  outline: none !important;
  background-color: #fff !important;
  border-bottom: 2px solid #9e2016 !important;
}

/* Line-clamp utilitaire */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Scrollbar fine */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f6f3f2; }
::-webkit-scrollbar-thumb { background: #e1bfb9; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9e2016; }

/* Lightbox */
#lightbox { backdrop-filter: blur(4px); }

/* Sticky gallery — hauteur max */
@media (min-width: 1024px) {
  #gallery { max-height: calc(100vh - 8rem); }
}

/* Hover image zoom doux */
.group img { will-change: transform; }

/* Breadcrumb séparateur */
nav .breadcrumb-sep { opacity: 0.4; }

/* Form label floating */
.form-group label {
  display: block;
  margin-bottom: 0.375rem;
}

/* Pagination */
nav[aria-label="Pagination"] a,
nav[aria-label="Pagination"] span {
  font-family: 'Manrope', sans-serif;
}

/* Mobile menu transition */
#mobile-menu {
  transition: max-height 0.3s ease;
}

/* Hero parallax légère */
@media (min-width: 768px) {
  .hero-bg {
    background-attachment: fixed;
  }
}

/* Tooltip labels produit */
.group:hover .group-tooltip {
  display: block;
}

/* Print */
@media print {
  nav, footer, #lightbox, button { display: none !important; }
  body { background: white !important; }
}
