* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: cursive;
    background-color: #72050a2d;
    color: #333;
  }
  
  /* Header Section */
  header {
    background-color: #ad050e;
    padding: 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .nav-search {
    display: flex;
    align-items: center;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-right: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .search-bar input {
    padding: 5px;
    border-radius: 5px;
    border: none;
  }
  
  /* Main Content */
  main {
    padding: 20px;
  }
  
  /* Banners */
  .banner-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .banner {
    width: 48%;
  }
  
  .banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Products Section */
  .products-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
  }
  
  .product-card {
    background-color: #868080d7;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px #201a1a1a;
    text-align: center;
    width: 100%;
  }
  
  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .product-card h3 {
    margin-top: 10px;
    font-size: 18px;
  }
  
  .product-card p {
    font-size: 14px;
    color: #ffffff;
  }
  
  .price {
    margin-top: 10px;
    font-size: 16px;
    color: #c2fd1f;
  }
  
  /* Popup Banner */
  .popup-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
  }
  
  .popup-banner img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
  }
  
  .popup-banner p {
    font-size: 14px;
    margin: 0;
  }
  
  .close-btn {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .close-btn:hover {
    background-color: #d32f2f;
  }
  
  /* Responsive Styling */
  @media screen and (max-width: 768px) {
    .banner-section {
      flex-direction: column;
      align-items: center;
    }
  
    .banner {
      width: 100%;
      margin-bottom: 10px;
    }
  
    .products-section {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .product-card {
      margin-bottom: 20px;
    }
  
    .popup-banner {
      width: 80%;
    }
  
    .search-bar {
      width: 100%;
    }
  }
  
  @media screen and (min-width: 769px) {
    .banner-section {
      flex-direction: row;
    }
  
    .banner {
      width: 48%;
    }
  
    .products-section {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  