/*
  CMS ideato e realizzato da Lomazzi Federico per conto di Vendome Suisse SAGL Filiale Italiana.
  Ogni copia, riproduzione o utilizzo non autorizzato, totale o parziale, è vietato.
  L'uso è consentito esclusivamente previa autorizzazione scritta dei rispettivi proprietari.
*/

:root {
  --brand-diameter: 120px; /* 🔥 Valore regolabile: diametro area brand */
}

.brand-slider-container {
  width: 90%;
  margin: 2rem auto;
  overflow: hidden;
  position: relative;
}

.brand-slider-wrapper {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  align-items: center;
  justify-content: center;
}

.brand-item {
  width: var(--brand-diameter);
  height: var(--brand-diameter);
  border-radius: 50%;
  background: white;
  border: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-item img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-item:hover img {
  transform: scale(1.1);
  cursor: pointer;
}

/* --- Pallini navigazione --- */
.brand-dots {
  text-align: center;
  margin-top: 1rem;
}

.brand-dots button {
  background: #ccc;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.brand-dots button.active {
  background: #333;
}
