/* ===================== style.css ===================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff5f5;
  text-align: center;
}

#menu-toggle, #submenu-toggle {
  display: none;
}

.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  cursor: pointer;
  z-index: 1000;
}

.menu-btn div {
  width: 30px;
  height: 4px;
  background: #333;
  margin: 6px 0;
}

.sidebar {
  position: fixed;
  left: -220px;
  top: 0;
  width: 200px;
  height: 100%;
  background: #ff6b6b;
  padding-top: 60px;
  transition: 0.3s;
}

#menu-toggle:checked ~ .sidebar {
  left: 0;
}

.menu-link {
  display: block;
  padding: 15px;
  color: white;
  cursor: pointer;
}

.submenu {
  display: none;
}

.submenu {
  display: none;
}

/* Show submenu ONLY when Menu is clicked */
#submenu-toggle:checked + .menu-link + .submenu {
  display: block;
}

.sidebar a {
  display: block;
  padding: 15px;
  color: white;
  text-decoration: none;
}

.sidebar a:hover, .menu-link:hover {
  background: #ff4d4d;
}

.content {
  padding: 80px 20px;
}

h1 {
  color: #ff4d4d;
}


/* Product */

.product-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #ff4d4d;
}

.buy-btn {
  padding: 10px 20px;
  border: none;
  background: #ff4d4d;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.buy-btn:hover {
  background: #e60000;
}

.logo {
  width: 120px;
  cursor: pointer;
  margin-top: 20px; /* pushes it down */
}

/* footer*/

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #8a2be2;
   color: white;
   text-align: center;
}