 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    .top-bar {
      padding: 10px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #fff;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }

    .logo img {
      width: 40px;
    }

    .search-bar {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      max-width: 600px;
      padding: 20px;
    }

    .search-bar select,
    .search-bar input {
      height: 40px;
    }

    .search-bar input {
      flex: 1;
    }

    .icons {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 20px;
      position: relative;
    }

    .cart-icon {
      position: relative;
    }

    .badge {
      position: absolute;
      top: -5px;
      right: -10px;
      background: red;
      color: #fff;
      font-size: 12px;
      padding: 3px 6px;
      border-radius: 50%;
    }

    .categories {
      background-color: #000;
      padding: 20px;
      color: #fff;
      font-weight: 500;
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      font-size: 15px;
    }

    .categories a {
      color: #fff;
      text-decoration: none;
    }

  .hero {
  position: relative;
  background: url('https://cdn.pixabay.com/photo/2017/11/16/08/35/box-2953722_1280.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  padding-left: 60px;
  color: white;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity here */
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 2; /* Ensure text is above the dark overlay */
}


    .hero-text h1 {
      font-size: 4rem;
      font-weight: bold;
    }

    .hero-text p {
      font-size: 1.2rem;
      margin: 20px 0;
    }

    .hero-text button {
      padding: 10px 25px;
      border: none;
      border-radius: 6px;
      background: white;
      color: black;
      font-weight: 500;
    }

    @media(max-width: 768px) {
      .top-bar {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
      }
      .search-bar {
        flex-direction: column;
        width: 100%;
      }
      .categories {
        flex-direction: column;
        align-items: center;
      }
      .hero {
        padding: 30px;
        justify-content: center;
        text-align: center;
      }
    }
    
    .feature-row {
  background-color: #ffe6d9;
  border-radius: 8px;
}

.feature-icon {
  font-size: 2rem;
  color: #000;
  margin-bottom: 0.5rem;
  display: block;
}

.pay-icon {
  height: 28px;
  margin-left: 5px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  padding: 12px;
  font-size: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  text-decoration: none;
  background: #1ebe5d;
}

.category-card figure {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8); /* dark overlay */
    z-index: 1;
}

.category-card figcaption {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}
