  /* =========================================================
   Identité visuelle & règles globales
   ========================================================= */
:root {
  --brand-primary: #b0361f; /* Rouge orangé signature */
  --brand-secondary: #f25c25; /* Orange chaud */
  --brand-tertiary: #ffd8ba; /* Beige lumineux */
  --brand-accent: #c2410c; /* Accent orange foncé */
  --brand-dark: #1f1411; /* Chocolat profond */
  --brand-muted: #6b7280; /* Gris neutre */
  --brand-cream: #fff3ea; /* Fond crème lumineux */
  --surface: #fffdf8;
  --surface-alt: #fde7da;
  --gradient-warm: linear-gradient(135deg, #b0361f, #f25c25);
  --gradient-cream: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(255, 216, 186, 0.4));
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-xxl: 3rem;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 28px rgba(9, 12, 16, 0.08);
  --shadow-strong: 0 20px 45px rgba(9, 12, 16, 0.18);
  --border-color: rgba(30, 35, 41, 0.08);
  --max-content-width: 1200px;
  --section-gap: clamp(3rem, 8vw, 5rem);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --motion-duration-fast: 0.35s;
  --motion-duration-base: 0.65s;
  --motion-duration-slow: 0.9s;
  --motion-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --reveal-stagger-step: 90ms;
  --body-font-size: clamp(1rem, 1rem + 0.25vw, 1.125rem);
  --focus-ring: 0 0 0 3px rgba(240, 92, 37, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 216, 186, 0.45), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(240, 92, 37, 0.18), transparent 35%),
    linear-gradient(180deg, var(--brand-cream), var(--surface-alt));
  color: var(--brand-dark);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--body-font-size);
  letter-spacing: 0.01em;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.7), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(240, 92, 37, 0.2), transparent 30%);
  pointer-events: none;
  opacity: 0.7;
  z-index: -2;
}

main {
  flex: 1;
  width: 100%;
}

.main-wrapper {
  position: relative;
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.main-wrapper::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--gradient-cream);
  z-index: -1;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  padding-left: clamp(1rem, 3.5vw, 2.5rem);
  padding-right: clamp(1rem, 3.5vw, 2.5rem);
}

.container-xxl {
  max-width: min(1320px, var(--max-content-width));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--brand-secondary);
}

hr {
  border-color: var(--border-color);
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-dark);
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul,
ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.content-wrapper {
  width: min(100%, var(--max-content-width));
  margin: 0 auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.media-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.fluid-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* =========================================================
   Raccourcis typographiques & helpers
   ========================================================= */
.page-section {
  padding: var(--section-gap) 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-subtitle {
  color: var(--brand-muted);
  font-size: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-muted);
}

.section-heading {
  font-size: clamp(2rem, 2.5vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.content-lead {
  font-size: 1.1rem;
  color: var(--brand-muted);
  max-width: 680px;
}

.highlight-link {
  color: var(--brand-secondary);
  font-weight: 600;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--brand-muted);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--brand-primary);
}

.stat-card span {
  color: var(--brand-muted);
  font-size: 0.95rem;
}

.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.feature-card i {
  font-size: 1.8rem;
  color: var(--brand-secondary);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--brand-muted);
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: bold;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(176, 54, 31, 0.12);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
}

.google-rating-card {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px dashed rgba(176, 54, 31, 0.35);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.google-rating-card__badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.google-rating-card__badge strong {
  display: block;
  font-size: 1.1rem;
}

.google-rating-card__badge p {
  margin: 0;
}

.google-rating-card__badge i {
  font-size: 1.5rem;
  color: #ea4335;
  background: rgba(234, 67, 53, 0.08);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.google-rating-card__link {
  align-self: flex-start;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.review-highlight {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 216, 186, 0.25));
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.review-rating {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 380px;
}

.review-score {
  font-size: clamp(3rem, 6vw, 3.8rem);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}

.review-score small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-muted);
}

.review-stars {
  color: #ffbb3a;
  font-size: 1.35rem;
}

.review-meta {
  font-weight: 600;
  color: var(--brand-dark);
}

.review-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.review-card {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 187, 58, 0.4);
  padding: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  font-size: 4rem;
  color: rgba(240, 92, 37, 0.12);
}

.review-card p {
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
}

.review-card span {
  font-size: 0.9rem;
  color: var(--brand-muted);
}

