﻿/**
 * base.css
 * Reset, typographie de base, animations, navigation, boutons, modals, responsive global
 * Dépend de : variables.css
 * NOTE : ne pas renommer les classes — utilisées dans tout le projet
 */

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--cream-dark);
    color: #2A1708;
    overflow-x: hidden;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }
  @keyframes goldShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
  }
  @keyframes gradientMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  @keyframes starPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50%       { transform: scale(1.3) rotate(20deg); opacity: 0.8; }
  }
  @keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(201,150,60,0.4); }
    50%       { box-shadow: 0 0 18px rgba(201,150,60,0.9); }
  }
  @keyframes heartPop {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.5); }
    60%  { transform: scale(0.9); }
    100% { transform: scale(1); }
  }
  @keyframes dropDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* ===== NAV ===== */
  #page-home > nav,
  nav.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    background: rgba(251,246,240,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196,98,45,0.1);
    transition: all 0.3s ease;
  }

  /* Nav logo - Libre Baskerville, dégradé animé */
  .nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    z-index: 101;
    line-height: 1;
    overflow: visible;
  }
  .nav-logo .soeur-text {
    font-family: 'Berkshire Swash', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.5px;
    line-height: 1;
    position: relative;
    background: linear-gradient(110deg,
      #CB6C2B 0%,
      #DB8A2A 25%,
      #D5BA70 50%,
      #DB8A2A 75%,
      #CB6C2B 100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoFlow 4s linear infinite;
  }

  .nav-logo .eat-static {
    font-family: 'Berkshire Swash', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.5px;
    margin-left: 1px;
    line-height: 1;
    background: linear-gradient(110deg,
      #C9963C 0%,
      #F0D060 20%,
      #FFE97A 38%,
      #C9963C 55%,
      #8B6914 72%,
      #C9963C 85%,
      #F0D060 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoFlow 4s linear infinite;
    animation-delay: -2s;
  }
  @keyframes logoFlow {
    0%   { background-position: 0% center; }
    100% { background-position: 250% center; }
  }
  .nav-logo-icon { display: none; }

  /* Footer logo */
  .footer-brand .nav-logo .soeur-text,
  .footer-brand .nav-logo .eat-static {
    animation: logoFlow 4s linear infinite;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: var(--text-mid);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--terracotta); }

  .nav-right { display: flex; align-items: center; gap: 12px; }

  /* User dropdown */
  .user-dropdown-wrap { position: relative; }
  .user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--terracotta);
    border: none;
    padding: 9px 18px 9px 12px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(196,98,45,0.35);
  }
  .user-btn:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,98,45,0.45); }

  /* Filled user icon SVG */
  .user-avatar-icon { width: 22px; height: 22px; flex-shrink: 0; }

  .user-chevron {
    font-size: 9px;
    color: var(--text-light);
    transition: transform 0.2s;
  }
  .user-dropdown-wrap.open .user-chevron { transform: rotate(180deg); }

  .user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(42,23,8,0.14);
    border: 1px solid var(--cream-dark);
    min-width: 210px;
    overflow: hidden;
    z-index: 200;
    animation: dropDown 0.2s ease;
  }
  .user-dropdown-wrap.open .user-dropdown { display: block; }

  .dropdown-header {
    padding: 14px 16px 10px;
    border-bottom: 1px solid var(--cream-dark);
  }
  .dropdown-header span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 2px;
  }
  .dropdown-header strong { font-size: 13px; color: var(--text-dark); }

  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 12px;
    color: var(--text-mid);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
    border: none;
    background: none;
    width: 100%;
    font-family: 'Inter', 'DM Sans', sans-serif;
  }
  .dropdown-item:hover { background: var(--cream); color: var(--terracotta); }
  .dropdown-item svg { width: 14px; height: 14px; flex-shrink: 0; }
  .dropdown-divider { height: 1px; background: var(--cream-dark); margin: 4px 0; }
  .dropdown-item.logout { color: #c0392b; }
  .dropdown-item.logout:hover { background: #fff5f5; }

  /* Mobile nav */
  .hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: transparent;
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px 7px;
    transition: border-color 0.2s;
    z-index: 101;
  }
  .hamburger-btn:hover { border-color: var(--terracotta); }
  .hamburger-btn span { display: block; height: 2px; background: var(--text-mid); border-radius: 2px; transition: all 0.3s; }
  .hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger-btn.open span:nth-child(2) { opacity: 0; }
  .hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99;
    padding: 100px 36px 48px;
    flex-direction: column;
    gap: 4px;
    animation: slideIn 0.3s ease;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--sand);
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--terracotta); }
  .mobile-nav-footer { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

  /* Hamburger toujours visible */
  .hamburger-btn { display: none; } /* legacy — remplacé par le burger inline nav */

  @media (max-width: 900px) {
    .main-nav { padding: 12px 16px; }
    .nav-links { display: none; }
  }

  /* ===== BUTTONS ===== */
  .btn-primary {
    background: linear-gradient(270deg, #C4622D, #D4782A, #E09A2A, #D4782A, #C4622D);
    background-size: 300% 100%;
    animation: gradientMove 4s ease infinite;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(196,98,45,0.4);
  }
  .btn-primary:active { transform: translateY(-1px) scale(1.01); }

  /* Contacter button - flat orange, no gradient */
  .btn-small {
    background: var(--terracotta);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-small:hover { background: var(--terracotta-dark); }

  .btn-secondary {
    background: linear-gradient(270deg, #B08040, #C9963C, #E0B84A, #C9963C, #B08040);
    background-size: 300% 100%;
    animation: gradientMove 4s ease infinite;
    animation-delay: 0.5s;
    color: #3D2314;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-secondary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(201,150,60,0.45);
  }
  .btn-secondary:active { transform: translateY(-1px) scale(1.01); }

  /* Bouton outline hero — rempli couleur lin */
  .btn-outline-hero {
    background: transparent;
    color: var(--terracotta);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2.5px solid var(--terracotta);
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), background 0.2s, color 0.2s, box-shadow 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-outline-hero:hover {
    background: rgba(196,98,45,0.06);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px rgba(196,98,45,0.15);
  }
  .btn-outline-hero:active { transform: translateY(-1px) scale(1.01); }

  .btn-primary-outline {
    background: transparent;
    color: var(--terracotta);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--terracotta);
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
  }
  .btn-primary-outline:hover { background: var(--terracotta); color: var(--white); }
  .pricing-card.featured .btn-primary-outline { background: var(--white); color: var(--terracotta); border-color: var(--white); }
  .pricing-card.featured .btn-primary-outline:hover { background: var(--cream); }

  .btn-white {
    background: var(--white);
    color: var(--terracotta);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }
  .btn-white:hover { background: var(--cream); transform: translateY(-2px); }

  /* ===== SECTION BASE ===== */
  .section { padding: 100px 60px; }
  /* Espacement entre sections */
  .search-wrapper { margin-top: 0; }
  .section + .section { margin-top: 0; }
  .chefs-section { margin-top: 0; }
  .how-bg { margin-top: 0; background: var(--cream-dark); }
  .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
  }
  .section-sub {
    font-size: 16px;
    color: var(--text-light);
    max-width: 540px;
    line-height: 1.7;
    font-weight: 300;
  }
  .section-header { text-align: center; margin-bottom: 72px; }
  .section-header .section-sub { margin: 0 auto; }

  .demo-modal { display: none; position: fixed; inset: 0; background: rgba(42,23,8,0.7); z-index: 200; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
  .demo-modal.open { display: flex; }

  .modal-box { background: var(--white); border-radius: 24px; padding: 48px; max-width: 480px; width: 90%; position: relative; max-height: 90vh; overflow-y: auto; }
  .modal-box-wide { background: var(--white); border-radius: 24px; padding: 40px; max-width: 680px; width: 94%; position: relative; max-height: 90vh; overflow-y: auto; }
  .modal-close { position: absolute; top: 20px; right: 20px; background: var(--cream-dark); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; color: var(--text-mid); }
  .modal-title { font-family: 'Playfair Display', Georgia, serif; font-size: 30px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
  .modal-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }

  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--sand); border-radius: 10px;
    font-family: 'Inter', 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark);
    outline: none; transition: border-color 0.2s; background: var(--cream);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--terracotta); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-cgu { font-size: 12px; color: var(--text-light); margin-bottom: 20px; line-height: 1.6; }
  .form-cgu a { color: var(--terracotta); }

  .mail-notice {
    background: linear-gradient(135deg, rgba(196,98,45,0.08), rgba(201,150,60,0.08));
    border: 1.5px solid rgba(196,98,45,0.2);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.5;
  }
  .mail-notice-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

  /* Dashboard */
  .dashboard-tabs { display: flex; gap: 4px; background: var(--cream-dark); border-radius: 10px; padding: 4px; margin-bottom: 28px; }
  .dash-tab { flex: 1; padding: 8px; border: none; background: transparent; border-radius: 8px; font-family: 'Inter', 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; color: var(--text-light); cursor: pointer; transition: all 0.2s; }
  .dash-tab.active { background: var(--white); color: var(--terracotta); font-weight: 600; box-shadow: 0 2px 8px rgba(42,23,8,0.08); }
  .dash-panel { display: none; }
  .dash-panel.active { display: block; }
  .fav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .fav-card { background: var(--cream); border-radius: 14px; padding: 16px; display: flex; align-items: center; gap: 14px; position: relative; }
  .fav-avatar { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
  .fav-avatar-1 { background: linear-gradient(135deg, #E8D5B7, #C4622D30); }
  .fav-avatar-2 { background: linear-gradient(135deg, #F0E8DC, #9A4A1F30); }
  .fav-avatar-3 { background: linear-gradient(135deg, #FAF6F0, #C9963C40); }
  .fav-info .fav-name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
  .fav-info .fav-loc { font-size: 12px; color: var(--text-light); margin-top: 2px; }
  .fav-remove { position: absolute; top: 10px; right: 10px; background: none; border: none; font-size: 13px; color: var(--text-light); cursor: pointer; opacity: 0.5; transition: opacity 0.2s; }
  .fav-remove:hover { opacity: 1; color: #c0392b; }
  .dash-order-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--cream-dark); font-size: 13px; }
  .dash-order-item:last-child { border-bottom: none; }
  .order-status { padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 600; }
  .status-confirmed { background: #e8f5e9; color: #2e7d32; }
  .status-pending   { background: #fff8e1; color: #f57f17; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding: 120px 40px 80px; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    nav { padding: 16px 28px; }
    .nav-logo { font-size: 26px; }
    .nav-links { display: none; }
    .section { padding: 72px 28px; }
    .hero { padding: 100px 28px 72px; }
    .search-wrapper { padding: 40px 28px; }
    .signup-section { padding: 80px 28px; }
    .social-section { padding: 48px 28px; }
    footer { padding: 60px 28px 32px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card.featured { transform: none; }
    .chef-card { flex: 0 0 260px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .signup-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .social-links { flex-direction: row; align-items: center; }
  }



@media (max-width:900px) {
  #blog-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width:520px) {
  #blog-grid { grid-template-columns: 1fr !important; }
}


  /* Multi-select filter chips */
  #chefs-chip-filters .filter-chip { cursor:pointer; transition:all 0.18s; }
  #chefs-chip-filters .filter-chip.active { background:var(--terracotta); border-color:var(--terracotta); color:white; }
  /* Plan card selection */
  #plan-essentiel, #plan-gold { transition: transform 0.2s, border-width 0.2s; }

/* ============================================================ */
/* MAINTENANCE SCREEN — Coming Soon                             */
/* ============================================================ */

#maintenance-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0f06 0%, #2e1a0e 40%, #1f0c06 100%);
  background-size: 200% 200%;
  animation: gradientMove 10s ease infinite;
  padding: 24px;
  overflow-y: auto;
}

.maintenance-inner {
  text-align: center;
  max-width: 520px;
  width: 100%;
  animation: fadeInUp 0.8s ease both;
}

.maintenance-logo {
  margin-bottom: 32px;
}
.maintenance-logo .soeur-text {
  font-family: 'Berkshire Swash', Georgia, serif;
  font-size: 42px;
  background: linear-gradient(110deg,
    #CB6C2B 0%, #DB8A2A 25%, #D5BA70 50%, #DB8A2A 75%, #CB6C2B 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoFlow 4s linear infinite;
}

.maintenance-logo .eat-static {
  font-family: 'Berkshire Swash', Georgia, serif;
  font-size: 42px;
  background: linear-gradient(110deg,
    #C9963C 0%, #F0D060 20%, #FFE97A 38%,
    #C9963C 55%, #8B6914 72%, #C9963C 85%, #F0D060 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoFlow 4s linear infinite;
  animation-delay: -2s;
}

.maintenance-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: #FAF6F0;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.maintenance-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(250, 246, 240, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

.maintenance-form {
  width: 100%;
}

.maintenance-input-wrap {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,150,60,0.25);
  border-radius: 60px;
  padding: 6px 6px 6px 22px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}
.maintenance-input-wrap:focus-within {
  border-color: rgba(201,150,60,0.7);
  box-shadow: 0 0 0 3px rgba(201,150,60,0.12);
}

.maintenance-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #FAF6F0;
  min-width: 0;
}
.maintenance-input::placeholder {
  color: rgba(250,246,240,0.35);
}

.maintenance-btn {
  background: linear-gradient(135deg, #C4622D, #DB8A2A);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(196,98,45,0.4);
}
.maintenance-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(196,98,45,0.5);
}

.maintenance-feedback {
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px;
  color: rgba(250,246,240,0.7);
}
.maintenance-feedback--success { color: #7ecf9b; }
.maintenance-feedback--error   { color: #f08080; }

.maintenance-legal {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(250,246,240,0.25);
}

/* Bouton secret — quasi-invisible, coin bas-droit */
#maintenance-unlock-btn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 100000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  opacity: 0.05;
  transition: opacity 0.2s;
}
#maintenance-unlock-btn:hover { opacity: 0.12; }

/* Responsive */
@media (max-width: 480px) {
  .maintenance-input-wrap {
    flex-direction: column;
    border-radius: 20px;
    padding: 14px 16px;
    gap: 12px;
  }
  .maintenance-btn {
    width: 100%;
    border-radius: 50px;
    padding: 14px;
  }
}
