  .tag {
    color: #e63946;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .tag::before {
    content: "";
    width: 20px;
    height: 30px;
    background-color: #e63946;
    border-radius: 8px;
    margin-right: 8px;
  }

  .header-row {
    display: flex;
    align-items: center;
    position: relative;
  }
  .header-row .view-all{
    position: absolute;
    right: 100px;
  }


  .header-row h2 {
    font-size: 26px;
    font-weight: 700;
  }

  .view-all {
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    cursor: pointer;
  }

  .product-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: nowrap;
}

  .product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin: 0;
    max-width: 18%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
  }

  .product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 228px;
    width: 228px;
  }

  .product-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .product-icons i {
    background-color: #fff;
    border-radius: 50%;
    padding: 6px;
    font-size: 13px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    cursor: pointer;
  }

  .product-name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: center;
  }

.product-btn {
    color: #fff;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .product-btn .add-to-cart {
    padding: 10px 20px;
  }

  .price {
    text-align: center;
    font-size: 15px;
    color: #e63946;
    font-weight: 600;
  }

  .price .old {
    color: #aaa;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 6px;
  }

  .rating {
    margin-top: 8px;
    font-size: 13px;
    color: #fbbf24;
text-align: center;
  }

  .rating span {
    color: #777;
    margin-left: 5px;
  }

  .MonthSellSection{
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  #monthsell{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1470px;
  }

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