.single-product-categories{
    margin-top:15px;
}

.spc-title{
    font-weight:600;
    margin-bottom:10px;
    font-size:14px;
}

.spc-category-list{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.spc-category-btn{
    display:inline-block;
    padding:6px 12px;
    border:1px solid #ccc;
    background:#f5f5f5;
    font-size:13px;
    color:#333;
    text-decoration:none;
    border-radius:3px;
    transition:all .2s ease;
}

.spc-category-btn:hover{
    background:#e9e9e9;
    border-color:#999;
}
/* Hide on desktop */
.single-product-categories.hook-footer-product{
    display:none;
}
.single-product-categories.hook-additional-info{
	display:block;
}

/* Show only on mobile */
@media (max-width:767px){
    .single-product-categories.hook-footer-product{
        display:block;
    }
	.single-product-categories.hook-additional-info{
		display:none !important;
	}
}