/* 1. 强制放大 Widget 中的链接字体 */
.widget-area section.widget.widget_product_categories ul li a,
.widget-area .widget_product_categories ul li a {
    font-size: 22px !important;    /* 强制设为 18px，你可以根据需要调大 */
    line-height: 1.6 !important;   /* 增加行间距 */
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

/* 2. 鼠标移上去：变大 + 变色 + 加粗 */
.widget-area .widget_product_categories ul li a:hover {
    font-size: 20px !important;    /* 移上去时变得更大 */
    color: #ff6600 !important;     /* 变成橙色（或者你喜欢的颜色） */
    font-weight: bold !important;  /* 加粗 */
    transform: translateX(8px) !important; /* 向右滑动 8 像素 */
}

/* 3. 如果有分类后面的数量 (114)，也同步放大 */
.widget-area .widget_product_categories ul li {
    font-size: 18px !important;
    color: #888; 
}

/* =============================================================================
   START: WHATSAPP FLOATING BUTTON (WHITE ICON FIX)
   ============================================================================= */
.ruitongs-whatsapp-bar {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    background-color: #25d366 !important; /* WhatsApp 绿色 */
    display: flex !important;
    align-items: center !important;
    padding:1px 22px 1px 15px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    z-index: 999999 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    transition: background-color 0.3s ease !important;
}

.wa-icon {
    width: 24px !important;
    height: 24px !important;
    margin-right: 12px !important;
    display: block !important;
    /* 核心：将图标素材反转为白色 */
    filter: brightness(0) invert(1) !important;
}

.wa-text {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    font-family: Arial, Helvetica, sans-serif !important;
}

/* 悬停效果：变为品牌橙 */
.ruitongs-whatsapp-bar:hover {
    background-color: #ff6600 !important;
}
/* =============================================================================
   END: WHATSAPP FLOATING BUTTON
   ============================================================================= */

/* =============================================================================
   START: INSIGHTS (BLOG) PAGE CARDS - HEIGHT & COLOR SYNC
   ============================================================================= */

/* 1. 强制所有文章卡片在同一行内等高 */
.ast-row .ast-article-post {
    display: flex !important;
}

/* 2. 卡片主体样式：背景、圆角、边框及平滑过渡 */
.ast-article-inner {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    border: 1px solid #eef2f6 !important; /* 默认浅灰色边框 */
    transition: all 0.3s ease !important; /* 控制变色速度 */
    overflow: hidden !important;
}

/* 3. 悬停(Hover)与点击(Active)时的变色效果 */
.ast-article-inner:hover,
.ast-article-inner:active {
    border-color: #ff6600 !important; /* 边框变为品牌橙 */
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.12) !important; /* 增加橙色氛围阴影 */
    transform: translateY(-2px) !important; /* 轻微上浮感 */
}

/* 4. 确保标题在变色时也同步变橙 */
.ast-article-inner:hover .entry-title a,
.ast-article-inner:active .entry-title a {
    color: #ff6600 !important;
}

/* 5. 彻底隐藏摘要、过滤器等干扰元素，保持极简视觉 */
.blog .entry-content, 
.archive .entry-content,
.ast-filter-container, 
.read-more {
    display: none !important;
}

/* =============================================================================
   END: INSIGHTS (BLOG) PAGE CARDS
   ============================================================================= */