/* ========================================
   PANIER FACILE - STYLES.CSS
   Version 2.0 - Optimisé et Responsive

   Structure:
   1. CSS Variables & Reset
   2. Typography
   3. Layout
   4. Components (Buttons, Cards, Forms, Tables, Navbar, Alerts)
   5. Landing Page
   6. Chatbot
   7. Utilities
   8. Responsive (Mobile, Tablette, Desktop, Large, 4K)
======================================== */

/* ========================================
   1. CSS VARIABLES & RESET
======================================== */

:root {
  /* Couleurs principales */
  --primary: #a5662a;
  --primary-light: #f7c873;
  --primary-dark: #8b5423;

  /* Couleurs sémantiques */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #dc3545;
  --info: #007bff;

  /* Couleurs de texte */
  --text: #0f172a;
  --text-light: #475569;
  --text-muted: #94a3b8;

  /* Couleurs de fond */
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --bg-primary: #a5662a;

  /* Bordures */
  --border: #e2e8f0;

  /* Ombres */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Layout */
  --container-max: 1400px;
  --container-padding: 24px;

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

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'SF Pro Display', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   2. TYPOGRAPHY
======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

strong {
  font-weight: 600;
}

/* ========================================
   3. LAYOUT
======================================== */

.container-modern {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container {
  padding: 20px;
}

/* ========================================
   4. COMPONENTS
======================================== */

/* --- Navbar --- */
.navbar {
  padding: 0.5rem 1rem;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-link {
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: #ffcc00 !important;
}

.navbar-text {
  font-size: 0.95rem;
}

#checkout-navbar {
  background-color: #ffcc00;
  color: #000;
  font-weight: 500;
  transition: all var(--transition-normal);
}

#checkout-navbar:hover {
  background-color: #e6b800;
  color: #000;
  transform: translateY(-2px);
}

/* --- Boutons --- */
.btn {
  border-radius: 0.25rem;
  font-weight: 500;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

/* Variantes de boutons */
.btn-primary {
  background-color: #007bff;
  color: #fff;
}

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

.btn-dark {
  background-color: #343a40;
  color: #fff;
}

.btn-dark:hover {
  background-color: #23272b;
}

.btn-danger {
  background-color: var(--danger);
  color: #fff;
}

.btn-danger:hover {
  background-color: #c82333;
}

.btn-warning {
  background-color: #ffcc00;
  color: #000;
}

.btn-warning:hover {
  background-color: #e6b800;
}

.btn-success {
  background-color: var(--success);
  color: #fff;
}

.btn-success:hover {
  background-color: #218838;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.btn-info {
  background-color: var(--info);
  color: #fff;
}

.btn-info:hover {
  background-color: #0069d9;
}

/* Boutons outline */
.btn-outline-primary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

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

.btn-outline-danger:hover {
  background-color: var(--danger);
  color: #fff;
}

.btn-outline-warning {
  background-color: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.btn-outline-warning:hover {
  background-color: #ffcc00;
  color: #000;
}

/* Tailles de boutons */
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

/* --- Cards --- */
.card {
  background-color: #fffbe6;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all var(--transition-normal);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 1rem 1.5rem;
  margin: -1.5rem -1.5rem 1.5rem;
  border-radius: 16px 16px 0 0;
  font-weight: 600;
}

.card-body {
  padding: 0;
}

.shadow {
  box-shadow: var(--shadow-lg);
}

/* --- Formulaires --- */
form .form-group,
form .mb-3,
form .mb-4 {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-control,
input.form-control,
textarea.form-control,
select.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Checkboxes pour formulaires Django */
input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  cursor: pointer;
}

/* --- Alertes --- */
.alert {
  border-radius: 0.25rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

/* --- Tables --- */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}

table th,
table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}

table th {
  background-color: #333;
  color: #fff;
  font-weight: 600;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ========================================
   5. LANDING PAGE
======================================== */

/* Hero Section */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffbf5 0%, #ffffff 50%, #f8fafc 100%);
  width: 100%;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-light), transparent);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--success), transparent);
  bottom: 10%;
  left: -10%;
  animation-delay: 7s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-modern {
  animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.trust-avatars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid white;
  animation: pop-in 0.5s ease-out backwards;
  animation-delay: var(--delay);
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.trust-avatars .count {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid white;
}

.trust-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

.hero-title-modern {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.highlight-modern {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle-modern {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-subtitle-modern strong {
  color: var(--text);
  font-weight: 600;
}

.cta-group {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--text);
  color: white;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary-modern:hover::before {
  opacity: 0.15;
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  color: white;
}

.btn-primary-modern:active {
  transform: translateY(0);
}

.btn-primary-modern span {
  position: relative;
  z-index: 1;
}

.btn-primary-modern svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-primary-modern:hover svg {
  transform: translateX(4px);
}

.btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: white;
  color: var(--text);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-modern:hover {
  border-color: var(--text);
  background: var(--bg-soft);
  color: var(--text);
}

.reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.reassurance-item svg {
  flex-shrink: 0;
}

/* Hero Visual - Phone Mockup */
.hero-visual-modern {
  position: relative;
  animation: fade-in-right 0.8s ease-out 0.3s backwards;
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.phone-mockup {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: #1f2937;
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #1f2937;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.app-preview {
  padding: 40px 20px 20px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.app-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.app-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.app-menu {
  font-size: 18px;
  color: var(--text-light);
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: 10px;
  transition: all 0.3s ease;
  animation: slide-in 0.5s ease-out backwards;
  animation-delay: calc(0.5s + var(--delay));
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.app-item.checked {
  background: rgba(16, 185, 129, 0.08);
}

.checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox.checked {
  background: var(--success);
  border-color: var(--success);
}

.app-item span {
  flex: 1;
  font-size: 14px;
  color: var(--text);
}

.app-item.checked span {
  text-decoration: line-through;
  color: var(--text-muted);
}

.item-quantity {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.app-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.app-add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--text);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.app-add-btn:hover {
  background: #1e293b;
}

.floating-notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  min-width: 240px;
  animation: float-notif 4s ease-in-out infinite;
}

@keyframes float-notif {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.notif-1 {
  top: 10%;
  left: -100px;
  animation-delay: 0s;
}

.notif-2 {
  bottom: 15%;
  right: -100px;
  animation-delay: 2s;
}

.notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.notif-icon.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.notif-icon.alert {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.notif-content {
  flex: 1;
}

.notif-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.notif-time {
  font-size: 11px;
  color: var(--text-muted);
}

/* Stats Section */
.stats-section {
  width: 100%;
  padding: 80px 0;
  background: white;
  border-bottom: 1px solid var(--border);
}

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

.stat-card {
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  background: var(--bg-soft);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* Pricing Section */
.pricing-modern {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, var(--bg-soft) 100%);
}

.pricing-container {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fbbf24;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 20px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.pricing-title-modern {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pricing-subtitle-modern {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-light);
  line-height: 1.6;
}

.pricing-card-modern {
  background: white;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.toggle-option {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: 16px;
  flex-wrap: wrap;
}

.price-before,
.price-now {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.price-value-old {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-arrow {
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
}

.price-value-new {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: clamp(42px, 4vw, 52px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-period {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
}

.trial-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--text);
}

.btn-pricing-modern {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: var(--text);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
  margin-bottom: 16px;
  text-decoration: none;
}

.btn-pricing-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.3);
  color: white;
}

.btn-pricing-modern svg {
  transition: transform 0.3s ease;
}

.btn-pricing-modern:hover svg {
  transform: translateX(4px);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.features-included {
  text-align: left;
}

.features-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-list {
  display: grid;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.feature-item svg {
  flex-shrink: 0;
}

.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(245, 158, 11, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
  }
}

/* Problem/Solution Section */
.problem-solution {
  width: 100%;
  padding: 100px 0;
  background: white;
}

.problem-solution .container-modern {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.problem-box,
.solution-box {
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.problem-box {
  background: #fef2f2;
  border: 2px solid #fecaca;
}

.solution-box {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
}

.problem-icon,
.solution-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.problem-box h3,
.solution-box h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.problem-list,
.solution-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-list li {
  padding-left: 24px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.problem-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.solution-list li {
  padding-left: 24px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.solution-arrow {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
}

/* Testimonials */
.testimonials-modern {
  width: 100%;
  padding: 100px 0;
  background: var(--bg-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-light);
}

.testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-modern {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.testimonial-modern.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #fffbf5 0%, white 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.testimonial-rating span:first-child {
  color: #fbbf24;
  font-size: 16px;
}

.rating-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-bottom: 12px;
}

.author-avatar-modern {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name-modern {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.author-info {
  font-size: 13px;
  color: var(--text-muted);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* How It Works */
.how-it-works {
  width: 100%;
  padding: 100px 0;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  align-items: center;
}

.step-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.step-arrow {
  font-size: 32px;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  display: none;
}

/* FAQ Section */
.faq-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: var(--bg-soft);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-soft);
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.faq-answer {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Final CTA */
.final-cta-modern {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: white;
}

.cta-box-modern {
  position: relative;
  background: var(--text);
  border-radius: 32px;
  padding: 80px 48px;
  overflow: hidden;
  width: 100%;
}

.cta-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-orb 15s ease-in-out infinite;
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 200, 115, 0.2), transparent);
  top: -20%;
  right: -10%;
}

.cta-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent);
  bottom: -30%;
  left: -15%;
  animation-delay: 7s;
}

.cta-content-modern {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content-modern h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content-modern p {
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-cta-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: white;
  color: var(--text);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.btn-cta-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  color: var(--text);
}

.btn-cta-modern svg {
  transition: transform 0.3s ease;
}

.btn-cta-modern:hover svg {
  transform: translateX(4px);
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ========================================
   6. CHATBOT
======================================== */

/* Bouton flottant */
#openChatBtn,
.chat-toggle-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all var(--transition-normal);
  border: none;
}

#openChatBtn:hover,
.chat-toggle-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Fenêtre du chatbot */
#chatbot,
.chatbot-container {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  max-height: 500px;
  background: #fefdfb;
  border: 2px solid var(--primary);
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  overflow: hidden;
}

/* Header du chatbot */
.chat-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h2,
.chat-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

#closeChatBtn,
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  transition: transform var(--transition-fast);
}

#closeChatBtn:hover,
.close-btn:hover {
  transform: scale(1.1);
}

/* Chat box */
.chat-box {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #fefdfb;
  max-height: 350px;
}

.message {
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 15px;
  max-width: 80%;
  word-wrap: break-word;
}

.message.user {
  background: var(--primary);
  color: white;
  margin-left: auto;
  text-align: right;
}

.message.bot {
  background: #f5e6d3;
  color: #5a3d1f;
  margin-right: auto;
  border: 1px solid #d4a574;
}

/* Suggestions */
.suggestions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0;
}

.suggestion-btn {
  background: white;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

.suggestion-btn:hover {
  background: var(--primary);
  color: white;
}

/* Input container */
.input-container {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #d4a574;
  background: white;
}

.chat-input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid var(--primary);
  font-size: 14px;
}

.chat-input:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 2px rgba(165, 102, 42, 0.1);
}

.send-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.send-btn:hover {
  background: var(--primary-dark);
}

/* Loading */
#loading,
.loading {
  display: none;
  justify-content: center;
  align-items: center;
  color: #5a3d1f;
  font-style: italic;
  margin: 10px 0;
  font-size: 13px;
}

#loading.active,
.loading.active {
  display: flex;
}

/* ========================================
   7. UTILITIES
======================================== */

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

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

.text-right {
  text-align: right;
}

.text-success {
  color: var(--success) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.text-info {
  color: var(--info) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

#popup-message {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

/* ========================================
   8. RESPONSIVE
======================================== */

/* Tablettes (1024px et moins) */
@media (max-width: 1024px) {
  :root {
    --container-padding: 20px;
  }

  .hero-grid {
    gap: 60px;
  }

  .notif-1 {
    left: -60px;
  }

  .notif-2 {
    right: -60px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: block;
    transform: rotate(90deg);
    margin: 16px 0;
  }

  .pricing-card-modern {
    padding: 40px 32px;
  }
}

/* Tablettes et mobiles (768px et moins) */
@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }

  /* Navigation */
  .navbar {
    padding: 0.5rem;
  }

  .navbar-brand span {
    font-size: 1rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .navbar .nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Hero */
  .hero-modern {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title-modern {
    font-size: 36px;
  }

  .hero-subtitle-modern {
    font-size: 16px;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn-primary-modern,
  .btn-secondary-modern {
    width: 100%;
    justify-content: center;
  }

  .reassurance {
    flex-direction: column;
    gap: 12px;
  }

  /* Notifications flottantes */
  .floating-notif {
    position: relative;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 12px auto;
    max-width: 320px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Pricing */
  .pricing-modern {
    padding: 60px 0;
  }

  .pricing-card-modern {
    padding: 32px 24px;
  }

  .pricing-comparison {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .price-arrow {
    transform: rotate(90deg);
  }

  /* Problem/Solution */
  .problem-solution {
    padding: 60px 0;
  }

  .problem-solution .container-modern {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-arrow {
    transform: rotate(90deg);
    margin: 16px 0;
  }

  .problem-box,
  .solution-box {
    padding: 32px 24px;
  }

  /* Testimonials */
  .testimonials-modern {
    padding: 60px 0;
  }

  .testimonials-grid-modern {
    grid-template-columns: 1fr;
  }

  /* How it works */
  .how-it-works {
    padding: 60px 0;
  }

  /* FAQ */
  .faq-section {
    padding: 60px 0;
    min-height: auto;
  }

  .faq-question h4 {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 14px;
  }

  /* Final CTA */
  .final-cta-modern {
    padding: 60px 0;
    min-height: auto;
  }

  .cta-box-modern {
    padding: 60px 32px;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 12px;
  }

  /* Général */
  .container {
    padding: 10px;
  }

  .card {
    padding: 1rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }

  /* Tables responsive */
  table {
    font-size: 0.875rem;
  }

  table th,
  table td {
    padding: 0.5rem;
  }

  /* Chatbot */
  #chatbot,
  .chatbot-container {
    width: 90%;
    bottom: 80px;
    right: 5%;
  }

  #openChatBtn,
  .chat-toggle-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }
}

/* Mobiles (480px et moins) */
@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  .btn-primary-modern,
  .btn-secondary-modern {
    padding: 14px 24px;
    font-size: 15px;
  }

  .phone-mockup {
    max-width: 280px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-modern {
    padding: 24px 20px;
  }

  .cta-box-modern {
    padding: 48px 24px;
  }

  .btn-cta-modern {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
  }

  /* Navigation mobile */
  .navbar-text {
    font-size: 0.8rem;
  }

  #checkout-navbar {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }

  /* Formulaires mobile */
  .form-control {
    font-size: 16px; /* Évite le zoom sur iOS */
  }

  /* Boutons mobile */
  .btn-sm {
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
  }
}

/* Grands écrans (1440px et plus) */
@media (min-width: 1440px) {
  :root {
    --container-max: 1600px;
    --container-padding: 48px;
  }
}

/* Très grands écrans 4K (2560px et plus) */
@media (min-width: 2560px) {
  :root {
    --container-max: 2000px;
    --container-padding: 80px;
  }

  .hero-title-modern {
    font-size: 80px;
  }

  .hero-subtitle-modern {
    font-size: 22px;
  }

  .section-header h2 {
    font-size: 56px;
  }

  .section-header p {
    font-size: 22px;
  }
}

/* ========================================
   INTERMARCHÉ INTEGRATION STYLES
======================================== */

/* Select Store Page */
#map {
    height: 400px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.store-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.distance-badge {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Validate Matches Page */
.match-card {
    transition: box-shadow 0.2s;
}

.match-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-image {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.match-score {
    font-size: 0.85rem;
}

.no-match-alert {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

/* Redirect Page */
.success-icon {
    font-size: 4rem;
    color: #28a745;
    animation: scaleIn 0.5s ease-in-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.redirect-card {
    max-width: 600px;
    margin: 0 auto;
}

.countdown {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

/* Error Page */
.error-icon {
    font-size: 4rem;
    color: #dc3545;
}

.error-card {
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   DRIVE / STORE SELECTION STYLES
======================================== */

/* Location message alert (initially hidden) */
#locationMessage {
    display: none;
}

/* Drive modal states */
#driveSuccess,
#driveError {
    display: none;
}

#driveModalFooter {
    display: none;
}

/* Icon sizes in modals */
.drive-modal-icon {
    font-size: 3rem;
}

/* Image placeholder for product validation */
.product-image-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder i {
    font-size: 2rem;
}

/* Progress bar custom height */
.progress-bar-thin {
    height: 10px;
}

/* Match status arrows */
.match-arrow {
    font-size: 1.5rem;
}

/* Table column widths */
.table-actions-wide {
    width: 60%;
}

/* Card backgrounds */
.card-yellow-light {
    background: #fffbe6;
    border-radius: 16px;
}

/* Centered containers for forms */
.centered-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.centered-form-card {
    width: 400px;
    border-radius: 16px;
    background: #fffbe6;
}

/* Landing page avatar delays (for animations) */
.avatar-delayed {
    animation-delay: var(--delay);
}

/* Hidden forms */
.form-hidden {
    display: none;
}

/* Home page welcome card */
.home-welcome-card {
    background: #fffbe6;
}
