@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ── VARIABLES ──────────────────────────────── */
:root {
  --green:        #00A352;
  --green-dark:   #007a3d;
  --green-light:  #e8f7ef;
  --green-mid:    #c3ecd5;
  --orange:       #F37020;
  --pink:         #E8007E;
  --navy:         #202455;
  --gray-100:     #f7f8fa;
  --gray-200:     #eef0f3;
  --gray-300:     #dde0e7;
  --gray-500:     #8b919e;
  --gray-700:     #4a4f5c;
  --text:         #1a1d23;
  --white:        #ffffff;

  --nav-h:        68px;
  --sidebar-w:    260px;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.07);
  --shadow:       0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.13);
  --t:            0.22s cubic-bezier(.4,0,.2,1);

  --content-max:  1200px;
  --gutter:       clamp(16px, 4vw, 40px);
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--gray-100);
  color: var(--text);
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.25; }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
h2 { font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; }
h4 { font-size: 0.9rem;  font-weight: 600; }
p  { line-height: 1.65; color: var(--gray-700); }

/* ── LAYOUT ─────────────────────────────────── */
.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* ── TOPNAV ─────────────────────────────────── */
.topnav {
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow-sm);
}
.topnav-inner {
  height: 100%;
  display: flex; align-items: center; gap: 32px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.topnav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  color: var(--green); flex-shrink: 0;
}
.topnav-logo svg { width: 36px; height: 36px; }

.topnav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
}
.topnav-links a {
  padding: 7px 14px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--gray-700);
  transition: var(--t);
}
.topnav-links a:hover { background: var(--gray-100); color: var(--text); }
.topnav-links a.active { background: var(--green-light); color: var(--green); font-weight: 600; }

.topnav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.topnav-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--gray-100); border-radius: 50px;
  padding: 8px 14px; border: 1.5px solid var(--gray-200);
  transition: var(--t); width: 220px;
}
.topnav-search:focus-within {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,163,82,.1);
  width: 280px;
}
.topnav-search svg { width: 16px; height: 16px; stroke: var(--gray-500); flex-shrink: 0; }
.topnav-search input {
  border: none; background: transparent; outline: none;
  font-family: inherit; font-size: 0.85rem; color: var(--text); width: 100%;
}

/* Mobile burger */
.burger {
  display: none;
  width: 40px; height: 40px; border: none; background: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700); border-radius: 2px; transition: var(--t);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 300;
}
.mobile-nav.open { display: flex; }
.mobile-nav-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
}
.mobile-nav-drawer {
  position: relative; z-index: 1;
  width: 280px; max-width: 85vw;
  background: var(--white);
  height: 100%; overflow-y: auto;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 24px 0;
}
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px 24px;
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 1.2rem; color: var(--green);
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-links { padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 500; color: var(--gray-700);
  transition: var(--t);
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  background: var(--green-light); color: var(--green);
}
.mobile-nav-links a svg { width: 20px; height: 20px; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 50px; border: none;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 600;
  transition: var(--t); cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0,163,82,.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: none; }
.btn-outline {
  background: transparent; color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green-light); }
.btn-ghost {
  background: var(--gray-100); color: var(--gray-700);
}
.btn-ghost:hover { background: var(--gray-200); }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }
.btn-full { width: 100%; }

/* ── INPUTS ─────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.83rem; font-weight: 600; color: var(--gray-700); }
.field input, .field select, .field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.9rem; color: var(--text);
  background: var(--white); outline: none; transition: var(--t);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,163,82,.1);
}
.field-error { font-size: 0.78rem; color: var(--pink); }

/* ── CARDS ──────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-pad { padding: 20px; }

/* ── BADGE ──────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .2px;
}
.badge-green  { background: var(--green-light); color: var(--green); }
.badge-red    { background: #fde8f3; color: var(--pink); }
.badge-orange { background: #fef2e8; color: var(--orange); }
.badge-gray   { background: var(--gray-200); color: var(--gray-700); }

/* ── DÉPÔT CARD ─────────────────────────────── */
.depot-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px; align-items: center;
  padding: 16px 18px;
  transition: var(--t); cursor: pointer;
  border: 1.5px solid transparent;
}
.depot-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.depot-card-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.depot-card-icon svg { width: 26px; height: 26px; stroke: var(--green); }
.depot-card-body {}
.depot-card-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; }
.depot-card-addr { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 8px; }
.depot-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.depot-card-action { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.depot-card-dist { font-size: 0.78rem; color: var(--gray-500); font-weight: 500; }

/* ── GRID LAYOUTS ───────────────────────────── */
.depots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 14px;
}

/* ── FILTERS BAR ────────────────────────────── */
.filters-bar {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500;
  border: 1.5px solid var(--gray-300);
  background: var(--white); color: var(--gray-700);
  cursor: pointer; transition: var(--t); white-space: nowrap;
}
.chip:hover { border-color: var(--green); color: var(--green); }
.chip.active { border-color: var(--green); background: var(--green-light); color: var(--green); font-weight: 600; }

