/* ТЕНЬ НА ВЕСЬ БЛОК */
.legend-block {
  transition: box-shadow 0.3s ease;
  background: white;
  border-radius: 12px;
}

.legend-block:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ЦЕНА - ИСЧЕЗАЕТ */
.legend-block .price {
  transition: 0.2s;
}

.legend-block:hover .price {
  display: none;
}

/* КНОПКИ - ПОЯВЛЯЮТСЯ */
.legend-block .buttons-group {
  display: none;
  gap: 12px;
  margin-top: 10px;
}

.legend-block:hover .buttons-group {
  display: flex;
}

/* СИЯНИЕ (белая линия) НА ФОТО */
.legend-block {
  position: relative;
  overflow: hidden;
}

.legend-block .car-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.legend-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.6) 50%, 
    transparent 100%);
  z-index: 999;
  pointer-events: none;
  border-radius: 8px;
}

.legend-block:hover::before {
  left: 150%;
  transition: left 0.6s ease;
}