.other-cs-section {
    margin: 10px 0;
}

.other-cs-section h3 {
    margin-bottom: 10px;
}

.color-product-item{
	max-width: 100px;
	display: inline-block;
    vertical-align: top;
}
.color-product-item+.color-product-item{
    margin-left: 10px;
}

.product-image {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.color-product-item:hover .product-image{
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007cba;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-image {
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-content {
    padding: 5px;
}

.product-title {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-top: 2px;
}

.no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
}