/* ── SEARCH HERO ─────────────────────────────── */
.search-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: clamp(32px, 6vw, 72px) var(--gutter);
  position: relative; overflow: hidden;
}
.search-hero::before {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -200px; right: -100px;
}
.search-hero::after {
  content: '';
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -150px; left: -80px;
}
.search-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--content-max); margin: 0 auto;
}
.search-hero h1 { color: var(--white); margin-bottom: 8px; }
.search-hero p { color: rgba(255,255,255,.8); margin-bottom: 24px; font-size: 1rem; }

.search-box {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: 50px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  max-width: 600px;
}
.search-box svg { width: 20px; height: 20px; stroke: var(--gray-500); flex-shrink: 0; }
.search-box input {
  flex: 1; border: none; outline: none;
  font-family: inherit; font-size: 0.95rem; color: var(--text);
  background: transparent;
}

/* ── SECTION ────────────────────────────────── */
.section { padding: clamp(24px, 5vw, 56px) var(--gutter); }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; gap: 12px; flex-wrap: wrap;
}
.section-title { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; }

/* ── OTP ────────────────────────────────────── */
.otp-row { display: flex; gap: 10px; justify-content: center; }
.otp-row input {
  width: 52px; height: 58px; text-align: center;
  font-size: 1.5rem; font-weight: 700;
  border: 2px solid var(--gray-300); border-radius: 10px;
  font-family: 'Poppins', sans-serif; outline: none; transition: var(--t);
}
.otp-row input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,163,82,.12); }

/* ── SWITCH ─────────────────────────────────── */
.switch { position: relative; width: 46px; height: 25px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-track {
  position: absolute; inset: 0;
  background: var(--gray-300); border-radius: 50px;
  cursor: pointer; transition: var(--t);
}
.switch-track::after {
  content: ''; position: absolute;
  left: 3px; top: 3px; width: 19px; height: 19px;
  border-radius: 50%; background: white;
  transition: var(--t); box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.switch input:checked + .switch-track { background: var(--green); }
.switch input:checked + .switch-track::after { transform: translateX(21px); }

/* ── TOAST ──────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: white;
  padding: 12px 24px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  z-index: 999; opacity: 0; pointer-events: none;
  transition: all 0.28s ease; white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green); }
.toast.error   { background: var(--pink); }

/* ── LOADER ─────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: white; border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── EMPTY STATE ─────────────────────────────── */
.empty {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 12px; padding: 60px 20px;
}
.empty svg { width: 64px; height: 64px; stroke: var(--gray-300); }
.empty h3 { color: var(--gray-500); }
.empty p { font-size: 0.88rem; max-width: 280px; }

/* ── MODAL ──────────────────────────────────── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 400; display: flex;
  align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: var(--t);
}
.overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; width: 100%; max-width: 480px;
  transform: translateY(20px) scale(.97);
  transition: var(--t); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 20px;
}
.overlay.open .modal { transform: none; }
.modal-header { display: flex; align-items: center; justify-content: space-between; }
.modal-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gray-100); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--t);
}
.modal-close:hover { background: var(--gray-200); }
.modal-close svg { width: 16px; height: 16px; stroke: var(--gray-700); }

/* ── AUTH PAGE ──────────────────────────────── */
.auth-layout {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-visual {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px; position: relative; overflow: hidden;
}
.auth-visual::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.07); bottom: -150px; right: -100px;
}
.auth-visual h2 { color: white; font-size: 1.6rem; margin-top: 24px; text-align: center; }
.auth-visual p  { color: rgba(255,255,255,.75); text-align: center; margin-top: 8px; font-size: 0.9rem; }
.auth-form-panel {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(32px, 5vw, 64px);
  background: var(--white);
}
.auth-form-inner { width: 100%; max-width: 380px; }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 32px var(--gutter);
  margin-top: auto;
}
.footer-inner {
  max-width: var(--content-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  color: white; font-size: 1rem;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,.5); transition: var(--t); }
.footer-links a:hover { color: white; }

/* ── PROFIL PAGE ─────────────────────────────── */
.profil-layout {
  max-width: var(--content-max); margin: 0 auto;
  padding: 32px var(--gutter);
  display: grid; grid-template-columns: 280px 1fr;
  gap: 28px; align-items: start;
}
.profil-sidebar { display: flex; flex-direction: column; gap: 14px; }
.profil-card-user {
  background: linear-gradient(160deg, var(--green), var(--green-dark));
  border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; color: white;
}
.profil-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.2); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.6rem; color: white;
  border: 3px solid rgba(255,255,255,.4); overflow: hidden;
  cursor: pointer; position: relative;
}
.profil-avatar:hover::after {
  content: '📷'; position: absolute; inset: 0;
  background: rgba(0,0,0,.4); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem; border-radius: 50%;
}
.profil-name  { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; }
.profil-email { font-size: 0.8rem; opacity: .75; margin-top: 4px; }
.profil-menu { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.profil-menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; font-size: 0.88rem; font-weight: 500;
  color: var(--gray-700); cursor: pointer; transition: var(--t);
  border-bottom: 1px solid var(--gray-200); text-decoration: none;
}
.profil-menu-item:last-child { border-bottom: none; }
.profil-menu-item:hover { background: var(--gray-100); }
.profil-menu-item.active { background: var(--green-light); color: var(--green); }
.profil-menu-item.danger { color: var(--pink); }
.profil-menu-item.danger:hover { background: #fde8f3; }
.profil-menu-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.profil-content { display: flex; flex-direction: column; gap: 20px; }

/* ── INFO ROWS ──────────────────────────────── */
.info-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--gray-200); gap: 16px;
}
.info-row:last-child { border-bottom: none; }
.info-label { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; }
.info-value { font-size: 0.9rem; font-weight: 500; text-align: right; }

