/* RESET */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box;
}

html, body { 
  height: 100%; 
}

body { 
  font-family: Arial, sans-serif; 
  overflow-x: hidden;
  /* CRITICAL: Prevent browser back/forward swipe gestures */
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
}

/* Prevent unwanted horizontal scrolling and browser navigation */
html {
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
}

/* 🔥 FIX: Restore proper swipe behavior for sliders */
.hero-slider,
.hero-slider *,
.product-showcase,
.product-showcase *,
.categories-slider,
.categories-slider *,
.slick-slider,
.slick-slider * {
  touch-action: pan-x pan-y !important;
}

/* 🔥 Prevent clicks during drag */
.dragging-prevent-click a,
.dragging-prevent-click button {
  pointer-events: none !important;
}

/* ===== HEADER ===== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 3000;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
}
.logo { position: relative; z-index: 2000; }
.logo a { display: inline-block; text-decoration: none; }
.logo img { height: 100px; width: auto; display: block; cursor: pointer; }

/* ===== NAVIGATION (desktop) ===== */
.top-nav ul { list-style: none; display: flex; gap: 30px; }
.top-nav a {
  text-decoration: none; color: black; font-size: 16px; font-weight: 500; transition: opacity 0.3s;
}
.top-nav a:hover { opacity: 0.6; }

/* Desktop: never show the mobile submenu */
@media (min-width: 769px) {
  .top-nav .submenu { display: none !important; }
}

/* ===== HERO (home only) ===== */
.hero {
  min-height: 100svh; height: 100vh; width: 100%;
  background-size: cover;
  background-position: center 46%; /* nudge up = more space at bottom on desktop */
  background-repeat: no-repeat;
}

/* Images spécifiques pour chaque slide */
.hero:nth-child(1) {
  background-image: url("images/collier-print.jpg");
}

.hero:nth-child(2) {
  background-image: url("images/123.jpg");
}

.hero:nth-child(3) {
  background-image: url("images/1234.jpg");
}

.hero:nth-child(4) {
  background-image: url("images/12345.jpg");
}

.hero:nth-child(5) {
  background-image: url("images/123456.jpg");
}

/* Split layout for 5th slide - PC only */
@media (min-width: 769px) {
  .hero--split {
    display: flex;
    flex-direction: row;
    background-image: none !important;
    background-color: #fff;
  }
  
  .hero--split .hero-split-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
  .hero--split .hero-split-image img {
    max-width: 140%;
    max-height: 140%;
    object-fit: contain;
  }
  
  /* Slides 3 and 4: add left margin */
  .hero:nth-child(3) .hero-split-image,
  .hero:nth-child(4) .hero-split-image {
    margin-left: 60px;
  }
  
  .hero--split .hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}

/* Mobile: hide the split image, use background as normal */
@media (max-width: 768px) {
  .hero--split .hero-split-image {
    display: none;
  }
}

/* 🔥 CRITICAL: Prevent links from interfering with touch swipe */
.hero-slider {
  position: relative;
}

.hero-slider .hero-btn {
  position: relative;
  pointer-events: auto;
  touch-action: manipulation;
}

/* Prevent text selection during drag on mobile */
.hero-slider,
.hero-slider * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Allow text selection on buttons when not dragging */
.hero-btn {
  -webkit-user-select: none;
  user-select: none;
}

/* ===== MOBILE MENU BUTTON ===== */
.menu-toggle { display: none; background: none; border: 0; padding: 12px; cursor: pointer; position: relative; z-index: 3500; }
.menu-toggle .line { display: block; height: 2px; width: 28px; background: black; transition: transform 250ms ease, opacity 200ms ease; }
.menu-toggle .line + .line { margin-top: 7px; }
.menu-toggle.active .line:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle.active .line:last-child  { transform: translateY(-4.5px) rotate(-45deg); }

