@media only screen and (max-width:768px) {
	.widget-box,
	.product_widget {
		margin-bottom: 15px;
		padding: 0 15px 15px;
	}
}

@media only screen and (max-width:768px) {
	.product_widget > a {
		padding: 35px 0px 50px;
	}
}

.product_widget {
    background-color: white;
    box-shadow: 0 2px 15px 0px rgb(18 61 88 / 3%);
    border: 1px solid #e8eef1;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    transition: .33s;
    will-change: transform;
}

.product_widget > a {
    display: block;
    padding: 35px 15px 50px;
    position: relative;
}

[class*=tc_] {
    background-repeat: no-repeat;
}

.product_widget > a > figure {
    width: 40px;
    height: 35px;
    margin: auto;
    text-align: center;
    background-position-x: center;
    background-position-y: center;
    border-radius: 8px;
    background-color: #eef5ff;
    background-size: 30px 30px;
    border: 1px solid #d6e6ff;
    position: relative;
    float: left;
}

.product_widget > a > h4 {
    color: #333;
    font-size: 1.15rem;
    text-align: left;
    text-indent: 0.6rem;
}

.product_widget > a > p {
    color: #888;
    overflow: hidden;
    height: 4.5rem;
}

.product_widget > a > .price_part {
    color: #ff7c39;
    font-weight: bold;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid #eaeff5;
    display: inline-block;
    position: absolute;
    right: 15px;
    bottom: 15px;
    transition: .33s;
}

.product_widget > a > .sales_part {
    padding: 6px 0;
    display: inline-block;
    position: absolute;
    left: 15px;
    bottom: 15px;
}




::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #da403a 0%, #ff6b6b 50%, #da403a 100%);
    border-radius: 8px;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 2px 8px rgba(218, 64, 58, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c41d16 0%, #ff5252 50%, #c41d16 100%);
    box-shadow: 
        0 4px 12px rgba(218, 64, 58, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #a81813 0%, #ff3838 50%, #a81813 100%);
}

::-webkit-scrollbar-corner {
    background: #f8f9fa;
}