/* ============================
BRANDS LISTING PAGE (Brendovi)
============================ */

.brands-page {
  padding-top: 40px;
  padding-bottom: 60px;
}

/* širok grid kao DM.rs */
.brands-page.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.brands-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* GRID */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

/* BOX */
.brand-box {
  background: #fff;

  height: 110px;
  border: 1px solid var(--color-rose-quartz);
  transition: all 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-box:hover {
  background: #fff;
  border-color: #ccc;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* centriranje logotipa */
.brand-box img {
  max-height: 60px;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(0);
  transition: 0.25s ease;
}

/* fallback teksta */
.brand-text {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
