 body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #fff8f0;
  }
  header {
    background-image: url(./images\ \(14\).jpg);
    color: white;
    padding: 20px;
    text-align: center;
  }
  header h1 {
    margin: 0;
  }
  nav {
    display: flex;
    justify-content: center;
    background-color: #505bdd;
    flex-wrap: wrap;
    border: black solid 1px;
  }
  nav a {
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: bold;
  }
  nav a:hover {
    background-color: #505bdd;
  }
  .category-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.cards-box {
  display: flex;         
  gap: 20px;                
  padding: 20px;
  background: #f5f5f5;   
  border: 1px solid #ddd; 
  border-radius: 12px;  
  margin: 20px auto;
  width: fit-content;
  
}
    
.card1 {
  background-image: url(./chili-curry-spices-thai-food_926199-2439330.avif  );
  background-size: cover;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  min-width: 150px;
  cursor: pointer;
  text-decoration: none;
  transform: scale(1.05);
}
.card2 {
  background-image: url(./images\ \(10\).jpg);
  background-size: cover;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  min-width: 150px;
  cursor: pointer;
  text-decoration: none;
  transform: scale(1.05);
}
.card3 {
  background-image: url(./images\ \(1\).jpg);
  background-size: cover;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  min-width: 150px;
  cursor: pointer;
  text-decoration: none;
  transform: scale(1.05);
}


  section {
    padding: 40px 20px;
  }
  h2 {
    text-align: center;
    color: #505bdd;
    margin-bottom: 20px;
  }
  .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 250px;
    margin: 15px;
    overflow: hidden;
    transition: transform 0.2s;
  }
  .item:hover {
    transform: scale(1.05);
  }
  .item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .item h3 {
    margin: 10px;
    color: #d35400;
  }
  .item p {
    margin: 0 10px 10px 10px;
    color: #555;
  }
  footer {
    background-color: #505bdd;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 750px;
    height: 50px;
    width: 100%;
  }
    .add-btn {
        display: block;
        margin: 20px auto;
        padding: 10px 20px;
        background-color: #4954ce;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
    }
    .price {
        font-size: 18px;
        color: #e12727;
        margin: 10px;
        position: relative;
    }
    .back-button {
    display: inline-block;
    background-color: #505bdd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s, transform 0.2s;
  }

  .back-button:hover {
    background-color: #e67e22;
    transform: scale(1.05);
  }

    
    