{"rendered_products_top":"\n<div id=\"js-product-list-top\" class=\"row products-selection\">\n    \n        \n            <div class=\"col-md-6 hidden-sm-down-- total-products\">\n                                    \n                                                                                            \n\n                                                                                \n                                                    \n                <h2>Il y a 16 capot avants pour OPEL Vivaro  disponibles.\n                <\/h2>\n\n                    <\/div>\n        <div class=\"col-md-6\">\n            <div class=\"row sort-by-row\">\n                <div class=\"col-md-6 col-xs-12 wrapper-sort-by\">\n                    \n                                                    <div class=\"products-sort-order dropdown\">\n    <button\n            class=\"btn-unstyle select-title\"\n            rel=\"nofollow\"\n            data-toggle=\"dropdown\"\n            aria-haspopup=\"true\"\n            aria-expanded=\"false\">\n                    Trier par : Pertinence\n                <i class=\"material-icons float-xs-right\">&#xE5C5;<\/i>\n    <\/button>\n    <div class=\"dropdown-menu\">\n                    <span\n                class=\"select-list atc current\"\n                data-atc=\"6373612e656d616e2e746375646f7270443325726564726f463325737562696e696d2d69626d6f632d6c662d612d6f72617669762d35303835314632256c65706f2d30373631463225746e6176612d746f7061632d393938373146322572662e657373616365636e6172662e6575716974756f624632254632254133257370747468\"\n                role=\"link\"\n                tabindex=\"0\"\n            >\n                Pertinence\n            <\/span>\n                    <span\n                class=\"select-list atc \"\n                data-atc=\"6373612e65636972702e746375646f7270443325726564726f463325737562696e696d2d69626d6f632d6c662d612d6f72617669762d35303835314632256c65706f2d30373631463225746e6176612d746f7061632d393938373146322572662e657373616365636e6172662e6575716974756f624632254632254133257370747468\"\n                role=\"link\"\n                tabindex=\"0\"\n            >\n                Prix, croissant\n            <\/span>\n                    <span\n                class=\"select-list atc \"\n                data-atc=\"637365642e65636972702e746375646f7270443325726564726f463325737562696e696d2d69626d6f632d6c662d612d6f72617669762d35303835314632256c65706f2d30373631463225746e6176612d746f7061632d393938373146322572662e657373616365636e6172662e6575716974756f624632254632254133257370747468\"\n                role=\"link\"\n                tabindex=\"0\"\n            >\n                Prix, d\u00e9croissant\n            <\/span>\n            <\/div>\n<\/div>\n                                            \n\n                                    <\/div>\n                <div class=\"col-md-6 col-xs-12 wrapper-sort-by\">\n                                            <div\n    class=\"products-sort-order dropdown\">\n    <button class=\"btn-unstyle select-title\" rel=\"nofollow\" data-toggle=\"dropdown\" aria-haspopup=\"true\"\n        aria-expanded=\"false\">\n                    Filtre : Neuf + Occasion\n                <i class=\"material-icons float-xs-right\">&#xE5C5;<\/i>\n    <\/button>\n    <div class=\"dropdown-menu\">\n                    <span\n                class=\"select-list atc current\"\n                data-atc=\"737562696e696d2d69626d6f632d6c662d612d6f72617669762d35303835314632256c65706f2d30373631463225746e6176612d746f7061632d393938373146322572662e657373616365636e6172662e6575716974756f624632254632254133257370747468\"\n                role=\"link\"\n                tabindex=\"0\">\n                Neuf + Occasion\n            <\/span>\n                    <span\n                class=\"select-list atc \"\n                data-atc=\"6675656e44332565707974463325737562696e696d2d69626d6f632d6c662d612d6f72617669762d35303835314632256c65706f2d30373631463225746e6176612d746f7061632d393938373146322572662e657373616365636e6172662e6575716974756f624632254632254133257370747468\"\n                role=\"link\"\n                tabindex=\"0\">\n                Pi\u00e8ces neuves\n            <\/span>\n                    <span\n                class=\"select-list atc \"\n                data-atc=\"6e6f69736163636f44332565707974463325737562696e696d2d69626d6f632d6c662d612d6f72617669762d35303835314632256c65706f2d30373631463225746e6176612d746f7061632d393938373146322572662e657373616365636e6172662e6575716974756f624632254632254133257370747468\"\n                role=\"link\"\n                tabindex=\"0\">\n                Pi\u00e8ces d&#039;occasion\n            <\/span>\n            <\/div>\n<\/div>                                    <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n<script>\n    (function () {\n        function decodeAtc(encodedValue) {\n            if (!encodedValue) {\n                return '';\n            }\n\n            var hex = encodedValue.replace(\/\\s+\/g, '');\n            var reversedEncodedUrl = '';\n\n            for (var i = 0; i < hex.length; i += 2) {\n                reversedEncodedUrl += String.fromCharCode(parseInt(hex.substr(i, 2), 16));\n            }\n\n            var encodedUrl = reversedEncodedUrl.split('').reverse().join('');\n            return decodeURIComponent(encodedUrl);\n        }\n\n        function redirectFromAtc(element, openInNewTab) {\n            var encodedUrl = element.getAttribute('data-atc');\n            var decodedUrl = decodeAtc(encodedUrl);\n            if (!decodedUrl) {\n                return;\n            }\n\n            if (openInNewTab) {\n                var newWindow = window.open(decodedUrl, '_blank');\n                if (newWindow) {\n                    newWindow.focus();\n                }\n            } else {\n                document.location.href = decodedUrl;\n            }\n        }\n\n        document.addEventListener('DOMContentLoaded', function () {\n            var atcLinks = document.getElementsByClassName('atc');\n            for (var i = 0; i < atcLinks.length; i++) {\n                atcLinks[i].addEventListener('click', function (event) {\n                    redirectFromAtc(this, event.ctrlKey || event.metaKey);\n                }, false);\n\n                atcLinks[i].addEventListener('keydown', function (event) {\n                    if (event.key === 'Enter' || event.key === ' ') {\n                        event.preventDefault();\n                        redirectFromAtc(this, event.ctrlKey || event.metaKey);\n                    }\n                }, false);\n            }\n        });\n    })();\n<\/script>\n","rendered_products":"<div id=\"js-product-list\">\n    <div class=\"products\">\n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"47439866\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/47439866-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"256.80\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"Desguaces Hermanos Villam\u00f3n SA.\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/47439866-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">Desguaces Hermanos Villam\u00f3n SA.<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            256,80\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/47439866-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"44418003\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n            <meta itemprop=\"sku\" content=\"17899\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44418003-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"312.20\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"DESGUACES VIDAURRETA S.L.\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44418003-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">DESGUACES VIDAURRETA S.L.<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            312,20\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44418003-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"44428038\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n            <meta itemprop=\"sku\" content=\"17899\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44428038-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"305.20\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"DESGUACES VIDAURRETA S.L.\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44428038-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">DESGUACES VIDAURRETA S.L.<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            305,20\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44428038-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"47531445\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/47531445-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"95.14\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"Autodesguaces Alicante S.L.\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/47531445-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">Autodesguaces Alicante S.L.<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            95,14\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/47531445-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"41399881\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n            <meta itemprop=\"sku\" content=\"93194150\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/41399881-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"165.00\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"SARL BONNIEU\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/41399881-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">SARL BONNIEU<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n            <div class=\"detail-row\">\n                    <i class=\"fas fa-gas-pump detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Energie :<\/strong><\/span>\n        <span class=\"detail-value\">Diesel<\/span>\n    <\/div>\n            <div class=\"detail-row\">\n                    <i class=\"fas fa-tachometer-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Kilom\u00e9trage :<\/strong><\/span>\n        <span class=\"detail-value\">198301<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            165,00\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/41399881-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"34261284\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n            <meta itemprop=\"sku\" content=\"93160790\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/34261284-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"345.83\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"JG RECOMOTOR, S.L.\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/34261284-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">JG RECOMOTOR, S.L.<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-gas-pump detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Energie :<\/strong><\/span>\n        <span class=\"detail-value\">Diesel<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            345,83\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/34261284-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"6901332\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/6901332-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"391.00\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"USED WORLD PARTS\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/6901332-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Il PR\u00c9SENTE PETITE ABOLLADURA VOIR des PHOTOGRAPHIES\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">USED WORLD PARTS<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n            <div class=\"detail-row\">\n                    <i class=\"fas fa-tachometer-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Kilom\u00e9trage :<\/strong><\/span>\n        <span class=\"detail-value\">205137 km<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            391,00\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/6901332-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"13097574\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/13097574-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"392.00\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"USED WORLD PARTS\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/13097574-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">USED WORLD PARTS<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            392,00\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/13097574-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"15289262\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/15289262-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"680.00\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"USED WORLD PARTS\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/15289262-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">USED WORLD PARTS<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            680,00\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/15289262-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"36352924\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/36352924-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"370.00\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"USED WORLD PARTS\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/36352924-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">USED WORLD PARTS<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            370,00\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/36352924-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"43183104\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/43183104-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"236.00\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"USED WORLD PARTS\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/43183104-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">USED WORLD PARTS<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            236,00\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/43183104-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"41874722\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/41874722-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"315.00\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"USED WORLD PARTS\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/41874722-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">USED WORLD PARTS<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            315,00\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/41874722-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"42283571\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/42283571-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"451.00\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"USED WORLD PARTS\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/42283571-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">USED WORLD PARTS<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            451,00\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/42283571-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"44575981\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44575981-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"443.00\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"USED WORLD PARTS\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44575981-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">USED WORLD PARTS<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            443,00\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44575981-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n                    \n                \n            \n        \n    \n    \n    \n<article class=\"product-item is-used\"\n    data-id-product=\"44967112\" \n    data-id-product-attribute=\"0\" itemscope=\"\"\n    itemtype=\"https:\/\/schema.org\/Product\">\n\n    <meta itemprop=\"image\" content=\"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp\">\n    <meta itemprop=\"description\" content=\"Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\">\n        <div itemprop=\"offers\" itemtype=\"https:\/\/schema.org\/Offer\" itemscope=\"\">\n        <meta itemprop=\"url\" content=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44967112-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n        <meta itemprop=\"availability\" content=\"https:\/\/schema.org\/InStock\">\n        <meta itemprop=\"priceCurrency\" content=\"EUR\">\n\n                    <meta itemprop=\"itemCondition\" content=\"https:\/\/schema.org\/UsedCondition\">\n        \n        <meta itemprop=\"price\" content=\"326.00\">\n        <div itemprop=\"hasMerchantReturnPolicy\" itemscope itemtype=\"https:\/\/schema.org\/MerchantReturnPolicy\">\n            <meta itemprop=\"applicableCountry\" content=\"FR\">\n            <meta itemprop=\"returnPolicyCategory\" content=\"https:\/\/schema.org\/MerchantReturnFiniteReturnWindow\">\n            <meta itemprop=\"merchantReturnDays\" content=\"14\">\n            <meta itemprop=\"returnMethod\" content=\"https:\/\/schema.org\/ReturnByMail\">\n            <meta itemprop=\"returnFees\" content=\"https:\/\/schema.org\/ReturnFeesCustomerResponsibility\">\n        <\/div>\n        <meta itemprop=\"priceValidUntil\" content=\"2026-07-21\">\n        <div itemprop=\"seller\" itemtype=\"https:\/\/schema.org\/Organization\" itemscope=\"\">\n            <meta itemprop=\"name\" content=\"USED WORLD PARTS\">\n        <\/div>\n    <\/div>\n\n    <div class=\"product-header\">\n        <span class=\"product-title-wrapper\">\n            <h3 class=\"h3 product-title\" itemprop=\"name\"><a href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44967112-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus<\/a><\/h2>\n        <\/span>\n\n                    <span class=\"occasion-badge\">Occasion<\/span>\n            <\/div>\n\n    <div class=\"product-content\">\n        <div class=\"product-left\">\n            <div class=\"product-description-item\">\n                Capot avant d&#039;occasion pour OPEL Vivaro A FL Combi\/Minibus\n            <\/div>\n\n            <div class=\"product-details-item\">\n                <div class=\"detail-row\">\n                    <i class=\"fas fa-store detail-icon\"><\/i>\n                    <span class=\"detail-text\"><strong>Vendeur :<\/strong><\/span>\n                    <span class=\"detail-value\">USED WORLD PARTS<\/span>\n                <\/div>\n                \n            <div class=\"detail-row\">\n                    <i class=\"fas fa-shield-alt detail-icon\"><\/i>\n                <span class=\"detail-text\"><strong>Garantie :<\/strong><\/span>\n        <span class=\"detail-value\">12 mois<\/span>\n    <\/div>\n\n            <\/div>\n\n            <div class=\"price-section\">\n                <div class=\"price-info\">\n                    <div>\n                        <span class=\"current-price-item\">\n                            326,00\u00a0\u20ac TTC\n                        <\/span>\n                    <\/div>\n\n                    <span class=\"livraison_inclue\">livraison incluse<\/span>\n                    \n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"product-right\">\n            <div class=\"product-image\" style=\"background-image: url('https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp')\">\n            <\/div>\n\n            <a class=\"view-product-btn\" href=\"https:\/\/boutique.francecasse.fr\/capot-avant\/44967112-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html\">\n                <i class=\"fas fa-eye\"><\/i> Voir le produit\n            <\/a>\n        <\/div>\n    <\/div>\n<\/article>\n                \n        \n                                                                                                            <\/div>\n    \n                    \n\n    <nav class=\"pagination-infinite\">\n        <div class=\"row\">\n            <div class=\"col-lg-12\">\n                <a href=\"https:\/\/boutique.francecasse.fr\/module\/fctamponproduct\/listing?id_category=17899&amp;id_category_marque=1670&amp;id_category_modele=15805&amp;ajax=1&amp;action=products&amp;perPage=20&amp;expansion_level=1&amp;page=1&amp;c_exp_1=27\" class=\"show-more-products js-search-link-\">\n                                            Afficher les pi\u00e8ces trouv\u00e9es pour les autres versions de OPEL\n                                    <\/a>\n            <\/div>\n        <\/div>\n    <\/nav>\n            \n\n            \n    \n<\/div>\n","rendered_products_bottom":"<div id=\"js-product-list-bottom\"><\/div>\n","result":{},"label":"Cat\u00e9gorie : Capot avant","products":[{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=47439866&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"47439866","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/47439866-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/47439866-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"47439866","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"256,80\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-13 21:08:47","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"47439866-164940874","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/47439866-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":256.8,"price_without_reduction":256.8,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"164940858","position":"1","id_origin":"https:\/\/desguacehervisa.com\/img\/p\/1\/1\/3\/7\/5\/3\/8\/1137538.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"164940874","position":"2","id_origin":"https:\/\/desguacehervisa.com\/img\/p\/1\/1\/3\/7\/5\/3\/9\/1137539.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"164940890","position":"3","id_origin":"https:\/\/desguacehervisa.com\/img\/p\/1\/1\/3\/7\/5\/4\/0\/1137540.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"164940906","position":"4","id_origin":"https:\/\/desguacehervisa.com\/img\/p\/1\/1\/3\/7\/5\/4\/1\/1137541.jpg","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"164940858","position":"1","id_origin":"https:\/\/desguacehervisa.com\/img\/p\/1\/1\/3\/7\/5\/3\/8\/1137538.jpg","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":256.8,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"47439866","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"256,80\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"22.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-13 21:08:47","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"107:VAH01TOA8J\/1885272","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"","vehicule_origin_id":"","code_moteur_field":"","vehicule_ref_id":"W0LJ7BHB68V607009","vehicule_ktype":"","vehicule_ref_etat":"1","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"A0001E2F","origin_modele":"A0000001","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"PS00438C","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"0","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"A0001E2F","origin_modele_id":"A0000001","origin_piece_id":"PS00438C","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"107","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672789","id_modele_parent":"10671","id_energie":"0","id_seller":"107","id_country_seller":"6","id_image":"47439866-164940874","prix":"256.800000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"Desguaces Hermanos Villam\u00f3n SA.","ordre_affichage":"23126","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/47439866-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":256.8,"price_without_reduction":256.8,"price_without_reduction_without_tax":256.8,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"164940858","position":"1","id_origin":"https:\/\/desguacehervisa.com\/img\/p\/1\/1\/3\/7\/5\/3\/8\/1137538.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/7\/4\/164940874-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"164940874","position":"2","id_origin":"https:\/\/desguacehervisa.com\/img\/p\/1\/1\/3\/7\/5\/3\/9\/1137539.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/9\/0\/164940890-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"164940890","position":"3","id_origin":"https:\/\/desguacehervisa.com\/img\/p\/1\/1\/3\/7\/5\/4\/0\/1137540.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/9\/0\/6\/164940906-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"164940906","position":"4","id_origin":"https:\/\/desguacehervisa.com\/img\/p\/1\/1\/3\/7\/5\/4\/1\/1137541.jpg","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/4\/9\/4\/0\/8\/5\/8\/164940858-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"164940858","position":"1","id_origin":"https:\/\/desguacehervisa.com\/img\/p\/1\/1\/3\/7\/5\/3\/8\/1137538.jpg","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":256.8,"regular_price_amount":256.8,"regular_price":"256,80\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=44418003&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"44418003","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/44418003-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/44418003-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"44418003","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"312,20\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"17899","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-13 13:33:30","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"44418003-154834858","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/44418003-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":312.2,"price_without_reduction":312.2,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Couleur","value":null,"id_feature":"2","position":"1"},{"name":"Version","value":null,"id_feature":"3","position":"2"},{"name":"Usure","value":null,"id_feature":"8","position":"6"},{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"},{"name":"Remarques","value":null,"id_feature":"24","position":"22"},{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154834841","position":"1","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/1\/2\/0\/2\/4\/0\/1120240.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154834858","position":"2","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/1\/2\/0\/2\/4\/1\/1120241.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154834878","position":"3","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/1\/2\/0\/2\/4\/2\/1120242.jpg","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154834841","position":"1","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/1\/2\/0\/2\/4\/0\/1120240.jpg","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":312.2,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":"17899","grouped_features":{"Couleur":{"name":"Couleur","value":null,"id_feature":"2","position":"1"},"Version":{"name":"Version","value":null,"id_feature":"3","position":"2"},"Usure":{"name":"Usure","value":null,"id_feature":"8","position":"6"},"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},"Kilom\u00e9trage":{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"},"Remarques":{"name":"Remarques","value":null,"id_feature":"24","position":"22"},"Nombre de portes":{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"44418003","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"312,20\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"17899","supplier_reference":"93194150","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"110.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-13 13:33:30","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"110:3020439","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"0977HJV","vehicule_origin_id":"110:0977HJV","code_moteur_field":"M9R 630,M9R 692,M9R 780,M9R 784,M9R 786,M9R 788","vehicule_ref_id":"W0LJ7A7A6CV621745","vehicule_ktype":"","vehicule_ref_etat":"0","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"OPEL","origin_modele":"VIVARO A Autob\u00fas (X83)","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"Capot avant","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"0","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"","origin_modele_id":"","origin_piece_id":"","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"110","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672790","id_modele_parent":"10671","id_energie":"0","id_seller":"110","id_country_seller":"6","id_image":"44418003-154834858","prix":"312.200000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"DESGUACES VIDAURRETA S.L.","ordre_affichage":"23127","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp","fdp_incluse":"1","code_moteur":"M9R 630,M9R 692,M9R 780,M9R 784,M9R 786,M9R 788","reference_constructeur":"93194150","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/44418003-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":312.2,"price_without_reduction":312.2,"price_without_reduction_without_tax":312.2,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Couleur","value":null,"id_feature":"2","position":"1"},{"name":"Version","value":null,"id_feature":"3","position":"2"},{"name":"Usure","value":null,"id_feature":"8","position":"6"},{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"},{"name":"Remarques","value":null,"id_feature":"24","position":"22"},{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154834841","position":"1","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/1\/2\/0\/2\/4\/0\/1120240.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/5\/8\/154834858-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154834858","position":"2","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/1\/2\/0\/2\/4\/1\/1120241.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/7\/8\/154834878-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154834878","position":"3","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/1\/2\/0\/2\/4\/2\/1120242.jpg","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/3\/4\/8\/4\/1\/154834841-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154834841","position":"1","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/1\/2\/0\/2\/4\/0\/1120240.jpg","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":312.2,"regular_price_amount":312.2,"regular_price":"312,20\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=44428038&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"44428038","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/44428038-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/44428038-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"44428038","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"305,20\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"17899","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-13 13:39:25","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"44428038-154882364","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/44428038-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":305.2,"price_without_reduction":305.2,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Couleur","value":"AMARILLO","id_feature":"2","position":"1"},{"name":"Version","value":null,"id_feature":"3","position":"2"},{"name":"Usure","value":null,"id_feature":"8","position":"6"},{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"},{"name":"Remarques","value":"SIN BISAGRAS CON TOQUES Y ROCES LOS CAPOTS PUEDEN PRESENTAR PEQUE\u00d1OS DA\u00d1OS POR EL USO. CONSULTA LAS IM\u00c1GENES PARA M\u00c1S INFORMACI\u00d3N. EL COLOR PUEDE VARIAR POR DESGASTE SOLAR O ILUMINACI\u00d3N DE LAS FOTOS. PARA UN ASPECTO RENOVADO, SE RECOMIENDA PINTAR","id_feature":"24","position":"22"},{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154882348","position":"1","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/4\/1227944.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882364","position":"2","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/5\/1227945.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882382","position":"3","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/6\/1227946.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882400","position":"4","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/7\/1227947.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882413","position":"5","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/8\/1227948.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882426","position":"6","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/9\/1227949.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882439","position":"7","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/5\/0\/1227950.jpg","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154882348","position":"1","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/4\/1227944.jpg","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":305.2,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":"17899","grouped_features":{"Couleur":{"name":"Couleur","value":"AMARILLO","id_feature":"2","position":"1"},"Version":{"name":"Version","value":null,"id_feature":"3","position":"2"},"Usure":{"name":"Usure","value":null,"id_feature":"8","position":"6"},"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},"Kilom\u00e9trage":{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"},"Remarques":{"name":"Remarques","value":"SIN BISAGRAS CON TOQUES Y ROCES LOS CAPOTS PUEDEN PRESENTAR PEQUE\u00d1OS DA\u00d1OS POR EL USO. CONSULTA LAS IM\u00c1GENES PARA M\u00c1S INFORMACI\u00d3N. EL COLOR PUEDE VARIAR POR DESGASTE SOLAR O ILUMINACI\u00d3N DE LAS FOTOS. PARA UN ASPECTO RENOVADO, SE RECOMIENDA PINTAR","id_feature":"24","position":"22"},"Nombre de portes":{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"44428038","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"305,20\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"17899","supplier_reference":"","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"110.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-13 13:39:25","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"110:3159252","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"6133DSS","vehicule_origin_id":"110:6133DSS","code_moteur_field":"F9Q760","vehicule_ref_id":"W0LJ7BCB66V611334","vehicule_ktype":"","vehicule_ref_etat":"0","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"OPEL","origin_modele":"VIVARO A Autob\u00fas (X83)","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"Capot avant","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"0","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"","origin_modele_id":"","origin_piece_id":"","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"110","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672791","id_modele_parent":"10671","id_energie":"0","id_seller":"110","id_country_seller":"6","id_image":"44428038-154882364","prix":"305.200000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"DESGUACES VIDAURRETA S.L.","ordre_affichage":"23128","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp","fdp_incluse":"1","code_moteur":"F9Q760","reference_constructeur":"","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/44428038-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":305.2,"price_without_reduction":305.2,"price_without_reduction_without_tax":305.2,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Couleur","value":"AMARILLO","id_feature":"2","position":"1"},{"name":"Version","value":null,"id_feature":"3","position":"2"},{"name":"Usure","value":null,"id_feature":"8","position":"6"},{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"},{"name":"Remarques","value":"SIN BISAGRAS CON TOQUES Y ROCES LOS CAPOTS PUEDEN PRESENTAR PEQUE\u00d1OS DA\u00d1OS POR EL USO. CONSULTA LAS IM\u00c1GENES PARA M\u00c1S INFORMACI\u00d3N. EL COLOR PUEDE VARIAR POR DESGASTE SOLAR O ILUMINACI\u00d3N DE LAS FOTOS. PARA UN ASPECTO RENOVADO, SE RECOMIENDA PINTAR","id_feature":"24","position":"22"},{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154882348","position":"1","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/4\/1227944.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/6\/4\/154882364-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882364","position":"2","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/5\/1227945.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/8\/2\/154882382-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882382","position":"3","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/6\/1227946.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/0\/0\/154882400-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882400","position":"4","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/7\/1227947.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/1\/3\/154882413-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882413","position":"5","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/8\/1227948.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/2\/6\/154882426-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882426","position":"6","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/9\/1227949.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/4\/3\/9\/154882439-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154882439","position":"7","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/5\/0\/1227950.jpg","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/8\/8\/2\/3\/4\/8\/154882348-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154882348","position":"1","id_origin":"https:\/\/desguacesvidaurreta.com\/img\/p\/1\/2\/2\/7\/9\/4\/4\/1227944.jpg","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":305.2,"regular_price_amount":305.2,"regular_price":"305,20\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=47531445&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"47531445","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/47531445-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/47531445-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"47531445","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"95,14\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-13 19:38:09","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"47531445-163498779","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/47531445-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":95.14,"price_without_reduction":95.14,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"163498357","position":"1","id_origin":"https:\/\/picture2.totalparts.eu\/A9\/rG\/xWrkshjvdekrqvdrgzqrtsvxtzpexsjr986rqf-f796-4qrq-9f08-r5y1r3201fj6_05xi~74cWag.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"163498779","position":"2","id_origin":"https:\/\/picture2.totalparts.eu\/A9\/Ty\/xWrkshjvdekrqvdrgzqrtsvxtzpexs0y081q82-0533-40yv-fq1y-f8f2671f0jjv_05xi~74cWag.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"163498798","position":"3","id_origin":"https:\/\/picture2.totalparts.eu\/A9\/o7\/xWrkshjvdekrqvdrgzqrtsvxtzpexs6v378q56-v3jj-467j-93rr-r5yfrj1yv2yv_05xi~74cWag.jpg","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"163498357","position":"1","id_origin":"https:\/\/picture2.totalparts.eu\/A9\/rG\/xWrkshjvdekrqvdrgzqrtsvxtzpexsjr986rqf-f796-4qrq-9f08-r5y1r3201fj6_05xi~74cWag.jpg","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":95.14,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"47531445","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"95,14\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"22.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-13 19:38:09","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"118:A9H01M51R6\/3533397","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"","vehicule_origin_id":"","code_moteur_field":"","vehicule_ref_id":"W0LJ7BHA68V621634","vehicule_ktype":"","vehicule_ref_etat":"1","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"A0001E2F","origin_modele":"A0000001","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"PS00438C","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"0","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"A0001E2F","origin_modele_id":"A0000001","origin_piece_id":"PS00438C","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"118","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672792","id_modele_parent":"10671","id_energie":"0","id_seller":"118","id_country_seller":"6","id_image":"47531445-163498779","prix":"95.140000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"Autodesguaces Alicante S.L.","ordre_affichage":"23129","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/47531445-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":95.14,"price_without_reduction":95.14,"price_without_reduction_without_tax":95.14,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"163498357","position":"1","id_origin":"https:\/\/picture2.totalparts.eu\/A9\/rG\/xWrkshjvdekrqvdrgzqrtsvxtzpexsjr986rqf-f796-4qrq-9f08-r5y1r3201fj6_05xi~74cWag.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/7\/9\/163498779-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"163498779","position":"2","id_origin":"https:\/\/picture2.totalparts.eu\/A9\/Ty\/xWrkshjvdekrqvdrgzqrtsvxtzpexs0y081q82-0533-40yv-fq1y-f8f2671f0jjv_05xi~74cWag.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/7\/9\/8\/163498798-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"163498798","position":"3","id_origin":"https:\/\/picture2.totalparts.eu\/A9\/o7\/xWrkshjvdekrqvdrgzqrtsvxtzpexs6v378q56-v3jj-467j-93rr-r5yfrj1yv2yv_05xi~74cWag.jpg","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/6\/3\/4\/9\/8\/3\/5\/7\/163498357-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"163498357","position":"1","id_origin":"https:\/\/picture2.totalparts.eu\/A9\/rG\/xWrkshjvdekrqvdrgzqrtsvxtzpexsjr986rqf-f796-4qrq-9f08-r5y1r3201fj6_05xi~74cWag.jpg","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":95.14,"regular_price_amount":95.14,"regular_price":"95,14\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=41399881&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"41399881","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/41399881-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/41399881-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"41399881","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"165,00\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"93194150","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-14 04:14:29","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"41399881-143856667","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/41399881-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":150,"price_without_reduction":165,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Energie","value":"Diesel","id_feature":"6","position":"4"},{"name":"Usure","value":null,"id_feature":"8","position":"6"},{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":"198301","id_feature":"19","position":"17"},{"name":"Remarques","value":"Pr\u00e9sence de rayures superficielle : OUI\nPr\u00e9sence de rayures profonde : NON\nPr\u00e9sence de corrosion : NON\nPr\u00e9sence d'impact : NON","id_feature":"24","position":"22"},{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":10,"tax_name":"TVA FR 10%","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"143856652","position":"1","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-8a1c8f14-80b9-4fe1-9d65-4dfc72d25b99-124455110-b8b7522aff12a82b3c8fdb1b444e086b76138fc9b7c5b4c6492fd5e876f848d5_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856667","position":"2","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-8ed13aad-799f-4963-98ab-7468a3f0a382-124455110-dad555d8d3b5d3672e48ca1cbc7ecb061dcf2252c9ec768f75520d8fd2cdb025_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856683","position":"3","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-84ba6d3c-ec21-4b46-a6ac-848a83466ae4-124455110-13602858af5c3375a5e24c36f29cafdeff4b59468ca83362ab319b0f15b2374f_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856694","position":"4","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-b94ad6e3-91d0-4021-b98c-e9df2dd43c03-124455110-4f67c57af95f32ece50919a10d4c82941eedba08e5c8d685d5501b1b44928f8b_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856702","position":"5","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-e308ce9c-421c-4793-8465-44dcbdbf2ac5-124455110-0e10a42638b3c96d0f4ac2a8fa627a6cc55538be0472590d915e06452abb2881_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856979","position":"6","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-33e96b8e-d183-4892-a548-d465916241cd-124455110-3e63d82c3ccb80bc6e49cec47ae0d2255856bb7cd081009462f130818b7c43da_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856995","position":"7","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-a7567c24-7a2b-49cd-8689-6cbaeb48c8f1-124455110-e2904f068540adb3db352611946691030e22b761732d524bc277244333b8835b_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143857008","position":"8","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-6c654e6a-eac8-4d49-8437-1849404cd238-124455110-c9ad0134acc23e9989bc513d6f54fddd0e9316d293b326770fb054de336549c4_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143857022","position":"9","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-c94eb3e0-4234-4786-8316-f6a2d063d824-124455110-2aa7f38c707abc313f3286d3b142364a17459be963da8a79a0e97ac2fa941c61_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143857039","position":"10","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-daf24cd1-5393-4d4a-a38f-68ec65e3e97c-124455110-870c6a521df9f9418b89d35ad82f3d783f2194a58b65997e7c92e8606b6e633e_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143857056","position":"11","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-8b926fe3-d309-4e6b-9089-7383c38a546e-124455110-2c461679a78e00f1239234ab6e6127e178cb475e4b5b17cd3bf22d1ee6426624_m.jpg","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"143856652","position":"1","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-8a1c8f14-80b9-4fe1-9d65-4dfc72d25b99-124455110-b8b7522aff12a82b3c8fdb1b444e086b76138fc9b7c5b4c6492fd5e876f848d5_m.jpg","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":165,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":"93194150","grouped_features":{"Energie":{"name":"Energie","value":"Diesel","id_feature":"6","position":"4"},"Usure":{"name":"Usure","value":null,"id_feature":"8","position":"6"},"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},"Kilom\u00e9trage":{"name":"Kilom\u00e9trage","value":"198301","id_feature":"19","position":"17"},"Remarques":{"name":"Remarques","value":"Pr\u00e9sence de rayures superficielle : OUI\nPr\u00e9sence de rayures profonde : NON\nPr\u00e9sence de corrosion : NON\nPr\u00e9sence d'impact : NON","id_feature":"24","position":"22"},"Nombre de portes":{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"41399881","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"2","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"165,00\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"93194150","supplier_reference":"93194150","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"22.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-14 04:14:29","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"91:124455110","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"[{\"id\":\"44160825\"},{\"id\":\"44160826\"},{\"id\":\"44160827\"},{\"id\":\"44160828\"},{\"id\":\"44160829\"},{\"id\":\"44160830\"},{\"id\":\"44160831\"},{\"id\":\"44160832\"},{\"id\":\"44160833\"},{\"id\":\"44160834\"},{\"id\":\"44160835\"}]","corrige":"0","immatriculation":"","vehicule_origin_id":"91:W0LF7BHB6CV600680","code_moteur_field":"M9R_782","vehicule_ref_id":"W0LF7BHB6CV600680","vehicule_ktype":"19928","vehicule_ref_etat":"0","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"OPEL","origin_modele":"VIVARO 1 PHASE 2","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"Capot","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"0","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"","origin_modele_id":"","origin_piece_id":"","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"10.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"91","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672793","id_modele_parent":"10671","id_energie":"16523","id_seller":"91","id_country_seller":"8","id_image":"41399881-143856667","prix":"165.000000","energie":"Diesel","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"SARL BONNIEU","ordre_affichage":"23130","snipet":"[{\"value\":\"Diesel\",\"name\":\"Energie\"},{\"value\":\"12 mois\",\"name\":\"Garantie\"},{\"value\":\"198301\",\"name\":\"Kilom\\u00e9trage\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp","fdp_incluse":"1","code_moteur":"M9R_782","reference_constructeur":"93194150","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/41399881-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":150,"price_without_reduction":165,"price_without_reduction_without_tax":150,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Energie","value":"Diesel","id_feature":"6","position":"4"},{"name":"Usure","value":null,"id_feature":"8","position":"6"},{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":"198301","id_feature":"19","position":"17"},{"name":"Remarques","value":"Pr\u00e9sence de rayures superficielle : OUI\nPr\u00e9sence de rayures profonde : NON\nPr\u00e9sence de corrosion : NON\nPr\u00e9sence d'impact : NON","id_feature":"24","position":"22"},{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":10,"tax_name":"TVA FR 10%","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"143856652","position":"1","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-8a1c8f14-80b9-4fe1-9d65-4dfc72d25b99-124455110-b8b7522aff12a82b3c8fdb1b444e086b76138fc9b7c5b4c6492fd5e876f848d5_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/6\/7\/143856667-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856667","position":"2","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-8ed13aad-799f-4963-98ab-7468a3f0a382-124455110-dad555d8d3b5d3672e48ca1cbc7ecb061dcf2252c9ec768f75520d8fd2cdb025_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/8\/3\/143856683-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856683","position":"3","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-84ba6d3c-ec21-4b46-a6ac-848a83466ae4-124455110-13602858af5c3375a5e24c36f29cafdeff4b59468ca83362ab319b0f15b2374f_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/9\/4\/143856694-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856694","position":"4","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-b94ad6e3-91d0-4021-b98c-e9df2dd43c03-124455110-4f67c57af95f32ece50919a10d4c82941eedba08e5c8d685d5501b1b44928f8b_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/7\/0\/2\/143856702-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856702","position":"5","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-e308ce9c-421c-4793-8465-44dcbdbf2ac5-124455110-0e10a42638b3c96d0f4ac2a8fa627a6cc55538be0472590d915e06452abb2881_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/7\/9\/143856979-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856979","position":"6","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-33e96b8e-d183-4892-a548-d465916241cd-124455110-3e63d82c3ccb80bc6e49cec47ae0d2255856bb7cd081009462f130818b7c43da_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/9\/9\/5\/143856995-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143856995","position":"7","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-a7567c24-7a2b-49cd-8689-6cbaeb48c8f1-124455110-e2904f068540adb3db352611946691030e22b761732d524bc277244333b8835b_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/0\/8\/143857008-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143857008","position":"8","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-6c654e6a-eac8-4d49-8437-1849404cd238-124455110-c9ad0134acc23e9989bc513d6f54fddd0e9316d293b326770fb054de336549c4_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/2\/2\/143857022-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143857022","position":"9","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-c94eb3e0-4234-4786-8316-f6a2d063d824-124455110-2aa7f38c707abc313f3286d3b142364a17459be963da8a79a0e97ac2fa941c61_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/3\/9\/143857039-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143857039","position":"10","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-daf24cd1-5393-4d4a-a38f-68ec65e3e97c-124455110-870c6a521df9f9418b89d35ad82f3d783f2194a58b65997e7c92e8606b6e633e_m.jpg","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/7\/0\/5\/6\/143857056-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"143857056","position":"11","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-8b926fe3-d309-4e6b-9089-7383c38a546e-124455110-2c461679a78e00f1239234ab6e6127e178cb475e4b5b17cd3bf22d1ee6426624_m.jpg","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/3\/8\/5\/6\/6\/5\/2\/143856652-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"143856652","position":"1","id_origin":"https:\/\/opisto-prod-pic.opisto.s3.eu-west-1.bso.st\/101\/po_photo\/2026\/04\/124455110-8a1c8f14-80b9-4fe1-9d65-4dfc72d25b99-124455110-b8b7522aff12a82b3c8fdb1b444e086b76138fc9b7c5b4c6492fd5e876f848d5_m.jpg","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":165,"regular_price_amount":165,"regular_price":"165,00\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=34261284&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"34261284","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/34261284-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/34261284-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"34261284","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"345,83\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"93160790","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-14 02:31:03","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"34261284-121844666","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/34261284-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":345.83,"price_without_reduction":345.83,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Energie","value":"Diesel","id_feature":"6","position":"4"},{"name":"Remarques","value":null,"id_feature":"24","position":"22"},{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"121844665","position":"1","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581004613.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844666","position":"2","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581355803.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844667","position":"3","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581351934.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844668","position":"4","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581347918.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844669","position":"5","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581341251.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844670","position":"6","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581062692.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844671","position":"7","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581060555.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844672","position":"8","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581055556.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844673","position":"9","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581051431.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844674","position":"10","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581045575.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844675","position":"11","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581041519.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844676","position":"12","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581031886.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844677","position":"13","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581024079.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844678","position":"14","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581018367.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844679","position":"15","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581013135.JPG","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"121844665","position":"1","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581004613.JPG","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":345.83,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":"93160790","grouped_features":{"Energie":{"name":"Energie","value":"Diesel","id_feature":"6","position":"4"},"Remarques":{"name":"Remarques","value":null,"id_feature":"24","position":"22"},"Nombre de portes":{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"34261284","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"345,83\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"93160790","supplier_reference":"93160790","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"180.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-14 02:31:03","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"89:588539","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"[{\"id\":\"34554574\"},{\"id\":\"34554575\"},{\"id\":\"34554576\"},{\"id\":\"34554577\"}]","corrige":"0","immatriculation":"","vehicule_origin_id":"89:0381GRT","code_moteur_field":"","vehicule_ref_id":"W0LJ7AHA68V653279","vehicule_ktype":"","vehicule_ref_etat":"0","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"OPEL","origin_modele":"VIVARO CAJA ABIERTA 07.2006 =>","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"CAPOT","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"15805","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"","origin_modele_id":"","origin_piece_id":"","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"89","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672794","id_modele_parent":"10671","id_energie":"16523","id_seller":"89","id_country_seller":"6","id_image":"34261284-121844666","prix":"345.830000","energie":"Diesel","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"JG RECOMOTOR, S.L.","ordre_affichage":"23131","snipet":"[{\"value\":\"Diesel\",\"name\":\"Energie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"93160790","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/34261284-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":345.83,"price_without_reduction":345.83,"price_without_reduction_without_tax":345.83,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Energie","value":"Diesel","id_feature":"6","position":"4"},{"name":"Remarques","value":null,"id_feature":"24","position":"22"},{"name":"Nombre de portes","value":null,"id_feature":"25","position":"23"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"121844665","position":"1","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581004613.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/6\/121844666-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844666","position":"2","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581355803.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/7\/121844667-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844667","position":"3","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581351934.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/8\/121844668-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844668","position":"4","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581347918.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/9\/121844669-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844669","position":"5","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581341251.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/0\/121844670-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844670","position":"6","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581062692.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/1\/121844671-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844671","position":"7","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581060555.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/2\/121844672-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844672","position":"8","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581055556.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/3\/121844673-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844673","position":"9","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581051431.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/4\/121844674-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844674","position":"10","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581045575.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/5\/121844675-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844675","position":"11","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581041519.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/6\/121844676-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844676","position":"12","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581031886.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/7\/121844677-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844677","position":"13","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581024079.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/8\/121844678-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844678","position":"14","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581018367.JPG","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/7\/9\/121844679-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"121844679","position":"15","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581013135.JPG","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/1\/8\/4\/4\/6\/6\/5\/121844665-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"121844665","position":"1","id_origin":"https:\/\/prometeo-erp.s3.amazonaws.com\/prod\/imgs\/vehiculos\/0381GRT\/588539\/76_CAPOT_0381GRT_1731581004613.JPG","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":345.83,"regular_price_amount":345.83,"regular_price":"345,83\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=6901332&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"6901332","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/6901332-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/6901332-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":false,"delivery_information":"","embedded_attributes":{"id_product":"6901332","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"391,00\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"0","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-01 15:36:34","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Il PR\u00c9SENTE PETITE ABOLLADURA VOIR des PHOTOGRAPHIES","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"6901332-37438111","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/6901332-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":391,"price_without_reduction":391,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":"205137 km","id_feature":"19","position":"17"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"37438110","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/kWImbpJuIAVo?publicKey=casse&accessToken=1ece62837137d68b5fd32088b34240d836b7d8178699a3aead013f016a9645f3","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"37438111","position":"2","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/rA9y__leLTre?publicKey=casse&accessToken=e9254ffffe11e7d1e476b69c3b37bf3d72a4f280c453822203474c2dbf3baa02","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"37438112","position":"3","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/0RzJzPbGWF8j?publicKey=casse&accessToken=11abaf2f73aa1d4a8a7c5b475deae3c58e57f358aef026f6dfc1c5de88c64ced","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"37438113","position":"4","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/KJuB12ZtbceH?publicKey=casse&accessToken=f8e62685e0ccd51220de446d8165600ffbc97f9227efd666bca5610ac93320e4","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"37438114","position":"5","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/TRAHDWD90xni?publicKey=casse&accessToken=ef66d8cf186c87f3074a7a7a67bdf1a420fab36a1f57edac925d45ebbe42608c","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"37438115","position":"6","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/tf24rZ4RySBX?publicKey=casse&accessToken=2f938fb22b9800c5db8cbac214236ba7ccb1a6598248b4e019546d131fa9ca2c","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"37438110","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/kWImbpJuIAVo?publicKey=casse&accessToken=1ece62837137d68b5fd32088b34240d836b7d8178699a3aead013f016a9645f3","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":391,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},"Kilom\u00e9trage":{"name":"Kilom\u00e9trage","value":"205137 km","id_feature":"19","position":"17"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"6901332","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"391,00\u00a0\u20ac","old_price_octobre_2025":"355.000000","wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"93194150","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"90.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"0","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-01 15:36:34","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"26:elczp420271","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"","vehicule_origin_id":"26:elczv1543","code_moteur_field":"","vehicule_ref_id":"W0LJ7AHA68V651675","vehicule_ktype":"","vehicule_ref_etat":"1","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"79","origin_modele":"316610","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"2442","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"15805","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"79","origin_modele_id":"316610","origin_piece_id":"2442","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"26","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Il PR\u00c9SENTE PETITE ABOLLADURA VOIR des PHOTOGRAPHIES","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672796","id_modele_parent":"10671","id_energie":"0","id_seller":"26","id_country_seller":"6","id_image":"6901332-37438111","prix":"391.000000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"USED WORLD PARTS","ordre_affichage":"23133","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"},{\"value\":\"205137 km\",\"name\":\"Kilom\\u00e9trage\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"93194150","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/6901332-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":391,"price_without_reduction":391,"price_without_reduction_without_tax":391,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":"205137 km","id_feature":"19","position":"17"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"37438110","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/kWImbpJuIAVo?publicKey=casse&accessToken=1ece62837137d68b5fd32088b34240d836b7d8178699a3aead013f016a9645f3","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/1\/37438111-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"37438111","position":"2","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/rA9y__leLTre?publicKey=casse&accessToken=e9254ffffe11e7d1e476b69c3b37bf3d72a4f280c453822203474c2dbf3baa02","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/2\/37438112-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"37438112","position":"3","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/0RzJzPbGWF8j?publicKey=casse&accessToken=11abaf2f73aa1d4a8a7c5b475deae3c58e57f358aef026f6dfc1c5de88c64ced","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/3\/37438113-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"37438113","position":"4","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/KJuB12ZtbceH?publicKey=casse&accessToken=f8e62685e0ccd51220de446d8165600ffbc97f9227efd666bca5610ac93320e4","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/4\/37438114-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"37438114","position":"5","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/TRAHDWD90xni?publicKey=casse&accessToken=ef66d8cf186c87f3074a7a7a67bdf1a420fab36a1f57edac925d45ebbe42608c","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/5\/37438115-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"37438115","position":"6","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/tf24rZ4RySBX?publicKey=casse&accessToken=2f938fb22b9800c5db8cbac214236ba7ccb1a6598248b4e019546d131fa9ca2c","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/3\/7\/4\/3\/8\/1\/1\/0\/37438110-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"37438110","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/elcaliz\/images\/kWImbpJuIAVo?publicKey=casse&accessToken=1ece62837137d68b5fd32088b34240d836b7d8178699a3aead013f016a9645f3","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":391,"regular_price_amount":391,"regular_price":"391,00\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=13097574&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"13097574","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/13097574-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/13097574-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":false,"delivery_information":"","embedded_attributes":{"id_product":"13097574","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"392,00\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"0","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-01-16 16:01:22","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"13097574-62158920","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/13097574-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":392,"price_without_reduction":392,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"62158919","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/DGogZ540VLwn?publicKey=casse&accessToken=097e14dc60fdd41f6d76a80e673d86dc26c83a9eb7350d056fa92af90caab4d7","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158920","position":"2","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/CdBKqbh647B9?publicKey=casse&accessToken=3c706e88b5a705a0cd1a57e3e75f5ba4e415f3da36efa46eb84e19dfe69595dd","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158921","position":"3","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/ZaIgZE-HAgjz?publicKey=casse&accessToken=722c2552346b45a34200baea87b20757891a40f76e15cd02ce4dfa2b6ee1fabc","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158922","position":"4","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/7kth0Ohbt5Eo?publicKey=casse&accessToken=f8d06e824f8a29ca39707a5247ae005d9a0372d6b1ba2f176f637b9de6a1ab94","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158923","position":"5","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/-D827KJF7U5C?publicKey=casse&accessToken=eea82e98a9e45db2e7a68ce5c2ea27ab1899a72ed9b56401e3225c935968da6f","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158924","position":"6","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/udp47z1jp86x?publicKey=casse&accessToken=fe3162bf123027055233bea4594085c58c202f6bcbf553bc155939fdb3c68633","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158925","position":"7","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/9vnsfIFsGjIB?publicKey=casse&accessToken=07ce72f6f2947d1db621f6bca94b40af04766d0ad4c9d04a3fe6031d58f31da7","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158926","position":"8","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/HDNanhjDzonb?publicKey=casse&accessToken=264cbcb4816dd4e6c11af82fd1665bdee5a586883c23d0a0a1016de689b99e68","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158927","position":"9","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/SJhDtubl7-Za?publicKey=casse&accessToken=8f31775f5a3903041c03d8e6e9c5228904f9896be50e967f1919fb423ac07180","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158928","position":"10","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/sSM1pmann7Hc?publicKey=casse&accessToken=c6ac1b281c5815d58867931f947a7df5a58ea607c6168f2109bbdaee08414962","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158929","position":"11","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/NHVRQBJ5KO3G?publicKey=casse&accessToken=f7f9f078535fde5bb9b58e2673add8534738c68ab6fa85d448c59d6e13252e61","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158930","position":"12","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/s53C4ZygddLH?publicKey=casse&accessToken=8a3f739082d25125343ed0b2e35d2d7f24507388e368e77e66180898fb0d3dbf","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158931","position":"13","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/iQ_a6e4tyTw4?publicKey=casse&accessToken=2c044127a734efecb112974d0d43c0ddeda4796f72007936119f30295610335b","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158932","position":"14","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/TL3PvXWAThoz?publicKey=casse&accessToken=5d5473d5c196d9864409403d259d941af84acfd1effe68a50c7a65e01a4e40fc","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158933","position":"15","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/_uXOwQ7aflt8?publicKey=casse&accessToken=cd49eae14cfc354bf69e0270fdb40dfc7c7763d93a0d628bec3e81b8886b4d8e","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"62158919","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/DGogZ540VLwn?publicKey=casse&accessToken=097e14dc60fdd41f6d76a80e673d86dc26c83a9eb7350d056fa92af90caab4d7","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":392,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},"Kilom\u00e9trage":{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"13097574","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"392,00\u00a0\u20ac","old_price_octobre_2025":"323.000000","wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"93160790","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"180.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"0","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-01-16 16:01:22","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"26:jgrmp588539","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"","vehicule_origin_id":"26:jgrmv40","code_moteur_field":"","vehicule_ref_id":"W0LJ7AHA68V653279","vehicule_ktype":"","vehicule_ref_etat":"4","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"79","origin_modele":"347346","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"394","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"15805","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"79","origin_modele_id":"347346","origin_piece_id":"394","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"26","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672797","id_modele_parent":"10671","id_energie":"0","id_seller":"26","id_country_seller":"6","id_image":"13097574-62158920","prix":"392.000000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"USED WORLD PARTS","ordre_affichage":"23134","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"93160790","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/13097574-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":392,"price_without_reduction":392,"price_without_reduction_without_tax":392,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"62158919","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/DGogZ540VLwn?publicKey=casse&accessToken=097e14dc60fdd41f6d76a80e673d86dc26c83a9eb7350d056fa92af90caab4d7","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/0\/62158920-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158920","position":"2","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/CdBKqbh647B9?publicKey=casse&accessToken=3c706e88b5a705a0cd1a57e3e75f5ba4e415f3da36efa46eb84e19dfe69595dd","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/1\/62158921-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158921","position":"3","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/ZaIgZE-HAgjz?publicKey=casse&accessToken=722c2552346b45a34200baea87b20757891a40f76e15cd02ce4dfa2b6ee1fabc","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/2\/62158922-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158922","position":"4","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/7kth0Ohbt5Eo?publicKey=casse&accessToken=f8d06e824f8a29ca39707a5247ae005d9a0372d6b1ba2f176f637b9de6a1ab94","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/3\/62158923-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158923","position":"5","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/-D827KJF7U5C?publicKey=casse&accessToken=eea82e98a9e45db2e7a68ce5c2ea27ab1899a72ed9b56401e3225c935968da6f","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/4\/62158924-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158924","position":"6","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/udp47z1jp86x?publicKey=casse&accessToken=fe3162bf123027055233bea4594085c58c202f6bcbf553bc155939fdb3c68633","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/5\/62158925-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158925","position":"7","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/9vnsfIFsGjIB?publicKey=casse&accessToken=07ce72f6f2947d1db621f6bca94b40af04766d0ad4c9d04a3fe6031d58f31da7","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/6\/62158926-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158926","position":"8","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/HDNanhjDzonb?publicKey=casse&accessToken=264cbcb4816dd4e6c11af82fd1665bdee5a586883c23d0a0a1016de689b99e68","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/7\/62158927-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158927","position":"9","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/SJhDtubl7-Za?publicKey=casse&accessToken=8f31775f5a3903041c03d8e6e9c5228904f9896be50e967f1919fb423ac07180","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/8\/62158928-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158928","position":"10","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/sSM1pmann7Hc?publicKey=casse&accessToken=c6ac1b281c5815d58867931f947a7df5a58ea607c6168f2109bbdaee08414962","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/2\/9\/62158929-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158929","position":"11","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/NHVRQBJ5KO3G?publicKey=casse&accessToken=f7f9f078535fde5bb9b58e2673add8534738c68ab6fa85d448c59d6e13252e61","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/0\/62158930-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158930","position":"12","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/s53C4ZygddLH?publicKey=casse&accessToken=8a3f739082d25125343ed0b2e35d2d7f24507388e368e77e66180898fb0d3dbf","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/1\/62158931-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158931","position":"13","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/iQ_a6e4tyTw4?publicKey=casse&accessToken=2c044127a734efecb112974d0d43c0ddeda4796f72007936119f30295610335b","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/2\/62158932-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158932","position":"14","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/TL3PvXWAThoz?publicKey=casse&accessToken=5d5473d5c196d9864409403d259d941af84acfd1effe68a50c7a65e01a4e40fc","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/3\/3\/62158933-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"62158933","position":"15","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/_uXOwQ7aflt8?publicKey=casse&accessToken=cd49eae14cfc354bf69e0270fdb40dfc7c7763d93a0d628bec3e81b8886b4d8e","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/6\/2\/1\/5\/8\/9\/1\/9\/62158919-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"62158919","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/jgrecom\/images\/DGogZ540VLwn?publicKey=casse&accessToken=097e14dc60fdd41f6d76a80e673d86dc26c83a9eb7350d056fa92af90caab4d7","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":392,"regular_price_amount":392,"regular_price":"392,00\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=15289262&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"15289262","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/15289262-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/15289262-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"15289262","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"680,00\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2025-03-09 20:16:30","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"15289262-71899954","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/15289262-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":680,"price_without_reduction":680,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"71899954","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/catoira\/images\/H88sjDx_bFOX?publicKey=casse&accessToken=ba15b9b08957776ed013651c9e39c0af47ffe4bce5b6a3a9c2febb9a0e101297","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"71899954","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/catoira\/images\/H88sjDx_bFOX?publicKey=casse&accessToken=ba15b9b08957776ed013651c9e39c0af47ffe4bce5b6a3a9c2febb9a0e101297","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":680,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"15289262","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"680,00\u00a0\u20ac","old_price_octobre_2025":"304.000000","wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"93160790","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"169.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2025-03-09 20:16:30","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"26:catap2155344","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"","vehicule_origin_id":"26:catav0","code_moteur_field":"","vehicule_ref_id":"","vehicule_ktype":null,"vehicule_ref_etat":"0","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"2697","origin_modele":"347346","origin_modele_parent":null,"origin_modele_parent_id":null,"origin_version":"","origin_piece":"394","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"15805","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"2697","origin_modele_id":"347346","origin_piece_id":"394","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"1","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":null,"frais_port_ttc":null,"origin_id_prefix":"26","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672798","id_modele_parent":"10671","id_energie":"0","id_seller":"26","id_country_seller":"6","id_image":"15289262-71899954","prix":"680.000000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"USED WORLD PARTS","ordre_affichage":"23135","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"93160790","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/15289262-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":680,"price_without_reduction":680,"price_without_reduction_without_tax":680,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"71899954","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/catoira\/images\/H88sjDx_bFOX?publicKey=casse&accessToken=ba15b9b08957776ed013651c9e39c0af47ffe4bce5b6a3a9c2febb9a0e101297","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/7\/1\/8\/9\/9\/9\/5\/4\/71899954-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"71899954","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/catoira\/images\/H88sjDx_bFOX?publicKey=casse&accessToken=ba15b9b08957776ed013651c9e39c0af47ffe4bce5b6a3a9c2febb9a0e101297","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":680,"regular_price_amount":680,"regular_price":"680,00\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=36352924&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"36352924","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/36352924-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/36352924-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"36352924","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"370,00\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-05-16 01:00:49","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"36352924-126009746","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/36352924-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":370,"price_without_reduction":370,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"126009733","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/3vaRbmiNEqaQ?publicKey=casse&accessToken=debe415fc4deb224d95aaa09c13c3f35ab46d42238820a250cb8a44ab1527375","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"126009746","position":"2","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/CZpRDwc7hKZF?publicKey=casse&accessToken=97654936a180d2b2e01e7f311f98b32dbdf2c27fdb4dc3fbab3dd8fd6ef4a6b3","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"126009763","position":"3","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/G2TpIpw5BMnv?publicKey=casse&accessToken=a8831d3f38f0d99e96a99a886caa601eb7b2c8708d2e4a34873edb718940cb23","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"126009784","position":"4","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/vIFRT_8XBWXU?publicKey=casse&accessToken=d18b10d733962268a7019937c8bc4cb1058f466de8f309f240d9008fb7a01aee","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"126009795","position":"5","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/W7S_E4GlsBGB?publicKey=casse&accessToken=6f5774149e20d1500aaf94f14aee3c58b8ae2556c966727ff4ad645e0837461f","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"126009733","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/3vaRbmiNEqaQ?publicKey=casse&accessToken=debe415fc4deb224d95aaa09c13c3f35ab46d42238820a250cb8a44ab1527375","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":370,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"36352924","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"370,00\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"90.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-05-16 01:00:49","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"26:horop130227","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"","vehicule_origin_id":"26:horov1783","code_moteur_field":"","vehicule_ref_id":"W0LJ7BVB68V643715","vehicule_ktype":"","vehicule_ref_etat":"1","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"79","origin_modele":"1075755","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"2442","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"15805","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"79","origin_modele_id":"1075755","origin_piece_id":"2442","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"26","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672799","id_modele_parent":"10671","id_energie":"0","id_seller":"26","id_country_seller":"6","id_image":"36352924-126009746","prix":"370.000000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"USED WORLD PARTS","ordre_affichage":"23136","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/36352924-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":370,"price_without_reduction":370,"price_without_reduction_without_tax":370,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"126009733","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/3vaRbmiNEqaQ?publicKey=casse&accessToken=debe415fc4deb224d95aaa09c13c3f35ab46d42238820a250cb8a44ab1527375","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/4\/6\/126009746-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"126009746","position":"2","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/CZpRDwc7hKZF?publicKey=casse&accessToken=97654936a180d2b2e01e7f311f98b32dbdf2c27fdb4dc3fbab3dd8fd6ef4a6b3","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/6\/3\/126009763-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"126009763","position":"3","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/G2TpIpw5BMnv?publicKey=casse&accessToken=a8831d3f38f0d99e96a99a886caa601eb7b2c8708d2e4a34873edb718940cb23","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/8\/4\/126009784-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"126009784","position":"4","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/vIFRT_8XBWXU?publicKey=casse&accessToken=d18b10d733962268a7019937c8bc4cb1058f466de8f309f240d9008fb7a01aee","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/9\/5\/126009795-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"126009795","position":"5","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/W7S_E4GlsBGB?publicKey=casse&accessToken=6f5774149e20d1500aaf94f14aee3c58b8ae2556c966727ff4ad645e0837461f","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/2\/6\/0\/0\/9\/7\/3\/3\/126009733-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"126009733","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/horacio\/images\/3vaRbmiNEqaQ?publicKey=casse&accessToken=debe415fc4deb224d95aaa09c13c3f35ab46d42238820a250cb8a44ab1527375","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":370,"regular_price_amount":370,"regular_price":"370,00\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=43183104&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"43183104","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/43183104-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/43183104-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"43183104","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"236,00\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-07 22:00:24","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"43183104-148784337","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/43183104-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":236,"price_without_reduction":236,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"148784323","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/alicant\/images\/Xn_Hsddhadl_?publicKey=casse&accessToken=af9005a8a2b49a6e20c2d5d256433ac6353687260effab1d2b7f00af6613e64c","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"148784337","position":"2","id_origin":"http:\/\/f2.mbrev.es\/users\/alicant\/images\/UVeI0WhgH3Lj?publicKey=casse&accessToken=e8a31cc0c486170b8e12a9c07529ff209833afb83fc5fa151ccf2c90af24ec1d","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"148784349","position":"3","id_origin":"http:\/\/f2.mbrev.es\/users\/alicant\/images\/_nOmJ8QkV4xn?publicKey=casse&accessToken=14a9f5d5c0a6b2f53ceb4e1e450d8caf937bc76bb04fb6e548e4d3da8c26d581","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"148784323","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/alicant\/images\/Xn_Hsddhadl_?publicKey=casse&accessToken=af9005a8a2b49a6e20c2d5d256433ac6353687260effab1d2b7f00af6613e64c","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":236,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"43183104","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"236,00\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"50.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-07 22:00:24","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"26:alitp3533397","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"","vehicule_origin_id":"26:alitv21877","code_moteur_field":"","vehicule_ref_id":"W0LJ7BHA68V621634","vehicule_ktype":"","vehicule_ref_etat":"4","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"79","origin_modele":"750622","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"394","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"15805","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"79","origin_modele_id":"750622","origin_piece_id":"394","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"26","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672800","id_modele_parent":"10671","id_energie":"0","id_seller":"26","id_country_seller":"6","id_image":"43183104-148784337","prix":"236.000000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"USED WORLD PARTS","ordre_affichage":"23137","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/43183104-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":236,"price_without_reduction":236,"price_without_reduction_without_tax":236,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"148784323","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/alicant\/images\/Xn_Hsddhadl_?publicKey=casse&accessToken=af9005a8a2b49a6e20c2d5d256433ac6353687260effab1d2b7f00af6613e64c","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/3\/7\/148784337-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"148784337","position":"2","id_origin":"http:\/\/f2.mbrev.es\/users\/alicant\/images\/UVeI0WhgH3Lj?publicKey=casse&accessToken=e8a31cc0c486170b8e12a9c07529ff209833afb83fc5fa151ccf2c90af24ec1d","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/4\/9\/148784349-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"148784349","position":"3","id_origin":"http:\/\/f2.mbrev.es\/users\/alicant\/images\/_nOmJ8QkV4xn?publicKey=casse&accessToken=14a9f5d5c0a6b2f53ceb4e1e450d8caf937bc76bb04fb6e548e4d3da8c26d581","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/8\/7\/8\/4\/3\/2\/3\/148784323-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"148784323","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/alicant\/images\/Xn_Hsddhadl_?publicKey=casse&accessToken=af9005a8a2b49a6e20c2d5d256433ac6353687260effab1d2b7f00af6613e64c","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":236,"regular_price_amount":236,"regular_price":"236,00\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=41874722&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"41874722","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/41874722-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/41874722-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"41874722","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"315,00\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-07 13:03:22","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"41874722-145267084","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/41874722-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":315,"price_without_reduction":315,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"145267070","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/susmoro\/images\/TmY5iFPsSKXD?publicKey=casse&accessToken=25b86cc31130ec1412ec1ae72318bfe7e8fe1f59b8fb8b24d48a738ce0cd24a2","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"145267084","position":"2","id_origin":"http:\/\/f.mbrev.es\/users\/susmoro\/images\/aIE_Dicmfpy6?publicKey=casse&accessToken=a80bc60a3ba98cba33670e5a2f50a69ef18a0651d5a86855b5221136af646800","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"145267099","position":"3","id_origin":"http:\/\/f.mbrev.es\/users\/susmoro\/images\/EfiCQ_h5nBsx?publicKey=casse&accessToken=a880f1cc4bddfb939d6d82f5b21576ec37f72652c77259c24826933e19a5c46f","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"145267116","position":"4","id_origin":"http:\/\/f.mbrev.es\/users\/susmoro\/images\/gnR5Yy1mAZE9?publicKey=casse&accessToken=b3c49c94fdf6c71392b7fa871b8ee56c5ae0579412e488afe96cef2e4387a306","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"145267070","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/susmoro\/images\/TmY5iFPsSKXD?publicKey=casse&accessToken=25b86cc31130ec1412ec1ae72318bfe7e8fe1f59b8fb8b24d48a738ce0cd24a2","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":315,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},"Kilom\u00e9trage":{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"41874722","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"315,00\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"Sin referencia","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"65.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-07 13:03:22","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"26:susop2418164","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"","vehicule_origin_id":"26:susov4245","code_moteur_field":"","vehicule_ref_id":"W0LJ7B7B6BV648110","vehicule_ktype":"","vehicule_ref_etat":"4","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"79","origin_modele":"1130752","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"394","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"15805","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"79","origin_modele_id":"1130752","origin_piece_id":"394","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"26","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672801","id_modele_parent":"10671","id_energie":"0","id_seller":"26","id_country_seller":"6","id_image":"41874722-145267084","prix":"315.000000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"USED WORLD PARTS","ordre_affichage":"23138","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"Sin referencia","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/41874722-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":315,"price_without_reduction":315,"price_without_reduction_without_tax":315,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"},{"name":"Kilom\u00e9trage","value":null,"id_feature":"19","position":"17"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"145267070","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/susmoro\/images\/TmY5iFPsSKXD?publicKey=casse&accessToken=25b86cc31130ec1412ec1ae72318bfe7e8fe1f59b8fb8b24d48a738ce0cd24a2","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/8\/4\/145267084-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"145267084","position":"2","id_origin":"http:\/\/f.mbrev.es\/users\/susmoro\/images\/aIE_Dicmfpy6?publicKey=casse&accessToken=a80bc60a3ba98cba33670e5a2f50a69ef18a0651d5a86855b5221136af646800","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/9\/9\/145267099-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"145267099","position":"3","id_origin":"http:\/\/f.mbrev.es\/users\/susmoro\/images\/EfiCQ_h5nBsx?publicKey=casse&accessToken=a880f1cc4bddfb939d6d82f5b21576ec37f72652c77259c24826933e19a5c46f","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/1\/1\/6\/145267116-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"145267116","position":"4","id_origin":"http:\/\/f.mbrev.es\/users\/susmoro\/images\/gnR5Yy1mAZE9?publicKey=casse&accessToken=b3c49c94fdf6c71392b7fa871b8ee56c5ae0579412e488afe96cef2e4387a306","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/5\/2\/6\/7\/0\/7\/0\/145267070-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"145267070","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/susmoro\/images\/TmY5iFPsSKXD?publicKey=casse&accessToken=25b86cc31130ec1412ec1ae72318bfe7e8fe1f59b8fb8b24d48a738ce0cd24a2","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":315,"regular_price_amount":315,"regular_price":"315,00\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=42283571&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"42283571","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/42283571-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/42283571-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"42283571","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"451,00\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-01 20:01:38","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"42283571-146357673","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/42283571-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":451,"price_without_reduction":451,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"146357659","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/43IqXstCg5UU?publicKey=casse&accessToken=dac314279a932f7dcab4721d529aa6c150f54f2653a20f2a88b52df2db7c2995","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"146357673","position":"2","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/M2b43e6Q9OxN?publicKey=casse&accessToken=4c5bea8cdd789e1c435d00efb72e845424b344193cfd23cd39823bcab7224664","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"146357684","position":"3","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/OxWrOoMDVNQX?publicKey=casse&accessToken=1f4b43fcec8eefbd8cce95043ad8af66aca3177726256b02e742f7f488a77a2b","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"146357693","position":"4","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/o_2w0WOBap1H?publicKey=casse&accessToken=1954327c2cb5167c032c2b8774348d26666c66b7021a55ec782afeef13fbb722","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"146357659","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/43IqXstCg5UU?publicKey=casse&accessToken=dac314279a932f7dcab4721d529aa6c150f54f2653a20f2a88b52df2db7c2995","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":451,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"42283571","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"451,00\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"93194150","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"90.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-01 20:01:38","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"26:dmuap1886637","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"[{\"id\":\"45573893\"},{\"id\":\"45573894\"},{\"id\":\"45573895\"},{\"id\":\"45573896\"},{\"id\":\"45573897\"},{\"id\":\"45573898\"}]","corrige":"0","immatriculation":"","vehicule_origin_id":"26:dmuav7878","code_moteur_field":"","vehicule_ref_id":"W0LJ7BJB67V656001","vehicule_ktype":"","vehicule_ref_etat":"1","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"79","origin_modele":"259570","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"2442","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"0","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"79","origin_modele_id":"259570","origin_piece_id":"2442","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"26","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672802","id_modele_parent":"10671","id_energie":"0","id_seller":"26","id_country_seller":"6","id_image":"42283571-146357673","prix":"451.000000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"USED WORLD PARTS","ordre_affichage":"23139","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"93194150","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/42283571-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":451,"price_without_reduction":451,"price_without_reduction_without_tax":451,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"146357659","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/43IqXstCg5UU?publicKey=casse&accessToken=dac314279a932f7dcab4721d529aa6c150f54f2653a20f2a88b52df2db7c2995","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/7\/3\/146357673-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"146357673","position":"2","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/M2b43e6Q9OxN?publicKey=casse&accessToken=4c5bea8cdd789e1c435d00efb72e845424b344193cfd23cd39823bcab7224664","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/8\/4\/146357684-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"146357684","position":"3","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/OxWrOoMDVNQX?publicKey=casse&accessToken=1f4b43fcec8eefbd8cce95043ad8af66aca3177726256b02e742f7f488a77a2b","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/9\/3\/146357693-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"146357693","position":"4","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/o_2w0WOBap1H?publicKey=casse&accessToken=1954327c2cb5167c032c2b8774348d26666c66b7021a55ec782afeef13fbb722","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/4\/6\/3\/5\/7\/6\/5\/9\/146357659-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"146357659","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/43IqXstCg5UU?publicKey=casse&accessToken=dac314279a932f7dcab4721d529aa6c150f54f2653a20f2a88b52df2db7c2995","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":451,"regular_price_amount":451,"regular_price":"451,00\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=44575981&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"44575981","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/44575981-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/44575981-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"44575981","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"443,00\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-06-05 22:00:52","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"44575981-152474192","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/44575981-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":443,"price_without_reduction":443,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"152474176","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/xtQ3rEiZJ4fj?publicKey=casse&accessToken=5a5bd81c7e250b7582f206dfaf4c02e00d0753585b6ae3379e6d9ad19299db1b","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"152474192","position":"2","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/cKuzk9YvA2Um?publicKey=casse&accessToken=80877a99919c59e2eba2398f41abb8a643a4c6c4dc79d73c2761a7b4d1e97c1f","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"152474207","position":"3","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/Vp7Hxu2vERn0?publicKey=casse&accessToken=4618a9c37d220e142a86e458c74dfe16b223ac8c90fc1c06a43277a619c72826","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"152474221","position":"4","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/bK6y4nMMLAX9?publicKey=casse&accessToken=e2fb49d3669d01a731bbfc0722a59236d438b9a20c0be183a854945ada00ca89","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"152474176","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/xtQ3rEiZJ4fj?publicKey=casse&accessToken=5a5bd81c7e250b7582f206dfaf4c02e00d0753585b6ae3379e6d9ad19299db1b","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":443,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"44575981","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"443,00\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"93194150","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"90.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-06-05 22:00:52","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"26:dmuap1893426","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"","vehicule_origin_id":"26:dmuav8065","code_moteur_field":"","vehicule_ref_id":"W0LJ7AHA67V645810","vehicule_ktype":"","vehicule_ref_etat":"1","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"79","origin_modele":"1079231","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"2442","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"0","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"79","origin_modele_id":"1079231","origin_piece_id":"2442","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"26","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672803","id_modele_parent":"10671","id_energie":"0","id_seller":"26","id_country_seller":"6","id_image":"44575981-152474192","prix":"443.000000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"USED WORLD PARTS","ordre_affichage":"23140","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"93194150","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/44575981-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":443,"price_without_reduction":443,"price_without_reduction_without_tax":443,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"152474176","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/xtQ3rEiZJ4fj?publicKey=casse&accessToken=5a5bd81c7e250b7582f206dfaf4c02e00d0753585b6ae3379e6d9ad19299db1b","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/9\/2\/152474192-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"152474192","position":"2","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/cKuzk9YvA2Um?publicKey=casse&accessToken=80877a99919c59e2eba2398f41abb8a643a4c6c4dc79d73c2761a7b4d1e97c1f","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/0\/7\/152474207-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"152474207","position":"3","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/Vp7Hxu2vERn0?publicKey=casse&accessToken=4618a9c37d220e142a86e458c74dfe16b223ac8c90fc1c06a43277a619c72826","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/2\/2\/1\/152474221-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"152474221","position":"4","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/bK6y4nMMLAX9?publicKey=casse&accessToken=e2fb49d3669d01a731bbfc0722a59236d438b9a20c0be183a854945ada00ca89","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/2\/4\/7\/4\/1\/7\/6\/152474176-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"152474176","position":"1","id_origin":"http:\/\/f.mbrev.es\/users\/dmurcia\/images\/xtQ3rEiZJ4fj?publicKey=casse&accessToken=5a5bd81c7e250b7582f206dfaf4c02e00d0753585b6ae3379e6d9ad19299db1b","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":443,"regular_price_amount":443,"regular_price":"443,00\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},{"add_to_cart_url":"https:\/\/boutique.francecasse.fr\/panier?add=1&id_product=44967112&id_product_attribute=0&token=b211a6f0788e1b181bacdc34559ca41e","id":"44967112","attributes":[],"show_price":true,"weight_unit":"kg","url":"https:\/\/boutique.francecasse.fr\/capot-avant\/44967112-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","canonical_url":"https:\/\/boutique.francecasse.fr\/capot-avant\/44967112-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","condition":{"type":"used","label":"Utilis\u00e9","schema_url":"https:\/\/schema.org\/UsedCondition"},"delivery_information":"","embedded_attributes":{"id_product":"44967112","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","id_shop_default":"1","on_sale":"0","online_only":"0","ecotax":"0.000000","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"326,00\u00a0\u20ac","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","out_of_stock":"2","customizable":"0","uploadable_files":"0","text_fields":"0","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","condition":"used","show_price":"1","indexed":"0","visibility":"both","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-06 20:17:49","advanced_stock_management":"0","pack_stock_type":"3","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","new":"0","id_image":"44967112-154264702","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/44967112-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":326,"price_without_reduction":326,"reduction":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"attachments":[],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154264693","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/elitalo\/images\/7p-4XqqAIxA2?publicKey=casse&accessToken=ee17bae50b7eb65a126a549a4f5e4a0cb5319d0e241d4c45225a937ce50f7dae","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154264702","position":"2","id_origin":"http:\/\/f2.mbrev.es\/users\/elitalo\/images\/PRIRhSmz7Dey?publicKey=casse&accessToken=093116df9a1727c670357fb0bf226d9cc1153d3e3766fc5cce59d0d33216edd3","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154264716","position":"3","id_origin":"http:\/\/f2.mbrev.es\/users\/elitalo\/images\/LarvyMNedcWW?publicKey=casse&accessToken=f32111bb59b87b6b53c904fe9f90fb209f28592dc55a48b79b4237a81d6be31f","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154264693","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/elitalo\/images\/7p-4XqqAIxA2?publicKey=casse&accessToken=ee17bae50b7eb65a126a549a4f5e4a0cb5319d0e241d4c45225a937ce50f7dae","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":326,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"},"file_size_formatted":null,"attachments":[],"quantity_discounts":[],"reference_to_display":null,"grouped_features":{"Garantie":{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}},"seo_availability":"https:\/\/schema.org\/InStock","labels":{"tax_short":"TTC","tax_long":"TTC"},"ecotax":{"value":"0,00\u00a0\u20ac","amount":"0.000000","rate":0},"flags":[],"main_variants":[],"specific_references":null,"id_product":"44967112","id_supplier":"1","id_manufacturer":"0","id_category_default":"17899","old_id_category_default":null,"id_shop_default":"1","id_tax_rules_group":"0","on_sale":"0","online_only":"0","ean13":"","isbn":"","upc":"","quantity":1,"minimal_quantity":"1","low_stock_threshold":null,"low_stock_alert":"0","price":"326,00\u00a0\u20ac","old_price_octobre_2025":null,"wholesale_price":"0.000000","unity":"","unit_price_ratio":"0.000000","additional_shipping_cost":"0.00","reference":"","supplier_reference":"","location":"","width":"0.000000","height":"0.000000","depth":"0.000000","weight":"90.000000","out_of_stock":"2","additional_delivery_times":"1","quantity_discount":"0","customizable":"0","uploadable_files":"0","text_fields":"0","active":"1","redirect_type":"","id_type_redirected":"0","available_for_order":"1","available_date":"0000-00-00","show_condition":"1","indexed":"0","visibility":"both","cache_is_pack":"0","cache_has_attachments":"0","is_virtual":"0","cache_default_attribute":"0","date_add":"2026-07-13 07:46:21","date_upd":"2026-07-06 20:17:49","advanced_stock_management":"0","pack_stock_type":"3","state":"1","origin_id":"26:eliop987886","casse":"","type_vhu":"","taxe_sur_marge":"0","price_ttc":"0.000000","wholesale_price_ttc":"0.000000","price_new":"0.000000","frais_port":"0.000000","vhu_destockage":"0","vehicule_image_ids":"","corrige":"0","immatriculation":"","vehicule_origin_id":"26:eliov2094","code_moteur_field":"","vehicule_ref_id":"W0LJ7BHB68V611975","vehicule_ktype":"","vehicule_ref_etat":"1","date_reset_vin_etat":null,"date_to_delete":"0000-00-00 00:00:00","origin_marque":"79","origin_modele":"750622","origin_modele_parent":"","origin_modele_parent_id":"","origin_version":"","origin_piece":"394","id_category_piece":"17899","id_category_marque":"1670","id_category_modele":"15805","id_category_version":"0","a_supprimer":"0","fake_deleted_at":null,"code_moteur_manually_updated":"0","uwp_to_delete":"0","origin_marque_id":"79","origin_modele_id":"750622","origin_piece_id":"394","origin_version_id":"","bool_modele_id_corrrige":"0","date_correction_modele_reinit":null,"id_tax_rules_group_pro":"0","origin_tva":"0.000000","origin_pro_tva":"0.000000","id_tax_rules_group_temp":null,"date_vin_retraite":null,"prix_piece_ttc":"0.000000","frais_port_ttc":"0.000000","origin_id_prefix":"26","origin_id_vhu2":"","id_shop":"1","id_lang":"1","description":"","description_short":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","link_rewrite":"capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus","old_link_rewrite":null,"meta_description":"","meta_keywords":"","meta_title":"","name":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","old_name":null,"available_now":"","available_later":"","delivery_in_stock":"","delivery_out_stock":"","remarque_field":"","new":"0","id_tampon_product":"1672804","id_modele_parent":"10671","id_energie":"0","id_seller":"26","id_country_seller":"6","id_image":"44967112-154264702","prix":"326.000000","energie":"","libelle":"Capot avant d'occasion pour OPEL Vivaro A FL Combi\/Minibus","seller_name":"USED WORLD PARTS","ordre_affichage":"23141","snipet":"[{\"value\":\"12 mois\",\"name\":\"Garantie\"}]","url_produit":"","url_photo":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp","fdp_incluse":"1","code_moteur":"","reference_constructeur":"","expansion_level":"0","id_product_attribute":"0","allow_oosp":0,"category":"capot-avant","category_name":"Capot avant","link":"https:\/\/boutique.francecasse.fr\/capot-avant\/44967112-capot-avant-d-occasion-pour-opel-vivaro-a-fl-combi-minibus.html","attribute_price":0,"price_tax_exc":326,"price_without_reduction":326,"price_without_reduction_without_tax":326,"reduction":0,"reduction_without_tax":0,"specific_prices":[],"quantity_all_versions":1,"features":[{"name":"Garantie","value":"12 mois","id_feature":"14","position":"12"}],"virtual":0,"pack":0,"packItems":[],"nopackprice":0,"customization_required":false,"rate":0,"tax_name":"","ecotax_rate":0,"unit_price":"","images":[{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154264693","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/elitalo\/images\/7p-4XqqAIxA2?publicKey=casse&accessToken=ee17bae50b7eb65a126a549a4f5e4a0cb5319d0e241d4c45225a937ce50f7dae","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/0\/2\/154264702-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154264702","position":"2","id_origin":"http:\/\/f2.mbrev.es\/users\/elitalo\/images\/PRIRhSmz7Dey?publicKey=casse&accessToken=093116df9a1727c670357fb0bf226d9cc1153d3e3766fc5cce59d0d33216edd3","associatedVariants":[]},{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/7\/1\/6\/154264716-large_default.webp","width":800,"height":800},"legend":"","cover":null,"id_image":"154264716","position":"3","id_origin":"http:\/\/f2.mbrev.es\/users\/elitalo\/images\/LarvyMNedcWW?publicKey=casse&accessToken=f32111bb59b87b6b53c904fe9f90fb209f28592dc55a48b79b4237a81d6be31f","associatedVariants":[]}],"cover":{"bySize":{"small_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-small_default.webp","width":98,"height":98},"cart_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-cart_default.webp","width":125,"height":125},"home_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp","width":250,"height":250},"medium_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-medium_default.webp","width":452,"height":452},"large_default":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-large_default.webp","width":800,"height":800}},"small":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-small_default.webp","width":98,"height":98},"medium":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-home_default.webp","width":250,"height":250},"large":{"url":"https:\/\/img.francecasse.fr\/1\/5\/4\/2\/6\/4\/6\/9\/3\/154264693-large_default.webp","width":800,"height":800},"legend":"","cover":"1","id_image":"154264693","position":"1","id_origin":"http:\/\/f2.mbrev.es\/users\/elitalo\/images\/7p-4XqqAIxA2?publicKey=casse&accessToken=ee17bae50b7eb65a126a549a4f5e4a0cb5319d0e241d4c45225a937ce50f7dae","associatedVariants":[]},"has_discount":false,"discount_type":null,"discount_percentage":null,"discount_percentage_absolute":null,"discount_amount":null,"discount_amount_to_display":null,"price_amount":326,"regular_price_amount":326,"regular_price":"326,00\u00a0\u20ac","discount_to_display":null,"unit_price_full":"","show_availability":true,"availability_date":null,"availability_message":"Derniers articles en stock","availability":"last_remaining_items"}],"sort_orders":[{"entity":"product","field":"product.name.asc","direction":"asc","label":"Pertinence","urlParameter":"product.product.name.asc.asc","current":false,"url":"https:\/\/boutique.francecasse.fr\/17899-capot-avant\/1670-opel\/15805-vivaro-a-fl-combi-minibus?order=product.product.name.asc.asc"},{"entity":"product","field":"product.price.asc","direction":"asc","label":"Prix, croissant","urlParameter":"product.product.price.asc.asc","current":false,"url":"https:\/\/boutique.francecasse.fr\/17899-capot-avant\/1670-opel\/15805-vivaro-a-fl-combi-minibus?order=product.product.price.asc.asc"},{"entity":"product","field":"product.price.desc","direction":"asc","label":"Prix, d\u00e9croissant","urlParameter":"product.product.price.desc.asc","current":false,"url":"https:\/\/boutique.francecasse.fr\/17899-capot-avant\/1670-opel\/15805-vivaro-a-fl-combi-minibus?order=product.product.price.desc.asc"}],"sort_selected":false,"sort_usures":[{"urlParameter":"","url":"https:\/\/boutique.francecasse.fr\/17899-capot-avant\/1670-opel\/15805-vivaro-a-fl-combi-minibus","label":"Neuf + Occasion","current":true,"sort_usure_selected":"Neuf + Occasion"},{"urlParameter":"neuf","url":"https:\/\/boutique.francecasse.fr\/17899-capot-avant\/1670-opel\/15805-vivaro-a-fl-combi-minibus?type=neuf","label":"Pi\u00e8ces neuves","current":false,"sort_usure_selected":"Pi\u00e8ces neuves"},{"urlParameter":"occasion","url":"https:\/\/boutique.francecasse.fr\/17899-capot-avant\/1670-opel\/15805-vivaro-a-fl-combi-minibus?type=occasion","label":"Pi\u00e8ces d'occasion","current":false,"sort_usure_selected":null}],"sort_usure_selected":"Neuf + Occasion","pagination":{"total_items":16,"items_shown_from":1,"items_shown_to":16,"current_page":1,"pages_count":1,"pages":{"1":{"type":"page","page":1,"clickable":false,"current":true,"url":"https:\/\/boutique.francecasse.fr\/17899-capot-avant\/1670-opel\/15805-vivaro-a-fl-combi-minibus"}},"should_be_displayed":false},"rendered_facets":"","rendered_active_filters":"","js_enabled":true,"current_url":"https:\/\/boutique.francecasse.fr\/17899-capot-avant\/1670-opel\/15805-vivaro-a-fl-combi-minibus","rendered_products_header":"\n                                                                                                                                                                                                                \n    <div id=\"js-product-list-header\">\n        <h1 class=\"h1\">\n            capot avant occasion Vivaro\n        <\/h1>\n    <\/div>\n"}