{"product_id":"5801765379-kerb-mirror-compatible-with-iveco-stralis","title":"5801765379 kerb mirror – Compatible with IVECO Stralis","description":"\u003cstyle\u003e\n        :root {\n            --primary-bg: #0C2D26; \/* Deep Forest Green *\/\n            --primary-text: #E8F1F2; \/* Soft Pearl White *\/\n            --data-module: rgba(58, 80, 107, 0.8); \/* Midnight Blue with transparency *\/\n            --data-text: #E8F1F2;\n            --button-bg: #E8F1F2;\n            --button-text: #0C2D26;\n            --accent: #5AB1BB; \/* Glacier Teal *\/\n            --accent-light: #7ACBD5; \/* Lighter Glacier Teal *\/\n        }\n\n        body {\n            background: linear-gradient(135deg, var(--primary-bg), #0A1F1A);\n            color: var(--primary-text);\n            font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;\n            margin: 0;\n            padding: 30px;\n            overflow-x: hidden;\n            min-height: 100vh;\n            position: relative;\n        }\n\n        @keyframes rippleEffect {\n            0% { transform: scale(0); opacity: 0.8; }\n            100% { transform: scale(3); opacity: 0; }\n        }\n        .ripple {\n            position: absolute;\n            border-radius: 50%;\n            border: 1px solid var(--accent-light);\n            animation: rippleEffect 3s linear;\n            pointer-events: none;\n            z-index: 0;\n        }\n\n        @keyframes leafFloat {\n            0% { transform: translateY(0) rotate(0deg) scale(0.8); opacity: 0; }\n            20% { opacity: 1; transform: scale(1); }\n            80% { opacity: 0.8; }\n            100% { transform: translateY(-60px) rotate(15deg) scale(0.6); opacity: 0; }\n        }\n        .leaf {\n            position: absolute;\n            width: 35px;\n            height: 35px;\n            background: url(\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' viewBox='0 0 24 24' fill='%235AB1BB'%3E%3Cpath d='M17 8C8 10 5.9 16.4 13 17C9 23 1 18 1 18C1 18 6 9 17 8Z'\/%3E%3C\/svg%3E\");\n            animation: leafFloat 8s infinite cubic-bezier(0.4, 0, 0.2, 1);\n            z-index: 1;\n            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));\n        }\n\n        .eco-module {\n            background-color: var(--data-module);\n            color: var(--data-text);\n            border-radius: 16px;\n            padding: 30px;\n            margin-bottom: 35px;\n            position: relative;\n            overflow: hidden;\n            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);\n            backdrop-filter: blur(8px);\n            border: 1px solid rgba(255, 255, 255, 0.15);\n            z-index: 2;\n            transform: translateY(20px);\n            opacity: 0;\n            animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;\n        }\n        @keyframes fadeInUp { to { transform: translateY(0); opacity: 1; } }\n\n        .module-title {\n            font-size: 1.6rem;\n            font-weight: 600;\n            margin-bottom: 25px;\n            position: relative;\n            letter-spacing: 0.5px;\n            animation: photosynthesis 5s infinite alternate;\n            color: var(--accent);\n            padding-bottom: 15px;\n            border-bottom: 1px solid rgba(255, 255, 255, 0.1);\n        }\n        @keyframes photosynthesis {\n            0% { text-shadow: 0 0 8px rgba(90, 177, 187, 0.3); }\n            100% { text-shadow: 0 0 20px rgba(90, 177, 187, 0.6); }\n        }\n\n        .tech-data {\n            font-weight: 600;\n            display: inline-block;\n            min-width: 40px;\n            text-align: center;\n            position: relative;\n            color: var(--accent);\n            transform: scale(0);\n            animation: dataReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;\n        }\n        @keyframes dataReveal { to { transform: scale(1); } }\n\n        .button {\n            display: inline-block;\n            background-color: var(--button-bg);\n            color: var(--button-text);\n            padding: 16px 35px;\n            border: none;\n            border-radius: 10px;\n            cursor: pointer;\n            font-weight: 600;\n            position: relative;\n            overflow: hidden;\n            margin-top: 25px;\n            font-size: 1.1em;\n            letter-spacing: 0.5px;\n            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);\n            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);\n            z-index: 1;\n            transform: translateY(10px);\n            opacity: 0;\n            animation: buttonAppear 0.8s 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;\n        }\n        @keyframes buttonAppear { to { transform: translateY(0); opacity: 1; } }\n        .button:hover {\n            transform: translateY(-5px) scale(1.02);\n            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);\n        }\n\n        @keyframes abstractGrow {\n            0% { transform: scaleX(0); opacity: 0; }\n            50% { opacity: 1; }\n            100% { transform: scaleX(1); opacity: 0; }\n        }\n        .eco-module::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 6px;\n            background: linear-gradient(90deg, transparent, var(--accent), transparent);\n            transform-origin: left;\n            animation: abstractGrow 8s linear infinite;\n            z-index: 1;\n        }\n\n        .water-flow {\n            position: absolute;\n            bottom: 0;\n            left: 0;\n            width: 100%;\n            height: 10px;\n            background: linear-gradient(90deg, transparent, var(--accent), transparent);\n            background-size: 200% 100%;\n            animation: flowAnimation 3s linear infinite;\n            z-index: 1;\n            border-radius: 0 0 16px 16px;\n        }\n        @keyframes flowAnimation {\n            0% { background-position: 0% 0%; }\n            100% { background-position: 200% 0%; }\n        }\n\n        .content-fade {\n            opacity: 0;\n            transform: translateY(15px);\n            animation: contentAppear 0.8s 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;\n        }\n        @keyframes contentAppear { to { opacity: 1; transform: translateY(0); } }\n\n        .footer-container {\n            margin-top: 40px;\n            padding: 20px 0;\n            text-align: center;\n            font-size: 0.9rem;\n            opacity: 0.7;\n        }\n\n        .oe-hl{\n            border: 1px solid #005bbb;\n            padding: 2px 6px;\n            color: #005bbb;\n            background-color: rgba(0, 91, 187, 0.10);\n            border-radius: 6px;\n            white-space: nowrap;\n        }\n\n        .content-fade p { margin: 0 0 14px; }\n        .content-fade ul, .content-fade ol { margin: 10px 0 0 20px; }\n        .content-fade li { margin: 8px 0; }\n\n        .svg-img{\n            width: 100%;\n            max-width: 980px;\n            height: auto;\n            border-radius: 14px;\n            margin: 14px 0 6px;\n            border: 1px solid rgba(255,255,255,0.12);\n            box-shadow: 0 10px 30px rgba(0,0,0,0.25);\n            background: rgba(255,255,255,0.04);\n        }\n\u003c\/style\u003e\n\u003ch2\u003e\u003cbr\u003e\u003c\/h2\u003e\n\u003c!-- Description Section --\u003e\n\u003cdiv class=\"eco-module\"\u003e\n\u003cdiv class=\"module-title\"\u003eDescription\u003c\/div\u003e\n\u003cdiv class=\"content-fade\"\u003e\n\u003cp\u003e\u003cstrong\u003e5801765379 kerb mirror\u003c\/strong\u003e is a service replacement auxiliary mirror used to support close-range visibility around the cab during docking, tight turns, and yard maneuvering. This page covers two OE references: \u003cspan class=\"oe-hl\"\u003e5801765379\u003c\/span\u003e and \u003cspan class=\"oe-hl\"\u003e504168236\u003c\/span\u003e.\u003c\/p\u003e\n\u003cp\u003eKerb mirrors (also listed in some catalogs as ramp or observation mirrors) help drivers monitor curbs, loading bay edges, and near-side blind spots. In daily fleet operation, the mirror assembly is exposed to vibration, wind buffeting, road spray, and frequent wash cycles, so a correct-fit replacement can help reduce downtime when mirrors are cracked, missing, or unstable.\u003c\/p\u003e\n\u003cp\u003eTo reduce ordering risk on mixed fleets, match the OE reference and confirm the mounting configuration (arm\/bracket style, mirror head profile, and fixation points) before purchase. Use the main keyword 5801765379 kerb mirror on bin labels and pick lists to minimize mis-picks across similar mirror variants.\u003c\/p\u003e\n\u003cp\u003eApplication examples (confirm fit by OE reference and mounting configuration): compatible with IVECO Eurofire (1991–), compatible with IVECO Eurocargo II (2003–), compatible with IVECO Eurocargo III (2008–), compatible with IVECO Trakker (2004–), compatible with IVECO Stralis (2002–).\u003c\/p\u003e\n\u003cimg class=\"svg-img\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMjAwIDUyMCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnIiB4MT0iMCIgeTE9IjAiIHgyPSIxIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjNUFCMUJCIiBzdG9wLW9wYWNpdHk9IjAuMjUiPjwvc3RvcD48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNFOEYxRjIiIHN0b3Atb3BhY2l0eT0iMC4wNiI+PC9zdG9wPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMjAwIiBoZWlnaHQ9IjUyMCIgcng9IjI4IiBmaWxsPSJ1cmwoI2cpIj48L3JlY3Q+PGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRThGMUYyIiBzdHJva2Utb3BhY2l0eT0iMC43NSI+PHJlY3QgeD0iNzgwIiB5PSIxMjAiIHdpZHRoPSIyODAiIGhlaWdodD0iMjgwIiByeD0iMTQwIiBzdHJva2Utd2lkdGg9IjEwIj48L3JlY3Q+PHBhdGggZD0iTTc4MCAyNjBINTIwYy03MCAwLTEzMC02MC0xMzAtMTMwdjAiIHN0cm9rZS13aWR0aD0iMTAiPjwvcGF0aD48cGF0aCBkPSJNMzkwIDEzMHYyNjAiIHN0cm9rZS13aWR0aD0iMTQiPjwvcGF0aD48cGF0aCBkPSJNMzkwIDE3MGgtOTAiIHN0cm9rZS13aWR0aD0iMTIiPjwvcGF0aD48cGF0aCBkPSJNMzkwIDM1MGgtOTAiIHN0cm9rZS13aWR0aD0iMTIiPjwvcGF0aD48L2c+PHRleHQgeD0iNzAiIHk9IjkwIiBmaWxsPSIjRThGMUYyIiBmaWxsLW9wYWNpdHk9IjAuODUiIGZvbnQtZmFtaWx5PSJTZWdvZSBVSSwgQXJpYWwiIGZvbnQtc2l6ZT0iMzQiPkF1eGlsaWFyeSBrZXJiIG1pcnJvciAoc2NoZW1hdGljKTwvdGV4dD48dGV4dCB4PSI3MCIgeT0iMTQwIiBmaWxsPSIjRThGMUYyIiBmaWxsLW9wYWNpdHk9IjAuNyIgZm9udC1mYW1pbHk9IlNlZ29lIFVJLCBBcmlhbCIgZm9udC1zaXplPSIyNCI+Q29uZmlybSBtb3VudGluZyBjb25maWd1cmF0aW9uIGJlZm9yZSBvcmRlcmluZzwvdGV4dD48L3N2Zz4=\" alt=\"kerb mirror schematic view\" loading=\"lazy\"\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"water-flow\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Bulk Purchase Benefits --\u003e\n\u003cdiv class=\"eco-module\"\u003e\n\u003cdiv class=\"module-title\"\u003eBulk Purchase Benefits\u003c\/div\u003e\n\u003cdiv class=\"content-fade\"\u003e\n\u003cdiv\u003ePacking weight: \u003cspan class=\"tech-data\"\u003e1.44\u003c\/span\u003e kg\u003cbr\u003eQuantity in pallet: \u003cspan class=\"tech-data\"\u003e0\u003c\/span\u003e\u003cbr\u003eQuantity in box: \u003cspan class=\"tech-data\"\u003e1\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cul style=\"margin-top: 14px;\"\u003e\n\u003cli\u003eSingle-piece packing supports fast receiving and issue-to-technician workflows.\u003c\/li\u003e\n\u003cli\u003eStock planning: mirrors are high-urgency service items—keeping OE-labeled units on hand helps reduce downtime.\u003c\/li\u003e\n\u003cli\u003ePicking accuracy: store by OE reference \u003cspan class=\"oe-hl\"\u003e5801765379\u003c\/span\u003e \/ \u003cspan class=\"oe-hl\"\u003e504168236\u003c\/span\u003e to avoid confusion with similar mirror assemblies.\u003c\/li\u003e\n\u003cli\u003eTransfer friendly: protective packing helps reduce transport damage to the mirror surface.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"button\"\u003eRequest Volume Quote\u003c\/button\u003e\n\u003cdiv class=\"water-flow\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- DIY Replacement Guide --\u003e\n\u003cdiv class=\"eco-module\"\u003e\n\u003cdiv class=\"module-title\"\u003eDIY Replacement Guide\u003c\/div\u003e\n\u003cdiv class=\"content-fade\"\u003e\n\u003col\u003e\n\u003cli\u003ePark safely on level ground, apply the parking brake, and follow workshop safety procedures.\u003c\/li\u003e\n\u003cli\u003eConfirm the part by OE reference \u003cspan class=\"oe-hl\"\u003e5801765379\u003c\/span\u003e \/ \u003cspan class=\"oe-hl\"\u003e504168236\u003c\/span\u003e and compare the mounting configuration to the existing unit.\u003c\/li\u003e\n\u003cli\u003eSupport the mirror assembly to prevent strain on the arm while loosening fasteners.\u003c\/li\u003e\n\u003cli\u003eRemove the old mirror, keep hardware organized, and inspect the bracket\/arm for damage or play.\u003c\/li\u003e\n\u003cli\u003eInstall the replacement mirror, tighten fasteners to the vehicle maker’s specification, and verify stable seating.\u003c\/li\u003e\n\u003cli\u003eFinal check: adjust the viewing angle and confirm the mirror remains stable under vibration.\u003c\/li\u003e\n\u003c\/ol\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"water-flow\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Compliance Statement --\u003e\n\u003cdiv class=\"eco-module\"\u003e\n\u003cdiv class=\"module-title\"\u003eCompliance Statement\u003c\/div\u003e\n\u003cdiv class=\"content-fade\"\u003e\n\u003cp\u003eThis product is intended for commercial vehicle service replacement and designed for compatibility, focusing on stable fit and durability under typical vibration and weather exposure.\u003c\/p\u003e\n\u003cul\u003e\n\u003cli\u003eSelection method: match OE reference and confirm mounting configuration before ordering.\u003c\/li\u003e\n\u003cli\u003eService intent: restore close-range visibility support for reversing, docking, and yard maneuvering.\u003c\/li\u003e\n\u003cli\u003eInstallation intent: ensure secure seating and interference-free mirror adjustment after fitting.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cp\u003eCompatible with IVECO Eurofire, compatible with IVECO Eurocargo II, compatible with IVECO Eurocargo III, compatible with IVECO Trakker, compatible with IVECO Stralis.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"water-flow\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"footer-container\"\u003e© 2026 CV Parts Direct | All Rights Reserved\u003c\/div\u003e","brand":"FANCHANTS China Auto Parts Wholesales","offers":[{"title":"Default Title","offer_id":48227387736319,"sku":null,"price":0.0,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0637\/7219\/7119\/files\/5801765379-kerb-mirror-_-Compatible-with-IVECO-Stralis-FANCHANTS-China-Auto-Parts-Wholesales-88853964.jpg?v=1772248643","url":"https:\/\/www.fanchantsparts.com\/es\/products\/5801765379-kerb-mirror-compatible-with-iveco-stralis","provider":"FANCHANTS China Auto Parts Wholesales","version":"1.0","type":"link"}