html, body {
  width: 100%;
  overflow-x: hidden;
}



/* =========================
   Palette Nuya
   ========================= */
:root {
  --nuya-black: #111111;
  --nuya-white: #ffffff;
  --nuya-gold: #d4af37;
  --nuya-grey: #f5f5f5;
}

/* =========================
   Base globale
   ========================= */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #252525;
}

/* =========================
   HEADER & NAV
   ========================= */
.site-header {
  position: sticky;      /* ou fixed si tu veux qu'il soit toujours visible */
  top: 0;
  left: 0;
  right: 0;
  background: rgba(31, 31, 31, 0.98);
  border-bottom: 1px solid #2b2b2b;
  z-index: 1000;
}


.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo + titre */
.site-branding img {
  max-height: 40px;
  width: auto;
}

.site-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f5f5;
  text-decoration: none;
}

.site-title:hover {
  color: #d4af37;
}

/* Menu desktop */
.main-navigation {
  flex: 1;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: #ffffff;
  padding-bottom: 4px;
  position: relative;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--nuya-gold);
  transition: width 0.25s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #d4af37;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
  width: 100%;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle .menu-icon,
.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #f5f5f5;
  margin: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animation croix */
.menu-toggle.is-active .menu-icon {
  transform: rotate(45deg);
}

.menu-toggle.is-active .menu-icon::before {
  transform: translateY(6px) rotate(90deg);
}

.menu-toggle.is-active .menu-icon::after {
  opacity: 0;
}

/* =========================
   FOOTER / CONTENU
   ========================= */
.site-footer {
  padding: 20px 40px;
  border-top: 1px solid #2b2b2b;
  text-align: center;
  font-size: 14px;
  color: #b0b0b0;
}

.site-main {
  padding: 40px;
}

/* =========================
   BOUTIQUE (archive produits)
   ========================= */
.shop-main {
  padding: 40px;
}

.shop-title {
  font-size: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}


/* =========================
   FICHE PRODUIT (single)
   ========================= */
.product-main {
  padding: 40px;
}

/* Layout 2 colonnes */
.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.single-product div.product .woocommerce-product-gallery {
  width: 100%;
  background: var(--nuya-grey);
  padding: 20px;
}

.single-product div.product .summary {
  width: 100%;
  padding: 10px 0;
}

/* Titre / prix */
.single-product div.product .product_title {
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.single-product div.product .price {
  font-size: 20px;
  font-weight: 600;
  color: var(--nuya-gold);
  margin-bottom: 20px;
}


/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .header-inner {
    padding: 10px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #050505;
    border-top: 1px solid #2b2b2b;
    padding: 16px 0 20px;
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .main-navigation.open {
    display: flex;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 14px;
  }

  .main-navigation a {
    font-size: 0.9rem;
    padding-bottom: 4px;
  }

  ul.products li.product {
    width: 50%;
  }

  .single-product div.product {
    grid-template-columns: 1fr;
  }

  .site-main,
  .shop-main,
  .product-main {
    padding: 20px 15px;
  }
}



/* ========= Home Hero ========= */

.home-hero {
  padding: 80px 0 60px;
}

.home-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.home-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: #888;
  margin-bottom: 10px;
}

