#navmenu-left ul,
#navmenu-right ul {
  display: flex;
  gap: 10px;
}
/* Add these styles to your existing CSS */
  .header-icons {
    margin-left: 15px;
  }
  
  .header-icons a {
    color: var(--default-color);
    font-size: 20px;
    transition: color 0.3s;
  }
  
  .header-icons a:hover {
    color: var(--nav-hover-color);
  }
  
  /* Adjust mobile view */
  @media (max-width: 1199px) {
    .header-icons {
      order: -1;
      margin-left: 0;
      margin-right: auto;
    }
    
    .mobile-nav-toggle {
      margin-left: auto;
    }
  }
  
 .timing-list {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    .timing-list li {
        padding: 2px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.1rem;
    }
    .timing-list li:last-child {
        border-bottom: none;
    }
    .time-slot {
        font-weight: 600;
        background-color: rgba(0, 0, 0, 0.1);
        padding: 4px 12px;
        border-radius: 20px;
        min-width: 140px;
        text-align: center;
    }
    .day {
        font-weight: 500;
    }
    .section-title {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    .icon {
        margin-right: 15px;
        color: #ffbe37;
        font-size: 2rem;
    }
    @media (max-width: 768px) {
        .statshead {
            font-size: 1.8rem;
        }
        .timing-list li {
            flex-direction: column;
            text-align: center;
            gap: 8px;
        }
        .time-slot {
            min-width: unset;
        }
    }
    
    /* Custom dropdown styles */
    .custom-dropdown {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
    }
    .dropdown-selected {
        background-color: #800020;
        color: #ffbe37;
        border: 2px solid #800020;
        padding: 10px 15px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: border-color 0.3s;
    }
    .dropdown-selected:hover,
    .dropdown-selected.active {
        border-color: #ffbe37;
    }
    .dropdown-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 10;
        display: none;
        overflow: hidden;
        margin-top: 4px;
    }
    .dropdown-options.show {
        display: block;
    }
    .dropdown-option {
        padding: 12px 15px;
        cursor: pointer;
        color: #333;
        font-weight: 500;
        transition: background-color 0.2s;
        background-color: #800020;
        color: #ffbe37;
    }
    .dropdown-option:hover {
        background-color: #f0f0f0;
        background-color: #ffbe37;
        color: #800020;
    }
    .dropdown-option:not(:last-child) {
        border-bottom: 1px solid #ffbe37;
    }

/* Cart Icon Container - relative for badge */
.cart-icon {
  position: relative;
  display: inline-block;
  font-size: 1.5rem; /* optional, controls icon size */
}

/* Badge styling */
.cart-badge {
  position: absolute;
  top: -6px;       /* adjust vertical position */
  right: -6px;     /* adjust horizontal position */
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
  background-color: #dc3545; /* red badge */
  color: #fff;
  display: none;   /* hidden if cart empty */
  z-index: 10;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .cart-badge {
    top: -4px;
    right: -4px;
    font-size: 9px;
    padding: 1px 4px;
  }
}

@media (max-width: 400px) {
  .cart-badge {
    top: -3px;
    right: -3px;
    font-size: 8px;
    padding: 1px 3px;
  }
}


 