body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #111;
}
header {
  background: #000;
  padding: 80px 40px;
  text-align: center;
  background-image: url(/20ans/images/firstfloor.webp);
  background-size: cover;
  background-position: center center;
}
header img {
  height: 150px;
  max-width: 80vw;
}
header .logo-link {
  display: inline-block;
}
header .top-links {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
header .top-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}
header .top-links a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.hero {
  background: linear-gradient(135deg, #000, #333);
  color: white;
  text-align: center;
  padding: 8px 20px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin: 18px 0 10px;
}
.hero h2 {
  font-size: 1.5rem;
  margin: 0 0 10px;
}
.hero p {
  opacity: 0.8;
  margin: 0;
}
.selection {
  text-align: center;
  margin: 40px auto 24px;
  padding: 0 20px;
  max-width: 900px;
}
.selection h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}
.selection p {
  margin: 0;
  color: #666;
}
.listing-tools {
  max-width: 1280px;
  margin: 0 auto 10px;
  padding: 0 40px 10px;
}
.search-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(210px, 280px) minmax(190px, 240px);
  gap: 14px;
  align-items: end;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}
.search-box,
.select-box {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.search-box span,
.select-box span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #777;
}
.search-box input,
.select-box input,
.search-box select,
.select-box select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.search-box input:focus,
.select-box input:focus,
.search-box select:focus,
.select-box select:focus {
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
.category-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.category-filters button {
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.category-filters button small {
  color: #888;
  margin-left: 4px;
  font-weight: 600;
}
.category-filters button:hover,
.category-filters button.active {
  background: #111;
  border-color: #111;
  color: #fff;
}
.category-filters button:hover small,
.category-filters button.active small {
  color: rgba(255, 255, 255, 0.72);
}
.listing-status {
  margin-top: 14px;
  color: #666;
  font-size: 14px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  padding: 30px 40px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.product {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding-bottom: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.product:hover .image img {
  transform: scale(1.08);
}
.product .ref {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 11px;
  color: #999;
  z-index: 2;
  background: rgba(255, 255, 255, 0.86);
  padding: 3px 6px;
  border-radius: 999px;
}
.product .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e60023;
  color: white;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 2;
}
.product .image {
  height: 220px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product .image a {
  display: block;
  width: 100%;
  height: 100%;
}
.product .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.product .content {
  padding: 15px 15px 18px;
}
.product .content .brand {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e60023;
  margin-bottom: 7px;
}
.product .content h3 {
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 8px;
}
.product .content .category-name {
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}
.product .content .price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.product .content .price .old {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9rem;
}
.product .content .price .new {
  font-weight: 800;
  font-size: 1.2rem;
  color: #e60023;
}
.product .image {
  position: relative;
  overflow: hidden;
  background: #eeeeee;
}
.product .image img {
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.product:hover .image.image-loaded img {
  transform: scale(1.08);
}
.product .image.image-loaded img {
  opacity: 1;
}
.product .image.image-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #eeeeee 0%, #f8f8f8 45%, #eeeeee 100%);
  background-size: 220% 100%;
  animation: imageSkeletonLoading 1.15s ease-in-out infinite;
}
.product .image.image-loading::after {
  content: "Chargement";
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #111;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@keyframes imageSkeletonLoading {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .product .image.image-loading::before {
    animation: none;
  }
}
.load-more-wrap {
  text-align: center;
  padding: 0 20px 45px;
}
.load-more {
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.load-more:hover {
  transform: translateY(-2px);
  background: #e60023;
}
.noscript-message {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}
.fancybox__caption {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.8rem;
  color: #777;
}
.hero {
  position: relative;
  overflow: hidden;
}
.soldes-ticker {
  width: 920px;
  margin: 22px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}
.soldes-ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 11px 0;
  animation: soldesTicker 22s linear infinite;
}
.soldes-ticker span {
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
}
.soldes-ticker span::before {
  content: "✦";
  margin-right: 34px;
  opacity: 0.45;
}
@keyframes soldesTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
header {
  position: relative;
  overflow: hidden;
}
.logo-link,
.top-links {
  position: relative;
  z-index: 3;
}
/* Ruban soldes permanent dans le header */
.soldes-sweep {
  position: absolute;
  left: -18%;
  right: -18%;
  top: 16%;
  height: 46px;
  overflow: hidden;
  transform: translateY(-50%) rotate(-6deg);
  pointer-events: none;
  z-index: 2;
  opacity: 1;
}
.soldes-sweep2 {
  top: 30%;
  transform: translateY(-50%) rotate(7deg);
  opacity: 0.8;
}
.soldes-sweep2 .soldes-sweep-track {
  animation: soldesSweepMoveReverse 18s linear infinite;
}
.soldes-sweep3 {
  top: 55%;
  transform: translateY(-50%) rotate(-3deg);
  opacity: 0.6;
}
.soldes-sweep::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}
.soldes-sweep-track {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  gap: 30px;
  align-items: center;
  height: 46px;
  padding: 0 30px;
  animation: soldesSweepMove 18s linear infinite;
}
.soldes-sweep span {
  white-space: nowrap;
  color: #111;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.soldes-sweep span::after {
  content: "·";
  margin-left: 30px;
  opacity: 0.35;
}
@keyframes soldesSweepMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes soldesSweepMoveReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .soldes-sweep-track {
    height: 38px;
    gap: 24px;
    padding: 0 24px;
    animation-duration: 14s;
  }
  .soldes-sweep span {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }
  .soldes-sweep span::after {
    margin-left: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .soldes-sweep-track {
    animation: none;
  }
}
@media (max-width: 768px) {
  .soldes-sweep {
    bottom: 10px;
    height: 36px;
  }
  .soldes-sweep-track {
    height: 36px;
  }
  .soldes-sweep span {
    font-size: 0.66rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .soldes-ticker-track,
  .soldes-sweep,
  .soldes-sweep-track {
    animation: none;
  }
  .soldes-sweep {
    display: none;
  }
}
@media (max-width: 900px) {
  header {
    padding: 55px 24px;
  }
  header img {
    height: 110px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .listing-tools {
    padding: 0 20px 10px;
  }
  .search-row {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    padding: 24px 20px 34px;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  header {
    padding: 42px 18px;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .hero h2 {
    font-size: 1.2rem;
  }
  .category-filters {
    overflow: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
  }
  .category-filters button {
    white-space: nowrap;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=stylesV2.css.map */