/*
Theme Name: Annuaire Taxi
Theme URI: https://www.appeler-taxi.fr
Author: Media Technologies
Author URI: https://media-technologie.eu
Description: Theme annuaire de taxis pour appeler-taxi.fr : fiches taxi (CPT), pages departements et villes optimisees SEO local, recherche, inscription gratuite moderee (machine a prospects), design damier de la marque. Compagnon du theme white-label Taxi Blanc.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: annuaire-taxi
Tags: taxi, directory, local-business
*/

/* ---------- POLICE LOCALE (RGPD) ---------- */
@font-face { font-family: 'Be Vietnam Pro'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/be-vietnam-pro-400.woff2') format('woff2'); }
@font-face { font-family: 'Be Vietnam Pro'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/be-vietnam-pro-500.woff2') format('woff2'); }
@font-face { font-family: 'Be Vietnam Pro'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/be-vietnam-pro-600.woff2') format('woff2'); }
@font-face { font-family: 'Be Vietnam Pro'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/be-vietnam-pro-700.woff2') format('woff2'); }
@font-face { font-family: 'Be Vietnam Pro'; font-style: normal; font-weight: 800; font-display: swap; src: url('fonts/be-vietnam-pro-800.woff2') format('woff2'); }
/* ============================================================
   THEME TAXI WHITE-LABEL - Facto Digital / Media Technologies
   Personnalisation : modifier UNIQUEMENT les variables :root
   (bloc "TOKENS MARQUE") pour rebrander le site entier.
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }

/* ---------- TOKENS MARQUE (a personnaliser par client) ---------- */
:root {
  /* Couleurs de marque : 2 valeurs a changer pour rebrander */
  --brand: #f2b705;            /* Jaune taxi : boutons, accents, damier */
  --brand-dark: #d9a404;       /* Variante hover */
  --ink: #17181c;              /* Noir profond : fonds sombres, texte */
  --ink-2: #22242b;            /* Noir secondaire (cards sur fond sombre) */

  /* Backgrounds mode clair */
  --bg-primary: #ffffff;
  --bg-secondary: #f6f5f1;
  --bg-card: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.96);

  /* Texte */
  --text-primary: #17181c;
  --text-secondary: #4b4e58;
  --text-muted: #6b6e78;

  /* Bordures */
  --border: #e5e4de;
  --border-light: #f0efe9;

  /* Typographie */
  --font-main: 'Be Vietnam Pro', 'Segoe UI', -apple-system, sans-serif;

  /* Rayons */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(23, 24, 28, 0.07);
  --shadow-md: 0 4px 14px rgba(23, 24, 28, 0.09);
  --shadow-lg: 0 10px 32px rgba(23, 24, 28, 0.13);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  /* Gradients (le hero reste sombre dans les 2 modes) */
  --gradient-hero: linear-gradient(150deg, var(--ink) 0%, #24262e 55%, var(--ink) 100%);
}

/* ---------- MODE SOMBRE ---------- */
[data-theme="dark"] {
  --bg-primary: #101116;
  --bg-secondary: #17181c;
  --bg-card: #1d1f26;
  --bg-nav: rgba(16, 17, 22, 0.96);
  --text-primary: #eceae4;
  --text-secondary: #b3b2ac;
  --text-muted: #7d7f88;
  --border: #2b2d35;
  --border-light: #22242b;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 32px rgba(0, 0, 0, 0.5);
}

/* ---------- BASE ---------- */
body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.25; font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
p { margin-bottom: 1rem; }
strong { font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

/* Signature visuelle : bande damier taxi */
.damier {
  height: 12px;
  background: repeating-conic-gradient(var(--ink) 0% 25%, var(--brand) 0% 50%);
  background-size: 24px 24px;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition-normal);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; }
.nav-logo-damier {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: repeating-conic-gradient(var(--ink) 0% 25%, var(--brand) 0% 50%);
  background-size: 17px 17px;
  flex-shrink: 0;
}
.nav-logo .accent { color: var(--brand-dark); }
[data-theme="dark"] .nav-logo .accent { color: var(--brand); }

.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu > a, .nav-dropdown-toggle {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.nav-menu > a:hover, .nav-menu > a.active,
.nav-dropdown-toggle:hover {
  color: var(--text-primary);
  border-bottom-color: var(--brand);
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -14px;
  min-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav-dropdown-menu a:hover { background: var(--bg-secondary); color: var(--text-primary); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.nav-phone:hover { background: var(--brand-dark); transform: translateY(-1px); }
.nav-phone svg { flex-shrink: 0; }

.theme-toggle {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.theme-toggle:hover { color: var(--text-primary); border-color: var(--text-muted); }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO HOMEPAGE ---------- */
.hero {
  margin-top: 70px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 12px;
  background: repeating-conic-gradient(#101116 0% 25%, var(--brand) 0% 50%);
  background-size: 24px 24px;
}
.hero .container { padding-top: 80px; padding-bottom: 92px; }
.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero h1 { color: #ffffff !important; margin-bottom: 1.2rem; }
.hero h1 .highlight { color: var(--brand); }
.hero-text > p { color: rgba(255, 255, 255, 0.85) !important; font-size: 1.08rem; max-width: 540px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.4rem 0 1.8rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 7px 14px;
  border-radius: 100px;
}
.hero-badge svg { color: var(--brand); flex-shrink: 0; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ---------- BOUTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: var(--ink); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { border: 2px solid rgba(255, 255, 255, 0.45); color: #ffffff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.7); }
.btn-outline-dark { border: 2px solid var(--border); color: var(--text-primary); }
.btn-outline-dark:hover { border-color: var(--brand); }
.btn-whatsapp { background: #25d366; color: #ffffff; }
.btn-whatsapp:hover { background: #1fb457; }

/* ---------- SECTIONS ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 0.8rem; }
.section-head h2::after {
  content: '';
  display: block;
  width: 56px; height: 4px;
  background: var(--brand);
  margin-top: 14px;
  border-radius: 2px;
}
.section-head p { color: var(--text-secondary); margin-bottom: 0; }

/* ---------- CARTES SERVICES (numerotees, pas d'icones) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px 26px;
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-conic-gradient(var(--ink) 0% 25%, var(--brand) 0% 50%);
  background-size: 10px 10px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.service-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand-dark);
  line-height: 1;
  margin-bottom: 14px;
}
[data-theme="dark"] .service-card-num { -webkit-text-stroke-color: var(--brand); }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1rem; }
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-dark);
  transition: gap 0.2s ease;
}
[data-theme="dark"] .card-arrow { color: var(--brand); }
.service-card:hover .card-arrow, .related-card:hover .card-arrow { gap: 10px; }

/* ---------- ETAPES (comment reserver) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-item {
  position: relative;
  padding: 26px 24px 24px 66px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.step-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px; top: 24px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step-item p { color: var(--text-secondary); font-size: 0.93rem; margin-bottom: 0; }

/* ---------- BANDE CHIFFRES ---------- */
.stats-strip {
  background: var(--ink);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-value { font-size: 2rem; font-weight: 800; color: var(--brand); }
.stat-item .stat-label { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; }

/* ---------- ZONE TEASER ---------- */
.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.zone-communes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.2rem; }
.zone-communes li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
}
.zone-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ---------- FAQ ACCORDION ---------- */
.faq-section h2 { margin-bottom: 2rem; }
.faq-container { max-width: 800px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--bg-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: var(--text-primary);
}
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform var(--transition-normal), background var(--transition-normal), color var(--transition-normal);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brand); color: var(--ink); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-normal); }
.faq-answer p { padding: 0 22px 18px; color: var(--text-secondary); margin: 0; }

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: var(--gradient-hero);
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 12px;
  background: repeating-conic-gradient(#101116 0% 25%, var(--brand) 0% 50%);
  background-size: 24px 24px;
}
.cta-final h2 { color: #ffffff !important; margin-bottom: 0.8rem; }
.cta-final p { color: rgba(255, 255, 255, 0.85) !important; max-width: 560px; margin: 0 auto 2rem; }
.cta-final .hero-buttons { justify-content: center; }
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 1.6rem;
}

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.8); padding: 60px 0 0; }
.footer a { transition: color var(--transition-fast); }
.footer a:hover { color: var(--brand); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; color: #ffffff; margin-bottom: 14px; }
.footer-logo .accent { color: var(--brand); }
.footer-brand p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.65); }
.footer-column h4 {
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-column ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
.footer-bottom a { color: var(--brand); }

/* ---------- BREADCRUMB ---------- */
.breadcrumb-section {
  margin-top: 70px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand-dark); }
[data-theme="dark"] .breadcrumb a:hover { color: var(--brand); }
.breadcrumb li[aria-current="page"] { color: var(--text-secondary); font-weight: 500; }

/* ---------- HERO PAGE INTERIEURE ---------- */
.page-hero {
  background: var(--gradient-hero);
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 10px;
  background: repeating-conic-gradient(#101116 0% 25%, var(--brand) 0% 50%);
  background-size: 20px 20px;
}
.page-hero h1 { color: #ffffff !important; margin-bottom: 0.7rem; }
.page-hero .hero-subtitle { color: rgba(255, 255, 255, 0.85) !important; font-size: 1.08rem; max-width: 680px; margin: 0; }

/* ---------- LAYOUT PAGE SERVICE ---------- */
.service-section { padding: 60px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.service-content > img { border-radius: var(--radius-md); margin-bottom: 30px; width: 100%; height: auto; }
.service-content h2 {
  font-size: 1.5rem;
  margin: 2.2rem 0 1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}
.service-content h2:first-of-type { margin-top: 0; }
.service-content h3 { font-size: 1.15rem; margin: 1.6rem 0 0.7rem; }
.service-content p { color: var(--text-secondary); }
.service-content ul, .service-content ol { margin: 0 0 1.2rem; }
.service-content ul li, .service-content ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.service-content ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
}
.service-content ol { counter-reset: oli; }
.service-content ol li { counter-increment: oli; padding-left: 30px; }
.service-content ol li::before {
  content: counter(oli) '.';
  position: absolute;
  left: 2px;
  font-weight: 700;
  color: var(--brand-dark);
}
[data-theme="dark"] .service-content ol li::before { color: var(--brand); }

/* Encadre CTA in-page */
.highlight-box {
  background: var(--gradient-hero);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  margin: 2.2rem 0;
}
.highlight-box h3 { color: #ffffff !important; margin: 0 0 0.5rem; }
.highlight-box p { color: rgba(255, 255, 255, 0.82) !important; margin-bottom: 1.2rem; }

/* Sidebar */
.service-sidebar { position: sticky; top: 100px; display: grid; gap: 24px; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.service-sidebar li::before { content: none !important; }
.sidebar-services li { margin-bottom: 4px; padding-left: 0 !important; }
.sidebar-services a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.sidebar-services a:hover { background: var(--bg-secondary); color: var(--text-primary); }
.sidebar-services li.active-service a {
  color: var(--text-primary);
  font-weight: 700;
  background: rgba(242, 183, 5, 0.13);
  border-left: 3px solid var(--brand);
  padding-left: 11px;
}
.sidebar-cta { background: var(--gradient-hero); border: none; }
.sidebar-cta h3 { color: #ffffff !important; }
.sidebar-cta p { color: rgba(255, 255, 255, 0.82) !important; font-size: 0.92rem; }
.sidebar-cta .btn { width: 100%; margin-bottom: 10px; padding: 12px 18px; font-size: 0.95rem; }
.sidebar-cta .btn:last-child { margin-bottom: 0; }

/* ---------- CARTES LIEES ---------- */
.related-services { padding: 60px 0; }
.related-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}
.related-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.related-card p { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 0.9rem; }

/* ---------- PAGE TARIFS ---------- */
.tarifs-table-wrap { overflow-x: auto; margin: 1.4rem 0 2rem; border: 1px solid var(--border); border-radius: var(--radius-md); }
.tarifs-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 560px; }
.tarifs-table th {
  background: var(--ink);
  color: #ffffff;
  text-align: left;
  padding: 14px 18px;
  font-weight: 600;
}
.tarifs-table th:first-child { border-left: 4px solid var(--brand); }
.tarifs-table td { padding: 13px 18px; border-top: 1px solid var(--border); color: var(--text-secondary); }
.tarifs-table td:first-child { font-weight: 600; color: var(--text-primary); }
.tarifs-table tr:nth-child(even) td { background: var(--bg-secondary); }
.tarif-note { font-size: 0.88rem; color: var(--text-muted); }

/* Iframe simulateur tarifs */
.iframe-tarifs-wrapper {
  margin: 1.4rem 0 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}
.iframe-tarifs-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
}

/* ---------- PAGE CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-blocks { display: grid; gap: 18px; }
.contact-block {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.contact-block-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(242, 183, 5, 0.15);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-theme="dark"] .contact-block-icon { color: var(--brand); }
.contact-block h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-block p, .contact-block a { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }
.contact-block a:hover { color: var(--brand-dark); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
}
.contact-form h2 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- PAGES LEGALES / PROSE ---------- */
.prose { max-width: 800px; padding: 50px 0 70px; }
.prose h2 { font-size: 1.35rem; margin: 2rem 0 0.8rem; padding-bottom: 8px; border-bottom: 2px solid var(--brand); display: inline-block; }
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose li { color: var(--text-secondary); }
.prose ul li { position: relative; padding-left: 20px; margin-bottom: 6px; }
.prose ul li::before {
  content: '';
  position: absolute;
  left: 2px; top: 11px;
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
}
.prose a { color: var(--brand-dark); font-weight: 600; }
[data-theme="dark"] .prose a { color: var(--brand); }

/* ---------- ELEMENTS FLOTTANTS ---------- */
.whatsapp-button {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: pulse-wa 2.4s infinite;
  transition: transform var(--transition-fast);
}
.whatsapp-button:hover { transform: scale(1.08); }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.scroll-top {
  position: fixed;
  bottom: 100px; right: 30px;
  z-index: 998;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal), transform var(--transition-fast);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ---------- PAGE 404 ---------- */
.error-hero { padding: 110px 0; text-align: center; }
.error-hero .hero-buttons { justify-content: center; margin-top: 30px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content, .zone-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .related-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    display: none;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > a, .nav-dropdown { width: 100%; }
  .nav-menu > a, .nav-dropdown-toggle { display: block; padding: 12px 0; border-bottom: 1px solid var(--border-light); width: 100%; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-hamburger { display: flex; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 10px 12px; }
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .service-sidebar { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .highlight-box { padding: 1.6rem 1.4rem; }
  .iframe-tarifs-wrapper iframe { min-height: 720px; }
}

@media (max-width: 480px) {
  .related-cards, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero .container { padding-top: 50px; padding-bottom: 64px; }
  .hero-buttons .btn { width: 100%; }
  .whatsapp-button { bottom: 20px; right: 20px; }
  .scroll-top { bottom: 88px; right: 26px; }
}


/* ---------- SPECIFIQUE WORDPRESS ---------- */

/* Classes coeur WP */
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal;
}
.alignleft { float: left; margin: 0 1.2rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.2rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); text-align: center; }

/* Le contenu edite dans WordPress herite des styles du theme */
.entry-content h2 {
  font-size: 1.5rem;
  margin: 2.2rem 0 1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}
.entry-content h2:first-child { margin-top: 0; }
.entry-content h3 { font-size: 1.15rem; margin: 1.6rem 0 0.7rem; }
.entry-content p { color: var(--text-secondary); }
.entry-content > img, .entry-content .wp-block-image img { border-radius: var(--radius-md); }
.entry-content ul, .entry-content ol { margin: 0 0 1.2rem; }
.entry-content ul li, .entry-content ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  list-style: none;
}
.entry-content ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
}
.entry-content ol { counter-reset: oli; }
.entry-content ol li { counter-increment: oli; padding-left: 30px; }
.entry-content ol li::before {
  content: counter(oli) '.';
  position: absolute;
  left: 2px;
  font-weight: 700;
  color: var(--brand-dark);
}
[data-theme="dark"] .entry-content ol li::before { color: var(--brand); }
.entry-content a:not(.btn) { color: var(--brand-dark); font-weight: 600; }
[data-theme="dark"] .entry-content a:not(.btn) { color: var(--brand); }

/* Jamais de puces dans la sidebar meme avec entry-content */
.service-sidebar li::before { content: none !important; }

/* Grille de cards generee par le shortcode services */
.entry-content .services-grid { margin: 1.5rem 0; }
.entry-content .services-grid li::before, .services-grid li::before { content: none; }


/* ============================================================
   SPECIFIQUE ANNUAIRE
   ============================================================ */

/* ---------- Recherche du hero ---------- */
.recherche-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 14px;
  max-width: 640px;
}
.recherche-form input[type="text"],
.recherche-form select {
  flex: 1 1 180px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: none;
  font: inherit;
  font-size: 0.95rem;
  background: #ffffff;
  color: var(--ink);
}
.recherche-form .btn { flex: 0 0 auto; }

/* ---------- Cartes fiche taxi ---------- */
.taxis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.taxi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}
.taxi-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.taxi-card-photo { height: 150px; background: var(--bg-secondary); }
.taxi-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.taxi-card-corps { padding: 18px 20px 20px; }
.taxi-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.taxi-card .taxi-lieu { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; }
.taxi-card .taxi-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--brand-dark);
}
[data-theme="dark"] .taxi-card .taxi-tel { color: var(--brand); }
.badge-conventionne {
  display: inline-block;
  background: #2a7de1;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ---------- Fiche taxi (single) ---------- */
.fiche-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.fiche-infos { position: sticky; top: 100px; display: grid; gap: 18px; }
.fiche-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.fiche-info-card h3 { font-size: 1rem; margin-bottom: 12px; }
.fiche-info-card ul li { margin-bottom: 10px; color: var(--text-secondary); font-size: 0.95rem; padding-left: 0; }
.fiche-info-card ul li::before { content: none; }
.fiche-info-card .btn { width: 100%; }
.fiche-contenu > img { border-radius: var(--radius-md); margin-bottom: 26px; }

/* ---------- Grille departements / villes ---------- */
.depts-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.depts-grid a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.depts-grid a:hover { border-color: var(--brand); color: var(--brand-dark); }
[data-theme="dark"] .depts-grid a:hover { color: var(--brand); }
.depts-grid .dept-count { color: var(--text-muted); font-size: 0.82rem; }

/* ---------- Formulaire de soumission ---------- */
.soumission-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  max-width: 720px;
}
.soumission-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.soumission-form .form-group { margin-bottom: 16px; }
.soumission-form label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.soumission-form input, .soumission-form select, .soumission-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  font: inherit;
  font-size: 0.95rem;
}
.soumission-form input:focus, .soumission-form select:focus, .soumission-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.2);
}
.champ-piege { position: absolute; left: -9999px; }

