.card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 209, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.card:hover {
  border-color: var(--electric-blue);
  box-shadow: 0 8px 40px rgba(0, 209, 255, 0.2);
  transform: translateY(-6px);
}

/* Image Area */
.imageWrap {
  position: relative;
  background: radial-gradient(ellipse at center, rgba(0, 209, 255, 0.06), rgba(0,0,0,0.3));
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
}

.imagePlaceholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.card:hover .imagePlaceholder {
  transform: scale(1.1);
}

/* Action Buttons */
.actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.25s ease;
}

[dir="rtl"] .actions {
  right: auto;
  left: 10px;
  transform: translateX(-8px);
}

.card:hover .actions {
  opacity: 1;
  transform: translateX(0);
}

.actionBtn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.actionBtn:hover { background: rgba(0, 209, 255, 0.2); border-color: var(--electric-blue); }
.actionBtn.active { background: rgba(255, 122, 0, 0.3); border-color: var(--neon-orange); }

/* Badges */
.badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[dir="rtl"] .badges { left: auto; right: 10px; }

/* Body */
.body {
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.brand {
  font-size: 0.7rem;
  color: var(--electric-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
}

.ratingCount {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.current {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--electric-blue);
}

.original {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.stock {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 500;
}

.outOfStock { color: var(--error); }

/* Footer */
.footer {
  padding: 10px 14px 14px;
}

@media (max-width: 480px) {
  .imageWrap { padding: 20px 14px; }
  .body { padding: 10px 10px 8px; }
  .footer { padding: 8px 10px 10px; }
  .current { font-size: 0.9rem; }
}
