/* ===================== STORES ===================== */
#stores { background: var(--gray-bg); }
.stores-note {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
  margin-top: -32px;
}
.stores-slider-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.stores-overflow { overflow: hidden; }
.stores-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.store-item {
  flex: 0 0 160px;
  height: 110px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  padding: 12px;
  gap: 8px;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.store-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}
.store-item img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}
.store-item span {
  font-size: 11px;
  color: #666;
  line-height: 1.2;
}
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background 0.2s;
}
.slider-btn:hover { background: #d43e25; }
.slider-btn.prev { left: -22px; }
.slider-btn.next { right: -22px; }