.home-hero-title {
  font-size: 34px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.home-hero-subtitle {
  max-width: 420px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  max-width: 320px;
	margin: auto;
	margin-top: 20px;
}

.btn-primary {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
}

.btn-primary:hover {
  background-color: #000000;
}

.btn-ghost {
  background-color: transparent;
  color: #111111;
  border-color: #dddddd;
}

.btn-ghost:hover {
  border-color: #111111;
}

.home-hero-media {
  text-align: right;
}

.home-hero-image {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: block;
}

/* ========= Sections génériques ========= */

.home-section {
  padding: 60px 0;
}

.home-section-header {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 24px;
}

.home-section-title {
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.home-section-subtitle {
  color: #666;
  font-size: 14px;
}


/* ========= Avantages ========= */

.home-benefits {
  background-color: #f8f8f8;
}

.home-benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-benefit h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.home-benefit p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ========= Story ========= */

.home-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.home-story-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.btn-link {
  background: none;
  border: none;
  color: #111111;
  padding: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

.home-story-image {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

/* ========= Comment commander ========= */

.home-howto-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-step {
  border: 1px solid #eeeeee;
  border-radius: 18px;
  padding: 18px 18px 22px;
}

.home-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #111111;
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 10px;
}

.home-step h3 {
  font-size: 15px;
  margin: 0 0 6px;
}

.home-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ========= Responsive ========= */

@media (max-width: 900px) {
  .home-hero-inner,
  .home-story-inner {
    grid-template-columns: 1fr;
  }

  .home-hero-media,
  .home-story-media {
    text-align: center;
  }

  .home-hero {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .home-benefits-grid,
  .home-howto-steps {
    grid-template-columns: 1fr;
  }

  .home-hero-inner,
  .home-story-inner {
    gap: 24px;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin: 48px 0 64px;
}
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
   BOUTIQUE NUYA
   ========================= */

.shop-main {
  padding: 80px 0;
  background-color: #ffffff;
}

.shop-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   GRID PRODUITS
   ========================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

/* =========================
   CARTE PRODUIT
   ========================= */

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 22px;
  padding: 22px 18px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   IMAGE
   ========================= */

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin-bottom: 18px;
  object-fit: cover;
}

/* =========================
   TITRE
   ========================= */

.product-card h2 {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 500;
  color: #111111;
}

/* =========================
   PRIX
   ========================= */

.product-card .price {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #d4af37;
  margin-bottom: 18px;
}

/* =========================
   BOUTON COMMANDER
   ========================= */

.btn-commander {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  background-color: #111111;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-commander:hover {
  background-color: #000000;
  transform: scale(1.03);
}

/* =========================
   PAGINATION
   ========================= */

.pagination,
.page-numbers {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  text-decoration: none;
  font-size: 13px;
  color: #111111;
}

.page-numbers .current {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 20px;
  }
}


/* =========================
   Header boutique
   ========================= */
.shop-header {
  display: flex;
  justify-content: center; /* centre horizontalement */
  padding-top: 0px;       /* réduit l'espace au-dessus du logo */
  margin-bottom: 30px;     /* espace sous le logo avant les produits */
}

.shop-header img {
  max-width: 300px; /* ajuste selon la taille souhaitée */
  height: auto;
  display: block;
}




/* =========================
   FICHE PRODUIT NUYA
   ========================= */

.product-main {
  background: white;
  min-height: 100vh;
  padding: 80px 0;
  color: var(--nuya-white);
}

.product-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Layout principal */
.single-product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Galerie / image produit */
.product-gallery {
  background: white;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05)
}

.product-image {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 22px;
  background: white;
  border-radius: 17px;
}

/* Résumé / infos produit */
.product-summary {
  padding: 10px 4px;
}

.product-title {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #32373c;
  margin: 0 0 18px 0;
}

.product-price {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--nuya-gold);
  margin-bottom: 20px;
}

.product-description {
  margin-top: 18px;
  line-height: 1.7;
  font-size: 0.98rem;
  color: grey;
}

/* Bouton retour boutique */
.product-summary .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--nuya-black);
  color: var(--nuya-white);
  border: 1px solid var(--nuya-gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-summary .btn.btn-primary:hover {
  background: var(--nuya-gold);
  color: var(--nuya-black);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.45);
  transform: translateY(-1px);
}

/* =========================
   RESPONSIVE
   ========================= */

/* Tablette */
@media (max-width: 992px) {
  .single-product {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-main {
    padding: 60px 0;
  }

  .product-image {
    height: 380px;
  }

  .product-title {
    font-size: 2.1rem;
  }

  .product-price {
    font-size: 1.7rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .product-main {
    padding: 40px 0;
  }

  .product-main .container {
    padding: 0 16px;
  }

  .product-gallery {
    padding: 18px;
    border-radius: 22px;
  }

  .product-image {
    height: 320px;
    border-radius: 18px;
  }

  .product-title {
    font-size: 1.7rem;
    letter-spacing: 0.06em;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .product-summary .btn.btn-primary {
    width: 100%;
    margin-top: 26px;
    padding: 13px 20px;
    font-size: 0.8rem;
  }
}


/* ===========================================
   POPUP COMMANDE NUYA LUX - RESPONSIVE
   =========================================== */
/* ===========================================
   POPUP COMMANDE NUYA LUX - RESPONSIVE
   =========================================== */

/* Logo du popup Nuya */
.popup-logo {
  width: 100%;
  text-align: center;
  margin-bottom: clamp(12px, 3vw, 20px);
}

.popup-logo img {
  max-width: clamp(110px, 35vw, 150px);
  height: auto;
  display: inline-block;
  filter: brightness(1.1) drop-shadow(0 4px 16px rgba(212, 175, 55, 0.35));
}

/* Variables Nuya */
:root {
  --nuya-black: #000;
  --nuya-dark: #111;
  --nuya-gold: #d4af37;
  --nuya-white: #f8f8f8;
  --nuya-border: rgba(212, 175, 55, 0.15);
}

/* Overlay = formulaire (wrapper flex) */
#popup-commande.popup-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;                /* masqué par défaut */
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: clamp(10px, 4vw, 20px);
  box-sizing: border-box;
}

/* Actif */
#popup-commande.popup-overlay.active {
  display: flex;
}

/* Contenu du formulaire comme carte */
#popup-commande {
  max-width: clamp(320px, 90vw, 480px);
  width: 100%;
  max-height: 90vh;             /* évite de dépasser en hauteur */
  background: var(--nuya-black);
  border-radius: clamp(16px, 3vw, 20px);
  border: 1px solid var(--nuya-border);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
  padding: clamp(20px, 5vw, 32px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vw, 16px);
  animation: popupSlideIn 0.3s ease-out;
  overflow-y: auto;             /* scroll interne si besoin */
}

