.dr1013catalogue {
  padding: 30px 20px; /* Reduced top padding */
  text-align: center;
}

.dr1013catalogue h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ff6600;
}

.dr1013catalogue .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.dr1013catalogue .product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #ff6600;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 400px;
  padding-bottom: 20px;
}

.dr1013catalogue .product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dr1013catalogue .product-card h3 {
  font-size: 1.6rem;
  color: white;
  margin-top: 20px;
}

.dr1013catalogue .product-card p {
  font-size: 1rem;
  color: #fff5e1;
  margin: 10px 0;
}

.dr1013catalogue .product-card .price {
  font-size: 1.2rem;
  color: #ffeb3b;
  font-weight: bold;
  margin-bottom: 15px;
}

.dr1013catalogue .product-card button {
  margin-top: auto;
  background-color: #ffeb3b;
  color: #ff6600;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.dr1013catalogue .product-card button:hover {
  background-color: #ff9800;
}

/* Responsive Styles */
@media (max-width: 800px) {
  .dr1013catalogue h2 {
    font-size: 2rem;
  }

  .dr1013catalogue .product-card h3 {
    font-size: 1.4rem;
  }

  .dr1013catalogue .product-card p {
    font-size: 0.9rem;
  }

  .dr1013catalogue .product-card .price {
    font-size: 1rem;
  }
}
