:root{
  --bg:#ffffff;
  --fg:#000000;
  --muted:#555;
  --border:#000;
  --accent:#0b8f3a;
  --max:1100px;
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  line-height:1.5;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

a:hover{
  opacity:0.7;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:18px;
}


/* ===== TOPBAR ===== */

.topbar{
  background:#000;
  color:#fff;
  font-size:13px;
  letter-spacing:0.04em;
}

.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:6px 18px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.topbar a{
  color:#fff;
}



/* ===== HEADER ===== */

.header--logo-only{

  display:flex;

  justify-content:center;

  padding:20px 0 10px;

}


.logo img{
  width:100%;
  max-width:320px;   /* plus petit desktop */
  height:auto;
  display:block;
}
@media (max-width:700px){
  .logo img{ max-width:220px; }
}



/* ===== HERO ===== */

.hero{

  width:100%;

  height:320px;

  background-size:cover;

  background-position:center;

  border-top:1px solid var(--border);

  border-bottom:1px solid var(--border);

  margin-bottom:25px;

}



@media (max-width:700px){

.hero{

height:200px;

}

}



/* ===== SECTIONS ===== */

.section-title{

display:flex;

justify-content:space-between;

align-items:center;

margin:20px 0 10px;

}

.section-title h1{

margin:0;

font-size:18px;

letter-spacing:0.06em;

text-transform:uppercase;

}

.small{

font-size:13px;

color:var(--muted);

}



/* ===== GRID MONTRES ===== */

.grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:14px;

}



@media (max-width:1000px){

.grid{

grid-template-columns:repeat(3,1fr);

}

}


@media (max-width:700px){

.grid{

grid-template-columns:repeat(2,1fr);

}

}


@media (max-width:450px){

.grid{

grid-template-columns:1fr;

}

}



/* ===== CARTES MONTRES ===== */

.card{

border:1px solid var(--border);

padding:10px;

display:flex;

flex-direction:column;

gap:10px;

background:#fff;

}



.card .img{

width:100%;

aspect-ratio:3/4;

border:1px solid var(--border);

overflow:hidden;

background:#f5f5f5;

display:flex;

align-items:center;

justify-content:center;

}



.card img{

width:100%;

height:100%;

object-fit:cover;

}



.title{

font-weight:600;

}



.price{

font-weight:700;

}



.badge{

border:1px solid var(--border);

padding:2px 8px;

font-size:12px;

text-transform:uppercase;

}



.badge.sold{

opacity:0.5;

}



/* ===== BOUTONS ===== */

.btn{

border:1px solid var(--border);

padding:10px 14px;

background:#fff;

cursor:pointer;

font-weight:600;

}



.btn.accent{

background:var(--accent);

color:#fff;

border-color:var(--accent);

}

.btn{
  border:1px solid var(--border);
  padding:10px 14px;
  background:#fff;
  cursor:pointer;
  font-weight:600;
  color:#000;              /* ✅ force texte noir */
}

.btn.accent{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

/* ===== FORMULAIRES ===== */

.form{

max-width:600px;

display:grid;

gap:10px;

}



.input,

textarea{

border:1px solid var(--border);

padding:10px;

width:100%;

background:#fff;

}



textarea{

min-height:120px;

}



/* ===== GALERIE PRODUIT ===== */

.gallery{

display:grid;

gap:10px;

}



.main-photo{

border:1px solid var(--border);

aspect-ratio:3/2;

overflow:hidden;

}



.main-photo img{

width:100%;

height:100%;

object-fit:cover;

}



.thumbs{

display:flex;

gap:10px;

overflow:auto;

}



.thumbs button{

border:1px solid var(--border);

padding:0;

width:70px;

height:70px;

cursor:pointer;

background:#fff;

}



.thumbs img{

width:100%;

height:100%;

object-fit:cover;

}



/* ===== FOOTER ===== */

.footer{

width:100%;

margin-top:100px;

background:#000;

color:#fff;

}



.footer-inner{

max-width:var(--max);

margin:0 auto;

padding:60px 18px;

display:grid;

grid-template-columns:1fr 2fr;

gap:60px;

}



.footer-col{

min-width:0;

}



.footer h3{

margin:0 0 20px;

font-size:14px;

letter-spacing:0.1em;

text-transform:uppercase;

}



.footer-links ul{

list-style:none;

padding:0;

margin:0;

display:flex;

flex-direction:column;

gap:12px;

}



.footer-trust{

display:grid;

grid-template-columns:repeat(2,minmax(0,1fr));

gap:30px;

}



.trust-item{

display:flex;

gap:15px;

align-items:flex-start;

}



.trust-icon{

width:36px;

height:36px;

border:1px solid #fff;

display:flex;

align-items:center;

justify-content:center;

flex:0 0 36px;

}



.trust-icon svg{

width:18px;

height:18px;

stroke:#fff;

stroke-width:2;

fill:none;

}



.footer-bottom{

border-top:1px solid #333;

padding:20px;

text-align:center;

font-size:13px;

color:#aaa;

}



/* ===== MOBILE FOOTER ===== */

@media (max-width:900px){

.footer-inner{

grid-template-columns:1fr;

gap:40px;

padding:40px 18px;

}

.footer-trust{

grid-template-columns:1fr;

gap:20px;

}

}
/* ===== HERO SLIDER FULL WIDTH ===== */
.hero-slider{
  position:relative;
  width:100vw;                     /* plein écran */
  height:60vh;                     /* bandeau haut */
  min-height:320px;
  max-height:520px;
  overflow:hidden;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);

  /* pour sortir du container et coller aux bords */
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
}

@media (max-width:700px){
  .hero-slider{
    height:42vh;
    min-height:220px;
  }
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .45s ease;
}

.hero-slide.is-active{
  opacity:1;
}

.hero-nav{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  pointer-events:none;
  padding:0 14px;
}

.hero-btn{
  pointer-events:auto;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.9);
  background:rgba(0,0,0,.25);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.hero-btn:hover{
  background:rgba(0,0,0,.4);
}

.hero-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:14px;
  display:flex;
  gap:8px;
  justify-content:center;
}

.hero-dot{
  width:10px;
  height:10px;
  border:1px solid rgba(255,255,255,.9);
  background:rgba(0,0,0,.25);
  border-radius:999px;
  cursor:pointer;
}

.hero-dot.is-active{
  background:#fff;
}
/* CONTENEUR */
.topbar-actions{
  display:flex;
  gap:8px;
  align-items:center;
}

/* BOUTON WHATSAPP */
.topbar-wa{

  height:34px;                 /* même hauteur que insta */
  padding:0 12px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid #fff;

  font-size:12px;
  text-transform:uppercase;

}

/* BOUTON INSTAGRAM */
.topbar-icon{

  width:34px;
  height:34px;

  border:1px solid #fff;

  display:flex;
  align-items:center;
  justify-content:center;

}

.topbar-icon svg{
  width:16px;
  height:16px;
  stroke:#fff;
  stroke-width:2;
  fill:none;
}

/* HOVER */
.topbar-icon:hover,
.topbar-wa:hover{
  background:#fff;
  color:#000;
}

.topbar-icon:hover svg{
  stroke:#000;
}