/* ===== MOBILE (≤768px): right slide-in panel (65%) ===== */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .site-header { padding: 0 16px; }

  /* Off-canvas drawer */
  .top-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 60vw;
    max-width: 420px;
    background: #fff;
    box-shadow: -16px 0 40px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 260ms ease;
    z-index: 3400;
    padding: 120px 24px 32px;
    overflow-y: auto;
    visibility: visible;
    text-align: right;
  }
  .top-nav.open { transform: translateX(0); }

  .top-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    list-style: none;
    align-items: flex-end;
  }
  .top-nav a {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #111;
    text-decoration: none;
  }

  /* Mobile submenu under "Petite Séries" */
  .top-nav li.has-submenu { width: 100%; }
  .top-nav .submenu-toggle { display: inline-block; }
  .top-nav .submenu {
    list-style: none;
    padding: 6px 0 0 0;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 260ms ease;
    text-align: right;
  }
  .top-nav .submenu li a {
    display: inline-block;
    padding: 6px 0;
    font-size: 18px;
    color: #333;
    opacity: 0.95;
  }
  .top-nav .submenu li a:hover { opacity: 0.7; }

  /* Backdrop */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: transparent; /* no dim/shadow behind the menu */
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
    z-index: 2500; /* keep backdrop index at 2500 */
  }
  .nav-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  /* Prevent page scroll when menu is open */
  body.no-scroll { overflow: hidden; }

  /* === PHONE HERO: show entire image, full width, bottom gap === */
  .hero {
    background-size: contain;          /* no cropping */
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #fff;

    width: 100%;
    height: auto;                      /* stop forcing 100vh */
    min-height: 0;                     /* cancel desktop min-height */

    margin: 0 0 40px 0;                /* more space below (per your note) */
  }
}

/* ===== ABOUT ===== */
.page.about {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
  padding-top: 120px; /* pousse sous le header absolu */
}

.about-name {
  text-align: center;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: #333;
  letter-spacing: 0.03em;
  margin: 0 0 3.5rem;
}

/* grille : images à gauche, texte à droite */
.about-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
  grid-template-columns: 1fr; /* mobile */
  align-items: start;
}

@media (min-width: 820px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: start;
  }
}

/* --- bloc images : 2 en haut égales + 1 large dessous --- */
.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 2vw, 1rem);
  align-items: stretch;
}

/* mêmes largeur & hauteur pour les 2 premières */
.about-images img:nth-child(1),
.about-images img:nth-child(2) {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

/* la 3e s'étend sur toute la largeur */
.about-images img.wide,
.about-images img:nth-child(3) {
  grid-column: 1 / -1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* images — boxy corners now */
.about-images img {
  display: block;
  border-radius: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* texte sous les images (2e partie) */
.about-under-images {
  grid-column: 1 / -1; /* <-- FIX: make the text span full width */
}

.about-under-images p {
  margin-top: 0.5rem;
  line-height: 1.7;
  font-size: clamp(1rem, 1.1vw + 0.9rem, 1.125rem);
  color: #222;
  width: 100%;
  text-align: justify; /* optional */
}

/* colonne texte + image en dessous */
.about-text p {
  line-height: 1.7;
  font-size: clamp(1rem, 1.1vw + 0.9rem, 1.125rem);
  color: #222;
  margin-bottom: 1rem;
}

.about-text-image {
  width: 100%;
  display: block;
  border-radius: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* fallback: si un header sans .site-header existait */
header:not(.site-header) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 3000;
}

header:not(.site-header)::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 768px) {
  header:not(.site-header) {
    padding: 0 16px;
  }
}

/* -------- mobile fixes -------- */
@media (max-width: 819.98px) {
  /* move the 3 red-box images before the 1st image */
  .about-images { order: 1; }
  .about-under-images { order: 2; }
  .about-text { order: 3; }

  .about-text p,
  .about-under-images p {
    margin-bottom: 1rem;
  }

  .about-under-images {
    grid-column: 1 / -1;
  }
}


/* ================================
   CONTACT PAGE (scoped + safe)
   Only affects: <main class="page contact">…</main>
================================= */

/* wrapper spacing (keeps clear of absolute header) */
.page.contact {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
  padding-top: 120px;        /* same header offset as About */
}

/* Title (styled like “Amira Sliman”) */
.page.contact .big-title {
  text-align: center;
  font-weight: 800;
  font-size: clamp(32px, 3.2vw, 48px);
  color: #333;
  letter-spacing: 0.02em;
}

/* Intro under title */
.page.contact .contact-intro {
  max-width: 75ch;
  margin: 1rem auto 2.25rem;
  text-align: center;
  color: #333;
  line-height: 1.7;
}

/* Hero image */
.page.contact .contact-hero {
  border-radius: 0;             /* sharp corners */
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  margin-bottom: 2rem;
}
.page.contact .contact-hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* Info cards grid */
.page.contact .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 18px);
  margin-bottom: 2.25rem;
}
@media (max-width: 980px) {
  .page.contact .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .page.contact .contact-grid { grid-template-columns: 1fr; }
}

