.popular-categories {
	margin-top:32px;
}
.popular-categories .popular-title {
	font-size:20px;
	font-weight:600;
}

/* Container */
#popular-track {
  position: relative;
  width: 100%;
  margin-top:20px;
}

/* Arrows visible only on hover */
#popular-track .splide__arrow {
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

#popular-track:hover .splide__arrow {
  /*opacity: 1; */
}

/* Arrow positioning */
#popular-track .splide__arrow--prev {
  left: 0.5rem;
}
#popular-track .splide__arrow--next {
  right: 0.5rem;
}

/* Item styling */
#popular-track .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* Mobile adjustment for height */
@media (max-width: 768px) {
  #popular-track .splide__slide {
    min-height: 120px;
    font-size: 1rem;
  }
}


#popular-track .popular-item {
	width:100%;
	color:#333;
	border:1px solid #F0F1F1;
	font-size:12px;
	height:240px;
	display:flex;
	flex-wrap:wrap;
	flex-direction: column;
	border-radius:0 0 8px 8px;
	background-repeat:no-repeat;
	background-position: bottom 10px right 10px;
    background-size: 98px auto;
}

#popular-track .popular-item a {
	font-size:12px;
	color:#333;
}


#popular-track .popular-item .list-item {
	padding-left:15px;
	padding-right:15px;
	margin-bottom:10px;
}

#popular-track .popular-item .list-item a {
	font-weight:400;
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    max-width: 210px;
}

#popular-track .popular-item .list-item a:hover {
	opacity:0.85;
}



#popular-track .head {
	background-color: #FBFBFB;
    border-bottom: 1px solid #F0F1F1;
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 10px;
    height: 47px;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

#popular-track .head a {
	font-size:14px;
	line-height:20px;
	font-weight:bold;
}
#popular-track .head:hover a {
	opacity:0.85;
}

#popular-track .bottom {
	margin-top:auto;
	padding-left:15px;
	padding-right:15px;
	margin-bottom: 15px;
}

#popular-track .bottom a {
	font-weight:bold;
	font-size:12px;
}

#popular-track .bottom a:after {
	content:"";
	display:inline-block;
	width:4px;
	height:8px;
	background-image:url('data:image/svg+xml,<svg width="4" height="8" viewBox="0 0 4 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 8L4.00002 3.99998L0 4.76837e-07L0 8Z" fill="%23333333"/></svg>');
	background-repeat:no-repeat;
	background-position:top center;
	padding-left:25px;
	 transition: transform 0.5s;
	
}
#popular-track .bottom a:hover {
	opacity:0.9;
}
#popular-track .bottom a:hover:after {
	transform:translateX(5px);
	animation-duration:3s;
	opacity:0.9;
}


@media(min-width:1200px) {
	#popular-track .popular-item {
		height:252px;
		 background-size: 128px auto;
	}
	
	#popular-track {
		margin-top:29px;
	}
	
	#popular-track .head {
		margin-bottom:15px;
	}
	
	#popular-track .popular-item .list-item {
		padding-left:20px;
		padding-right:20px;
	}
	
	#popular-track .popular-item .list-item a {
		max-width:275px;
	}
	
	#popular-track .bottom {
		margin-bottom:21px;
		padding-left:20px;
		padding-right:20px;
	}
}