 /* CATEGORY SCROLL */
 .category-wrapper{
 position:relative;
 }
 .category-scroll{
 display:flex;
 gap:20px;
 overflow-x:auto;
 scroll-behavior:smooth;
 scrollbar-width:none;
 padding:10px 60px;
 }
 .category-scroll::-webkit-scrollbar{
 display:none;
 }
 .category-item{
 min-width:180px;
 background:#fff;
 border-radius:18px;
 padding:22px 15px;
 text-align:center;
 flex-shrink:0;
 transition:.3s;
 cursor:pointer;
 box-shadow:0 3px 15px rgba(0,0,0,.08);
 }
 .category-item:hover{
 transform:translateY(-5px);
 }
 .category-item img{
 width:75px;
 height:auto;
 object-fit:contain;
 }
 .category-item h6{
 font-size:14px;
 font-weight:700;
 margin-top:15px;
 line-height:20px;
 color:#222;
 }
 /* ARROWS */
 .category-arrow{
 position:absolute;
 top:50%;
 transform:translateY(-50%);
 width:50px;
 height:50px;
 border:none;
 border-radius:50%;
 background:#fff;
 box-shadow:0 2px 15px rgba(0,0,0,.15);
 z-index:5;
 display:flex;
 align-items:center;
 justify-content:center;
 cursor:pointer;
 transition:.3s;
 }
 .category-arrow:hover{
 background:#e53935;
 color:#fff;
 }
 .category-arrow i{
 font-size:24px;
 }
 .category-arrow.left{
 left:0;
 }
 .category-arrow.right{
 right:0;
 }
 
