body {
  font-family: 'Segoe UI', sans-serif;
}

header .nav-link {
  color: #000;
  font-weight: 700;
}

header .nav-link:hover {
  color: #28a745;
}


.search-bar input::placeholder {
  color: #999;
}


 .slider-container {
    position: relative;
    width: 87%;
    margin: auto;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 8px;
  }

  .slider-track {
    display: flex;
    transition: transform 0.5s ease;
  }

  .product {
    flex: 0 0 180px; /* width of each product box */
    margin: 5px;
    background: #f9f9f9;
    border-radius: 6px;
    text-align: center;
    padding: 5px;
  }
  .product a { 
     text-decoration:none;
	 background-color:green;
	 display:block;
	 border-radius:3px;
	  margin-top: 3px;
	  color:white;
  }

  .product img {
    width: 100%;
    border-radius: 6px;
    height: 170px;
    object-fit: cover;
  }



  /* Buttons */
  .btn-left, .btn-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 35px;
    height: 60px;
    cursor: pointer;
    font-size: 30px;
    border-radius: 4px;
    user-select: none;
  }

  .btn-left {
    left: 5px;
  }

  .btn-right {
    right: 5px;
  }

  .btn-left:hover, .btn-right:hover {
    background-color: rgba(0,0,0,0.8);
  }
  .slider-title
  {
	  padding:10px;
	  
	 
  }