/* ── DEPOT DETAIL ───────────────────────────── */
.depot-detail-layout {
  max-width: var(--content-max); margin: 0 auto;
  padding: 32px var(--gutter);
  display: grid; grid-template-columns: 1fr 380px;
  gap: 28px; align-items: start;
}
.depot-detail-main { display: flex; flex-direction: column; gap: 20px; }
.depot-detail-side { display: flex; flex-direction: column; gap: 16px; }

.depot-action-card {
  background: var(--white); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
}
.action-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--gray-100); transition: var(--t);
  font-size: 0.88rem; font-weight: 500; cursor: pointer;
  text-decoration: none; color: var(--text);
}
.action-link:hover { background: var(--green-light); color: var(--green); }
.action-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.bouteille-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.bouteille-item {
  flex: 1; min-width: 90px; text-align: center;
  padding: 16px 10px; border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200); background: var(--white);
  transition: var(--t);
}
.bouteille-item.ok { border-color: var(--green); background: var(--green-light); }
.bouteille-item.no { opacity: .45; }
.bouteille-poids { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; }
.bouteille-label { font-size: 0.72rem; color: var(--gray-500); margin-top: 2px; }
.bouteille-status { font-size: 0.72rem; font-weight: 700; margin-top: 8px; }
.bouteille-item.ok .bouteille-status { color: var(--green); }

/* ── MON DEPOT LAYOUT ───────────────────────── */
.mondepot-layout {
  max-width: var(--content-max); margin: 0 auto;
  padding: 32px var(--gutter);
  display: grid; grid-template-columns: 1fr 340px;
  gap: 28px; align-items: start;
}

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:none; }
}
.fade-up { animation: fadeUp .35s ease forwards; }
.d1 { animation-delay:.05s; opacity:0; }
.d2 { animation-delay:.1s;  opacity:0; }
.d3 { animation-delay:.15s; opacity:0; }
.d4 { animation-delay:.2s;  opacity:0; }

/* ── SKELETON ───────────────────────────────── */
.skel {
  background: linear-gradient(90deg,#f0f0f0 25%,#e8e8e8 50%,#f0f0f0 75%);
  background-size: 200%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}
@keyframes shimmer { 0%{background-position:200%}100%{background-position:-200%} }

/* ── UTILITIES ──────────────────────────────── */
.hidden   { display:none !important; }
.flex     { display:flex; }
.flex-col { flex-direction:column; }
.gap-8    { gap:8px; }
.gap-12   { gap:12px; }
.gap-16   { gap:16px; }
.mt-4     { margin-top:4px; }
.mt-8     { margin-top:8px; }
.mt-16    { margin-top:16px; }
.mt-24    { margin-top:24px; }
.text-sm  { font-size:.82rem; }
.text-xs  { font-size:.74rem; }
.text-green { color:var(--green); }
.text-gray  { color:var(--gray-500); }
.text-center { text-align:center; }
.fw-600   { font-weight:600; }
.w-full   { width:100%; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .depot-detail-layout { grid-template-columns: 1fr; }
  .depot-detail-side { flex-direction: row; flex-wrap: wrap; }
  .depot-detail-side > * { flex: 1; min-width: 260px; }
  .profil-layout { grid-template-columns: 240px 1fr; }
  .mondepot-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topnav-links   { display: none; }
  .topnav-search  { display: none; }
  .burger         { display: flex; }
  .auth-layout    { grid-template-columns: 1fr; }
  .auth-visual    { display: none; }
  .auth-form-panel { padding: 32px 24px; min-height: 100vh; }
  .profil-layout  { grid-template-columns: 1fr; }
  .profil-sidebar { flex-direction: row; flex-wrap: wrap; }
  .profil-sidebar > * { flex:1; min-width:240px; }
  .depots-grid    { grid-template-columns: 1fr; }
  .depot-card     { grid-template-columns: 44px 1fr; }
  .depot-card-action { display: none; }
}

@media (max-width: 480px) {
  .otp-row input { width:44px; height:52px; font-size:1.3rem; }
  .search-box input::placeholder { font-size:.82rem; }
}