.schedule-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(240, 92, 37, 0.1);
  color: var(--brand-accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.schedule-pill i {
  font-size: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.info-grid__item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.info-grid__item small {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--brand-muted);
}

.info-grid__item strong {
  font-size: 1.25rem;
  color: var(--brand-dark);
}

.info-grid__item a {
  color: inherit;
}

.info-grid__item a:hover {
  color: var(--brand-accent);
  text-decoration: underline;
}

/* =========================================================
   États de chargement
   ========================================================= */
.lazy,
iframe[data-src] {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), rgba(255, 216, 186, 0.6), rgba(255, 255, 255, 0.6));
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  filter: blur(8px);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth), filter 0.6s var(--transition-smooth);
}

img.loaded,
iframe.loaded {
  animation: none;
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}

.loading-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: spin 0.9s linear infinite;
}

/* =========================================================
   Progression & loader
   ========================================================= */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-warm);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 2000;
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0.35;
}

#page-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.6), rgba(176, 54, 31, 0.92));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #fff;
  z-index: 2100;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.page-loaded #page-loader {
  opacity: 0;
  visibility: hidden;
}

#page-loader span {
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

#page-loader p {
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   Tables & formulaires
   ========================================================= */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

table thead {
  background: rgba(176, 54, 31, 0.08);
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(43, 29, 28, 0.08);
}

th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--brand-dark);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: rgba(176, 54, 31, 0.04);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
}

.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: rgba(43, 29, 28, 0.3);
  border-radius: 999px;
}

label {
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.9rem;
  background: #fff;
  font-size: 1rem;
  color: inherit;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(240, 92, 37, 0.55);
  box-shadow: var(--focus-ring);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid.two-columns {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* =========================================================
   Page-specific styles
   ========================================================= */
body.pro-body {
  background: linear-gradient(180deg, #f7f7fb 0%, #ffffff 55%);
}

body.pro-body .main-wrapper {
  padding-top: clamp(1.5rem, 3vw, 3rem);
}

body.pro-body i {
  font-size: 1.2rem;
}

.agenda-management {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.agenda-management > * + * {
  margin-top: 1.5rem;
}

.agenda-management .card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: none;
}

.agenda-management .card .card-body {
  padding: 1.25rem;
}

.agenda-management .alert {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(176, 54, 31, 0.35);
  background: rgba(176, 54, 31, 0.05);
}

.agenda-management .pagination .page-link {
  border-radius: var(--radius-pill);
}

.agenda-management .table thead {
  background: rgba(176, 54, 31, 0.08);
}

/* =========================================================
   Navbar & footer
   ========================================================= */
.navbar {
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid transparent;
  box-shadow: 0 6px 25px rgba(18, 18, 18, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-strong);
}

.navbar .container {
  align-items: center;
}

.navbar .navbar-nav {
  gap: 0.15rem;
}

.navbar .navbar-brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-primary);
}

.navbar .navbar-brand img {
  height: 28px;
  width: auto;
}

.navbar .navbar-brand span {
  display: block;
  line-height: 1.1;
}

.navbar .navbar-brand small {
  font-size: 0.75rem;
  text-transform: none;
  color: var(--brand-muted);
  font-weight: 500;
}

.navbar .nav-link {
  color: var(--brand-dark);
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.navbar .nav-link.active {
  background: rgba(176, 54, 31, 0.12);
  color: var(--brand-primary);
  font-weight: 600;
}

.navbar .nav-link i {
  font-size: 1.1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--brand-primary) !important;
  background: rgba(176, 54, 31, 0.08);
  transform: translateY(-1px);
}

.navbar .dropdown-menu {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  background-color: var(--surface);
  padding: 0.5rem;
  min-width: 220px;
}

.navbar .dropdown-item {
  color: var(--brand-dark);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  transition: all var(--transition-base);
}

.navbar .dropdown-item:hover {
  background: rgba(176, 54, 31, 0.08);
  color: var(--brand-primary);
}

.navbar .navbar-toggler {
  border-color: rgba(30, 35, 41, 0.2);
  background: transparent;
}

.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(47, 47, 47, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



footer {
  background: var(--gradient-warm);
  color: var(--surface);
  padding: 4rem 0 2.5rem;
  position: relative;
  overflow: hidden;
  margin-top: var(--section-gap);
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 60%);
}

footer .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

footer h5 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #fff;
}

footer p,
footer li,
footer a {
  font-size: 0.95rem;
}

