/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Template: blocksy
Author: CreativeThemes
Author URI: https://creativethemes.com
Description: Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor.
Tags: accessibility-ready,blog,block-patterns,e-commerce,wide-blocks,block-styles,grid-layout,one-column,two-columns,three-columns,four-columns,right-sidebar,left-sidebar,translation-ready,custom-colors,custom-logo,custom-menu,featured-images,footer-widgets,full-width-template,theme-options,threaded-comments
Version: 2.1.42.1779791870
Updated: 2026-05-26 10:37:50

*/
/* 产品图片容器，确保溢出内容隐藏 */
.ct-media-container {
    overflow: hidden;
}
/* 让图片平滑过渡 */
.ct-media-container img {
    transition: transform 0.3s ease;
}
/* 鼠标悬停时，图片放大1.1倍 */
.ct-media-container:hover img {
    transform: scale(1.1);
}
/* 更改产品分类列表的项目符号 */
ul.wc-block-product-categories-list {
    list-style-type: square;  /* 可改为 square, circle, none 等 */
}
/* 隐藏产品分类产品数量 */
.woocommerce-loop-category__title .count {
    display: none;
}
/* 主页产品分类名称居中 */
.woocommerce-loop-category__title {
    text-align: center;
}
/* 当前分类高亮（核心）*/
ul.wc-block-product-categories-list li a.active-cat span {
    color: #fcb424 !important;
	font-weight: 600 !important;
}