body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0px 40px 0px 40px;
  padding: 0;
}
/* Menu and Search*/
header {
  border-bottom: 1px solid #eee;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: white;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

.logo .gear {
  color: orange;
}

/* Navigation Bar */
nav {
background: white;
color: black;
padding: 10px 50px;
position: relative;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: black;
  text-decoration: none;
}

/* Hide checkbox */
#menu-toggle {
display: none;
}

/* Hamburger icon */
.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 12px;
}

/* Mobile styles */
@media (max-width: 768px) {
nav ul {
    flex-direction: column;
    background: white;
    position: absolute;
    z-index: 1000;
    top: 50px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

#menu-toggle:checked ~ ul {
    max-height: 400px; /* expand menu */
  }

.menu-btn {
    display: block;
  }

nav ul li {
    margin: 15px 0;
    text-align: center;
  }
}

.gift {
  font-size: 14px;
}

.gift .highlight {
  color: orange;
  font-weight: bold;
}

.icons i {
  margin: 0 10px;
  cursor: pointer;
}

.cart {
  position: relative;
  display: inline-block;
}

.count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: goldenrod;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

.search-bar{
    background-color: goldenrod;
}
.search-bar {
  display: flex;
  align-items: center;
  padding: 10px;
}
.dropdown {
position: relative;
}
.dropbtn {
  position: relative;
  z-index: 1;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  cursor: pointer;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
  z-index: 1;
}
.dropdown-content a {
  color: #000;
  padding: 10px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Submenu */
.submenu {
  position: relative;
}
.submenu-content {
  display: none;
  position: absolute;
  left: 180px;
  top: 0;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
    }
.submenu:hover .submenu-content {
  display: block;
}

/* Search box */
.search-box {
  flex: 1;
  display: flex;
  margin: 0 10px;
}
.search-box input {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 25px 0 0 25px;
  outline: none;
}
.search-box button {
  padding: 10px 20px;
  border: none;
  border-radius: 0 25px 25px 0;
  background: #000;
  color: #fff;
  cursor: pointer;
}
.call-info {
  font-size: 14px;
  color: #000;
  margin-left: 10px;
}
.call-info span {
  font-weight: bold;
}

/* Close Menu and Search*/
.product-section {
  padding: 20px;
  text-align: center;
}

.product-section h1 {
  margin-bottom: 20px;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product-card img {
  width: 60%;
  border-radius: 8px;
}

.product-card h2 {
  font-size: 0.9rem;
  margin: 10px 0;
  color: #444;
}

.product-card p {
  color: #666;
  margin-bottom: 10px;
}

.product-card button {
  background: #28a745;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.product-card button:hover {
  background: goldenrod;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* For responsie small Screen */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.bottom-header{
  display: flex;
  justify-content: left;
	align-items: left;
  background-color: rgb(0, 0, 0);
  color: white;
  padding: 5px 5px;
  font-weight: normal;
}
.line{
	width: none;
  height: 1px;
  background-color: goldenrod;
	color: white;
}
.footer {
  display: flex;
  justify-content: center;
	align-items: center;
  background-color: black;
  color: white;
  padding: 10px 15px;
  font-weight: normal;
  cursor: pointer;
}