.products-grid {
  gap: 2rem;
}

.product-card {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 24dvw;
  height: 58dvh;
  position: relative;
  background: var(--creamy-white);
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid transparent;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-heading {
  margin-left: 220px;
  text-align: center;
  font-size: 1.8rem;
  text-transform: capitalize;
  color: var(--brand-blue-dark);
}

.products-section {
  width: 100%;
  padding-top: 0px !important;
}

.category-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  width: auto;
  margin-left: 300px;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
}

.product-card video {
  width: 100%;
  height: 260px;
}

.product-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  color: var(--luxury-dark);
  margin: 0.75rem auto;
  display: block;
  width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card p {
  color: var(--luxury-dark);
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
  overflow: e;
}

.product-card.normal {
  border-color: #007bff;
  background-color: #e6f0ff;
}

.product-card.normal:hover {
  border-color: var(--soft-blue);
  transform: scale(1.03);
}

.product-card.premium {
  border-color: #ffd700;
  background-color: #fff8dc;
}

.product-card.premium:hover {
  border-color: var(--gold-accent);
  transform: scale(1.03);
}

.product-card.premium img {
  border: 1px solid var(--gold-accent);
  padding: 4px;
  border-radius: 8px;
}

.product-card:hover {
  transform: scale(1.03);
}

.badge {
  position: absolute;
  background-color: gold;
  color: black;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  top: 20px;
  left: 20px;
  font-weight: bold;
  font-size: 0.75rem;
}

.section-title {
  margin-top: 16dvh;
  font-size: 2rem;
  text-align: center;
  color: var(--royal-blue, #003366);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
}
