   .my-product-header{
            display:flex;
            justify-content:space-between;
            align-items:center;
            margin-bottom:12px;
        }
        .my-product-header .view-all{
            color:#A60B07;
            font-weight:600;
            text-decoration:none;
            font-size:14px;
        }
        .my-product-header .view-all:hover{
            text-decoration:underline;
        }
        .my-product-list-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            white-space: nowrap;
        }
        .all-box-product{
            border: 2px solid #A60B07;
            border-radius: 12px;
            padding: 20px;
            background: #f9fafa;
            max-width: max-content;
            width: 100%;
        }
        .my-product-list {
            display: inline-flex;
            gap: 10px;
        }
        .my-product-card {
            max-width:175px;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            flex-shrink: 0;
            display: inline-block;
            vertical-align: top;
        }
        .my-product-card img {
            max-width: 100%;
            height: auto;
            margin-bottom: 0px;
        }
        .my-product-card .product-title {
            display: block;
            font-size: 13px;
            margin: 10px 0 5px;
            font-weight: 600;
            color: #333;
        }
        .my-product-card .price {
            color: #d00;
            margin-bottom: 10px;
            display: block;
        }
        .my-product-card .add-to-cart {
            display: block;
            padding: 4px;
            background-color: #A60B07;
            color: white;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-size: 13px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .my-product-card .add-to-cart:hover {
            background-color: #000;
        }
        .my-product-list-wrapper::-webkit-scrollbar {
            height: 8px;
        }
        .my-product-list-wrapper::-webkit-scrollbar-thumb {
            background-color: #A60B07;
            border-radius: 4px;
        }
        .my-product-list-wrapper::-webkit-scrollbar-track {
            background: #e1f0f1;
            border-radius: 4px;
        }
        .my-product-list-wrapper {
            -ms-overflow-style: none;
            scrollbar-width: thin;
        }
        .my-product-list-wrapper .my-product-card .product-title{
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 145px;
        }