:root {
  --bg-dark: #050505;
  --bg-card: #0a0a0a;
  
  --primary: #00d4ff;
  --secondary: #0099cc;
  --accent: #4ecdc4;
  
  --text-main: #ffffff;
  --text-muted: #aaaaaa;
  
  --font-main: 'Inter', sans-serif;
  --font-title: 'Oswald', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* ========== BODY & BACKGROUND ANIMÉ ========== */
body {
  background: linear-gradient(-45deg, #0a0e27, #0d1b2a, #1b263b, #0d1b2a, #0a0e27);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 100%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 153, 204, 0.15) 0%, transparent 50%);
  animation: floatParticles 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatParticles {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ========== HEADER & NAVBAR ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(180deg, #0a0e27 0%, #0f172a 100%);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 25px rgba(0, 212, 255, 0.25);
}

.logo-container { display: flex; align-items: center; z-index: 2; }

.site-logo {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0,212,255,0.6));
  transition: transform 0.3s;
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

nav { z-index: 2; }

nav a {
  color: var(--text-main);
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
  box-shadow: 0 0 10px var(--primary);
}

nav a:hover { color: var(--primary); }
nav a:hover::after { width: 100%; }

.btn-admin {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0e27 !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 212, 255, 0.4);
}

.btn-admin::after { display: none !important; }
.btn-admin:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 212, 255, 0.6); }

/* ========== HERO SECTION ========== */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: rgba(10, 14, 39, 0.85);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.1), transparent, rgba(0, 153, 204, 0.1), transparent);
  animation: rotateGradient 10s linear infinite;
  opacity: 0.5;
}

@keyframes rotateGradient { 100% { transform: rotate(360deg); } }

.hero h1 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleBounce 2s ease-in-out infinite, textShimmer 5s linear infinite;
}

@keyframes titleBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes textShimmer { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }

.hero p {
  color: #b0d4e8;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.warning-banner {
  background: rgba(0, 212, 255, 0.08);
  border-left: 4px solid var(--primary);
  padding: 1rem 2rem;
  margin: 1rem 2rem;
  border-radius: 0 8px 8px 0;
  color: #7dd3fc;
  z-index: 1;
  position: relative;
  animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 212, 255, 0.2); opacity: 1; }
  50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.4); opacity: 0.85; }
}

/* ========== FILTERS & GRID ========== */
.filters {
  display: flex;
  gap: 0.8rem;
  padding: 2rem;
  overflow-x: auto;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}

