/*Add Css Custom Here*/

/*====== Fix bugs Megamenu not showing icon font (26/1/2018) =====*/
@media (min-width: 992px){
	.menu-vertical .container-megamenu.vertical .vertical-wrapper ul.megamenu > li > a {  line-height: 24px; height: auto;}
	.menu-vertical .container-megamenu.vertical .vertical-wrapper ul.megamenu > li > a i,
	.menu-vertical .container-megamenu.vertical .vertical-wrapper ul.megamenu > li > a b {
	    display: inline-block;
	}
	.menu-vertical .container-megamenu.vertical .vertical-wrapper ul.megamenu > li.with-sub-menu > a:before{display: none;}
	.menu-vertical .container-megamenu.vertical .vertical-wrapper ul.megamenu > li > a img{position: static; transform: inherit;}

}



/* 产品卡片区域 */
.hugsun-products-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* 卡片容器 */
.product-card {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

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

/* 卡片图片 */
.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* 卡片内容 */
.card-content {
    padding: 20px;
}

.card-heading {
    color: #0033A0;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-desc {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 按钮样式 */
.primary-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FFD700;
    color: #0033A0;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #0033A0;
    color: #FFD700;
}


