body {
  /*font-family: 'Roboto', sans-serif;*/
  font-family: 'Segoe UI', sans-serif;
  /*background-color: #f0f0f0;*/
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
 
}

/* Navbar Styles */
.Navbar {
  background-color: #ffffffe8;
  padding: 10px 20px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: "Pacifico";
  font-size: 1.8rem;
  color: #0072ce;
}



/* Search Bar Styling */
input[type="text"] {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 10px;
  width: 100%;
  max-width: 300px;
}

/* Product Card Styling */
.product-card {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: center;
  max-width: 300px; /* Limits the width */
  margin: auto; /* Centers it */
}






.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {

  /*max-height: 250px;*/
  /*object-fit: cover;*/
  /*border-radius: 10px;*/
  width: 100%; /* Ensures responsiveness */
  height: auto; /* Maintains aspect ratio */
}

.add-to-cart {
  background-color: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: block;
  margin: 10px auto;
  text-align: center;
}

.add-to-cart:hover {
  background-color: #0056b3;
}

/* Footer Styling */
.footer {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px 0;
  text-align: center;
  margin-top: 30px;
}

.footer a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ffc220;
  text-decoration: underline;
}

.search-bar {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 60%;
      background: white;
      padding: 30px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .mobile-menu {
      display: none;
    }
    .mobile-menu.active {
      display: block;
    }

/*.hero {*/
  background-color: #dbeafe; /* Light blue background */
/*  text-align: center;*/
/*  padding: 60px 20px;*/
/*  border-radius: 10px;*/
/*  margin: 30px auto;*/
/*  width: 90%;*/
/*  max-width: 1200px;*/
/*}*/

/*.hero h1 {*/
/*  font-size: 2.5rem;*/
/*  font-weight: bold;*/
  color: #1e3a8a; /* Darker blue text */
/*  margin-bottom: 10px;*/
/*}*/

/*.hero p {*/
/*  font-size: 1.2rem;*/
  color: #374151; /* Gray text */
/*  margin-bottom: 20px;*/
/*}*/

/*.hero .btn {*/
  background-color: #3b82f6; /* Blue button */
/*  color: white;*/
/*  padding: 10px 20px;*/
/*  border-radius: 8px;*/
/*  text-decoration: none;*/
/*  font-weight: 500;*/
/*  transition: background-color 0.3s ease;*/
/*}*/

/*.hero .btn:hover {*/
  background-color: #2563eb; /* Darker blue on hover */
/*}*/

.product-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h5 {
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

.product-card .price {
    color: #007bff;
    font-weight: bold;
    margin: 5px 0 10px;
}

.product-card .btn-view {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.product-card .btn-view:hover {
    background-color: #0056b3;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 50px 20px 20px;
    color: #222;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 20px 40px;
}


/* Responsive Design */
@media (max-width: 768px) {
  .Navbar {
    flex-direction: column;
    text-align: center;
  }

  input[type="text"] {
    width: 90%;
    max-width: none;
  }

  .product-card {
    width: 60%;
    margin: 0 auto;
  }
}

  @media (max-width: 768px) {
      .search-box {
        display: none;
      }
      .search-icon {
        display: block;
      }
    }
    @media (min-width: 769px) {
      .search-box {
        display: block;
      }
      .search-icon {
        display: none;
      }
    }