.filter-btn, .category-btn {
  background: linear-gradient(135deg, var(--secondary), #006699);
  border: 2px solid transparent;
  color: white;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.filter-btn:hover::before { left: 100%; }

.filter-btn.active, .filter-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 153, 204, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
  border-color: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem 2rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

/* ========== PRODUCT CARD ========== */
.card {
  background: #0a0a0a !important;
  border: 2px solid #ffffff !important;
  border-radius: 15px;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
  animation: cardFloat 6s ease-in-out infinite;
}

.card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #00d4ff, #0099cc, #4ecdc4, #00d4ff);
  background-size: 400% 400%;
  z-index: -2;
  border-radius: 15px;
  animation: borderRotate 8s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover::before { opacity: 1; }

.card:hover {
  transform: translateY(-10px) rotate(1deg);
  border-color: #ffffff !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 212, 255, 0.3);
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes borderRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tier-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badgeSpin 4s linear infinite;
}

@keyframes badgeSpin {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.card:hover img {
  transform: scale(1.08) rotate(2deg);
  filter: brightness(1.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.card h3 {
  font-family: var(--font-title);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: #ffffff;
}

/* ========== PRIX ANIMÉ ========== */
.card .price {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  animation: priceFloat 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  display: inline-block;
}

@keyframes priceFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  }
  50% {
    transform: translateY(-5px) scale(1.08);
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.9), 0 0 40px rgba(0, 212, 255, 0.6);
  }
}

.card .stock {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  animation: stockBlink 3s ease-in-out infinite;
}

.card .stock.out { color: #ff6b6b; animation: none; }

@keyframes stockBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.product-details {
  list-style: none;
  margin: 0.8rem 0;
  font-size: 0.9rem;
  color: #cccccc;
  flex-grow: 1;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 5px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  padding-top: 0.8rem;
}

.product-details li {
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  color: #ffffff;
}

.product-details li:hover {
  padding-left: 10px;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.product-details li:last-child { border-bottom: none; }
.product-details strong { color: var(--primary); }

/* Code Promo */
.promo-container {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.promo-input {
  flex: 1;
  padding: 0.5rem;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
}

.promo-apply {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #0a0e27;
  padding: 0 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.discount-badge {
  display: none;
  margin-top: 0.5rem;
  background: rgba(78, 205, 196, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}

.order-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--secondary), #006699);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.8rem;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.order-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
}

.order-btn:hover::after { animation: btnShine 0.5s ease-in-out; }

@keyframes btnShine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.order-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 153, 204, 0.6), 0 0 40px rgba(0, 212, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.order-btn:disabled {
  background: #333;
  border-color: #555;
  box-shadow: none;
  cursor: not-allowed;
}

/* ========== FAQ & CONTACT ========== */
.faq-section {
  padding: 4rem 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(10, 14, 39, 0.9);
  position: relative;
  z-index: 1;
}

.faq-section h2 {
  text-align: center;
  font-family: var(--font-title);
  margin-bottom: 2.5rem;
  color: var(--primary);
  font-size: 2.5rem;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.faq-grid { max-width: 800px; margin: 0 auto; display: grid; gap: 1rem; }

.faq-grid details {
  background: #0a0a0a;
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.faq-grid details:hover {
  transform: translateX(10px);
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.25);
}

.faq-grid summary {
  font-weight: 600;
  color: #ffffff;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid p { margin-top: 1rem; color: #cccccc; font-size: 1rem; line-height: 1.7; padding-left: 2rem; }

.contact-section {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 39, 0.95);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-section h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.contact-section p { color: #b0d4e8; font-size: 1.1rem; margin-bottom: 1.5rem; }

.discord-btn {
  display: inline-block;
  background: linear-gradient(135deg, #5865F2, var(--secondary));
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.discord-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 30px rgba(0, 153, 204, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ========== FOOTER ========== */
footer {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(90deg, #0a0e27, #0d1b2a, #1b263b, #0a0e27);
  background-size: 200% 100%;
  animation: footerGradient 10s linear infinite;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  color: #668899;
  z-index: 1;
  position: relative;
}

@keyframes footerGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

footer a { color: var(--primary); text-decoration: none; text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #0a0e27; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary), var(--accent));
  border-radius: 6px;
  border: 2px solid #0a0e27;
}

/* ========== ADMIN PANEL ========== */
.auth-container {
  max-width: 450px;
  margin: 10vh auto;
  text-align: center;
  background: #0a0a0a;
  padding: 3rem;
  border-radius: 12px;
  border: 2px solid #ffffff;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.auth-logo-img { height: 100px; width: auto; margin-bottom: 1rem; filter: drop-shadow(0 0 15px rgba(0,243,255,0.4)); }
.auth-desc { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }

input, select, textarea {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-main);
  transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: #0a0e27;
  padding: 0.9rem;
  margin-top: 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,243,255,0.4); }
.hint { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }
.hint code { background: #1a1a1a; padding: 0.2rem 0.5rem; border-radius: 4px; color: var(--neon-yellow); }

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #0a0e27;
  border-bottom: 2px solid var(--primary);
}

.admin-logo-img { height: 50px; width: auto; }
.admin-nav { display: flex; align-items: center; gap: 1.5rem; }
.admin-user { color: var(--text-muted); font-size: 0.95rem; }

.btn-danger { background: #ff4757; color: #fff; border: none; padding: 0.6rem 1.2rem; border-radius: 6px; cursor: pointer; font-weight: 600; transition: all 0.3s; }
.btn-danger:hover { background: #ff3344; transform: translateY(-2px); }

.admin-container { max-width: 1200px; margin: 2rem auto; padding: 0 1.5rem; z-index: 1; position: relative; }

.admin-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }

.tab {
  padding: 0.8rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid #333;
  color: var(--text-main);
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  font-weight: 500;
  transition: all 0.3s;
}

.tab.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0e27;
  border-color: var(--primary);
}

.tab-content {
  background: #0a0a0a;
  padding: 2rem;
  border-radius: 0 8px 8px 8px;
  border: 2px solid #ffffff;
  border-top: none;
}

.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.section-header h3 { font-family: var(--font-title); font-size: 1.5rem; color: var(--primary); }

.stats-bar {
  display: flex;
  gap: 1rem;
  padding: 1rem 2rem;
  background: #0a0e27;
  border-bottom: 1px solid #222;
  margin-bottom: 0;
}

.stat-item {
  background: #0a0a0a;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  border: 1px solid #333;
  font-weight: 600;
  color: var(--text-main);
  flex: 1;
  text-align: center;
}

.stat-item span { color: var(--primary); font-size: 1.2rem; }

.badge { background: rgba(255,255,255,0.05); border: 1px solid #333; padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; color: var(--text-muted); }

.product-form, .category-form {
  background: #111111;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #222;
  margin-bottom: 2rem;
}

.form-row { display: flex; gap: 0.8rem; margin: 0.8rem 0; }
.form-row input, .form-row select { flex: 1; }

.details-wrapper { margin: 0.8rem 0; }
.details-wrapper label { display: block; margin-bottom: 0.5rem; color: var(--primary); font-weight: 600; }
textarea { font-family: 'Consolas', monospace; font-size: 0.95rem; resize: vertical; min-height: 120px; }
.form-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }

.btn-success { background: #2ed573; color: #000; border: none; padding: 0.8rem 1.5rem; border-radius: 6px; cursor: pointer; font-weight: 600; transition: all 0.3s; }
.btn-success:hover { background: #26c066; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(46,213,115,0.4); }
.btn-secondary { background: #70a1ff; color: #000; border: none; padding: 0.8rem 1.5rem; border-radius: 6px; cursor: pointer; font-weight: 600; transition: all 0.3s; }
.btn-secondary:hover { background: #5a8fd6; transform: translateY(-2px); }

.table-wrapper { background: #0a0a0a; border-radius: 10px; border: 1px solid #222; overflow: hidden; margin-top: 1.5rem; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 1rem; border-bottom: 1px solid #222; text-align: left; font-size: 0.95rem; }
.data-table th { background: #0f0f0f; font-weight: 600; color: var(--text-muted); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(0,243,255,0.05); }

.data-table .actions { display: flex; gap: 0.5rem; }
.btn-edit, .btn-delete { background: transparent; border: 1px solid #444; color: #fff; padding: 0.5rem 0.8rem; border-radius: 5px; cursor: pointer; transition: all 0.3s; font-size: 0.9rem; }
.btn-edit:hover { background: var(--primary); color: #000; border-color: var(--primary); }
.btn-delete:hover { background: #ff4757; border-color: #ff4757; }

.admin-tier { font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.85rem; }

.cat-list-wrapper { background: #0a0a0a; padding: 1.5rem; border-radius: 10px; border: 1px solid #222; margin-top: 1.5rem; }
.cat-list-wrapper li { background: #151515; padding: 1rem; margin-bottom: 0.8rem; display: flex; justify-content: space-between; align-items: center; border-radius: 8px; border: 1px solid #222; transition: all 0.3s; }
.cat-list-wrapper li:hover { border-color: var(--primary); transform: translateX(5px); }

.empty-state { text-align: center; color: var(--text-muted); padding: 3rem; font-style: italic; font-size: 1rem; }
.hidden { display: none !important; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .navbar { flex-direction: column; gap: 1rem; padding: 1rem; }
  .site-logo { height: 50px; }
  nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .grid { grid-template-columns: 1fr; padding: 1rem; }
  .admin-header { flex-direction: column; gap: 1rem; }
  .form-row { flex-direction: column; }
  .form-actions { flex-direction: column; }
  .data-table { display: block; overflow-x: auto; }
  .faq-section, .contact-section { padding: 3rem 1rem; }
  .stats-bar { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .filters { padding: 1rem; }
  .warning-banner { margin: 1rem; }
}
/* ========== SECTION TÉMOIGNAGES ========== */
.reviews-section {
  padding: 4rem 2rem;
  background: rgba(10, 14, 39, 0.95);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  text-align: center;
  position: relative;
  z-index: 1;
}

.reviews-section h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #b0d4e8;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--primary);
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.review-info h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.review-info .stars {
  color: #ffd700;
  font-size: 0.9rem;
}

.review-text {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
}

.verified-badge {
  display: inline-block;
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(46, 213, 115, 0.3);
}
/* 🔧 Bouton Maintenance Admin */
.btn-toggle {
  background: #333;
  border: 1px solid #555;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
  margin-left: 0.5rem;
}
.btn-toggle:hover { background: #444; }
.btn-toggle.active {
  background: #ff4757;
  border-color: #ff3344;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 71, 87, 0.4);
}

/* 🚧 Overlay Maintenance Public */
.maintenance-overlay {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, #0a0e27 0%, #050505 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999; color: #fff; text-align: center; padding: 2rem;
}
.maintenance-overlay h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem; color: var(--primary);
  margin-bottom: 1rem; letter-spacing: 2px;
  animation: titleBounce 2s ease-in-out infinite;
}
.maintenance-overlay p {
  font-size: 1.2rem; color: #b0d4e8; max-width: 600px; line-height: 1.6;
}
.maintenance-overlay .loader {
  margin-top: 2rem; width: 50px; height: 50px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }