.Popular_Product {
  background: #f8f8f8;
  padding: 50px 0;
}

/* Header */

.Popular_Product .popular_header {
  text-align: center;
  margin-bottom: 35px;
}

.Popular_Product .popular_header h3 {
  font-size: 32px;
  font-weight: 700;
  color: #264500;
  margin-bottom: 8px;
}

.Popular_Product .popular_header p {
  color: #777;
  font-size: 15px;
}

/* Product Row */

.Popular_Product .product_row {
  row-gap: 25px;
}

/* Main Card */

.Popular_Product .oil_product_card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.Popular_Product .oil_product_card:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* Image Area */

.Popular_Product .oil_image_box {
  height: 240px;

  background: linear-gradient(145deg, #fff4d8, #ffffff);

  padding: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;
}

/* Image */

.Popular_Product .oil_image {
  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: 0.4s ease;
}

.Popular_Product .oil_product_card:hover .oil_image {
  transform: scale(1.08);
}

/* Product Content */

.Popular_Product .card-body {
  padding: 18px 18px 10px;
}

.Popular_Product .oil_name {
  font-size: 18px;

  font-weight: 700;

  color: #222;

  margin-bottom: 8px;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.Popular_Product .oil_weight {
  font-size: 13px;

  color: #777;

  margin-bottom: 0;
}

/* Footer */

.Popular_Product .oil_product_card .card-footer {
  background: #fff;

  border: 0;

  padding: 15px 18px 18px;
}

/* Price Section */

.Popular_Product .price_section {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.Popular_Product .price_wrapper {
  display: flex;

  align-items: center;

  gap: 10px;
}

/* Selling Price */

.Popular_Product .selling_price {
  color: #477000;

  font-size: 22px;

  font-weight: 800;

  margin: 0;
}

/* MRP */

.Popular_Product .mrp_price {
  color: #999;

  font-size: 14px;

  text-decoration: line-through;

  margin: 0;
}

/* Discount */

.Popular_Product .discount_price {
  width: max-content;

  background: #eaf7dc;

  color: #477000;

  font-size: 12px;

  font-weight: 700;

  padding: 5px 12px;

  border-radius: 20px;
}

/* Add small badge */

.Popular_Product .oil_product_card::before {
  content: "Popular";

  position: absolute;

  top: 15px;

  left: 15px;

  background: #b22c35;

  color: white;

  padding: 5px 12px;

  border-radius: 20px;

  font-size: 12px;

  font-weight: 600;

  z-index: 2;
}

/* Mobile */

@media (max-width: 768px) {
  .Popular_Product {
    padding: 35px 0;
  }

  .Popular_Product .popular_header h3 {
    font-size: 25px;
  }

  .Popular_Product .oil_image_box {
    height: 200px;
  }

  .Popular_Product .selling_price {
    font-size: 19px;
  }
}
