/* Premium product card fallback stylesheet to avoid 404s */

.premium-product-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.premium-product-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.premium-product-card:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.premium-product-card .product-image {
  position: relative;
  padding: 12px;
  background: linear-gradient(135deg, #f5f7fb, #eef2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.premium-product-card .product-image img {
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.premium-product-card .product-info {
  padding: 14px 16px 16px;
  display: grid;
  gap: 6px;
}

.premium-product-card .product-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin: 0;
}

.premium-product-card .product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.premium-product-card .product-price .current-price {
  font-size: 16px;
  font-weight: 800;
  color: #0ea5e9;
}

.premium-product-card .product-price .old-price {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}

.premium-product-card .product-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 16px 16px;
}

.premium-product-card .product-buttons button {
  border: none;
  border-radius: 10px;
  padding: 11px 12px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.premium-product-card .btn-add-to-cart { background:#0ea5e9; color:#fff; }
.premium-product-card .btn-buy-now { background:#10b981; color:#fff; }

.premium-product-card .product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.premium-product-card .badge {
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}

/* Wishlist heart icon positioning */
.premium-product-card .product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
}

.premium-product-card .product-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,0.1);
  background: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.premium-product-card .product-action-btn:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}
