:root {
            --primary-color: #6a0dad; /* Purple */
            --secondary-color: #9370DB; /* Medium Purple */
            --light-color: #FFFFFF; /* White */
            --dark-color: #4B0082; /* Indigo */
        }
        
        .alert-primary{
            background: #FFd2E1 !important;
            background-color: #FFd2E1 !important;
            border:0px;
        }
        
        .bg-primary{
            background: #EE005A !important;
            background-color: #EE005A !important;
        } 
        
        .active{
            background: #EE005A !important;
            background-color: #EE005A !important;
            color:white  !important;
            border:1px solid white !important;
        } 
        
        .btn, .btn-primary,.btn-outline-primary{
            background: #00A5BC !important;
            background-color: #00A5BC !important;
            color:white  !important;
            border:1px solid white !important;
        } 
        
        .active{
            background: #EE005A !important;
            background-color: #EE005A !important;
            color:white  !important;
            border:1px solid white !important;
        } 
        
        
        body {
            background-color: var(--light-color);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background-color: var(--primary-color);
        }
        
        .cafe-logo {
            max-height: 50px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover, .btn-primary:focus {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
        }
        
        .card {
            transition: transform 0.3s;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .product-img {
            height: 200px;
            object-fit: cover;
        }
        
        #cart-container {
            position: sticky;
            top: 80px;
        }
        
        .cart-item {
            padding: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255,255,255,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
        }
        
        .category-section {
            padding: 20px 0;
        }
        
        .category-title {
            color: var(--dark-color);
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        #order-summary h4 {
            color: var(--dark-color);
        }
        
        #checkout-form label {
            font-weight: 500;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            /*justify-content: center;*/
        }
        
        .quantity-control button {
            width: 30px;
            height: 30px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quantity-input {
            width: 40px;
            text-align: center;
            margin: 0 5px;
        }

        #notification {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1050;
            display: none;
        }
        
              .collapse {
        display:inline-block !important;
      }
      .collapse:not(.show) {
       }
       .navbarNav-btn{
           margin-right:8px;
       }
       #navbarNav{
               margin-right: 10px;
           }

       
       @media (max-width: 992px) {
           .top-bar-nav-box{
               display:inline-block !important;
               float: right;
           }
           .navbarNav-btn{
              margin-right:0px;
              padding-right:0px;
           }
           #navbarNav{
               position: absolute !important;
               right: 0px;
           }
           .top-inventory-btn{
               margin-right:8px;
           }
       }
       
       .add-inventory {
          font-size:15px !important;   
       }
       }
       
       