.hero-slider{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-slide.on{ opacity: 1; }
.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots{
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dots span{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: all .25s;
}
.hero-dots span.on{
  background: var(--yellow);
  width: 22px;
  border-radius: 4px;
}

.hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  color: var(--ink);
  z-index: 3;
  transition: background .2s;
}
.hero-arrow:hover{ background: var(--white); }
.hero-arrow.prev{ left: 16px; }
.hero-arrow.next{ right: 16px; }

.img-ph{
  position: relative;
  background: var(--paper);
}
.img-ph::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 47%, var(--mist) 47%, var(--mist) 53%, transparent 53%),
    linear-gradient(45deg, transparent 47%, var(--mist) 47%, var(--mist) 53%, transparent 53%);
  background-size: 26px 26px;
  opacity: .5;
}
.img-ph::after{
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 34px; height: 34px;
  transform: translate(-50%,-50%);
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b98a6' stroke-width='1.8'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.cats-sec{
  padding: 36px 0 8px;
  position: relative;
}
.cats-viewport{
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 6px;
}
.cats-track{
  display: flex;
  gap: 14px;
  transition: transform .6s cubic-bezier(.65,0,.35,1);
  will-change: transform;
}

.cat-card{
  position: relative;
  flex: 0 0 calc(50% - 7px);
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.cat-card img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.cat-card:hover img{ transform: scale(1.06); }

.cats-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 50%;
  color: var(--ink);
  z-index: 3;
  box-shadow: var(--shadow-sm);
  transition: background .2s;
}
.cats-arrow:hover{ background: var(--yellow); border-color: var(--yellow); }
.cats-arrow.prev{ left: 6px; }
.cats-arrow.next{ right: 6px; }

.cat-card::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,22,32,.35) 0%, rgba(11,22,32,.15) 40%, rgba(11,22,32,.45) 100%);
}
.cat-card-label{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 0 16px;
  text-align: center;
}
.cat-card-label span{
  display: block;
  color: var(--white);
  font-family: 'Asimovian', sans-serif;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(11,22,32,.5);
}
.cat-card-label .cat-arrow{
  display: none;
}

.sec-head{
  padding: 44px 20px 22px;
  text-align: center;
}

.nouv-sec{ padding-bottom: 50px; }

.nouv-marquee{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 0;
  max-width: 1100px;
  margin: 0 auto;
}
.nouv-row{
  overflow: hidden;
  width: 100%;
  padding: 0 20px;
}
.nouv-row-track{
  display: flex;
  gap: 16px;
  transition: transform .6s cubic-bezier(.65,0,.35,1);
  will-change: transform;
}
.nouv-row-track .pcard{
  flex: 0 0 220px;
  width: 220px;
}

.pcard{
  position: relative;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.pcard:hover{
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pcard-img{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
}
.pcard-img img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.pcard:hover .pcard-img img{ transform: scale(1.05); }

.pcard-body{ padding: 14px 14px 16px; }
.pcard-brand{
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 4px;
}
.pcard-name{
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pcard-price{
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pcard-price .now{
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}
.pcard-price .old{
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--dim);
  text-decoration: line-through;
}

@media (max-width: 640px){
  .nouv-row-track .pcard{ flex-basis: 160px; width: 160px; }
}

.social-sec{
  padding: 46px 20px;
  text-align: center;
}
.social-links{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.social-links a{
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  transition: background .2s, transform .2s;
}
.social-links a:hover{
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-3px);
}

@media (max-width: 640px){
  .hero-slider{ max-height: 220px; }
  .hero-arrow{ width: 32px; height: 32px; }
  .cat-card-label span{ font-size: 20px; }
  .section-title{ font-size: 22px; }
}