  body {
      font-family: 'Barlow', sans-serif;
  }

  .font-bebas {
      font-family: 'Bebas Neue', cursive;
  }

  .product-card {
      transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
  }

  .product-card img {
      transition: transform 0.4s ease;
  }

  .product-card:hover img {
      transform: scale(1.06);
  }


  .filter-tab.active {
      background-color: #b45309 !important;
      color: white !important;
  }


  .nav-shop-active {
      background-color: #b45309 !important;
      color: white !important;
  }


  .sidebar-open {
      transform: translateX(0) !important;
  }


  #cartItems::-webkit-scrollbar {
      width: 4px;
  }

  #cartItems::-webkit-scrollbar-track {
      background: #f5f5f4;
  }

  #cartItems::-webkit-scrollbar-thumb {
      background: #d97706;
      border-radius: 4px;
  }