/* ส่วนหัวข้อหมวดหมู่สินค้า */
.category-header-bar {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 5px;
    background: linear-gradient(to bottom, #005cff, #0960b9);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.2em;
}

.category-header-bar div {
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* กรอบสินค้า */
.loop-product {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.loop-product:hover {
    transform: translateY(-5px);
}

.product-info {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
}

/* ปรับแต่งรูปภาพสินค้า */
.product-info img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* ชื่อสินค้า */
.loop-product-title {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    height: 40px; /* ล็อคความสูงเพื่อให้ปุ่มเท่ากัน */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.loop-product-title:hover {
    color: #005cff;
}
/* Sidebar Widget */
.sidebar .widget-title {
    border-radius: 5px 5px 0 0;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.product-categories {
    list-style: none;
    padding: 0;
    border: 1px solid #eee;
    border-top: none;
    background: #fff;
}

.product-categories li {
    border-bottom: 1px solid #f9f9f9;
}

.product-categories li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.product-categories li a img {
    margin-right: 10px;
    opacity: 0.6;
}

.product-categories li a:hover {
    background-color: #f0f5ff;
    color: #005cff;
    padding-left: 20px;
}