/* Kosár gomb stílusok */
.add-to-cart {
  margin-top: 10px;
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-to-cart:hover {
  background-color: #219653;
}

.add-to-cart i {
  font-size: 16px;
}

/* Értesítés stílusok */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #27ae60;
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Kosár szám a fejlécben */
.cart-count {
  display: none;
  background-color: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  position: absolute;
  top: -5px;
  right: -5px;
}

/* Kártyákban a gombok elrendezése */
.card-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
}

/* Reszponzív stílusok */
@media (max-width: 768px) {
  .card-buttons {
    flex-direction: column;
  }
  
  .add-to-cart {
    width: 100%;
    justify-content: center;
  }
}
