.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #2c2c2c, #444);
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}
nav {
  background: #333;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.search-bar {
  display: flex;
  align-items: center;
  background: #444;
  padding: 10px 20px;
  border-radius: 30px;
  width: 300px;
}
.search-bar img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: invert(1);
}
.search-bar input {
  border: none;
  background: none;
  color: #fff;
  outline: none;
  padding: 8px 12px;
  font-size: 16px;
  width: 100%;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
@media (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
  }
  .nav-links.active {
      display: flex;
  }
  .hamburger{
    display: block;
  }
  nav{
    align-items: flex-start;
    gap:10px;
  }
}
 
  footer {
    background: #222;
    padding: 20px;
    margin-top: 50px;
  }
  .social-links img {
    width: 24px;
    margin: 0 10px;
    transition: transform 0.3s;
  }
  .social-links img:hover {
    transform: scale(1.1);
  }
  .company-details {
    font-size: 12px;
    color: #bbb;
  }
  .bookmark {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .spline{
    width:100%;
  height:40%;
  }
  .saved {
    width: 60%;
    display: flex;
    flex-direction: column;
    background-color: #0A192F;
    gap: 10px;
}
.container{
  display: flex;
  justify-content: space-between;
  border:5px solid rgb(255, 254, 254);
}

.img{
  margin-top: 7px;
  margin-bottom: 7px;
  float:left;
  height: 14rem;
  border-radius: 8%;
}
.right{
  display: flex;
  flex-direction: column;
  margin-top: 7px;
  width: 60%;
  height:14rem;
  float:right;
}
.title{
  font-size: 30px;
  font-weight: 600;
}
.price{
  float: right;
  font-size: 40px;
  font-style: italic;
  font-style:bold;
  color: white;
  font-weight: bold;
}
.butt{
  margin-top: 15px;
  height:10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap:25px;
}
.butt button{
  width: 80%;
}
.search-form{
  display: flex;
  width: 100%;
  align-content: center;
}
.search-form button{
  background-color: black;
  align-self: flex-end;
  height: 100%;
  border-radius: 20%;
  margin-bottom: 5px;
}
.search-form button img{
  margin-left: 8px;
}
.save{
  display: flex;
  justify-content: space-evenly;
}
@media (max-width:768px){
  .saved{
    flex-direction: row;
    flex-wrap: wrap;
  }
  .save{
    width: 100%;
  }
  .container{
    flex-direction: column;
    gap:10px;
    align-content: center;
  }
  .butt{
    margin: 5%;
    height: 100%;
    flex-direction: row;
  }
  .btn-danger{
    height: 4rem;
  }
  .btn-light{
    height: 4rem;
  }
  .right{
    width: 100%;

  }
  .img{
    height: 28rem;
  }
}
@media (max-width:440px){
  .btn-danger{
    height: 5.5rem;
  }
  .btn-light{
    height: 5.5rem;
  }
}