/* Header formulaire - MAINTENANT DANS LE CONTENEUR */
.dc-header {
  background: var(--brand-red);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(179, 35, 35, 0.15);
  /* SUPPRIMER width: 100% */
}

.dc-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* SUPPRIMER max-width et margin */
}

.dc-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.dc-store-pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.dc-store-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.dc-card {
  background: #fff; /* ← S'ASSURER QUE C'EST BIEN #fff */
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform .3s ease, box-shadow .3s ease;
}

.dc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Responsive */
@media (max-width: 768px) {
  .dc-header {
    padding: 0.75rem 1rem;
  }
  
  .dc-logo {
    height: 32px;
  }
}