/* ========== Tokens ========== */
:root {
  --black: #0A0A0A;
  --anthracite: #1A1A1A;
  --purple: #5B3A7A;
  --purple-dark: #3D2652;
  --purple-deep: #1E1228;
  --gold: #D4AF37;
  --gold-light: #E8C766;
  --ivory: #F5F2ED;
  --muted: #8A8580;
  --border: rgba(212, 175, 55, 0.15);
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #E8C766 50%, #B8941F 100%);
  --card-gradient: linear-gradient(180deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.4));
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.35);

  /* Violet-noir dégradés */
  --grad-vn-1: linear-gradient(160deg, #0A0A0A 0%, #1E1228 50%, #0A0A0A 100%);
  --grad-vn-2: linear-gradient(135deg, #0A0A0A 0%, #3D2652 60%, #0A0A0A 100%);
  --grad-vn-3: linear-gradient(180deg, #1E1228 0%, #0A0A0A 100%);
  --grad-vn-4: linear-gradient(180deg, #0A0A0A 0%, #2A1940 50%, #0A0A0A 100%);
  --grad-vn-5: linear-gradient(160deg, #1E1228 0%, #0A0A0A 40%, #2A1940 100%);

  --font-display: 'Cinzel', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }
body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }

h1, h2 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; width: 100%; }
@media (min-width: 480px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.italic { font-style: italic; }

/* ========== Header ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  width: 100%;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91, 58, 122, 0.3);
}
.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 80px;
  padding: 0 1rem;
}
@media (min-width: 480px) {
  .header-inner {
    height: 100px;
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header-inner {
    height: 110px;
    padding: 0 2.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 52px;
  padding: 0.25rem 0.45rem;
  border-radius: 14px;
  background: radial-gradient(ellipse 80% 100% at 50% 30%, rgba(212, 175, 55, 0.12) 0%, rgba(10, 10, 10, 0.6) 55%, transparent 100%);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.22),
    0 4px 20px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(212, 175, 55, 0.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.logo:hover {
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.35),
    0 6px 28px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 175, 55, 0.14);
  transform: translateY(-1px);
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: 160px;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

@media (min-width: 480px) {
  .logo {
    height: 68px;
    padding: 0.4rem 0.65rem;
    border-radius: 16px;
  }
  .logo-img {
    max-width: 220px;
    max-height: 60px;
  }
}

@media (min-width: 768px) {
  .logo {
    height: 76px;
  }
  .logo-img {
    max-width: 240px;
    max-height: 68px;
  }
}

@media (min-width: 1024px) {
  .logo {
    height: 84px;
    padding: 0.45rem 0.75rem;
  }
  .logo-img {
    max-width: 260px;
    max-height: 76px;
  }
}

.nav {
  display: none;
  gap: 1.5rem;
}
.nav a {
  font-size: 0.85rem;
  color: rgba(245, 242, 237, 0.8);
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--gold);
}

.header-search {
  flex: 1;
  min-width: 90px;
  max-width: 190px;
}

.header-search-input {
  width: 100%;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(8, 8, 8, 0.72);
  color: var(--ivory);
  padding: 0 0.8rem;
  font-size: 0.76rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: text;
}

.header-search-input::placeholder {
  color: rgba(245, 242, 237, 0.52);
}

.header-search-input:focus {
  border-color: rgba(212, 175, 55, 0.66);
  background: rgba(12, 12, 12, 0.9);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}

body[data-page="home"] .header-search-input {
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0 0.5rem;
  }
  .header-search {
    max-width: 300px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

@media (min-width: 768px) {
  .header-right {
    gap: 0.75rem;
    margin-left: 0;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-wa {
  display: none;
  align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--black);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 500;
  box-shadow: var(--shadow-gold);
  transition: opacity .2s;
  border: none; cursor: pointer;
  white-space: nowrap;
}
.btn-wa:hover { opacity: 0.9; }
@media (min-width: 640px) { 
  .btn-wa { 
    display: inline-flex;
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  } 
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse 90% 100% at 65% 50%, #07010c 0%, #0d0712 45%, #000000 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
}

/* ========== Search Page ========== */
body[data-page="search"] .search-page-main {
  min-height: 100vh;
  padding-top: 88px;
  background: radial-gradient(ellipse 90% 100% at 65% 50%, #07010c 0%, #0d0712 45%, #000000 100%);
}

@media (min-width: 480px) {
  body[data-page="search"] .search-page-main {
    padding-top: 108px;
  }
}

@media (min-width: 1024px) {
  body[data-page="search"] .search-page-main {
    padding-top: 118px;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  align-items: center;
  gap: 2rem;
  padding: 80px 1rem 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 55% 45%;
    gap: 0;
    padding: 70px 1.5rem 2rem;
  }
}

.hero-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 2rem 0 0;
    text-align: left;
  }
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.85);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-description {
  font-family: var(--font-sans);
  color: rgba(245, 242, 237, 0.6);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
  margin-bottom: 1.75rem;
  line-height: 1.8;
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-description {
    margin-left: 0;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  background: #fff;
  color: #0A0A0A;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  background: #F5F2ED;
  transform: translateY(-2px);
}

.hero-stats-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212,175,55,0.2);
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-stats-inline {
    justify-content: flex-start;
    gap: 1.75rem;
    padding-top: 2rem;
  }
}

.hsi { display: flex; flex-direction: column; gap: 0.2rem; }

.hsi-num {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hsi-lbl {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.4);
}

.hsi-div {
  width: 1px;
  height: 36px;
  background: rgba(212,175,55,0.2);
  flex-shrink: 0;
  display: none;
}

@media (min-width: 480px) {
  .hsi-div {
    display: block;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-product-img {
  width: 80%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  filter: drop-shadow(-20px 40px 80px rgba(0,0,0,0.6))
          drop-shadow(0 0 60px rgba(91,58,122,0.4));
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-product-img {
    width: 100%;
    max-width: 490px;
    max-height: 380px;
  }
}

@media (max-width: 767px) {
  .hero-visual {
    margin-top: 0.4rem;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .hero-product-img {
    width: 100%;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-position: center top;
    border-radius: 10px;
  }
}

/* ========== Sections ========== */
.section {
  padding: 4rem 0;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 0.75rem 0 1rem;
}

.section-head p {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ========== About ========== */
.about {
  padding: 4rem 0;
  background: var(--grad-vn-2);
  position: relative;
}

/* Première section (page dédiée) sous header fixe */
.about.about--page-start {
  padding-top: clamp(6.5rem, 12vh + 4rem, 10rem);
}

.about-cta-wrap {
  margin-top: 2.5rem;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at top left, rgba(91,58,122,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 4rem;
  }
}

.about-left {
  position: relative;
}

@media (min-width: 992px) {
  .about-left {
    top: 50px;
  }
}

.about-title {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-top: 10px;
}

.about-right {
  width: 100%;
}

.about-text {
  color: #aaa;
  line-height: 1.7;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.about-text p {
  margin-bottom: 20px;
}

.about-features {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.about-trust-card {
  margin-top: 1.6rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(10, 10, 10, 0.62);
  display: grid;
  gap: 1rem;
  align-items: center;
}

.about-boutique-img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.about-trust-kicker {
  margin: 0 0 0.4rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
}

.about-trust-text p {
  margin: 0;
  color: #b6b0aa;
  line-height: 1.65;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .about-trust-card {
    grid-template-columns: minmax(190px, 240px) 1fr;
  }
}

.feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(91, 58, 122, 0.08);
  border: 1px solid rgba(91, 58, 122, 0.2);
  transition: background 0.2s, border-color 0.2s;
}

.feature:hover {
  background: rgba(91, 58, 122, 0.15);
  border-color: rgba(91, 58, 122, 0.35);
}

.feature-icon {
  color: gold;
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--ivory);
}

.feature-desc {
  color: #888;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

/* ========== New Arrivals ========== */
.nouveautes {
  background: var(--grad-vn-4);
  position: relative;
}

.nouveautes::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(91,58,122,0.14) 0%, transparent 70%);
  pointer-events: none;
}

#new-arrivals-grid {
  position: relative;
  z-index: 1;
}

.parfum-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0f24 0%, #111 60%);
  border: 1px solid rgba(91, 58, 122, 0.25);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.parfum-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91, 58, 122, 0.6);
  box-shadow: 0 20px 50px rgba(91, 58, 122, 0.2);
}

.parfum-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
  position: relative;
  background: #000;
}

