body{
    background-color: rgb(24, 24, 24);
}
.container{
    background-color: black;
    height: 150px;
    box-shadow: 10px 10px 10px;
}
.day1 img{
    height: 150px;
    width: 150px;
}   
.day2{
    height: 150px;
    width: 460px;
    margin-left: 800px;
    margin-top: -160px;
    display: flex;
}
.day2 a{
    margin: 10px;
    text-decoration: none;
    padding: 10px;
    height: 40px;
    text-decoration: none;
    color: white;
}
.day2 a:hover{
border: 1px solid white;
color: blue;
}
.day3{
    height: 30px;
    width: 380px;
    margin-left: 300px;
    margin-top: -100px;
}
.sub{
    height: 31px;
    width: 300px;
}
.bar{
    margin-top: -100px;
    width: 85px;
    height: 31px;
    margin-left: -10px;
}
.slider {
  margin-top: 50px;
  position: relative;
  max-width: 1150px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin-left: 50px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 350px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.btn {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px 20px;
  cursor: pointer;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.7);
}
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    margin-top: 90px;
    cursor: pointer;
  }
  .product-card:hover{
    border: 2px solid red;
    transition: all 0.1s linear;
  }

  .product-card img {
    max-width: 100%;
    border-radius: 8px;
    height: 200px;
  }
  .product-card img:hover{
    border: 2px solid red;
    transition: all 0.1s linear;
  }

  .product-title {
    font-size: 20px;
    margin: 15px 0 10px;
  }

  .product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
  }

  .product-price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .buy-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .buy-button:hover {
    background-color: #0056b3;
  }