    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: #1c1c1c;
      font-family: 'Press Start 2P', cursive;
      color: #ffffff;
      font-size: 0.6rem;
    }

    header {
      text-align: center;
      background: #2b2b2b;
      padding: 20px 0;
    }

    h1 {
      margin: 0;
      color: #800000;
      font-size: 1.5rem;
      text-shadow: 2px 2px #ffcccc;
    }

    nav ul {
      list-style: none;
      padding: 0;
      margin: 15px 0 0;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    nav a {
      text-decoration: none;
      color: #ff4d4d;
      font-size: 0.6rem;
    }

    nav a:hover {
      color: #ffffff;
    }

    main {
      max-width: 600px;
      margin: 30px auto;
    }

    .user-info {
      text-align: center;
      font-size: 0.6rem;
      margin-bottom: 20px;
    }

    .item {
      background: #2b2b2b;
      border: 2px solid #800000;
      border-radius: 8px;
      padding: 16px;
      margin: 20px auto;
      max-width: 320px;
      box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
      text-align: center;
    }

    .item h2 {
      font-size: 0.8rem;
      color: #ff4d4d;
      margin-bottom: 10px;
    }

    .item p {
      font-size: 0.6rem;
      margin-bottom: 12px;
    }

    .item button {
      font-family: 'Press Start 2P', cursive;
      font-size: 0.6rem;
      padding: 10px 16px;
      border-radius: 6px;
      border: none;
      background: #ff4d4d;
      color: #fff;
      cursor: pointer;
    }

    .item button:hover {
      background: #ffffff;
      color: #800000;
    }

    .cart-icon {
      position: fixed;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background-color: #ff4d4d;
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(255, 77, 77, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #800000;
      cursor: pointer;
      z-index: 999;
    }

    #menu-toggle {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 1rem;
      color: #ff4d4d;
      cursor: pointer;
      z-index: 1000;
    }

    #menu-box {
      position: absolute;
      top: 60px;
      left: 20px;
      background: #2b2b2b;
      border: 2px solid #800000;
      border-radius: 8px;
      padding: 12px;
      display: none;
      font-size: 0.6rem;
      box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
      z-index: 999;
    }

    #menu-box a {
      display: block;
      color: #ffffff;
      text-decoration: none;
      margin-bottom: 8px;
    }

    #menu-box a:hover {
      color: #ffcccc;
    }

    #menu-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}

#menu-toggle .bar {
  height: 4px;
  background-color: #ff4d4d;
  border-radius: 2px;
  box-shadow: 0 0 4px #ff4d4d;
  transition: background 0.3s, box-shadow 0.3s;
}

#menu-toggle:hover .bar {
  background-color: #ffffff;
  box-shadow: 0 0 6px #ffffff;
}

#Morebtn {
      color: #ff711f;
}

#Morebtn:hover {
      color: #c81010;
}

    @media (max-width: 480px) {
      h1 { font-size: 1.2rem; }
      nav a { font-size: 0.5rem; }
      .item h2 { font-size: 0.7rem; }
      .item p, .item button { font-size: 0.5rem; }
      .cart-icon { width: 36px; height: 36px; font-size: 0.9rem; }
    }

/* Toggle Button */
#contact-toggle-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #d40000;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: 'Press Start 2P', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s ease;
  z-index: 1000;
}

#contact-toggle-btn:hover {
  background-color: #a80000;
}

/* Contact Form Container */
#contact-form-wrapper {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: #fff0f0;
  padding: 20px;
  border-radius: 10px;
  width: 320px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  border: 2px solid #d40000;
  z-index: 999;
}

#contactForm textarea[name="message"] {
  width: 100%;
  min-height: 40px;
  max-height: 200px;
  resize: none;
  overflow-y: hidden;
  padding: 10px;
  border: 1px solid #d40000;
  border-radius: 4px;
  font-family: 'Press Start 2P', sans-serif;
  font-size: 10px;
  background-color: #fff8f8;
  color: #333;
}

#contactForm input::placeholder {
  color: #aa0000;
}

/* Submit Button */
#contactForm button {
  margin-top: 16px;
  padding: 12px;
  background-color: #d40000;
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Press Start 2P', sans-serif;
  font-size: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#contactForm button:hover {
  background-color: #a80000;
}

.out-of-order-banner {
  background-color: #ff4d4d;
  color: white;
  padding: 15px;
  margin: 20px auto;
  text-align: center;
  font-family: 'Press Start 2P', sans-serif;
  font-size: 14px;
  border: 3px dashed #fff;
  max-width: 90%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}