/* Start custom CSS for shortcode, class: .elementor-element-14c2f88 *//* 确保与 WooCommerce 默认产品列表一致的样式 */
.best-sellers {
    margin-bottom: 20px; /* 保持与 WooCommerce 一致的间距 */
}

.best-sellers h2 {
    font-size: 24px;
    margin-bottom: 20px; /* 与 WooCommerce 产品标题间距保持一致 */
    font-weight: 700; /* 默认的字体粗细 */
}

.best-sellers .products {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 每行显示 6 个产品 */
    gap: 20px; /* 产品之间的间距 */
}

/* 设置产品项的样式 */
.best-sellers .products .product {
    border: 1px solid #e1e1e1; /* 默认边框 */
    padding: 10px; /* 默认内边距 */
    background-color: #fff; /* 背景颜色 */
}

.best-sellers .products .product img {
    width: 100%; /* 确保产品图片宽度一致 */
    height: auto; /* 高度自动调整 */
}/* End custom CSS */