.badgeitem-text {
  color: red !important;
}

.card.product-card.mobile-simple-view {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: transform 0.2s ease-in-out;
    overflow: hidden;
    background-color: #fff;
}

.card.product-card.mobile-simple-view:hover {
    transform: translateY(-4px);
}


.card.subcategory__card {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: transform 0.2s ease-in-out;
    overflow: hidden;
    background-color: #fff;
}

.card.subcategory__card:hover {
    transform: translateY(-4px);
}

.mosaic-item {
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mosaic-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}


/* Popup háttér */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  animation: fadeIn 0.4s ease-in-out;
}

/* Popup ablak */
.popup-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 600px;
  margin: 80px auto;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: slideDown 0.4s ease-in-out;
}

.popup-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Gombok */
.popup-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-around;
}
.popup-buttons a {
  padding: 10px 20px;
  background: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}
.popup-buttons a:hover {
  background: #005bb5;
}

/* Bezáró X */
.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}
.popup-close:hover {
  color: red;
}

/* Animáció */
@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}
@keyframes slideDown {
  from {transform: translateY(-30px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@media (max-width: 480px) {
  .popup-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .popup-buttons a {
    width: 100%;
    text-align: center;
  }
}