/* === home.css === */
/* ---------------------------------------------------------------------------
home.css

Lifted verbatim out of views/home.ejs (an inline <style> block). The template now
links this file from the exact spot the block occupied, because that position
decides which declarations win ties against the core stylesheet.
--------------------------------------------------------------------------- */

.discount {
  width: 50px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.brand-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.brand-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: #D10024;
  transform: translateY(-2px);
}
.brand-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
