.custom-product-card {
    list-style: none;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-wrapper {
    display: flex;
    flex-direction: column;
}

.product-image-wrapper {
    position: relative;
}

.product-image-wrapper img {
    width: 100%;
    border-radius: 12px;
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e53935;
    color: #fff;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    z-index: 10;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-top: 10px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* Giới hạn hiển thị 2 dòng */
    line-clamp: 2;               /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px;            /* Đảm bảo chiều cao cố định cho 2 dòng */
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.old-price {
    color: #999;
    font-size: 13px;
    text-decoration: line-through;
}

.sale-price {
    color: #e53935;
    font-size: 15px;
    font-weight: bold;
}

.add-to-cart-button {
    font-size: 20px;
    text-decoration: none;
    color: #333;
    background: #f2f2f2;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.add-to-cart-button:hover {
    background: #ddd;
}