/* “Swedish” boxed cards — white -> black on hover */
.page.contact .contact-box {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 0;             /* sharp corners */
  padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  color: #111;
  transition: background .22s ease, color .22s ease,
              border-color .22s ease, transform .18s ease;
}
.page.contact .contact-box:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-2px);
}
.page.contact .contact-box h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  color: inherit;
}
.page.contact .contact-box p,
.page.contact .contact-box a {
  font-size: 16px;
  line-height: 1.55;
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}

/* Contact form (boxed, same style) */
.page.contact .contact-form {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 0;             /* sharp corners */
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
  padding: 24px;
}

.page.contact .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .page.contact .form-row { grid-template-columns: 1fr; }
}

.page.contact .contact-form input,
.page.contact .contact-form textarea {
  width: 100%;
  border: 1px solid #e3e3e3;
  border-radius: 0;             /* sharp corners */
  padding: 16px 18px;
  font-size: 16px;
  background: #fff;
  color: #111;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.page.contact .contact-form textarea {
  resize: vertical;
  min-height: 170px;
}
.page.contact .contact-form input:focus,
.page.contact .contact-form textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.07);
}

/* Submit button: white ↔ black on hover */
.page.contact .btn-submit {
  display: block;
  margin: 22px auto 6px;
  padding: 14px 34px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  border-radius: 0;             /* sharp corners */
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .16s ease;
}
.page.contact .btn-submit:hover {
  background: #fff;
  color: #111;
  transform: translateY(-1px);
}

/* ===== FULL-WIDTH PROMO SECTION (updated) ===== */
.fullwidth-promo {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background-image: url("images/312.jpg");
  background-size: cover;
  background-position: center right; /* focus more on right side by default */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* push text to right side */
  color: #fff;
  margin-top: 0;  /* remove any space between hero and promo */
  padding-top: 0;
}

/* content block over image */
.fullwidth-promo .promo-content {
  max-width: 480px;
  padding: 60px 80px;
  text-align: left;
  z-index: 2;
}

