/* General Page Styles */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

/* Navigation */
.drop-down {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.drop-down-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  z-index: 100;
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #eee;
  background: white;
  cursor: pointer;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

.hidden {
  display: none;
}

/* Hero Section */
.hero {
  background: black;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

.cta {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Grid Layout */
.product-grid {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}



.dropdown-menu {
   display: none; 
   position: absolute; 
   background-color: #f9f9f9; 
   min-width: 160px; 
   box-shadow: 0px 8px 16px rgba(0,0,0,0.2); z-index: 1; 
  }
.dropdown-menu button {
   color: black; padding: 12px 16px;
    text-decoration: none; 
    display: block; 
  }
.dropdown-menu button:hover {
   background-color: #ddd;
 }