footer address {
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

footer a {
  color: rgba(255, 255, 255, 0.95);
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .social-link img {
  height: 28px;
  width: auto;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.15rem;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

footer .social-link img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  border-radius: var(--radius-md);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn:focus {
  box-shadow: var(--focus-ring);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border: none;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-strong);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-outline-primary {
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--brand-primary);
  color: #fff !important;
}

.btn-light {
  background: #fff;
  border: none;
  color: var(--brand-dark);
}

.btn-link {
  text-decoration: none;
  font-weight: 600;
}

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

/* =========================================================
   Hero & bannières
   ========================================================= */
.page-hero {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.hero-home {
  background: linear-gradient(135deg, rgba(176, 54, 31, 0.12), rgba(242, 92, 37, 0.2));
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent 40%);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-meta .meta-block {
  min-width: 140px;
}

.meta-block strong {
  display: block;
  font-size: 1.4rem;
  color: var(--brand-primary);
}

.banner {
  max-height: 500px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
}

.banner img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.6s ease;
}

.banner:hover img {
  transform: scale(1.08);
}

.banner-text {
  background: rgba(0, 0, 0, 0.65);
  padding: 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* =========================================================
   Cartes & blocs de contenu
   ========================================================= */
.card {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.card-img-top {
  border-top-left-radius: calc(var(--radius-lg) - 2px);
  border-top-right-radius: calc(var(--radius-lg) - 2px);
  object-fit: cover;
  height: 230px;
}

.quote-card {
  border-left: 4px solid var(--brand-primary);
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.6));
}

.testimonial blockquote {
  font-style: italic;
  border-left: 4px solid var(--brand-secondary);
  padding-left: 1rem;
  margin: 0;
  color: var(--brand-dark);
}

.testimonial footer {
  font-size: 0.95rem;
  color: var(--brand-muted);
}

.contact-card,
.catalogue-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(176, 54, 31, 0.12);
  color: var(--brand-primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.product-card h5 {
  font-weight: 700;
}

.badge-season {
  background: rgba(20, 136, 54, 0.12);
  color: #148836;
}

.recipe-meta {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px dashed var(--border-color);
  padding: 1rem 1.25rem;
}

.timeline {
  border-left: 2px solid var(--border-color);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.45rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 6px rgba(176, 54, 31, 0.15);
}

/* =========================================================
   Sections spécifiques
   ========================================================= */
.newsletter-section {
  border-radius: var(--radius-lg);
  padding: 3rem;
  background: linear-gradient(120deg, var(--brand-primary), #550808);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.newsletter-form .form-control {
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  border: none;
}

.filter-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.filter-section .form-select,
.filter-section .form-control {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 0.7rem 1rem;
}

.filter-chips {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-chip {
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--border-color);
  background: #fff;
  font-weight: 600;
  color: var(--brand-muted);
}

.filter-chip.active {
  background: rgba(176, 54, 31, 0.12);
  color: var(--brand-primary);
  border-color: rgba(176, 54, 31, 0.35);
}

.contact-form .form-control {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 0.8rem 1rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-sync {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(240, 92, 37, 0.25);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.contact-sync__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-sync__header span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--brand-muted);
}

.contact-sync__body {
  padding: 1.5rem;
}

.contact-sync__link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand-accent);
}

.map-embed {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--border-color);
  min-height: 280px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-sync .map-embed {
  border: none;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: none;
}

.cta-section {
  border-radius: var(--radius-lg);
  padding: 3rem;
  background: linear-gradient(135deg, var(--brand-secondary), #b60317);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--brand-dark);
  font-weight: 600;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   Cookie banner
   ========================================================= */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 340px;
  background-color: #1c1c1c;
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  font-size: 0.95rem;
}

/* =========================================================
   Mode vintage (Easter egg)
   ========================================================= */
body.vintage-mode {
  filter: grayscale(65%);
  font-family: 'Courier New', monospace;
  background-color: #f8f1e4 !important;
  color: #2c2c2c;
}

body.vintage-mode .navbar,
body.vintage-mode footer {
  background-color: #704214 !important;
  color: #fbead0;
  box-shadow: none;
}

body.vintage-mode a {
  color: #6b3e26 !important;
  text-decoration: underline;
}

body.vintage-mode .btn {
  border-radius: 0;
  background-color: #704214 !important;
  color: #fff !important;
}

body.vintage-mode .banner-text {
  background-color: rgba(250, 235, 215, 0.9);
  color: #000;
}

/* =========================================================
   Seasonal effects
   ========================================================= */
body.seasonal-winter {
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.5), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(240, 92, 37, 0.12), transparent 35%),
    linear-gradient(180deg, #fef8f4 0%, #f8fbff 65%);
}

.seasonal-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1050;
  overflow: hidden;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

body.seasonal-winter .seasonal-overlay {
  opacity: 1;
}

.seasonal-overlay .snowflake {
  position: absolute;
  top: -5%;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 6px rgba(176, 54, 31, 0.5);
  animation-name: snowfall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  body.seasonal-winter .seasonal-overlay {
    display: none;
  }
}

/* =========================================================
   Animations & accesibilité
   ========================================================= */
@keyframes shimmer {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes snowfall {
  0% {
    transform: translate3d(0, -10%, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate3d(var(--snow-drift, 20px), 110vh, 0) rotate(360deg);
    opacity: 0;
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left {
  animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.reveal-on-scroll,
[data-reveal] {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 24px), 0) scale(var(--reveal-scale, 0.985));
  filter: blur(var(--reveal-blur, 0));
  transition-property: opacity, transform, filter;
  transition-duration: var(--reveal-duration, var(--motion-duration-base));
  transition-timing-function: var(--reveal-easing, var(--motion-ease-out));
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

.reveal-on-scroll.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

[data-reveal],
.reveal-on-scroll {
  --reveal-x: 0;
  --reveal-y: 24px;
  --reveal-scale: 0.985;
  --reveal-blur: 0;
}

[data-reveal="fade"],
.reveal-on-scroll[data-reveal="fade"] {
  --reveal-y: 16px;
  --reveal-blur: 4px;
}

[data-reveal="lift"],
.reveal-on-scroll[data-reveal="lift"] {
  --reveal-y: 32px;
  --reveal-blur: 6px;
  --reveal-duration: var(--motion-duration-slow);
}

[data-reveal="slide-left"],
.reveal-on-scroll[data-reveal="slide-left"] {
  --reveal-x: -30px;
}

[data-reveal="slide-right"],
.reveal-on-scroll[data-reveal="slide-right"] {
  --reveal-x: 30px;
}

[data-reveal="scale"],
.reveal-on-scroll[data-reveal="scale"] {
  --reveal-scale: 0.94;
  --reveal-blur: 4px;
}

[data-reveal="zoom-out"],
.reveal-on-scroll[data-reveal="zoom-out"] {
  --reveal-scale: 1.08;
  --reveal-duration: var(--motion-duration-slow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

*:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px) {
  .page-hero {
    padding: 2.5rem;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .navbar .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 0.25rem;
  }

  .navbar .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 0.85rem;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border-color);
  }

  .navbar .navbar-collapse .nav-link {
    color: var(--brand-dark) !important;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .navbar .navbar-collapse .nav-link:hover {
    background: rgba(176, 54, 31, 0.08);
    color: var(--brand-primary) !important;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 2rem;
  }

  .hero-media {
    margin-top: 2rem;
  }

  .navbar .navbar-brand {
    font-size: 1.1rem;
  }

  .navbar .navbar-brand img {
    height: 24px;
  }

  .navbar .navbar-collapse {
    padding: 1rem;
  }

  footer {
    text-align: center;
    padding: 3rem 0 2rem;
  }

  .newsletter-section {
    padding: 2rem;
  }

  .footer-bottom {
    text-align: center;
  }

  .card:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
  }
}

@media (max-width: 576px) {
  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-meta {
    flex-direction: column;
  }

  table {
    font-size: 0.95rem;
  }

  th,
  td {
    padding: 0.65rem;
  }
}

/* =========================================================
   Impression & préférences utilisateurs
   ========================================================= */
@media print {
  .navbar,
  footer,
  .btn,
  #cookie-banner {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

@media (prefers-contrast: high) {
  .card,
  .navbar,
  footer {
    border: 2px solid #000;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-on-scroll,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
/* =========================================================
   Contact & Communication
   ========================================================= */
.contact-keys {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-keys span {
  background: rgba(176, 54, 31, 0.08);
  border-radius: var(--radius-lg);
  padding: 0.35rem 0.85rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.contact-alert {
  background: linear-gradient(135deg, #b0361f, #ff8c42);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-strong);
}

.contact-alert .btn {
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-alert--warning {
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-strong);
}

.contact-alert--warning .eyebrow,
.contact-alert--warning h3,
.contact-alert--warning p {
  color: #fff !important;
}

.contact-alert--warning .text-muted {
  color: rgba(255, 255, 255, 0.85) !important;
}

.contact-alert--warning .btn-light {
  color: var(--brand-primary);
  background: #fff;
  border-color: #fff;
}

.contact-alert--warning .btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.contact-alert--warning .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contact-steps {
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.contact-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-step__icon span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
}

.contact-validation-note {
  background: rgba(176, 54, 31, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-priority-list {
  display: grid;
  gap: 1rem;
}

.contact-priority-list span {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-quick-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-quick-actions a {
  flex: 1;
  text-align: center;
  border: 1px dashed var(--border-color);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

/* =========================================================
   Manager area refresh
   ========================================================= */
.manager-shell {
  position: relative;
  z-index: 1;
}

.manager-hero {
  background: linear-gradient(120deg, rgba(176, 54, 31, 0.08), rgba(255, 140, 66, 0.12));
  border-radius: var(--radius-xxl);
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid var(--border-color);
}

.manager-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.manager-hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  min-width: 240px;
}

.manager-hero__meta > div {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.manager-hero__meta strong {
  display: block;
  font-size: 1.75rem;
  color: var(--brand-dark);
}

.manager-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.manager-stat-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
}

.manager-stat-card__icon {
  font-size: 1.5rem;
}

.manager-page-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.manager-page-header__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.manager-panel {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
}

.manager-panel--form {
  padding: 2rem;
}

.manager-panel--recipes {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manager-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.manager-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.manager-timeline__item {
  background: rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.manager-timeline__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.manager-recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.manager-recipe-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.manager-recipe-card img {
  border-radius: var(--radius-lg);
  height: 120px;
  object-fit: cover;
  width: 100%;
}

.manager-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.manager-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.manager-list li:last-child {
  border-bottom: none;
}

.manager-list--compact li {
  padding-bottom: 0.5rem;
  border-bottom-style: dashed;
}

.manager-list__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.manager-recipe-row {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.manager-recipe-row__media img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.manager-recipe-row__placeholder {
  width: 180px;
  height: 120px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.5rem;
}

.manager-recipe-row__body {
  flex: 1;
  min-width: 240px;
}

.manager-recipe-row__heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.manager-recipe-row__tags {
  display: flex;
  gap: 0.5rem;
}

.manager-recipe-row__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.5rem 0;
}

.manager-table th {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

/* =========================================================
   CRM & Agenda Boucher
   ========================================================= */
.crm-board,
.agenda-board {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.crm-form .form-control,
.crm-form .form-select,
.agenda-form .form-control,
.agenda-form .form-select {
  border-radius: var(--radius-md);
}

.crm-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.crm-column {
  background: rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-lg);
  padding: 1rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.crm-column__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.crm-column__count {
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 0.1rem 0.65rem;
  font-size: 0.85rem;
}

.crm-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 0.85rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.crm-card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.crm-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.crm-card__actions button {
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.crm-card__actions button[data-crm-action="progress"] {
  background: rgba(26, 148, 93, 0.12);
  color: #116a45;
}

.crm-card__actions button[data-crm-action="delete"] {
  background: rgba(189, 47, 33, 0.12);
  color: #a02a1c;
}

.agenda-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.agenda-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agenda-item__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.agenda-item.is-done {
  opacity: 0.65;
}

.agenda-item.is-done strong {
  text-decoration: line-through;
}

.agenda-item__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.agenda-item__actions button {
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.agenda-item__actions button[data-agenda-action="done"] {
  background: rgba(26, 148, 93, 0.12);
  color: #116a45;
}

.agenda-item__actions button[data-agenda-action="delete"] {
  background: rgba(189, 47, 33, 0.12);
  color: #a02a1c;
}

.address-autocomplete {
  position: relative;
}

.address-autocomplete textarea {
  resize: vertical;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border-color, #e2e5ec);
  border-radius: var(--radius-lg, 0.85rem);
  z-index: 15;
  max-height: 240px;
  overflow-y: auto;
  padding: 0.25rem 0;
}

.address-suggestions[hidden] {
  display: none;
}

.address-suggestions__option {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.address-suggestions__option-title {
  display: block;
  font-weight: 600;
  color: var(--text-color, #212529);
}

.address-suggestions__option-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted, #6c757d);
}

.address-suggestions__option:hover,
.address-suggestions__option:focus,
.address-suggestions__option.is-active {
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}