/* ---------- Emplacement publicite ---------- */
.pub-slot { margin: 1.6rem 0; text-align: center; }
.pub-slot .pub-mention { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px; }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2rem; }
.pagination .page-numbers {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.pagination .page-numbers.current { background: var(--brand); color: var(--ink); border-color: var(--brand); font-weight: 700; }
.pagination a.page-numbers:hover { border-color: var(--brand); }

@media (max-width: 1024px) {
  .fiche-grid { grid-template-columns: 1fr; }
  .fiche-infos { position: static; }
}
@media (max-width: 640px) {
  .soumission-form .form-row { grid-template-columns: 1fr; }
  .recherche-form { flex-direction: column; }
}


/* ============================================================
   HABILLAGE DU PLUGIN BUSINESS DIRECTORY
   (l'annuaire reste motorise par le plugin : on le met aux
   couleurs du theme)
   ============================================================ */

/* La page annuaire du plugin a besoin de toute la largeur */
.prose:has(.wpbdp-page), .prose:has([class*="wpbdp"]) { max-width: 100%; }

/* Listings */
[class*="wpbdp"] .wpbdp-listing,
.wpbdp-listing {
  background: var(--bg-card);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 18px;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.wpbdp-listing:hover { border-color: var(--brand) !important; box-shadow: var(--shadow-md); }
.wpbdp-listing .listing-title,
.wpbdp-listing .listing-title a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.wpbdp-listing .listing-title a:hover { color: var(--brand-dark); }
.wpbdp-listing .listing-details { color: var(--text-secondary); font-size: 0.95rem; }
.wpbdp-listing img { border-radius: var(--radius-sm); }

/* Boutons du plugin */
.wpbdp-button, .wpbdp-page .button, input.wpbdp-submit,
.wpbdp-page input[type="submit"], .wpbdp-page button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand) !important;
  color: var(--ink) !important;
  font-weight: 700;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  padding: 11px 20px !important;
  cursor: pointer;
  transition: background var(--transition-fast);
  text-decoration: none !important;
}
.wpbdp-button:hover, .wpbdp-page .button:hover, input.wpbdp-submit:hover { background: var(--brand-dark) !important; }

