{"product_id":"2081559-sun-visor-spot-lamp-compatible-with-2003-2018-suitable-for-scania-p-g-r-t-series-truck","title":"2081559 sun visor spot lamp – Compatible with 2003–2018 suitable for SCANIA P-, G-, R-, T Series Truck","description":"\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        :root {\n            --primary-bg: #C30000; \/* SCANIA Red *\/\n            --primary-text: #FFFFFF; \/* Pure White *\/\n            --data-module: #333333; \/* Industrial Gray *\/\n            --data-text: #FF9900; \/* Engineering Orange *\/\n            --button-bg: #FFFFFF;\n            --button-text: #C30000;\n        }\n\n        body {\n            background-color: var(--primary-bg);\n            color: var(--primary-text);\n            font-family: 'Arial', sans-serif;\n            margin: 0;\n            padding: 20px;\n            overflow-x: hidden;\n        }\n\n        .power-module {\n            background-color: var(--data-module);\n            color: var(--data-text);\n            border-radius: 8px;\n            padding: 20px;\n            margin-bottom: 25px;\n            position: relative;\n            overflow: hidden;\n            box-shadow: 0 4px 15px rgba(0,0,0,0.5);\n            padding-bottom: 35px;\n        }\n\n        .module-title {\n            font-size: 1.3em;\n            font-weight: bold;\n            margin-bottom: 15px;\n            position: relative;\n            text-transform: uppercase;\n            letter-spacing: 1px;\n        }\n\n        .tech-data {\n            font-weight: bold;\n            display: inline-block;\n            min-width: 40px;\n            text-align: center;\n        }\n\n        .button {\n            display: inline-block;\n            background-color: var(--button-bg);\n            color: var(--button-text);\n            padding: 12px 25px;\n            border: none;\n            border-radius: 4px;\n            cursor: pointer;\n            font-weight: bold;\n            position: relative;\n            overflow: hidden;\n            margin-top: 15px;\n            font-size: 1.1em;\n            letter-spacing: 1px;\n            box-shadow: 0 3px 10px rgba(0,0,0,0.3);\n        }\n\n        \/* Border light flow *\/\n        @keyframes borderFlow {\n            0% { transform: translateX(-100%); }\n            100% { transform: translateX(100%); }\n        }\n        .power-module::before {\n            content: '';\n            position: absolute;\n            top: -2px;\n            left: 0;\n            width: 100%;\n            height: 2px;\n            background: linear-gradient(90deg, transparent, #C30000, transparent);\n            animation: borderFlow 3s linear infinite;\n            z-index: 1;\n        }\n\n        \/* Wave effect *\/\n        @keyframes waveEffect {\n            0% { transform: translateY(0); }\n            50% { transform: translateY(-3px); }\n            100% { transform: translateY(0); }\n        }\n        .wave { animation: waveEffect 5s ease-in-out infinite; }\n\n        \/* Pressure gauge animation *\/\n        @keyframes pressureGauge {\n            0% { transform: rotate(0deg); }\n            25% { transform: rotate(5deg); }\n            50% { transform: rotate(0deg); }\n            75% { transform: rotate(-5deg); }\n            100% { transform: rotate(0deg); }\n        }\n\n        \/* Hydraulic pulse *\/\n        @keyframes hydraulicPulse {\n            0% { transform: scale(1); }\n            50% { transform: scale(1.05); }\n            100% { transform: scale(1); }\n        }\n\n        \/* Piston motion *\/\n        @keyframes pistonMotion {\n            0% { transform: translateY(0); }\n            50% { transform: translateY(-5px); }\n            100% { transform: translateY(0); }\n        }\n\n        .pressure-indicator {\n            position: absolute;\n            top: -20px;\n            right: 15px;\n            width: 30px;\n            height: 30px;\n            border: 2px solid #FF9900;\n            border-radius: 50%;\n            animation: pressureGauge 2s ease-in-out infinite;\n        }\n\n        .hydraulic-pulse { animation: hydraulicPulse 1.5s ease-in-out infinite; }\n\n        .piston-effect { position: relative; overflow: hidden; }\n        .piston-effect::after {\n            content: '';\n            position: absolute;\n            bottom: 0;\n            left: 0;\n            width: 100%;\n            height: 3px;\n            background: linear-gradient(90deg, transparent, #FF9900, transparent);\n            animation: pistonMotion 0.5s linear infinite;\n        }\n\n        \/* Conveyor belt animation *\/\n        @keyframes conveyorBelt {\n            0% { background-position: 0 0; }\n            100% { background-position: 100px 0; }\n        }\n\n        .conveyor-belt {\n            position: relative;\n            padding-left: 25px;\n            color: #FFFFFF;\n            line-height: 1.75;\n        }\n\n        .conveyor-belt::before {\n            content: '';\n            position: absolute;\n            left: 0;\n            top: 50%;\n            width: 20px;\n            height: 8px;\n            background: repeating-linear-gradient(\n                90deg,\n                #333333,\n                #333333 5px,\n                #FF9900 5px,\n                #FF9900 10px\n            );\n            transform: translateY(-50%);\n            animation: conveyorBelt 1s linear infinite;\n        }\n\n        \/* Fault light indicator *\/\n        @keyframes faultLight {\n            0%, 100% { background-color: #FF9900; }\n            50% { background-color: #C30000; }\n        }\n\n        .fault-indicator {\n            display: inline-block;\n            width: 12px;\n            height: 12px;\n            border-radius: 50%;\n            margin-right: 8px;\n            animation: faultLight 1s infinite;\n        }\n\n        \/* Industrial gauge animation *\/\n        .gauge-needle {\n            position: absolute;\n            top: 5px;\n            left: 15px;\n            width: 2px;\n            height: 10px;\n            background-color: #FF9900;\n            transform-origin: bottom center;\n            animation: gaugeSweep 4s infinite alternate;\n        }\n        @keyframes gaugeSweep {\n            0% { transform: rotate(-30deg); }\n            100% { transform: rotate(30deg); }\n        }\n\n        \/* Hydraulic fluid effect *\/\n        .hydraulic-fluid {\n            position: absolute;\n            bottom: 0;\n            left: 0;\n            width: 100%;\n            height: 10px;\n            background: linear-gradient(90deg, #C30000, #FF9900, #C30000);\n            background-size: 200% 100%;\n            animation: fluidFlow 2s linear infinite, fluidPulse 1.5s ease-in-out infinite;\n            z-index: 2;\n            box-shadow: 0 0 10px rgba(255, 153, 0, 0.8);\n        }\n        @keyframes fluidFlow {\n            0% { background-position: 0% 0%; }\n            100% { background-position: 200% 0%; }\n        }\n        @keyframes fluidPulse {\n            0%, 100% { height: 10px; }\n            50% { height: 12px; }\n        }\n\n        \/* Bolt rotation effect *\/\n        @keyframes boltRotate {\n            0% { transform: rotate(0deg); }\n            100% { transform: rotate(360deg); }\n        }\n        .bolt {\n            display: inline-block;\n            margin-right: 5px;\n            animation: boltRotate 4s linear infinite;\n        }\n\n        \/* Tables *\/\n        table.spec{\n            width:100%;\n            border-collapse:collapse;\n            margin-top:12px;\n            color:#FFFFFF;\n        }\n        table.spec th, table.spec td{\n            border-bottom:1px solid rgba(255,153,0,0.25);\n            padding:10px 8px;\n            text-align:left;\n            vertical-align:top;\n        }\n        table.spec th{\n            font-weight:800;\n            text-transform:uppercase;\n            letter-spacing:.35px;\n            color:#FFFFFF;\n        }\n\n        \/* Images *\/\n        .img-row{\n            display:flex;\n            gap:12px;\n            flex-wrap:wrap;\n            margin: 10px 0 12px 0;\n        }\n        .img-row img{\n            width:100%;\n            max-width:360px;\n            height:auto;\n            border-radius:6px;\n            box-shadow:0 3px 12px rgba(0,0,0,0.35);\n            background: rgba(255,255,255,0.06);\n        }\n\n        h2{\n            margin:12px 0 10px 0;\n            font-size:1.15em;\n            letter-spacing:0.35px;\n            color:#FFFFFF;\n            text-transform:uppercase;\n        }\n\n        p{\n            margin:0 0 12px 0;\n            line-height:1.75;\n            color:#FFFFFF;\n        }\n  \u003c\/style\u003e\n\u003c!-- MODULE: Meta Description --\u003e\n\u003cdiv class=\"power-module\"\u003e\n\u003cdiv class=\"module-title\"\u003e【Meta Description】 \u003cspan class=\"bolt\"\u003e⚙\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"conveyor-belt\"\u003e\n\u003cp class=\"page-subtitle\" style=\"margin: 0;\"\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e compatible with 2003–2018 suitable for SCANIA P-, G-, R-, T Series Truck. Packing weight 1.23 KG, quantity in pallet 0, quantity in box 1.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"hydraulic-fluid\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- MODULE: Description --\u003e\n\u003cdiv class=\"power-module\"\u003e\n\u003cdiv class=\"module-title\"\u003e【Description】 \u003cspan class=\"bolt\"\u003e⚙\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"conveyor-belt\"\u003e\n\u003ch2\u003e2081559 sun visor spot lamp – Description\u003c\/h2\u003e\n\u003cp\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e is designed for OE-number purchasing workflows where quoting, picking, and receiving must match a single identifier from start to finish. Keeping 2081559 sun visor spot lamp as the same searchable phrase across RFQs and internal item names helps reduce mix-ups when similar visor-mounted lamps exist in the same catalog for vehicles suitable for SCANIA.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e supports predictable logistics handling using only your supplied packing information: packing weight 1.23 KG, quantity in box 1, and quantity in pallet 0. Using 2081559 sun visor spot lamp on carton labels, bin tags, and receiving sheets improves traceability and makes stock audits easier for workshops managing vehicles suitable for SCANIA.\u003c\/p\u003e\n\u003cdiv class=\"img-row\"\u003e\n\u003cimg src=\"https:\/\/cdn.yoursite.com\/images\/2081559-sun-visor-spot-lamp-01.jpg\" alt=\"2081559 sun visor spot lamp overall view for OE-number matching suitable for SCANIA P-, G-, R-, T Series Truck\" loading=\"lazy\"\u003e \u003cimg src=\"https:\/\/cdn.yoursite.com\/images\/2081559-sun-visor-spot-lamp-02.jpg\" alt=\"2081559 sun visor spot lamp mounting and connector view for receiving inspection suitable for SCANIA truck applications\" loading=\"lazy\"\u003e \u003cimg src=\"https:\/\/cdn.yoursite.com\/images\/2081559-sun-visor-spot-lamp-03.jpg\" alt=\"2081559 sun visor spot lamp packaging label check view for inventory control suitable for SCANIA fleets\" loading=\"lazy\"\u003e\n\u003c\/div\u003e\n\u003cp\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e is listed in your fitment data for vehicles suitable for SCANIA P-, G-, R-, T Series Truck (TRUCK, EU, 2003). Before installation, match the removed unit marking to 2081559 sun visor spot lamp, then complete a function check after fitting so service records remain searchable by OE reference for vehicles suitable for SCANIA.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e is easiest to manage when the OE identifier becomes the only purchase key across depots. Standardizing 2081559 sun visor spot lamp in purchasing notes, stock movement records, and workshop issue slips supports faster internal searches, cleaner reorder history, and fewer mis-picks for vehicles suitable for SCANIA.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"hydraulic-fluid\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- MODULE: Product Details (separated, no Buy) --\u003e\n\u003cdiv class=\"power-module\"\u003e\n\u003cdiv class=\"module-title\"\u003e【Product Details】 \u003cspan class=\"bolt\"\u003e⚙\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"conveyor-belt\"\u003e\n\u003ctable class=\"spec\" aria-label=\"Product details\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003cth\u003eOEM Number\u003c\/th\u003e\n\u003ctd\u003e\u003cspan class=\"tech-data\"\u003e2081559\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003cth\u003eSuitable for\u003c\/th\u003e\n\u003ctd\u003esuitable for SCANIA\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003cth\u003ePacking Weight\u003c\/th\u003e\n\u003ctd\u003e\n\u003cspan class=\"tech-data\"\u003e1.23\u003c\/span\u003e KG\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003cth\u003eQuantity in Pallet\u003c\/th\u003e\n\u003ctd\u003e\u003cspan class=\"tech-data\"\u003e0\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003cth\u003eQuantity in Box\u003c\/th\u003e\n\u003ctd\u003e\u003cspan class=\"tech-data\"\u003e1\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003ctable class=\"spec\" aria-label=\"Suitable for and reference numbers\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003cth\u003eSuitable for\u003c\/th\u003e\n\u003cth\u003eRef. No.\u003c\/th\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003esuitable for SCANIA\u003c\/td\u003e\n\u003ctd\u003e2081559\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003ctable class=\"spec\" aria-label=\"Application suitable for\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003cth\u003eBrand\u003c\/th\u003e\n\u003cth\u003eModel\u003c\/th\u003e\n\u003cth\u003eVehicle Type\u003c\/th\u003e\n\u003cth\u003eVehicle Class\u003c\/th\u003e\n\u003cth\u003eYears\u003c\/th\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003esuitable for SCANIA\u003c\/td\u003e\n\u003ctd\u003eP-, G-, R-, T Series Truck\u003c\/td\u003e\n\u003ctd\u003eTRUCK\u003c\/td\u003e\n\u003ctd\u003eEU\u003c\/td\u003e\n\u003ctd\u003e2003\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"hydraulic-fluid\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- MODULE: Bulk Purchase Benefits --\u003e\n\u003cdiv class=\"power-module\"\u003e\n\u003cdiv class=\"module-title\"\u003e【Bulk Purchase Benefits】 \u003cspan class=\"bolt\"\u003e⚙\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"piston-effect\" style=\"color: #ffffff;\"\u003e\n\u003cp\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e keeps RFQs consistent by using one OE number as the purchase key for vehicles suitable for SCANIA.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e supports stable receiving checks when carton labels and item lines match the same OE identifier.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e improves picking accuracy when mixed visor-lamp inventory is stored by OE reference across depots.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cbutton class=\"button\"\u003eRequest Volume Quote\u003c\/button\u003e\n\u003cdiv class=\"hydraulic-fluid\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- MODULE: DIY Replacement Guide --\u003e\n\u003cdiv class=\"power-module\"\u003e\n\u003cdiv class=\"module-title\"\u003e【DIY Replacement Guide】 \u003cspan class=\"bolt\"\u003e⚙\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"piston-effect\" style=\"color: #ffffff;\"\u003e\n\u003cp\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e symptom checks: no illumination, unstable output, moisture marks, cracked lens, or loose mounting.\u003c\/p\u003e\n\u003cp\u003eBefore fitting, verify the removed unit marking matches \u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e and record the OE number for traceability.\u003c\/p\u003e\n\u003cp\u003eAfter fitting, complete a function test and close the job record using \u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e as the identifier.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"hydraulic-fluid\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- MODULE: Compliance Statement --\u003e\n\u003cdiv class=\"power-module\"\u003e\n\u003cdiv class=\"module-title\"\u003e【Compliance Statement】 \u003cspan class=\"bolt\"\u003e⚙\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"conveyor-belt\" style=\"color: #ffffff;\"\u003e\n\u003cp style=\"margin: 0 0 10px 0;\"\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e is presented as a compatibility-focused listing for sourcing by OE number. Confirm fitment by OE reference and vehicle configuration for vehicles suitable for SCANIA before installation.\u003c\/p\u003e\n\u003cp style=\"margin: 0;\"\u003e\u003cstrong\u003e2081559 sun visor spot lamp\u003c\/strong\u003e should be verified by OE marking during receiving and before fitting to support consistent ordering and traceable service records for vehicles suitable for SCANIA.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"hydraulic-fluid\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e","brand":"FANCHANTS China Auto Parts Wholesales","offers":[{"title":"Default Title","offer_id":48303804645631,"sku":null,"price":0.0,"currency_code":"USD","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0637\/7219\/7119\/files\/2081559-sun-visor-spot-lamp-_-Compatible-with-2003_2018-suitable-for-SCANIA-P-_-G-_-R-_-T-Series-Truck-FANCHANTS-China-Auto-Parts-Wholesales-89467464.jpg?v=1773910437","url":"https:\/\/www.fanchantsparts.com\/ko\/products\/2081559-sun-visor-spot-lamp-compatible-with-2003-2018-suitable-for-scania-p-g-r-t-series-truck","provider":"FANCHANTS China Auto Parts Wholesales","version":"1.0","type":"link"}