* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #121212;
  background: #fff;
}

/* Breadcrumb styles */
.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: #1c8b8b;
  text-decoration: none !important; /* Force removal */
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #156666;
}

.breadcrumb .separator {
  margin: 0 8px;  /* Slightly reduced margin for the '>' symbol */
  color: #999;
  font-size: 0.8rem;  /* Making the '>' slightly smaller */
}

/* For the last item (current page) */
.breadcrumb a:last-of-type {
  color: #666;
  pointer-events: none;
}



/* Products Grid */
.products-section {
  max-width: 1200px;
  margin: 35px auto;
  padding: 0 20px;
 
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
  
}


/* Product Card */
.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  min-height: 450px; /* Set a minimum height to ensure uniformity */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribute content evenly */
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

.offer-badge {
  position: absolute;
  top: 1px;
  left: 2px;
  background-color: #972626;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border-radius: 50%;
  padding: 8px;
  height: 35px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(6, 3, 3, 0.1);
}

.wishlist-icon {
  color: #ccc;
  font-size: 18px;
}

.wishlist-icon.active {
  color: #e74c3c;
}

.product-details {
  padding: 15px;
  flex-grow: 1; /* Allow the details section to grow and fill space */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensure consistent spacing */
}

.product-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
  height: 50px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Vendor-prefixed for WebKit browsers */
  -webkit-box-orient: vertical;
  line-clamp: 2; /* Standard property for modern browsers */
}

.price-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mrp {
  color: #888;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.selling-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1c8b8b;
}

.product-rating {
  color: #ffd700;
  margin-bottom: 12px;
}

.add-to-cart {
  width: 100%;
  padding: 10px;
  background: #1c8b8b;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.add-to-cart:hover {
  background: #156666;
}