/* CSS Kodları */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

.orbitron {
  font-family: 'Orbitron', sans-serif;
}

.countdown-circle {
  border: 2px solid #b91c1c;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.countdown-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #b91c1c;
}

.product-card:hover .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.product-card:hover .buy-btn,
.product-card:hover .product-name {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.scrollbar-none {
  background: transparent !important;
}
