*{
  margin: 0;
  padding: 0;
  font-style: arial;
  box-sizing: border-box;

}
header{
  padding-bottom: 20px;
  padding-left: 50;
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 30px;
}

header ul{
  padding-top: 10px;
  float: right;
  list-style: none;
}
header ul li{
  display: inline-block;
  padding: 5px 20px ;
  border-radius: 5px;
  transition: 0.2s;
}
hr {

  border: none;
  height: 4px;
  width: 100%;
  /* Set the hr color */
  color: #333;  /* old IE */
  background-color: #333;  /* Modern Browsers */
}
header span{
  font-weight:bold;
  font-size: 40px;
}
header ul li a{
  text-decoration: none;
  color : black;
}


header ul li:hover{
  background-color: lightgray;
  padding: 5px 20px ;
  border-radius: 5px;
}

.responsive {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 93.5%;
}
main {
  display: flex;
  margin: 20px;
}

.sidebarr {
  width: 25%;
  background-color: #fff;
  padding: 20px;
  margin-right: 20px;
}

.sidebarr input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

.search-button {
  width: 100%;
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
}

.filter-by-price {
  margin: 20px 0;
}

.filter-by-price input[type="range"] {
  width: 100%;
}

.price-values {
  display: flex;
  justify-content: space-between;
}

.categories h3 {
  margin-bottom: 10px;
}

.categories ul {
  list-style: none;
  padding: 0;
}

.categories ul li {
  margin-bottom: 5px;
}

.categories ul li a {
  color: #333;
  text-decoration: none;
}

/* Shop Section */
.shop {
  width: 75%;
}

.shop h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.sorting {
  margin-bottom: 20px;
}

.product-list {
  display: flex;
  justify-content: space-between;
}

.product {
  width: 30%;
  background-color: white;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-image {
  width: 100%;
  height: 150px;
  background-color: #ccc;
  margin-bottom: 15px;
}

.product h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.product p {
  font-size: 16px;
  color: #333;
}