<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" rel="stylesheet" />
<style>
  :root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glass-effect: rgba(255, 255, 255, 0.1);
    --shadow-elevation-1: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-elevation-2: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .material-symbols-outlined {
    font-variation-settings:
      'FILL' 0,
      'wght' 400,
      'GRAD' 0,
      'opsz' 24
  }

  .card-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  }

  .glass-card {
    backdrop-filter: blur(10px);
    background: var(--glass-effect);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .neumorphic-shadow {
    box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
  }

  /* Custom scrollbar for categories */
  .category-scroll::-webkit-scrollbar {
    height: 8px;
  }

  .category-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .category-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }

  .category-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  /* Cart Sidebar */
  .cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .cart-sidebar.open {
    right: 0; /* Slide in */
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none; /* Initially hidden */
  }

  .overlay.open {
    display: block; /* Show when cart is open */
  }

  @media (min-width: 768px) {
    .cart-sidebar {
      width: 350px;
    }
  }
</style