/* ==========================================
   products.css — Products Grid
   Maheswar Reddy Beverages
   ========================================== */

.products { background: var(--navy); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29,185,84,0.3);
  box-shadow: 0 20px 60px rgba(29,185,84,0.08);
}

.product-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(29,185,84,0.05), transparent);
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.product-info {
  padding: 24px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.product-desc {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-meta span {
  font-size: 0.75rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-meta i {
  color: var(--green);
  font-size: 0.7rem;
}
