/* media-products.css */
.media-products-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
}

.filter-sidebar {
    flex: 0 0 350px;
/*     background: #f8f8f8; */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.products-grid-container {
    flex: 1;
}

.filter-sidebar h3 {
    margin-top: 0;
    padding-bottom: 10px;
/*     border-bottom: 1px solid #ddd; */
    font-size: 1.5em;
}

.filter-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 25px;
}

.filter-btn {
    display: block;
    padding: 3px 6px;
    background: #fff;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
	font-size: 0.9em;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #000;
	color:#fff;
}

.filter-btn.active {
    background: #000;
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.media-product {
	cursor:pointer;
    border: 1px solid #eee;
/*     padding: 20px; */
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.media-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.img-hover-zoom {
    overflow: hidden;
    border-radius: 4px;
}

.img-hover-zoom img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

.product-box-all {
    padding: 6px 15px;
}

.product-meta {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
    display: flex;
/*     justify-content: space-between; */
    flex-wrap: wrap;
    gap: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.pagination a:hover {
    background: #e9e9e9;
}

.pagination .current {
    background: #0073aa;
    color: white;
    border-color: #006799;
}

@media (max-width: 992px) {
    .media-products-container {
        flex-direction: column;
    }
    
    .filter-sidebar {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
.badge-xd {
  background-color: #000;
  color: white;
  padding: 4px 8px;
  text-align: center;
  border-radius: 5px;
  font-size:0.9em;
  font-weight:600;
  text-transform:uppercase;
}
.title-anime{
  font-size: 1em;
  font-weight: 600;
	text-transform:capitalize;
}
.products-grid-container {
    height: 450px;
    overflow-y: scroll;
	scrollbar-color: #f8add8 #8fd6ee;
}
.box-main-cat {
	display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap:10px;
	margin-bottom:20px;
}
.category_a{
	display: inline-block;
}
.category-box {
	opacity: 0.3;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
	cursor: pointer;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 9px;
    width: 6.5rem;
    height: 6.5rem;
    padding: 2rem;
    transition: all .35s;
    position: relative;
    box-shadow: 3px 0 5px -3px #0003;
	transition:opacity 0.5s ease-in-out;
}
.category-box img.filter_icon{
opacity: 1;
    mix-blend-mode: normal;
    background-color: #fff;
    border: 1px #000;
    min-width: 3.5rem;
/*     padding-bottom: .5rem; */
    width:100%;
/*     margin-bottom:-20px; */
}
.category_a.active .category-box{
	    opacity: 1;
}
.category_a:hover .category-box{
	    opacity: 1;
}
.category-box h5 {
	font-size:0.8em;
    text-align: center;
    text-transform: uppercase;
}
.div-block-19 {
    background-color: #000;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 9999px;
    width: 1.5rem;
    position: absolute;
    inset: 0% 0% auto auto;
    overflow: hidden;
}