.parfum-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.5s ease;
}

.parfum-card:hover .parfum-img-wrap img { transform: scale(1.08); }

.parfum-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.parfum-brand {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.parfum-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
}

.parfum-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.parfum-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
  margin: 0.5rem 0;
}

.parfum-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
}

/* ========== Catalogue ========== */
#catalogue {
  background: var(--grad-vn-5);
  position: relative;
}

.filters {
  background: rgba(91, 58, 122, 0.08);
  border: 1px solid rgba(91, 58, 122, 0.2);
  border-radius: 1rem;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .filters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .filters {
    grid-template-columns: 2fr 1fr auto;
    align-items: end;
  }
}

.filter-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.filter-input, .filter-select {
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(91, 58, 122, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.9rem;
  color: var(--ivory);
  transition: border-color .2s;
}

.filter-input:focus, .filter-select:focus {
  outline: none;
  border-color: var(--gold);
}

.btn-reset {
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}

.btn-reset:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.table-wrap {
  background: rgba(15, 10, 20, 0.6);
  border: 1px solid rgba(91, 58, 122, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
}

.table-hint {
  margin: 0 0 0.55rem;
  text-align: right;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: rgba(245, 242, 237, 0.58);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 700px; /* Force scrollable on small screens */
}

@media (min-width: 768px) {
  table {
    min-width: 100%;
  }
}

thead {
  background: rgba(91, 58, 122, 0.2);
}

th, td {
  text-align: left;
  padding: 1rem;
}

th {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

tbody tr {
  border-top: 1px solid rgba(91, 58, 122, 0.15);
  transition: background .2s;
}

tbody tr:hover {
  background: rgba(91, 58, 122, 0.1);
}

.cell-ref { font-family: monospace; color: var(--muted); font-size: 0.8rem; }
.cell-brand { color: var(--gold); font-weight: 600; }
.cell-name { font-family: var(--font-serif); font-size: 1.05rem; }



/* Visibility helpers for table */
.hide-sm { display: none; }
.hide-md { display: none; }

@media (min-width: 640px) {
  .hide-sm { display: table-cell; }
}
@media (min-width: 1024px) {
  .hide-md { display: table-cell; }
}

/* ========== Contact ========== */
.contact {
  background: linear-gradient(180deg, #0A0A0A 0%, #1E1228 40%, #2A1940 70%, #0A0A0A 100%);
  position: relative;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-left {
  text-align: center;
  width: 100%;
}

.contact-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.contact-intro {
  text-align: center;
}

.contact-info-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  min-width: 180px;
}

/* icône */
.info-icon {
  width: 42px;
  height: 42px;
}

/* texte */
.info-block strong {
  font-size: 0.65rem;
}

.info-block span {
  font-size: 0.85rem;
}


.info-icon {
  width: 40px; height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.info-block strong { display: block; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.info-block span { color: var(--ivory); font-weight: 500; }

.maps-card {
  width: min(100%, 520px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(10, 10, 10, 0.75);
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.7);
}

.maps-embed {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

@media (min-width: 768px) {
  .maps-embed {
    height: 290px;
  }
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold-light);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-maps:hover {
  background: rgba(212, 175, 55, 0.25);
  color: #0a0a0a;
}

.btn-maps svg {
  width: 18px;
  height: 18px;
}

/* ========== Social Follow ========== */
.social-follow {
  width: min(100%, 520px);
  padding: 0.95rem 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(10, 10, 10, 0.6);
}

.social-follow-title {
  margin: 0 0 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  background: rgba(18, 18, 18, 0.92);
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 8px 24px -12px rgba(212, 175, 55, 0.5);
}

.social-link.tiktok:hover {
  color: #ffffff;
  box-shadow:
    0 8px 24px -12px rgba(212, 175, 55, 0.45),
    -2px 2px 0 rgba(37, 244, 238, 0.6),
    2px -2px 0 rgba(254, 44, 85, 0.6);
}

.social-link.instagram:hover {
  color: #feda75;
}

.social-link.facebook:hover {
  color: #9ab7ff;
}


/* ========== Floating WhatsApp & Footer ========== */
.fab-group {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 5.25rem;
  }

  .header-inner {
    gap: 0.45rem;
    padding: 0 0.75rem;
  }

  .header-search {
    min-width: 82px;
    max-width: 150px;
  }

  .header-search-input {
    height: 34px;
    padding: 0 0.7rem;
    font-size: 16px; /* Evite le zoom auto iOS sur focus */
  }

  .filter-input,
  .filter-select {
    font-size: 16px; /* Evite le zoom auto iOS sur focus */
  }

  .table-hint {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .header-search {
    max-width: 120px;
  }

  .header-search-input::placeholder {
    color: rgba(245, 242, 237, 0.4);
    font-size: 0.82rem;
  }
}

.fab {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.fab:hover {
  transform: scale(1.08);
  z-index: 3;
}

.fab svg {
  width: 1.75rem;
  height: 1.75rem;
}

.fab-wa {
  z-index: 2;
  background: #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.fab-wa:hover {
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.footer {
  padding: 3rem 1rem;
  border-top: 1px solid rgba(91, 58, 122, 0.2);
  background: #050505;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ========== Mobile Menu ========== */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 100;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.menu-toggle:hover {
  background: rgba(20, 20, 20, 0.88);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
  flex-shrink: 0;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .nav {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem; transition: .4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90; backdrop-filter: blur(10px);
  }
  .nav.active { right: 0; }
  .nav a { font-size: 1.5rem; font-family: var(--font-display); }
}



/* ========== Pagination Premium ========== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 640px) {
  .pagination {
    gap: 0.55rem;
    margin-top: 1.15rem;
    flex-wrap: nowrap;
  }

  .page-info {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .btn-page {
    padding: 0.5rem 0.8rem;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }
}

.page-info {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.btn-page {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: transparent;
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* hover */
.btn-page:hover:not(:disabled) {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 5px 20px rgba(212,175,55,0.3);
  transform: translateY(-2px);
}

/* disabled */
.btn-page:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
