.price-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.price-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

@keyframes price-tick-up {
  0% {
    background: #dcfce7;
    color: #166534;
  }
  100% {
    background: transparent;
  }
}

@keyframes price-tick-down {
  0% {
    background: #fee2e2;
    color: #991b1b;
  }
  100% {
    background: transparent;
  }
}

.price-card__price {
  border-radius: 6px;
  transition: color 0.4s ease;
}

.price-card__price.is-tick-up {
  animation: price-tick-up 0.6s ease-out;
}

.price-card__price.is-tick-down {
  animation: price-tick-down 0.6s ease-out;
}