.fullwidth-promo .promo-title {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.fullwidth-promo .promo-text {
  font-size: clamp(16px, 1.2vw + 0.5rem, 20px);
  line-height: 1.6;
  margin-bottom: 24px;
  color: #f1f1f1;
}

/* square button */
.fullwidth-promo .btn-boxy {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border: none;
  border-radius: 0; /* sharp corners */
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.fullwidth-promo .btn-boxy:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* dark overlay for contrast */
.fullwidth-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

/* --- mobile adjustments --- */
@media (max-width: 820px) {
  .fullwidth-promo {
    justify-content: center;
    text-align: center;
    background-position: left center; /* shift focus to left side of image */
    background-size: cover;
  }
  .fullwidth-promo .promo-content {
    padding: 40px 20px;
  }
}

/* remove spacing between hero and promo */
.hero { margin-bottom: 0; }
.fullwidth-promo { margin-top: 0; }

/* === Tweakable vars === */
.fullwidth-promo {
  --promo-focus-x: 50%;
  background-position: var(--promo-focus-x) center;
}
.fullwidth-promo .promo-content {
  --content-nudge: 8vw;
  margin-right: var(--content-nudge);
}
@media (max-width: 820px) {
  .fullwidth-promo { --promo-focus-x: 40%; }
  .fullwidth-promo .promo-content {
    --content-nudge: 0;
    margin: 0 auto;
    text-align: center;
  }
}

/* ===============================
   HERO SECTION — centered text & button
   =============================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  background-image: url("images/collier-print.jpg");
  background-size: cover;
  background-position: center 46%;   /* keep the same nudge here */
  background-repeat: no-repeat;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- content block over image --- */
.hero-content { text-align: center; color: #fff; z-index: 1; }
.hero-title {
  font-size: clamp(18px, 1.8vw, 30px);  /* smaller and softer scaling */
  font-weight: 200;
  margin-bottom: 20px;
  color: #000;
  letter-spacing: 0.04em;
}



.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #000;          /* black background */
  color: #fff;               /* white text */
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #000;    /* black border */
  border-radius: 0;
  transition: background .25s ease, color .25s ease, transform .15s ease;
}

.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border-radius: 0;
  transition: background .25s ease, color .25s ease;
  transform: none;  /* keep base state stable */
}

.hero-btn:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}


 .hero { background-size: contain; background-color: #fff; background-position: center center; }


/* --- mobile: shift content lower, ~2/3 down --- */
@media (max-width: 820px) {
  .hero { align-items: flex-end; }
  .hero-content { padding-bottom: 25%; }
  .hero-title { font-size: clamp(24px, 6vw, 40px); }
}
/* Phone-only: drop the button lower + make it black with white text */
@media (max-width: 768px) {
  .hero { position: relative; }

  /* Make hero-slider a positioning context */
  .hero-slider {
    position: relative;
  }

  /* HIDE buttons inside carousel on mobile */
  .hero-content .hero-btn {
    display: none !important;
  }

  /* SHOW the button - ABSOLUTE to hero-slider (not fixed to viewport) */
  .hero-btn-fixed {
    display: inline-block;
    position: absolute !important;  /* changed from fixed to absolute */
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(10vh + 35px);  /* 10px higher */
    z-index: 100;

    padding: 14px 34px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    font-weight: 700;
    font-size: 12px;  /* even smaller to prevent wrap */
    text-decoration: none;
    border-radius: 0;
    transition: background .25s ease, color .25s ease;
    white-space: nowrap;  /* prevent text wrapping */
  }

  .hero-btn-fixed:hover {
    background: #fff;
    color: #000;
    border-color: #000;
  }
}

/* Hide fixed button on desktop (only show carousel buttons) */
@media (min-width: 769px) {
  .hero-btn-fixed {
    display: none !important;
  }
}

/* PHONE: title near top, button near bottom (image between them) */
@media (max-width: 768px) {
  .hero { position: relative; }

  /* make sure the wrapper doesn't reposition things */
  .hero-content {
    position: static !important;
    padding: 0 !important;
  }

  /* Title = centered near top */
  .hero-title {
    position: absolute;
    top: 22vh;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    text-align: center;
    z-index: 2;
    font-weight: 200 !important;
    font-size: clamp(23px, 3.6vw, 46px) !important;
    line-height: 1.2;
  }

  /* Make first slide title smaller */
  .hero:nth-child(1) .hero-title {
    font-size: clamp(22px, 3vw, 38px) !important;
  }
}

/* === Categories (Slick) === */
.home-categories { padding: clamp(2rem,4vw,4rem) 0; position: relative; }
.cat-wrap { width: min(1200px,92vw); margin-inline: auto; position: relative; }
.home-categories__title { text-align:center; font-size: clamp(2rem,4vw,3rem); margin: 0 0 2rem; }

/* cards (boxy, no underline on labels) */
.categories-slider { margin-top: 1.5rem; }
.slick-slide { padding: 0 0.2rem; }
.slick-list  { margin: 0 -1rem; }

.cat-card { display:block; text-decoration:none; color:inherit; outline:none; text-align:center; margin: 0 -20px; }
.cat-card:link,
.cat-card:visited,
.cat-card:hover,
.cat-card:focus { text-decoration: none; }  /* ✅ never underline */

.cat-card__figure {
  margin: 0 auto; max-width: 256px; aspect-ratio: 4/5;
  overflow: hidden; background:#fff; border-radius:0; /* boxy */
}
.cat-card img { width:100%; height:100%; object-fit:cover; transform:scale(1.02); transition:transform .35s ease; }
.cat-card:hover img, .cat-card:focus-visible img { transform:scale(1.06); }

/* smaller + lighter labels */
.cat-card__title { margin:.7rem 0 0; font-size:1rem; font-weight:400; color:#444; }

/* custom arrows:  <••   and   ••>  */
.cat-wrap { 
  width: min(1200px,92vw); 
  margin-inline: auto; 
  position: relative; 
  overflow: visible; 
}

/* custom arrows:  <••   and   ••>  */
.slick-prev-custom,
.slick-next-custom {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
  background: transparent;
  border: none;
  padding: 40px 40px;  /* larger clickable area */
  cursor: pointer;
  z-index: 5000;
  line-height: 1;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;  /* minimum touch target size */
  min-height: 44px;
}

.slick-prev-custom span,
.slick-next-custom span {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #9a9a9a;
  letter-spacing: .05em;
  user-select: none;
  pointer-events: none;  /* prevent span from blocking clicks */
  display: inline-block;
}

/* Slick nav arrow images */
.slick-nav-icon {
  height: 14px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.slick-prev-custom:hover .slick-nav-icon,
.slick-next-custom:hover .slick-nav-icon {
  opacity: 1;
}

/* Mobile: slightly smaller icons */
@media (max-width: 768px) {
  .slick-nav-icon {
    height: 12px;
  }
}

.slick-prev-custom:hover,
.slick-prev-custom:focus {
  outline: none;
}

.slick-next-custom:hover,
.slick-next-custom:focus {
  outline: none;
}

.slick-prev-custom:hover span,
.slick-next-custom:hover span,
.slick-prev-custom:focus-visible span,
.slick-next-custom:focus-visible span { 
  color: #333; 
}

/* farther from the cards */
.slick-prev-custom { 
  left: -46px; 
}

.slick-next-custom { 
  right: -46px; 
}

@media (max-width: 768px) {
  /* position arrows on phones */
  .slick-prev-custom { 
    left: 5px; 
    padding: 10px 6px;
  }
  .slick-next-custom { 
    right: 5px; 
    padding: 10px 6px;
  }
  .slick-prev-custom span,
  .slick-next-custom span { 
    font-size: 24px; 
  }
  
  /* Add space so arrows don't touch product cards */
  .categories-slider {
    padding: 0 50px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 10px 24px;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background:#0f0f0f;
  color:#f2f2f2;
  font-size:0.95rem;
  line-height:1.6;
  margin-top:4rem;
}
.site-footer__inner{
  max-width:1200px;
  margin:0 auto;
  padding:2.5rem 1.25rem;
  display:grid;
  grid-template-columns:1fr minmax(420px,520px) 1fr;
  align-items:center;
  gap:2rem;
}

/* Left column */
.site-footer__address{font-style:normal}
.site-footer__hours{color:#bdbdbd}
.site-footer__legal a{text-decoration:none}
.site-footer__legal a:hover{text-decoration:underline}

/* Center column */
.site-footer__center{text-align:center}
.site-footer__title{
  text-transform:uppercase;
  font-size:1rem;
  letter-spacing:.05em;
  margin-bottom:.9rem;
}
.newsletter-form{
  display:flex;
  justify-content:center;
  gap:.6rem;
  margin-bottom:.6rem;
}
.newsletter-form input{
  flex:1;
  max-width:360px;
  padding:.9rem 1rem;
  background:transparent;
  border:1px solid #262626;
  color:#f2f2f2;
}
.newsletter-form input::placeholder{color:#aaa}
.newsletter-form button{
  padding:0 1.1rem;
  border:none;
  background:#1d1d1d;
  color:#fff;
  font-weight:700;
  letter-spacing:.08em;
  cursor:pointer;
  transition:background .2s;
}
.site-footer form.newsletter-form button:hover,
.site-footer form.newsletter-form button:focus-visible {
  background: #fff;
  color: #000;
}
.newsletter-success{
  color:#bdbdbd;
  font-size:.9rem;
  margin-bottom:1.2rem;
}

/* Social icons */
.footer-socials{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.6rem;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  color:#f2f2f2;
  text-decoration:none;
  font-weight:600;
}
.social-link:hover{opacity:0.85;}
.social-icon{
  width:22px;
  height:22px;
  fill:currentColor;
}

/* Right column */
.site-footer__right{text-align:right}
.site-footer__logo{width:220px;max-width:100%;height:auto}

/* Bottom bar */
.site-footer__bar{
  border-top:1px solid #262626;
  padding:1rem 1.25rem;
  text-align:center;
  color:#9a9a9a;
}

/* Responsive */
@media (max-width:899.98px){
  .site-footer__inner{
    grid-template-columns:1fr;
    text-align:center;
    gap:2rem;
  }
  .site-footer__right{text-align:center;}
  .site-footer__logo{width:180px;margin:0 auto;}
}
/* ----- Force la couleur des liens dans le footer (évite le bleu) ----- */
.site-footer a,
.site-footer a:link,
.site-footer a:visited,
.site-footer a:active,
.site-footer a:focus {
  color: #f2f2f2 !important;
  text-decoration: none !important;
}

/* Option : si tu veux souligner seulement au survol des liens d'info (pas les CTA sociaux) */
.site-footer__legal a:hover,
.site-footer__contact a:hover {
  text-decoration: underline;
}

/* Les CTA sociaux restent sans soulignement même au survol */
.footer-socials .social-link:hover {
  opacity: 0.85;
  text-decoration: none;
}

/* Icônes réseaux (nouveaux SVG) */
.social-icon { width: 22px; height: 22px; fill: currentColor; display: inline-block; }
.footer-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
}

/* (déjà en place) responsive : logo centré sur mobile */
@media (max-width: 899.98px){
  .site-footer__inner{ grid-template-columns:1fr; text-align:center; }
  .site-footer__right{ text-align:center; }
  .site-footer__logo{ width:180px; margin:0 auto; }
}
/* Container */
.hero-slider {
  position: relative;
  overflow: hidden;
}

/* Row of slides */
.hero-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 400ms ease;
}

/* Each slide takes full viewport width */
.hero {
  flex: 0 0 100%;
  width: 100%;
  /* keep your existing hero background/height styles */
}

/* Nav buttons (basic; tweak to match your design) */
.hero-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 10;
  border: none;
  background: transparent;
  color: #888; /* light gray arrows */
  font-size: 1.8rem;
  line-height: 1;
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hero-nav:hover {
  color: #000; /* turn black on hover */
}

.hero-nav:focus-visible {
  outline: none; /* no focus outline */
}

/* Hero nav arrow images */
.hero-nav-icon {
  height: 14px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.hero-nav:hover .hero-nav-icon {
  opacity: 1;
}

/* Mobile: slightly smaller icons */
@media (max-width: 768px) {
  .hero-nav-icon {
    height: 12px;
  }
}

.hero-nav.prev {
  left: 4rem;
}

.hero-nav.next {
  right: 4rem;
}

/* Phone version: move to edges */
@media (max-width: 768px) {
  .hero-nav.prev {
    left: 1rem;
  }
  
  .hero-nav.next {
    right: 1rem;
  }
}
/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-track { transition: none; }
}

/* Optional: lock height to your current hero height if layout jumps on resize */
.hero-slider, .hero {
  /* example: */
  /* min-height: 70svh; */
}

/* ===============================
   PRODUCT SHOWCASE SECTION
   =============================== */
.product-showcase {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: #fafafa;
}

.showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* Left: Model Image */
.showcase-model {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.showcase-model img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Right: Product Slider */
.showcase-products {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.product-slider-track {
  display: flex;
  transition: transform 400ms ease;
  will-change: transform;
}

.product-slide {
  flex: 0 0 100%;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
}

.product-image {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 1.5rem;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  background: #fff;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-name {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #111;
}

.product-details {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 2rem;
}

/* Navigation Dots */
.product-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 2rem 0 1.5rem;
}

.product-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d0d0d0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  padding: 0;
}

.product-dots .dot:hover {
  background: #999;
  transform: scale(1.2);
}

.product-dots .dot.active {
  background: #111;
  transform: scale(1.3);
}

/* CTA Button */
.showcase-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 14px 34px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border-radius: 0;
  transition: background .25s ease, color .25s ease;
  text-align: center;
}

.showcase-btn:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showcase-model {
    max-width: 500px;
    margin: 0 auto;
  }

  .product-image {
    max-width: 380px;
  }
}

@media (max-width: 640px) {
  .product-showcase {
    padding: 2rem 0;
  }

  .showcase-btn {
    font-size: 15px;
    padding: 12px 28px;
  }
}

/* ================================
   NEWSLETTER POPUP
   ================================ */
.newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.newsletter-popup.active {
  opacity: 1;
  visibility: visible;
}

.newsletter-popup[hidden] {
  display: none;
}

.newsletter-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.newsletter-popup__content {
  position: relative;
  display: flex;
  background: #fff;
  max-width: 580px;
  width: 85%;
  max-height: 400px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.newsletter-popup.active .newsletter-popup__content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.newsletter-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.newsletter-popup__close:hover {
  background: #f0f0f0;
}

.newsletter-popup__image {
  width: 45%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.newsletter-popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-popup__form {
  width: 55%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.newsletter-popup__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
  margin: 0 0 25px 0;
  line-height: 1.4;
}

.newsletter-popup__input {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 240px;
}

.newsletter-popup__input input[type="email"] {
  padding: 12px 16px;
  border: 1px solid #000;
  background: #fff;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsletter-popup__input input[type="email"]::placeholder {
  color: #999;
}

.newsletter-popup__input input[type="email"]:focus {
  outline: none;
  border-color: #000;
  background: #f9f9f9;
}

.newsletter-popup__input button {
  padding: 12px 16px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-popup__input button:hover {
  background: #fff;
  color: #000;
}

.newsletter-popup__success {
  margin-top: 15px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 20px;
  text-align: center;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .newsletter-popup__content {
    flex-direction: column;
    max-width: 90%;
    max-height: 75vh;
  }
  
  .newsletter-popup__image {
    width: 100%;
    height: 200px;
    background: #fff;
  }
  
  .newsletter-popup__image img {
    object-fit: contain;
  }
  
  .newsletter-popup__form {
    width: 100%;
    padding: 25px 20px;
  }
  
  .newsletter-popup__title {
    font-size: 1rem;
  }
  
  .newsletter-popup__close {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}