
/* ========== Accueil — bandeau sels adoucisseurs ========== */

.salt-spotlight {
  padding: 0 0 56px;
  background: var(--bg);
  position: relative;
}

.salt-spotlight::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 200px;
  background: radial-gradient(ellipse, rgba(26, 107, 156, 0.08), transparent 70%);
  pointer-events: none;
}

.salt-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, #0c3d5c 0%, #1a6b9c 45%, #e85d04 100%);
  box-shadow: 0 24px 56px rgba(12, 61, 92, 0.22);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salt-spotlight-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 50%);
  pointer-events: none;
}

.salt-spotlight-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px rgba(12, 61, 92, 0.28);
}

.salt-spotlight-copy {
  position: relative;
  z-index: 1;
  color: #fff;
}

.salt-spotlight-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.salt-spotlight-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.salt-spotlight-copy p {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 420px;
}

.salt-spotlight-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.salt-brand-pill {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.salt-brand-axal {
  background: #e85d04;
  color: #fff;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.35);
}

.salt-brand-regenit {
  background: #fff;
  color: #1a6b9c;
}

.salt-brand-ks {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.salt-spotlight-btn {
  display: inline-block;
  background: #fff !important;
  color: var(--blue-deep) !important;
  border: none !important;
  font-weight: 700;
  pointer-events: none;
}

.salt-spotlight-visual {
  position: relative;
  z-index: 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.salt-float {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.25));
  transition: transform 0.4s ease;
}

.salt-float-1 {
  width: 42%;
  max-width: 180px;
  left: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  z-index: 2;
}

.salt-float-2 {
  width: 38%;
  max-width: 160px;
  right: 12%;
  top: 18%;
  transform: rotate(8deg);
  z-index: 3;
}

.salt-float-3 {
  width: 40%;
  max-width: 170px;
  right: 18%;
  bottom: 8%;
  transform: rotate(-4deg);
  z-index: 1;
}

.salt-spotlight-inner:hover .salt-float-1 {
  transform: translateY(-54%) rotate(-4deg) scale(1.03);
}

.salt-spotlight-inner:hover .salt-float-2 {
  transform: rotate(5deg) translateY(-6px) scale(1.04);
}

.salt-spotlight-inner:hover .salt-float-3 {
  transform: rotate(-2deg) translateY(-4px) scale(1.03);
}

@media (max-width: 900px) {
  .salt-spotlight-inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    text-align: center;
  }

  .salt-spotlight-copy p {
    max-width: none;
  }

  .salt-spotlight-brands {
    justify-content: center;
  }

  .salt-spotlight-visual {
    min-height: 220px;
    margin-top: 8px;
  }

  .salt-float-1 {
    left: 5%;
    width: 38%;
  }

  .salt-float-2 {
    right: 5%;
    width: 34%;
  }

  .salt-float-3 {
    right: 28%;
    width: 36%;
  }
}

@media (max-width: 500px) {
  .salt-spotlight-visual {
    min-height: 200px;
  }

  .salt-float {
    max-width: 120px !important;
  }
}
