  /* Custom Scrollbar */
  ::-webkit-scrollbar {
      width: 8px;
  }

  ::-webkit-scrollbar-track {
      background: #f9f7f2;
  }

  ::-webkit-scrollbar-thumb {
      background: #d4af37;
      border-radius: 4px;
  }

  .glass-nav {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .product-card:hover .product-img {
      transform: scale(1.05);
  }

  /* Hide scrollbar for cart items but keep functionality */
  .cart-items::-webkit-scrollbar {
      width: 4px;
  }

  .cart-items::-webkit-scrollbar-thumb {
      background: #e5e7eb;
  }