/* Animation entrée */
@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Champs du formulaire */
#popup-commande input[type="text"],
#popup-commande input[type="tel"],
#popup-commande select,
#popup-commande textarea {
  width: 100%;
  padding: clamp(10px, 2.5vw, 12px) clamp(14px, 3vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: clamp(10px, 2vw, 12px);
  background: rgba(255, 255, 255, 0.05);
  color: grey;
  font-size: clamp(14px, 3.2vw, 16px);
  font-family: system-ui, -apple-system, sans-serif;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

#popup-commande input:focus,
#popup-commande select:focus,
#popup-commande textarea:focus {
  outline: none;
  border-color: var(--nuya-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

#popup-commande input::placeholder,
#popup-commande textarea::placeholder {
  color: rgba(248, 248, 248, 0.5);
}

#popup-commande textarea {
  resize: vertical;
  min-height: 80px;
}

/* Bloc type de livraison */
.livraison-box {
  padding: clamp(10px, 2.5vw, 14px);
  border-radius: clamp(10px, 2vw, 12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--nuya-white);
  font-size: 14px;
}

.livraison-box p {
  margin: 0 0 4px;
}

.livraison-box label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}

/* Radio minimalistes mais visibles */
.livraison-box input[type="radio"] {
  accent-color: var(--nuya-gold);
}

/* Bouton submit */
#popup-commande button[type="submit"],
#popup-commande .btn.btn-primary {
  background: linear-gradient(135deg, var(--nuya-gold) 0%, #f7d794 100%);
  color: var(--nuya-black) !important;
  border: none;
  padding: clamp(12px, 3vw, 14px);
  border-radius: clamp(10px, 2vw, 12px);
  font-size: clamp(14px, 3.2vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 100%;
}

#popup-commande button[type="submit"]:hover,
#popup-commande .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 480px) {
  #popup-commande.popup-overlay {
    padding: 12px;
  }

  #popup-commande {
    padding: clamp(16px, 6vw, 24px);
    margin: 0;
    max-height: 94vh;          /* un peu plus de marge sur mobile */
  }
}

/* Anti-scroll body quand popup ouvert */
body.popup-open {
  overflow: hidden;
}



/* PAGINATION – VERSION QUI MARCHE */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin: 0 6px;
    padding: 0 16px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.page-numbers:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-2px);
}

/* Page active */
.page-numbers.current {
    background: #000;
    color: #fff;
    border-color: #000;
    cursor: default;
}

/* Suivant / Précédent */
.page-numbers.next,
.page-numbers.prev {
    padding: 0 22px;
}





.color-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
    cursor: pointer;
    border: 1px solid #ccc;
}

.color-dot.active {
    border: 2px solid #000;
}



/* PAGE MERCI NUYA */
/* PAGE MERCI NUYA - RESPONSIVE */
.merci-main {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  min-height: 100vh;
  padding: clamp(40px, 8vw, 100px) 0;
  color: white;
}

.merci-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(60vh, 80vh, 90vh);
  padding: 20px 0;
}

.merci-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: clamp(20px, 4vw, 24px);
  padding: clamp(30px, 6vw, 60px) clamp(24px, 5vw, 40px);
  text-align: center;
  max-width: min(95vw, 500px);
  width: 100%;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

.merci-logo img {
  margin-bottom: clamp(20px, 4vw, 32px);
  max-width: 160px;
  width: 100%;
  height: auto;
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(212,175,55,0.3));
}

.merci-icon {
  margin: clamp(16px, 3vw, 24px) 0;
}

.merci-icon i {
  font-size: clamp(3rem, 8vw, 4rem);
}

.merci-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 400;
  color: white;
  margin: 0 0 clamp(16px, 3vw, 24px);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.merci-text {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  line-height: 1.6;
  margin: 0 0 clamp(24px, 5vw, 40px);
  opacity: 0.95;
}

.merci-actions {
  display: flex;
  gap: clamp(8px, 2vw, 12px);
  justify-content: center;
  margin: clamp(24px, 5vw, 40px) 0;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 clamp(8px, 3vw, 16px);
  box-sizing: border-box;
}

