
    /* Basic Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
#cart-count {
    margin-left: 5px;
    font-weight: bold;
    color: #ffd700;
}
    body {
      font-family: Arial, sans-serif;
      margin-top: 60px; /* Space for fixed topbar */
    }

    /* Topbar */
    .main-topbar {
      background-color: #D32F2F; /* demon-red-box */
      color: white;
      padding: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
       font-size: 18px;
       
    }

    .main-menu-toggle {
      font-size: 40px;
      cursor: pointer;
    }

    .main-menu-toggle span {
      display: block;
      height: 4px;
      width: 25px;
      background-color: white;
      margin: 5px 0;
    }

    .site-name {
      display: flex;
      align-items: center;
      font-size: 24px;
    }

    .site-name img {
      width: 50px;
      height: 50px;
      vertical-align: middle;
      margin-right: 10px;
    }

    .top-nav {
      display: flex;
      gap: 15px;
    }

    .top-nav ul {
      list-style: none;
      display: flex;
    }

    .top-nav a {
      color: white;
      text-decoration: none;
      font-size: 18px;
    }

    .top-nav a:hover {
      text-decoration: underline;
    }

    /* Side Menu */
    .main-sidebar {
      position: fixed;
      top: 20;
      left: -250px;
      height: 100%;
      width: 250px;
      background-color: #F57C00; /* magma-orange-box */
      color: white;
      transition: left 0.3s;
      padding-top: 60px;
      z-index: 999;
    }

    .main-sidebar.open {
      left: 0;
    }

    .main-sidebar ul {
      list-style: none;
      padding: 0;
    }

    .main-sidebar li {
      padding: 15px;
      font-size: 18px;
    }

    .main-sidebar a {
      color: white;
      text-decoration: none;
    }

    .main-sidebar a:hover {
      background-color: #575757;
    }

    .nav-flyout {
      display: none;
      padding-left: 30px;
    }

    .nav-flyout a {
      font-size: 16px;
    }

    /* Submenu visibility */
    .submenu-visible {
      display: block;
    }