/* Formulaires du plugin (recherche, soumission) */
.wpbdp-page input[type="text"], .wpbdp-page input[type="email"],
.wpbdp-page input[type="url"], .wpbdp-page input[type="tel"],
.wpbdp-page select, .wpbdp-page textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  font: inherit;
  font-size: 0.95rem;
}
.wpbdp-page input:focus, .wpbdp-page select:focus, .wpbdp-page textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.2);
}
.wpbdp-page label { font-weight: 600; font-size: 0.92rem; }

/* Liste des categories du plugin */
.wpbdp-categories { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
.wpbdp-categories li { margin: 0; padding: 0; }
.wpbdp-categories li::before { content: none !important; }
.wpbdp-categories a {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.wpbdp-categories a:hover { border-color: var(--brand); color: var(--brand-dark); }
.wpbdp-categories .count { color: var(--text-muted); font-size: 0.82rem; }

/* Pagination et barre d'outils du plugin */
.wpbdp-pagination a, .wpbdp-pagination span {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  text-decoration: none;
}
.wpbdp-pagination .current { background: var(--brand); color: var(--ink); border-color: var(--brand); font-weight: 700; }
.wpbdp-bar { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 12px 16px; }

/* ---------- Filtre des departements (accueil) ---------- */
.depts-filtre { margin-bottom: 16px; }
.depts-filtre input {
  max-width: 420px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  font: inherit;
  font-size: 0.95rem;
}
.depts-filtre input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.2); }
.depts-grid .chip-cache { display: none; }
.depts-grid.tout-affiche .chip-cache { display: inline-block; }
/* ---------- Arborescence categories BD : arbre pliable ---------- */
.wpbdp-categories, .wpbdp-categories ul { display: block; }
.wpbdp-categories li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  padding: 0;
}
.wpbdp-categories li ul {
  flex-basis: 100%;
  margin: 4px 0 4px 14px;
  padding-left: 14px;
  border-left: 2px solid var(--border);
}
.cat-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cat-toggle:hover { border-color: var(--brand); }
.cat-toggle[aria-expanded="true"] { background: var(--brand); color: var(--ink); border-color: var(--brand); }
/* ---------- Barre d'outils du plugin BD (Annuaire / Voir tout / Ajouter) ---------- */
.wpbdp-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 1.6rem;
}
.wpbdp-bar a { font-weight: 600; }
.wpbdp-bar .wpbdp-button, .wpbdp-bar a.button {
  background: var(--brand) !important;
  color: var(--ink) !important;
}
/* ---------- Formulaires Contact Form 7 aux couleurs du theme ---------- */
.wpcf7 form { max-width: 720px; }
.wpcf7 label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"],
.wpcf7 input[type="url"], .wpcf7 select, .wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  font: inherit;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.2);
}
.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wpcf7 input[type="submit"]:hover { background: var(--brand-dark); transform: translateY(-2px); }
.wpcf7 .wpcf7-not-valid-tip { color: #c0392b; font-size: 0.85rem; }
.wpcf7 .wpcf7-response-output {
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  margin: 1rem 0 0 !important;
}