.btn-gold, .btn-whatsapp {
  padding: clamp(12px, 2.5vw, 14px) clamp(20px, 4vw, 28px);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.85rem, 2.3vw, 0.95rem);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.5vw, 8px);
  text-align: center;
  min-height: 48px;
  flex: 1;
  max-width: 200px; /* Limite largeur max */
  white-space: nowrap; /* Pas de retour ligne */
  box-sizing: border-box;
}

/* Mobile : boutons pleine largeur */
@media (max-width: 480px) {
  .merci-actions {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(12px, 3vw, 16px);
    padding: 0 clamp(12px, 4vw, 20px);
  }
  
  .btn-gold, .btn-whatsapp {
    width: 100%;
    max-width: none;
    flex: none;
    padding: clamp(14px, 3.5vw, 16px) clamp(20px, 5vw, 28px);
  }
}

/* Tablette paysage */
@media (max-width: 768px) and (min-height: 500px) {
  .btn-gold, .btn-whatsapp {
    flex: 0 1 auto;
    max-width: 180px;
  }
}


.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #f7d794 100%);
  color: #000 !important;
  border: none;
}

.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(212,175,55,0.6);
}

.btn-whatsapp {
  background: #25D366;
  color: white !important;
  border: none;
}

.btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(37,211,102,0.6);
}

.merci-brand {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  opacity: 0.8;
  margin-top: clamp(20px, 4vw, 32px);
  font-style: italic;
}

/* Mobile optimisé */
@media (max-width: 480px) {
  .merci-wrapper {
    padding: 10px;
  }
  
  .merci-card {
    margin: 0 10px;
  }
  
 /* Mobile : boutons pleine largeur */
@media (max-width: 480px) {
  .merci-actions {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(12px, 3vw, 16px);
    padding: 0 clamp(12px, 4vw, 20px);
  }
  
  .btn-gold, .btn-whatsapp {
    width: 100%;
    max-width: none;
    flex: none;
    padding: clamp(14px, 3.5vw, 16px) clamp(20px, 5vw, 28px);
  }
}
}

/* Tablette */
@media (max-width: 768px) and (orientation: landscape) {
  .merci-actions {
    gap: 12px;
  }
}


/* Tablette paysage */
@media (max-width: 768px) and (min-height: 500px) {
  .btn-gold, .btn-whatsapp {
    flex: 0 1 auto;
    max-width: 180px;
  }
}




.about-main {
  background: #000;
  color: #f5f5f5;
  padding: 100px 0;
}

.about-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.about-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: #d4af37;
  margin-bottom: 12px;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.about-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.about-block {
  background: #111;
  border-radius: 20px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.about-block h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  color: #f7f7f7;
}

.about-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .about-main {
    padding: 70px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .about-block {
    padding: 20px 18px;
  }
}




.contact-main {
  background: #000;
  color: #f5f5f5;
  padding: 100px 0;
}

.contact-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4.5vw, 2.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.9;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  background: #111;
  border-radius: 20px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-info a {
  color: #f7f7f7;
  text-decoration: none;
}

.contact-info a:hover {
  color: #d4af37;
}

.contact-quick {
  display: flex;
  gap: 12px;
  margin: 20px 0 12px;
  flex-wrap: wrap;
}

.contact-small {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Formulaire */
.contact-form {
  background: #050505;
  border-radius: 20px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 18px 36px rgba(0,0,0,0.5);
}

.form-row {
  margin-bottom: 18px;
  text-align: left;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #000;
  color: #f5f5f5;
  font-size: 0.95rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.5);
}

.contact-submit {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding: 70px 0;
  }

  .contact-quick {
    flex-direction: column;
  }

  .contact-quick .btn {
    width: 100%;
    justify-content: center;
  }
}



/* Logo cropped Nuya en haut des pages */
.page-logo {
  text-align: center;
  margin: clamp(24px, 6vw, 48px) 0 clamp(20px, 5vw, 36px);
}

.page-logo img {
  max-width: clamp(100px, 12vw, 140px);
  height: auto;
  filter: brightness(1.15) drop-shadow(0 6px 20px rgba(212,175,55,0.4));
  transition: all 0.3s ease;
}

.page-logo img:hover {
  transform: scale(1.08);
  filter: brightness(1.25) drop-shadow(0 8px 24px rgba(212,175,55,0.5));
}

/* Mobile */
@media (max-width: 480px) {
  .page-logo {
    margin: 24px 0 28px;
  }
  
  .page-logo img {
    max-width: 120px;
  }
}




.nuya-slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18,69,104,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
}

.prev { left: 10px; }
.next { right: 10px; }

.dots {
  text-align: center;
  padding: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  display: inline-block;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #124568;
}
