.sticky-product-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 500px;
    background: #e1e1e1;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #141414;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-product-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.widget-content {
    flex-grow: 1;
    display: flex;
    height: 110px;
}

.widget-title {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1.2em;
}

.widget-price {
    font-size: 16px;
    font-weight: 400;
    font-family: "Be Vietnam Pro", sans-serif;
}

.product-details {
    padding: 16px;
    flex: 1;
}

.widget-content .product-image {
    max-width: 88px;
	padding: 12px;
    max-height: 128px;
	object-fit: cover;
}

.widget-description {
    line-height: 1.1em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: 2.2em;
}

.widget-buy {
    width: 64px;
    border: none;
    cursor: pointer;
	background: #95826b;
	color: white;
}


/* Responsive Design */
@media (max-width: 768px) {
    .sticky-product-widget {
        width: 280px;
        bottom: 20px;
        right: 20px;
    }

    .widget-title {
        font-size: 14px;
    }

    .widget-price {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .sticky-product-widget {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 15px;
    }
}