{"title":"테슬라 라이트 액세서리","description":"\u003cp\u003eTESERY는 Tesla Model 3\/Y\/S\/X용 조명 액세서리를 포괄적으로 제공하며, 고성능 헤드라이트, 맞춤형 앰비언트 조명, 특허받은 기술, 자동차 등급의 내구성, 미니멀한 미학이 결합된 세련된 디자인으로 뛰어난 스타일과 기능을 자랑합니다.\u003c\/p\u003e","products":[{"product_id":"lighting-led-strip-model-y-model-3","title":"모델 3\/Y용 센터 콘솔 앰비언트 조명 LED 스트립","description":"\u003cstyle\u003e\n    \/* Basic Styles *\/\n    body {\n        font-family: Arial, sans-serif;\n        margin: 0;\n        padding: 0;\n        background-color: white; \/* Ensure background is pure white *\/\n    }\n\n    \/* --- APP CONTROL SECTION (Single Line) --- *\/\n    .app-control-section {\n        max-width: 1200px;\n        \/* Adjusted bottom margin for separation *\/\n        margin: 40px auto 20px auto; \n        padding: 0 20px;\n        text-align: left;\n    }\n\n    \/* Main Title for the section - REMOVED *\/\n    .app-control-header {\n        \/* This class is now redundant but kept hidden in case it needs to be restored *\/\n        display: none;\n    }\n\n    \/* Container for the Mode Tags *\/\n    .mode-tags {\n        display: flex;\n        gap: 15px; \/* Spacing between mode tags *\/\n        align-items: center;\n        flex-wrap: wrap;\n        padding-bottom: 10px; \/* Padding for mobile view\/wrapping *\/\n    }\n\n    \/* Individual Mode Tag Style - Kept as is *\/\n    .mode-tag {\n        font-size: 14px;\n        font-weight: 600;\n        padding: 8px 12px;\n        border-radius: 6px;\n        transition: transform 0.2s, box-shadow 0.2s;\n        cursor: default;\n        display: flex;\n        align-items: center;\n        white-space: nowrap;\n        border: none;\n        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);\n    }\n\n    \/* Remove the color indicator dot (::before) *\/\n    .mode-tag::before {\n        content: none;\n    }\n\n    \/* Mode 1: Smart APP Control (Grey\/Neutral Background) - NO CHANGE *\/\n    .mode-tag.smart {\n        background-color: #666666; \/* Medium Dark Grey *\/\n        color: #FFFFFF; \/* White text for contrast *\/\n    }\n\n    \/* Mode 2: Monochrome Mode (Black Background) - NO CHANGE *\/\n    .mode-tag.mono {\n        background-color: #000000; \/* Pure Black *\/\n        color: #FFFFFF; \/* White text for contrast *\/\n    }\n\n    \/* Mode 3: Colorful Streaming Light Mode (Vibrant Gradient Background) - NO CHANGE *\/\n    .mode-tag.color {\n        \/* Use a colorful gradient for the background *\/\n        background-image: linear-gradient(to right, #FF4136, #FFDC00, #2ECC40, #0074D9); \/* Multi-color gradient *\/\n        color: #000000; \/* Black text for readability on lighter parts of gradient *\/\n        font-weight: bold; \/* Bold text for better pop *\/\n    }\n\n    \/* Hover effect *\/\n    .mode-tag:hover {\n        transform: translateY(-2px);\n        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);\n    }\n    \/* ------------------------------------- *\/\n\n    \/* Header Container Style (Outer) *\/\n    .feedback-gallery-header-container {\n        \/* Adjusted top margin *\/\n        margin: 10px auto 20px auto; \n        max-width: 1200px;\n        padding: 0 20px;\n    }\n\n    \/* Header Style - Original Gallery Header *\/\n    .feedback-gallery-header {\n        font-size: 24px;\n        font-weight: bold;\n        margin-bottom: 20px;\n        text-align: left;\n        position: relative;\n    }\n\n    \/* Gradient Title - Black to Black for pure black text *\/\n    .feedback-gallery-header span {\n        background-image: linear-gradient(to right, #000000, #000000);\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        transition: all 0.3s ease;\n    }\n\n    \/* Container Style - MODIFIED: border-radius set to 0 *\/\n    .feedback-gallery-section {\n        width: 100%;\n        max-width: 1200px;\n        margin: 0 auto;\n        padding: 10px 20px;\n        background-color: white;\n        border-radius: 0; \/* REMOVED ROUNDED CORNERS (MADE RECTANGULAR) *\/\n        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n        overflow: hidden;\n    }\n\n    \/* Scrolling Container *\/\n    .review-slider {\n        display: flex;\n        overflow-x: auto;\n        scroll-snap-type: x mandatory;\n        scroll-behavior: smooth;\n        white-space: nowrap;\n        padding: 0 20px 10px 20px;\n    }\n\n    \/* Scrollbar and Image Spacing *\/\n    .review-slider::-webkit-scrollbar {\n        height: 12px;\n        background-color: transparent;\n        margin-top: 10px;\n    }\n\n    \/* Custom Scrollbar Design - Black only *\/\n    .review-slider::-webkit-scrollbar-thumb {\n        background-image: linear-gradient(to right, #000000, #000000); \/* Black to Black for pure black thumb *\/\n        border-radius: 16px;\n        border: 2px solid #fff;\n        box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);\n        transition: all 0.3s ease;\n    }\n\n    \/* Slider Thumb Scale on Hover *\/\n    .review-slider:hover::-webkit-scrollbar-thumb {\n        transform: scale(1.2);\n    }\n\n    \/* Each Image Item - MODIFIED: border-radius set to 0 *\/\n    .review-item {\n        flex-shrink: 0;\n        width: 200px;\n        height: 200px;\n        margin: 0 10px;\n        border-radius: 0; \/* REMOVED ROUNDED CORNERS (MADE RECTANGULAR) *\/\n        overflow: hidden;\n        scroll-snap-align: start;\n        transition: transform 0.3s ease;\n        cursor: pointer;\n    }\n\n    \/* Image Hover Effect *\/\n    .review-item:hover {\n        transform: scale(1.05);\n        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);\n    }\n\n    \/* Image Style *\/\n    .review-item img {\n        width: 100%;\n        height: 100%;\n        object-fit: cover;\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"app-control-section\"\u003e\n\u003cdiv class=\"mode-tags\"\u003e\n\u003cspan class=\"mode-tag smart\"\u003e스마트 APP 제어\u003c\/span\u003e \u003cspan class=\"mode-tag mono\"\u003e단색 모드\u003c\/span\u003e \u003cspan class=\"mode-tag color\"\u003e컬러풀 스트리밍 라이트 모드\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feedback-gallery-header-container\"\u003e\n\u003ch3 class=\"feedback-gallery-header\"\u003e\u003cspan\u003e고객 피드백 갤러리\u003c\/span\u003e\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feedback-gallery-section\"\u003e\n\u003cdiv class=\"review-slider\"\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/2_5c50d9a3-c1eb-409d-81c2-ae921f880db0.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 1\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/2_e73fd5bf-eb0c-4de0-9acd-edd1ef9ea09e.png?v=1745475821\u0026amp;width=1946\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/4_a4ffe151-bd94-49a2-bb78-42e10bbe054c.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 2\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/4_c299e0d9-e742-4bd4-a049-f0302a27ea70.png?v=1745475821\u0026amp;width=1946\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/8_21a9f5e9-8658-449c-b306-0cf819bef248.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 3\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/7_d7a04ad9-db47-4036-a4ad-7b004ad2f268.png?v=1745475821\u0026amp;width=1946\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/3_f207456d-08d9-451e-8482-4fba702ba281.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 4\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/3_d4c07038-910a-4b3c-be07-95aee9ce485e.png?v=1745475821\u0026amp;width=1946\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/6_8b2d5e59-a6c4-41c8-84ad-132b9acc2800.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 5\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/6_16fb6e5f-427b-4e6b-bae3-19439eaf32ca.png?v=1745475821\u0026amp;width=1946\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/5_ab1e9eb4-663c-47b5-9754-6073dd6c96c2.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 6\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/5_5b08295d-a958-4519-ae7e-9a768efbf804.png?v=1745475820\u0026amp;width=1946\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/1_e0f5753b-7d98-4c5c-917b-1ef1ce225a52.jpg?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 7\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/1_f0061441-e38c-4229-a612-d5e3cc32251b.jpg?v=1745475821\u0026amp;width=1946\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요","offer_id":47766116597992,"sku":null,"price":35.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 21-23 \/ Model Y 21-24","offer_id":40784152920215,"sku":"TSL1003-A","price":35.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 2017-2020【구버전】","offer_id":40784152952983,"sku":"TSL1004","price":45.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/model3ambientlighting7.jpg?v=1749454687"},{"product_id":"tesla-puddle-lights","title":"모델 3\/Y\/S\/X용 LED 로고 테슬라 퍼들 라이트 | TESERY","description":"\u003ch2 style=\"text-align: center;\"\u003eModel 3 Highland \/ Y \/ S \/ X용 LED 로고 Tesla Puddle Lights (2023년형 Model S 뒷문용 아님)\u003c\/h2\u003e\n\u003ch3\u003e\u003ciframe title=\"How to Install Tesla logo Puddle Lights for Model S\/3\/X\/Y form Tesery.com\" src=\"https:\/\/www.youtube.com\/embed\/jbsnFhAfESQ\" height=\"316\" width=\"100%\"\u003e\u003c\/iframe\u003e\u003c\/h3\u003e\n\u003ch3\u003e\u003ciframe title=\"YouTube video player\" src=\"https:\/\/www.youtube.com\/embed\/VMxBs8w677Q\" height=\"316\" width=\"100%\"\u003e\u003c\/iframe\u003e\u003c\/h3\u003e\n\u003cp\u003e\u003ciframe title=\"Tesla logo puddle lights from Tesery! DIY Easy install\" src=\"https:\/\/www.youtube.com\/embed\/S4vpnJSaMF0\" height=\"316\" width=\"100%\"\u003e\u003c\/iframe\u003e\u003c\/p\u003e\n\u003cp\u003e\"'T' 로고 Tesla puddle lights를 찾고 계신가요? 이 제품은 기존의 어두운 LED 라이트를 대체하여 도어 하단에 바로 끼울 수 있는 최고의 Tesla puddle Lights입니다.\u003cspan data-mce-fragment=\\\"1\\\"\u003eTesla puddle lights\u003c\/span\u003e는 도어 아래 지면을 밝게 비춥니다.\"\u003cbr data-mce-fragment=\"1\"\u003e\u003c\/p\u003e\n\u003cp\u003e밤에 도어를 열 때, 프로젝션 디자인의 Tesla puddle Lights는 사고를 방지하기 위해 다른 사람들에게 경고를 주고 사용자가 경로를 명확히 볼 수 있도록 도와줍니다. 이 \u003cspan data-mce-fragment=\"1\"\u003eTesla puddle lights\u003c\/span\u003e는 차량의 원래 외관을 손상시키지 않으며, 오히려 적절히 차량을 장식합니다; 그리고 기능적으로 사용자에게 큰 편의를 제공합니다. \u003cspan data-mce-fragment=\"1\"\u003eTesla puddle lights\u003c\/span\u003e는 새로운 친환경 자동차 조명으로, 표준 raw e4 인증을 통과했습니다. Tesla Model 3, Model Y, Model S, Model X에 적합합니다.\u003cbr data-mce-fragment=\"1\"\u003e\u003cbr data-mce-fragment=\"1\"\u003e설치가 쉽습니다. 배선이나 절단 없이 드라이버로 플러그 앤 플레이만 하면 됩니다.\u003cbr data-mce-fragment=\"1\"\u003e드라이버만 있으면 OEM Tesla LED 라이트를 쉽게 분리하고, 분리한 후 저희 제품을 끼우기만 하면 됩니다. 전체 차량 작업에 15분도 걸리지 않습니다. \u003cbr data-mce-fragment=\"1\"\u003e\u003cbr data-mce-fragment=\"1\"\u003eMODEL 3 \u0026 Y 중요 정보:\u003cbr data-mce-fragment=\"1\"\u003e\u003cbr data-mce-fragment=\"1\"\u003eOEM 라이트를 분리한 후에는 도어를 닫지 않도록 주의하세요. 창문이 위로 올라가 도어 프레임을 손상시킬 수 있으니 LED 라이트를 연결하기 전에는 도어를 닫지 마십시오. \u003cbr data-mce-fragment=\"1\"\u003e\u003cbr data-mce-fragment=\"1\"\u003e때때로 Model 3 및 Y의 도어 내부 배선이 짧을 수 있으므로 LED 라이트 연장 케이블 사용을 권장합니다. 추가 구매가 필요 없으며 패키지에 포함되어 있습니다.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e참고: 이 제품은 사각형 결제 구멍에 설치할 수 있으나, 원형 구멍에는 설치할 수 없습니다.\u003c\/strong\u003e\u003c\/p\u003e\n\u003ch2\u003e특징\u003c\/h2\u003e\n\u003cul\u003e\n\u003cli\u003e【최신 디자인】: Tesla Model Y, Model 3, Model X, Model S에 맞춤 제작되었습니다. 프리미엄 램프 헤드 - Tesla의 Cree LED 램프 비즈로 제작되어 높은 빛 투과율, 더 밝은 밝기, 에너지 절약, 환경 보호 및 고효율 사인 프로젝터 자동차 도어\u003c\/li\u003e\n\u003cli\u003e【정품 Tesla puddle lights】: 이 Tesla puddle lights 로고는 Tesla를 기존 차량 도어 라이트와 차별화시켜 줍니다. 조명 기술로 Tesla 로고를 문 아래 바닥에 투사하여 밤이나 어두운 공간에서 편리한 조명을 제공하며, Tesla 소유자에게 아름답고 실용적인 액세서리입니다.\u003c\/li\u003e\n\u003cli\u003e【램프 헤드 구성】: 고투과율 3중 조합 램프, 높은 빛 투과율, 저에너지 소비; 고품질 레이저 에칭 프로젝션 유리(인쇄 필름 아님)로 선명도와 수명이 더 밝고 절대 퇴색하지 않습니다.\u003c\/li\u003e\n\u003cli\u003e【고품질 소재 도어 라이트】: 고온 저항 투명 난연 소재로 제작되어 안전하고 안정적입니다. 기존 플라스틱 백커버를 알루미늄 부품으로 교체하여 방열 면적을 늘렸습니다. 플러그와 플라스틱 부품은 일체형 사출 성형되어 플러그가 쉽게 변형되지 않습니다. 이전 2버튼 방식 대신 4버튼 디자인을 채택하여 구조를 강화하고 느슨해짐을 방지합니다.\u003c\/li\u003e\n\u003cli\u003e【Tesla 환영등】: 문을 열면 환영등이 따뜻함을 즉시 느끼게 합니다. Tesla에서 내린 후, puddle light 'T' 표시는 주인이 보행 경로를 확인하고 물을 피할 수 있게 도와줍니다. 프로젝션 도어를 열면 즉시 매력을 발산하여 더 많은 관심을 끌고 친구들로부터 칭찬을 받습니다.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch2\u003eTesla puddle lights 설명\u003c\/h2\u003e\n\u003ctable data-mce-fragment=\"1\" width=\"100%\"\u003e\n\u003ctbody data-mce-fragment=\"1\"\u003e\n\u003ctr data-mce-fragment=\"1\"\u003e\n\u003ctd data-mce-fragment=\"1\" style=\"width: 47.9525%;\"\u003e\u003c\/td\u003e\n\u003ctd data-mce-fragment=\"1\" style=\"width: 45.0475%;\"\u003e\n\u003cdiv style=\"text-align: left;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr data-mce-fragment=\"1\"\u003e\n\u003ctd data-mce-fragment=\"1\" style=\"width: 47.9525%;\"\u003e\n\u003cp class=\"a-spacing-mini\"\u003e\u003cstrong\u003e램프 헤드 구성\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp class=\"a-size-small\"\u003e고투과율 3중 조합 램프, 높은 빛 투과율, 저에너지 소비; 고품질 레이저 에칭 프로젝션 유리로 선명도와 내구성이 뛰어나며 더 밝고 절대 퇴색하지 않습니다.\u003c\/p\u003e\n\u003c\/td\u003e\n\u003ctd data-mce-fragment=\"1\" style=\"width: 45.0475%;\"\u003e\n\u003cp class=\"a-spacing-mini\"\u003e\u003cstrong\u003e도어 경고등 역할\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp class=\"a-size-small\"\u003e차에서 내린 후, 고휘도 LED 차량 도어 로고가 주인의 보행 경로를 밝혀 장애물을 피할 수 있게 도와줍니다. 자동차 튜닝 애호가를 위해 특별히 설계되어 운전의 즐거움을 더해줍니다.\u003c\/p\u003e\n\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr data-mce-fragment=\"1\"\u003e\n\u003ctd data-mce-fragment=\"1\" style=\"width: 47.9525%;\"\u003e\n\u003cdiv style=\"text-align: left;\"\u003e\u003cimg style=\"float: none;\" alt=\"LED Tesla 로고 퍼들 라이트 (T 로고와 글자) 2개\/4개, Model 3 Model Y Model S Model X용 - Tesery 샵\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Detail-5_480x480.jpg?v=1642494077\"\u003e\u003c\/div\u003e\n\u003c\/td\u003e\n\u003ctd data-mce-fragment=\"1\" style=\"width: 45.0475%;\"\u003e\n\u003cdiv style=\"text-align: left;\"\u003e\u003cimg style=\"float: none;\" alt=\"LED Tesla 로고 퍼들 라이트 (T 로고와 글자) 2개\/4개, Model 3 Model Y Model S Model X용 - Tesery 샵\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Detail-6_480x480.jpg?v=1642494113\"\u003e\u003c\/div\u003e\n\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr data-mce-fragment=\"1\"\u003e\n\u003ctd data-mce-fragment=\"1\" style=\"width: 47.9525%;\"\u003e\n\u003cp class=\"a-spacing-mini\"\u003e\u003cstrong\u003e고품질 소재\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp class=\"a-size-small\"\u003e고온 저항 투명 난연 소재로 제작되어 안전하고 안정적입니다. 저전력 소비와 긴 수명을 자랑합니다.\u003c\/p\u003e\n\u003c\/td\u003e\n\u003ctd data-mce-fragment=\"1\" style=\"width: 45.0475%;\"\u003e\n\u003cp class=\"a-spacing-mini\"\u003e\u003cstrong\u003e설치가 간편함\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp class=\"a-size-small\"\u003e드릴링, 배선 작업, 차량 손상 없이 설치가 매우 간단하며, 기존 도어 라이트를 바로 교체할 수 있습니다.\u003c\/p\u003e\n\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003cdiv style=\"text-align: left;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv style=\"text-align: left;\"\u003e\n\u003cimg alt=\"LED Tesla 로고 퍼들 라이트 (T 로고와 글자) 2개\/4개, Model 3 Model Y Model S Model X용 - Tesery 샵\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/s-l1600_2.jpg?v=1642496131\" style=\"float: none;\"\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003cdiv style=\"text-align: left;\"\u003e\u003cimg style=\"float: none;\" alt=\"LED Tesla 로고 퍼들 라이트 (T 로고와 글자) 2개\/4개, Model 3 Model Y Model S Model X용 - Tesery 샵\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/s-l1600.jpg?v=1642496177\"\u003e\u003c\/div\u003e\n\u003cdiv style=\"text-align: left;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv style=\"text-align: left;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e차량 연식 및 모델은 아래를 확인해 주세요:\u003c\/strong\u003e\u003cbr\u003e\u003cbr\u003eModel 3 (2017~2023)용 (앞문 및 뒷문에 적합)\u003cbr\u003e\u003cbr\u003eModel Y (2020~2023)용 (앞문 및 뒷문에 적합)\u003cbr\u003e\u003cbr\u003eModel S (2016~2021)용 (앞문 및 뒷문에 적합) (2023년형 Model S 뒷문에는 부적합)\u003cbr\u003e\u003cbr\u003eModel X (2018~2021)용 (앞문에만 적합)\u003c\/p\u003e\n\u003ch2\u003e\n\u003cstrong\u003e\u003cspan data-mce-fragment=\"1\"\u003eTesla Puddle Lights\u003c\/span\u003e 사양\u003c\/strong\u003e\u003cbr\u003e\n\u003c\/h2\u003e\n\u003cp\u003e입력 전력: 5w (각 전구당)\u003cbr\u003e\u003cbr\u003e작동 전압: DC 12V\u003cbr\u003e\u003cbr\u003eLED 색상: 흰색\u003cbr\u003e\u003cbr\u003e전류: 0.16A\u003cbr\u003e\u003cbr\u003e작동 온도: -40℃~105℃\u003cbr\u003e\u003cbr\u003eLED 색온도: 6000K\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e주의 사항:\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e1. Tesla Model 3 \u0026 Y의 앞문 장착 위치가 각도로 설정되어 있어 투사된 이미지가 약간 왜곡될 수 있음을 유의하세요.\u003cbr\u003e\u003cbr\u003e2. 설치 시 제품 뒷면에 표시된 L과 R에 주의하세요. 케이블이 충분히 길지 않으면 피그테일을 사용해야 합니다.\u003cbr\u003e\u003cbr\u003e3. 핀과 플러그를 쉽게 삽입할 수 없을 때는 플러그를 좌우로 흔들어 삽입하세요.\u003c\/p\u003e\n\u003ch2\u003eTesla 퍼들 라이트 설치 방법\u003c\/h2\u003e\n\u003cp\u003e1. 도어 커버를 제거할 필요가 없습니다;\u003cbr\u003e2. 도어 트림 패널의 하단 표면에 구멍을 뚫을 필요가 없으므로 원래 차량 구조가 손상되지 않습니다!\u003cbr\u003e3. 드라이버를 사용해 원래 차량의 램프를 부드럽게 떼어내고 교체 및 설치하세요.\u003cbr\u003e4. 차량 소유자는 원래 차량의 어떤 선도 수정할 필요가 없습니다.\u003c\/p\u003e\n\u003cdiv style=\"text-align: left;\"\u003e\u003cimg style=\"float: none;\" alt=\"LED Tesla 로고 퍼들 라이트 (T 로고와 글자) 2개\/4개, Model 3 Model Y Model S Model X용 - Tesery 샵\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/TSL1901-6_1.jpg?v=1642496575\"\u003e\u003c\/div\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003ch2\u003e포함된 패키지\u003c\/h2\u003e\n\u003cp\u003e2개 \/4개 x Tesla 퍼들 라이트\u003cbr\u003e2개 x \u003cspan data-mce-fragment=\"1\"\u003eLED 조명 연장선\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e모든 LED 조명에 대한 평생 보증\u003c\/strong\u003e\u003cbr\u003e\u003cbr\u003e저희 LED 조명은 Amazon 및 경쟁사 제품과 달리 평생 보증을 제공합니다. 하나가 고장 나면 새 제품을 보내드립니다. 간단하며 배송비도 없고, 복잡한 절차도 없습니다. 저희 LED 조명은 실제 유리 프로젝션 렌즈로 제작되어 플라스틱 프로젝션 버전처럼 시간이 지나면서 색이 바래거나 손상되지 않습니다. 이는 보통 보증 기간이 만료된 후에 발생합니다.\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"앞문 2개 \/ 텍스트가 있는 흰색 로고","offer_id":42435069673704,"sku":"TSL1902","price":19.99,"currency_code":"USD","in_stock":true},{"title":"앞문 2개 \/ 엠블럼 로고","offer_id":47891221348584,"sku":"TSL1908","price":19.99,"currency_code":"USD","in_stock":true},{"title":"앞문 2개 \/ 흰색 방패 로고","offer_id":47891221381352,"sku":"TSL1909","price":22.99,"currency_code":"USD","in_stock":true},{"title":"앞문 2개 \/ 검은색 방패 로고","offer_id":47891221414120,"sku":"TSL1910","price":22.99,"currency_code":"USD","in_stock":true},{"title":"앞문 2개 \/ 자동차 로고","offer_id":47891221446888,"sku":"TSL1911","price":22.99,"currency_code":"USD","in_stock":true},{"title":"앞문 2개 \/ 파랑과 흰색 투톤 로고","offer_id":47891221479656,"sku":"TSL1912","price":22.99,"currency_code":"USD","in_stock":true},{"title":"앞문 2개 \/ 빨강과 흰색 투톤 로고","offer_id":47891221512424,"sku":"TSL1913","price":22.99,"currency_code":"USD","in_stock":true},{"title":"앞문 2개 \/ 빨간 배경의 방패 로고","offer_id":47891221545192,"sku":"TSL1914","price":22.99,"currency_code":"USD","in_stock":true},{"title":"앞문 2개 \/ 파란 배경의 방패 로고","offer_id":47891221577960,"sku":"TSL1915","price":22.99,"currency_code":"USD","in_stock":true},{"title":"앞문 및 뒷문 4개 \/ 텍스트가 있는 흰색 로고","offer_id":47891221610728,"sku":"TSL1902-4","price":34.99,"currency_code":"USD","in_stock":true},{"title":"앞문 및 뒷문 4개 \/ 엠블럼 로고","offer_id":47891221643496,"sku":"TSL1908-4","price":34.99,"currency_code":"USD","in_stock":true},{"title":"앞문 및 뒷문 4개 \/ 흰색 방패 로고","offer_id":47891221676264,"sku":"TSL1909-4","price":34.99,"currency_code":"USD","in_stock":true},{"title":"앞문 및 뒷문 4개 \/ 검은색 방패 로고","offer_id":47891221709032,"sku":"TSL1910-4","price":34.99,"currency_code":"USD","in_stock":true},{"title":"앞문 및 뒷문 4개 \/ 자동차 로고","offer_id":47891221741800,"sku":"TSL1911-4","price":34.99,"currency_code":"USD","in_stock":true},{"title":"앞문 및 뒷문 4개 \/ 파랑과 흰색 투톤 로고","offer_id":47891221774568,"sku":"TSL1912-4","price":34.99,"currency_code":"USD","in_stock":true},{"title":"앞문 및 뒷문 4개 \/ 빨강과 흰색 투톤 로고","offer_id":47891221807336,"sku":"TSL1913-4","price":34.99,"currency_code":"USD","in_stock":true},{"title":"앞문 및 뒷문 4개 \/ 빨간 배경의 방패 로고","offer_id":47891221840104,"sku":"TSL1914-4","price":34.99,"currency_code":"USD","in_stock":true},{"title":"앞문 및 뒷문 4개 \/ 파란 배경의 방패 로고","offer_id":47891221872872,"sku":"TSL1915-4","price":34.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/products\/led-logo-tesla-puddle-lights-2pcs4pcs-for-model-3ysx-777777.jpg?v=1714801118"},{"product_id":"signal-brake-light-modified-tesla-model-y","title":"TESERY 리어 범퍼 방향 지시등 업그레이드 for Model Y","description":"\u003cdiv class=\"a-section a-spacing-large bucket\"\u003e\n\u003cdiv class=\"a-section a-spacing-large bucket\"\u003e\n\u003cp\u003e테슬라 모델 Y용으로 수정된 리어 범퍼 방향 지시등 브레이크등. 원본 차량 스캔 및 금형 제작, 환경주의, 안전 운전 및 여행의 개념을 따름.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle type=\"text\/css\"\u003e\u003c!--\n.aplus-v2 {\n    display: block;\n    margin-left: auto;\n    margin-right: auto;\n}\n.aplus-v2 .aplus-3p-fixed-width {\n    width: 970px;\n}\n.aplus-v2 .aplus-3p-fixed-width.aplus-module-wrapper {\n  margin-left: auto;\n  margin-right: auto;\n}\n--\u003e\u003c\/style\u003e\n\u003cstyle type=\"text\/css\"\u003e\u003c!--\n.aplus-v2 {\n      display:block;\n      margin-left:auto;\n      margin-right:auto;\n      word-wrap: break-word;\n      overflow-wrap: break-word;\n      word-break: break-word;\n    }\n\n    \/* Undo this for tech-specs because it breaks table layout *\/\n    .aplus-v2 .aplus-standard .aplus-tech-spec-table { word-break: initial; }\n    .aplus-v2 .aplus-standard .aplus-module-wrapper {text-align:inherit; display:block; margin-right:auto;margin-left:auto;}\n    .aplus-v2 .aplus-standard.aplus-module.module-1,\n    .aplus-v2 .aplus-standard.aplus-module.module-2,\n    .aplus-v2 .aplus-standard.aplus-module.module-3,\n    .aplus-v2 .aplus-standard.aplus-module.module-4,\n    .aplus-v2 .aplus-standard.aplus-module.module-6,\n    .aplus-v2 .aplus-standard.aplus-module.module-7,\n    .aplus-v2 .aplus-standard.aplus-module.module-8,\n    .aplus-v2 .aplus-standard.aplus-module.module-9,\n    .aplus-v2 .aplus-standard.aplus-module.module-10,\n    .aplus-v2 .aplus-standard.aplus-module.module-11,\n    .aplus-v2 .aplus-standard.aplus-module.module-12{padding-bottom:12px; margin-bottom:12px;}\n    .aplus-v2 .aplus-standard.aplus-module:last-child{border-bottom:none}\n    .aplus-v2 .aplus-standard.aplus-module {min-width:979px;}\n\n    \/* aplus css needed to override aui on the detail page *\/\n    .aplus-v2 .aplus-standard.aplus-module table.aplus-chart.a-bordered.a-vertical-stripes {border:none;}\n    .aplus-v2 .aplus-standard.aplus-module table.aplus-chart.a-bordered.a-vertical-stripes td {background:none;}\n    .aplus-v2 .aplus-standard.aplus-module table.aplus-chart.a-bordered.a-vertical-stripes td.selected {background-color:#ffd;}\n    .aplus-v2 .aplus-standard.aplus-module table.aplus-chart.a-bordered.a-vertical-stripes td:first-child {background:#f7f7f7; font-weight:bold;}\n    .aplus-v2 .aplus-standard.aplus-module table.aplus-chart.a-bordered.a-vertical-stripes tr th {background:none; border-right:none;}\n    .aplus-v2 .aplus-standard.aplus-module table.aplus-chart.a-bordered tr td,.aplus-v2 .aplus-standard .aplus-module table.aplus-chart.a-bordered tr th {border-bottom:1px dotted #999;}\n\n    \/* A+ Template - General Module CSS *\/\n    .aplus-v2 .aplus-standard .apm-top {height:100%; vertical-align:top;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-top {padding-left: 0px; padding-right: 3px}\n    .aplus-v2 .aplus-standard .apm-center {height:100%; vertical-align:middle; text-align:center;}\n    .aplus-v2 .aplus-standard .apm-row {width:100%; display:inline-block;}\n    .aplus-v2 .aplus-standard .apm-wrap {width:100%;}\n    .aplus-v2 .aplus-standard .apm-fixed-width {width:969px;}\n    .aplus-v2 .aplus-standard .apm-floatleft {float:left;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-floatleft {float:right;}\n    .aplus-v2 .aplus-standard .apm-floatright {float:right;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-floatright {float:left;}\n    .aplus-v2 .aplus-standard .apm-floatnone {float:none;}\n    .aplus-v2 .aplus-standard .apm-spacing img {border:none;}\n    .aplus-v2 .aplus-standard .apm-leftimage {float:left; display:block; margin-right:20px; margin-bottom:10px;width: 300px;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-leftimage {float: right; margin-right: 0px; margin-left:20px;}\n    .aplus-v2 .aplus-standard .apm-centerimage {text-align: center; width:300px; display:block; margin-bottom:10px;}\n    .aplus-v2 .aplus-standard .apm-centerthirdcol {min-width:359px; display:block}\n    .aplus-v2 .aplus-standard .apm-centerthirdcol ul,\n    .aplus-v2 .aplus-standard .apm-centerthirdcol ol {margin-left: 334px;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-centerthirdcol ul,\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-centerthirdcol ol {margin-left: 0px; margin-right: 334px;}\n    .aplus-v2 .aplus-standard .apm-rightthirdcol {float:right; width:230px; padding-left:30px; margin-left:30px; border-left:1px solid #dddddd;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-rightthirdcol {float: left; padding-left: 0px; padding-right:30px; margin-left:0px; margin-right:30px; border-left:0px; border-right:1px solid #dddddd;}\n    .aplus-v2 .aplus-standard .apm-lefttwothirdswrap {width:709px; display:block;}\n    .aplus-v2 .aplus-standard .apm-lefthalfcol {width:480px; padding-right:30px; display:block; float:left;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-lefthalfcol {padding-left:30px; float:right;}\n    .aplus-v2 .aplus-standard .apm-righthalfcol {width:480px; display:block; float:left;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-righthalfcol {float:right;}\n    .aplus-v2 .aplus-standard .apm-eventhirdcol {width:300px; display:block;}\n    .aplus-v2 .aplus-standard .apm-eventhirdcol-table {border-spacing: 0px 0px; border-collapse: collapse;}\n    .aplus-v2 .aplus-standard .apm-eventhirdcol-table tr td {vertical-align: top;}\n    .aplus-v2 .aplus-standard .apm-fourthcol {width:220px; float:left;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-fourthcol {float:right;}\n    .aplus-v2 .aplus-standard .apm-fourthcol .apm-fourthcol-image {position:relative;}\n    .aplus-v2 .aplus-standard .apm-fourthcol img {display:block; margin:0 auto;}\n    .aplus-v2 .aplus-standard .apm-fourthcol-table {border-spacing: 0px 0px; border-collapse: collapse;}\n    .aplus-v2 .aplus-standard .apm-fourthcol-table tr td {vertical-align: top;}\n    .aplus-v2 .aplus-standard .apm-listbox {width:100%;}\n    .aplus-v2 .aplus-standard .apm-iconheader {float:left; padding-left:10px;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-iconheader {float:right; padding-left:0px; padding-right: 10px}\n    .aplus-v2 .aplus-standard .apm-spacing ul:last-child,.aplus-v2 .aplus-standard ol:last-child {margin-bottom:0 !important;}\n    .aplus-v2 .aplus-standard .apm-spacing ul,.aplus-v2 .aplus-standard ol {padding:0 !important;}\n    .aplus-v2 .aplus-standard .apm-spacing ul {margin:0 0 18px 18px !important;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-spacing ul {margin:0 18px 18px 0 !important;}\n\n    .aplus-v2 .aplus-standard .apm-spacing ul li,.aplus-v2 .aplus-standard ol li {word-wrap:break-word; margin:0 !important;}\n    .aplus-v2 .aplus-standard .apm-spacing ul li {margin:0 !important;}\n\n    \/* A+ Template - Module 1 Sepcific CSS *\/\n    .aplus-v2 .aplus-standard .amp-centerthirdcol-listbox {display:inline-block; width:359px;}\n\n    \/* A+ Template - Module 2\/3 Specific CSS *\/\n    .aplus-v2 .aplus-standard .apm-sidemodule {text-align:left; margin:0 auto; width:970px; padding:0; background-color:#ffffff; position:relative;}\n    .aplus-v2 .aplus-standard .apm-sidemodule {text-align:inherit;}\n    .aplus-v2 .aplus-standard .apm-sidemodule-textright {position:relative; display:table-cell; vertical-align:middle; padding-left:40px; height:300px; max-height:300px;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-sidemodule-textright {padding-left:0px; padding-right: 40px;}\n    .aplus-v2 .aplus-standard .apm-sidemodule-textleft {position:relative; display:table-cell; vertical-align:middle; height:300px; max-height:300px;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-sidemodule-textleft {padding-left:0px;}\n    .aplus-v2 .aplus-standard .apm-sidemodule-imageleft {position:relative; float:left; display:block;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-sidemodule-imageleft {float:right;}\n    .aplus-v2 .aplus-standard .apm-sidemodule-imageright {position:relative; float:right; display:block;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-sidemodule-imageright {float:left;}\n\n    \/* A+ Template - Module 4 Specific CSS *\/\n    .aplus-v2 .aplus-standard.aplus-module.module-4 th {padding: 0px; padding-right:30px; width:220px;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard.aplus-module.module-4 th {padding-left: 30px; padding-right: 0px;}\n    .aplus-v2 .aplus-standard.aplus-module.module-4 th:last-of-type {padding-right:0px;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard.aplus-module.module-4 th:last-of-type {padding-left: 0px}\n\n    \/* A+ Template - Module 5 Specific CSS *\/\n    .aplus-v2 .aplus-standard .apm-tablemodule {text-align:left; margin:0 auto; width:970px; display:table;}\n    .aplus-v2 .aplus-standard table.apm-tablemodule-table {border-bottom:1px solid #dddddd; width: 970px; left:4%;table-layout: fixed}\n    .aplus-v2 .aplus-standard th.apm-tablemodule-keyhead {border-top:1px solid #dddddd; padding:8px 14px 6px !important; background-color:#f7f7f7; font-weight:normal; color:#626262; float:none !important; margin-right:0; text-align:center; width:106px;}\n    .aplus-v2 .aplus-standard tr.apm-tablemodule-keyvalue td {padding-top:8px !important; padding-left:14px; padding-bottom:8px; border-top:1px solid #dddddd; border-bottom:1px solid #dddddd; text-align:center;width:inherit!important}\n    .aplus-v2 .aplus-standard .apm-tablemodule-valuecell.selected {background-color:#fff5ec;}\n    .aplus-v2 .aplus-standard .apm-tablemodule-valuecell span {word-wrap:break-word;}\n    .aplus-v2 .aplus-standard .apm-tablemodule-keyhead {border-right:1px solid #dddddd;}\n    .aplus-v2 .aplus-standard .apm-tablemodule-blankkeyhead {border:0 !important; width:18%;}\n    .aplus-v2 .aplus-standard .apm-tablemodule-image {background-color:#FFFFFF; padding:0 !important; text-align:center; overflow:hidden; vertical-align:bottom;}\n    .aplus-v2 .aplus-standard .apm-tablemodule-imagerows \u003e td \u003e img {max-width:none !important;}\n    .aplus-v2 .aplus-standard table.apm-tablemodule-table {margin-bottom: 6px!important;}\n    .aplus-v2 .aplus-standard table.apm-tablemodule-table th {padding-bottom:8px; text-align:center;}\n    .aplus-v2 .aplus-standard .apm-checked {text-align:center;}\n\n    \/* A+ Template - Module 6 Specific CSS *\/\n    .aplus-v2 .aplus-standard .apm-hovermodule {text-align:left; margin:0 auto; width:970px; padding: 0; background-color:#ffffff; position:relative;}\n    .aplus-v2 .aplus-standard .apm-hovermodule {text-align:inherit;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-slides {background-color:#ffffff; width:970px; height:300px;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-slides-inner {margin-left:345px; position:absolute; z-index:25;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-hovermodule-slides-inner {margin-left:0px; margin-right:345px;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-slidecontrol {padding-top: 14px;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-hovermodule-slidecontrol {left: 0px; right:345px;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-smallimage {vertical-align:top; display: inline-block; width:80px; cursor:pointer; margin-right:35px; padding:0;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-hovermodule-smallimage {margin-right:0px; margin-left:35px;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-smallimage-bg {background-color:#ffffff; width:80px; height:80px;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-smallimage-last {margin-right:0 !important;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-hovermodule-smallimage-last {margin-left:0 !important;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-smallimage a {text-transform:uppercase; font-size:11px; font-weight:bold;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-smallimage a:hover {text-decoration:none; color:#333333 !important;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-smallimage img {border:1px solid #888888;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-opacitymodon:hover {opacity:1 !important; filter:alpha(opacity=100) !important;}\n    .aplus-v2 .aplus-standard .apm-hovermodule-opacitymodon img {opacity:0.3; filter:alpha(opacity=30);}\n    .aplus-v2 .aplus-standard .apm-hovermodule-image {position:absolute; left:0; z-index: 1;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-hovermodule-image {right:0;}\n\n    \/* A+ Template - Module 9 Specific CSS *\/\n    .aplus-v2 .aplus-standard.aplus-module.module-9 th.apm-center {padding: 0 35px 0 0; width:300px;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard.aplus-module.module-9 th.apm-center {padding: 0 0 0 35px; width:300px;}\n    .aplus-v2 .aplus-standard.aplus-module.module-9 th.apm-center:last-of-type {padding:0px;}\n\n    \/*A+ Template - Module 11\/12 Specific CSS *\/\n    .aplus-v2 .aplus-standard .apm-heromodule-textright {align-self:center; right:50px; margin-left:auto; padding:15px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#BBBBBB,endColorstr=#FFFFFF); background-color: rgb(0,0,0); background-color:rgba(0,0,0,0.7);color:white; width:250px;}\n    html[dir='rtl'] .aplus-v2 .aplus-standard .apm-heromodule-textright {left: 50px; right:auto; margin-left:0; margin-right:auto;}\n    .aplus-v2 .aplus-standard .apm-heromodule-textright h3,\n    .aplus-v2 .aplus-standard .apm-heromodule-textright ul,\n    .aplus-v2 .aplus-standard .apm-heromodule-textright ol,\n    .aplus-v2 .aplus-standard .apm-heromodule-textright ul .a-list-item,\n    .aplus-v2 .aplus-standard .apm-heromodule-textright ol .a-list-item {color:white}\n    .aplus-v2 .aplus-standard.module-12 .textright {align-self:center; right:50px; margin-left:auto; padding:15px; color:black; width:250px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#BBBBBB,endColorstr=#FFFFFF); background-color: rgb(255,255,255); background-color:rgba(255,255,255,0.7);}\n    html[dir='rtl'] .aplus-v2 .aplus-standard.module-12 .textright {left: 50px; right:auto; margin-left:0; margin-right:auto;}\n    .aplus-v2 .aplus-standard.module-12 .apm-hero-image,.aplus-v2 .aplus-standard.module-11 .apm-hero-image{float:none}\n    .aplus-v2 .aplus-standard.module-12 .apm-hero-image img,.aplus-v2 .aplus-standard.module-11 .apm-hero-image img{position:absolute}\n    .aplus-v2 .aplus-standard.module-12 .apm-hero-text,.aplus-v2 .aplus-standard.module-11 .apm-hero-text{position:relative}\n    .aplus-v2 .aplus-standard.module-11 .aplus-module-content,.aplus-v2 .aplus-standard.module-12 .aplus-module-content{min-height:300px; display: flex}\n\n    \/* module 13 text *\/\n    .aplus-v2 .aplus-standard .aplus-module-13 {\n        padding: 40px 0;\n        max-width: 979px;\n    }\n   .aplus-v2 .aplus-standard .aplus-module-13 .aplus-13-heading-text {\n        padding-bottom: 10px;\n    }\n    .aplus-v2 .aplus-standard .aplus-module-13 p {\n        text-align: left;\n        padding-bottom: 10px;\n    }\n    .aplus-v2 .aplus-standard .aplus-module-13 p {\n        text-align: inherit;\n    }\n\n    @media (max-width: 800px) {\n        \/* Main Media Queries *\/\n        .aplus-v2 .aplus-standard .acs-ux-wrapfix {width:100%;}\n        .aplus-v2 .aplus-standard .aplus-module-wrapper {width:100%;}\n        .aplus-v2 .aplus-standard .apm-leftimage {float:none;}\n\n        html[dir='rtl'] .aplus-v2 .aplus-standard .acs-ux-wrapfix {width:100%;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .aplus-module-wrapper {width:100%;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-leftimage {float:none;}\n\n        .aplus-v2 .aplus-standard .apm-centerthirdcol ul,\n        .aplus-v2 .aplus-standard .apm-centerthirdcol ol {margin-left: 14px;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-centerthirdcol ul,\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-centerthirdcol ol {margin-left: 0px; margin-right: 14px;}\n\n        \/* Module1 Media Queries *\/\n        .aplus-v2 .aplus-standard .apm-lefttwothirdswrap {float:none; width:100%; margin:0;}\n        .aplus-v2 .aplus-standard .apm-leftimage p {display:none;}\n        .aplus-v2 .aplus-standard .apm-centerthirdcol {float:none; width:100%;}\n        .aplus-v2 .aplus-standard .apm-listbox {width:100%;}\n        .aplus-v2 .aplus-standard .apm-rightthirdcol {float:none; width:100%; border-left:none; padding:0; margin:0; margin-bottom:20px;}\n        .aplus-v2 .aplus-standard .apm-rightthirdcol-inner img {display:block; margin:auto;}\n\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-lefttwothirdswrap {float:none; width:100%; margin:0;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-leftimage p {display:none;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-centerthirdcol {float:none; width:100%;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-listbox {width:100%;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-rightthirdcol {float:none; width:100%; border-left:none; padding:0; margin:0; margin-bottom:20px;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-rightthirdcol-inner img {display:block; margin:auto;}\n\n        \/* Module2\/3 Media Queries *\/\n        .aplus-v2 .aplus-standard .apm-sidemodule {width:100%; height:auto;}\n        .aplus-v2 .aplus-standard .apm-sidemodule-imageleft {width:100%; position:relative; display:block; margin-bottom:15px;}\n        .aplus-v2 .aplus-standard .apm-sidemodule-imageleft img {display:block; margin:0 auto;}\n        .aplus-v2 .aplus-standard .apm-sidemodule-imageright {width:100%; position:relative; display:block; margin-bottom:15px;}\n        .aplus-v2 .aplus-standard .apm-sidemodule-imageright img {display:block; margin:0 auto;}\n        .aplus-v2 .aplus-standard .apm-sidemodule .a-spacing-medium {margin-bottom:30px !important;}\n\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-sidemodule {width:100%; height:auto;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-sidemodule-imageleft {width:100%; position:relative; display:block; margin-bottom:15px;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-sidemodule-imageleft img {display:block; margin:0 auto;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-sidemodule-imageright {width:100%; position:relative; display:block; margin-bottom:15px;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-sidemodule-imageright img {display:block; margin:0 auto;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-sidemodule .a-spacing-medium {margin-bottom:30px !important;}\n\n        \/* Module4 Media Queries *\/\n        .aplus-v2 .aplus-standard .apm-fourthcol {margin:0; padding-bottom:23px; width:100%; float:none;}\n        .aplus-v2 .aplus-standard .apm-fourthcol .apm-fourthcol-image {height:inherit;}\n\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-fourthcol {margin:0; padding-bottom:23px; width:100%; float:none;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-fourthcol .apm-fourthcol-image {height:inherit;}\n\n        \/* Module5 Media Queries *\/\n        .aplus-v2 .aplus-standard table.apm-tablemodule-table {width:100%;}\n        .aplus-v2 .aplus-standard .apm-tablemodule-valuecell {width:auto;}\n\n        html[dir='rtl'] .aplus-v2 .aplus-standard table.apm-tablemodule-table {width:100%;}\n        html[dir='rtl'] .aplus-v2 .aplus-standard .apm-tablemodule-valuecell {width:auto;}\n    }\n\n    \/* aui hack *\/\n    .aplus-v2 .aplus-standard * {-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}\n    .aplus-v2 .aplus-standard .a-box mp-centerthirdcol-listboxer {-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;position: relative;padding: 14px 18px;}\n    .aplus-v2 .aplus-standard .a-box {display: block;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;border: 1px #ddd solid;background-color: white;}\n    .aplus-v2 .aplus-standard .a-color-alternate-background {background-color: #f3f3f3!important;}\n    .aplus-v2 .aplus-standard .a-section {margin-bottom: 12px;}\n    .aplus-v2 .aplus-standard .a-size-base {font-size: 13px!important;line-height: 19px!important;}\n    .aplus-v2 .aplus-standard .a-spacing-base, .aplus-v2 .aplus-standard .a-ws .a-ws-spacing-base {margin-bottom: 14px!important;}\n    .aplus-v2 .aplus-standard .a-spacing-large, .aplus-v2 .aplus-standard .a-ws .a-ws-spacing-large {margin-bottom: 22px!important;}\n    .aplus-v2 .aplus-standard .a-spacing-mini, .aplus-v2 .aplus-standard .a-ws .a-ws-spacing-mini {margin-bottom: 6px!important;}\n    .aplus-v2 .aplus-standard .a-spacing-small, .aplus-v2 .aplus-standard .a-ws .a-ws-spacing-small {margin-bottom: 10px!important;}\n    .aplus-v2 .aplus-standard a, .aplus-v2 .aplus-standard a:visited, .aplus-v2 .aplus-standard a:active, .aplus-v2 .aplus-standard a:link {text-decoration: none;}\n    .aplus-v2 .aplus-standard a:hover {text-decoration: underline;cursor: pointer;}\n    .aplus-v2 .aplus-standard h1, .aplus-v2 .aplus-standard h2, .aplus-v2 .aplus-standard h3, .aplus-v2 .aplus-standard h4 {font-family: Arial,sans-serif;text-rendering: optimizeLegibility;padding-bottom: 4px;}\n    .aplus-v2 .aplus-standard h1, .aplus-v2 .aplus-standard h2, .aplus-v2 .aplus-standard h3, .aplus-v2 .aplus-standard h4 {font-family: inherit;}\n    .aplus-v2 .aplus-standard h1, .aplus-v2 .aplus-standard h2, .aplus-v2 .aplus-standard h3, .aplus-v2 .aplus-standard h4, .aplus-v2 .aplus-standard h5, .aplus-v2 .aplus-standard h6 {padding: 0;margin: 0;}\n    .aplus-v2 .aplus-standard h3{font-weight: bold;font-size: 17px;line-height: 1.255;}\n    .aplus-v2 .aplus-standard h4 {font-weight: normal;font-size: 17px;line-height: 1.255;}\n    .aplus-v2 .aplus-standard h5 {font-weight: bold;font-size: 13px;line-height: 19px;}\n    .aplus-v2 .aplus-standard img {vertical-align: top;max-width: 100%;}\n    .aplus-v2 .aplus-standard p {padding: 0;margin: 0 0 14px 0;}\n    .aplus-v2 .aplus-standard ul li {list-style: disc;}\n    .aplus-v2 .aplus-standard ul {margin: 0 0 18px 18px;}\n    .aplus-v2 .aplus-standard ul, .aplus-v2 .aplus-standard ol {padding: 0;}\n    .aplus-v2 .aplus-standard ul:last-child, .aplus-v2 .aplus-standard ol:last-child {margin-bottom: 0!important;}\n    .aplus-v2 .aplus-standard .read-more-arrow-placeholder {text-align: right; cursor: pointer; display:none;}\n--\u003e\u003c\/style\u003e","brand":"Tesery Official Store","offers":[{"title":"Fishbone Model Y 2020-2025.03","offer_id":42320053731560,"sku":"TSL0751-B","price":119.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/products\/rear-bumper-turn-signal-brake-light-modified-suitable-for-tesla-model-3-2017-2023-177856.jpg?v=1725344758"},{"product_id":"footwell-ambient-light-tesla-model-3-model-y-model-s-model-x","title":"TESERY 모델 3\/Y\/S\/X 풋웰 LED 조명","description":"\u003c!-- Google Font Import for Montserrat --\u003e\n\u003cp\u003e\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin=\"\"\u003e \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@400;500;600;700\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\u003c\/p\u003e\n\u003cdiv class=\"tesla-guide-container\"\u003e\n\u003c!-- Alert Box --\u003e\n\u003cdiv class=\"color-clarification-alert\"\u003e\n\u003cspan class=\"alert-icon\"\u003e💡\u003c\/span\u003e\n\u003cp\u003e원하는 색상을 꼭 선택하세요. 이 제품은 단일 색상 세트입니다. 조절 가능한 RGB 발밑 조명은 \u003ca style=\"color: #ffffff;\" href=\"https:\/\/www.tesery.com\/products\/model-3-y-s-rgb-footwell-led-lights\" target=\"_blank\"\u003e이 링크\u003c\/a\u003e를 방문해 주세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- Collapsible Sections (Unchanged) --\u003e\n\u003cdiv class=\"collapsible-sections\"\u003e\n\u003c!-- Installation Locations Section --\u003e\n\u003cdetails\u003e\n\u003csummary\u003e\u003cspan\u003e📍 설치 위치\u003c\/span\u003e \u003cspan class=\"icon\"\u003e▼\u003c\/span\u003e\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003cimg class=\"guide-image\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/footwell-led-lights-for-tesla-model-3ysx-4pcs-245710.jpg?v=1750433628\u0026amp;width=713\" alt=\"Tesla LED 조명 설치 위치\"\u003e\n\u003cdiv class=\"info-box\"\u003e\n\u003cp class=\"box-title\"\u003e적용 범위:\u003c\/p\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e발밑 공간\u003c\/strong\u003e - 운전석 및 조수석 측면 분위기 강화.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e도어 패널\u003c\/strong\u003e - 4개 도어 모두 우아한 풋라이트 조명.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e글러브 박스\u003c\/strong\u003e - 쉽게 접근할 수 있도록 밝은 내부 조명.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e앞 트렁크 (프렁크)\u003c\/strong\u003e - 앞 저장 공간을 위한 고급 조명.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e뒷 트렁크 공간\u003c\/strong\u003e - 주요 적재 공간 완전 조명.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c!-- Installation Steps Section --\u003e\n\u003cdetails\u003e\n\u003csummary\u003e\u003cspan\u003e🔧 설치 단계\u003c\/span\u003e \u003cspan class=\"icon\"\u003e▼\u003c\/span\u003e\u003c\/summary\u003e\n\u003cdiv class=\"details-content\"\u003e\n\u003cimg class=\"guide-image\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/footwell-led-lights-for-tesla-model-3ysx-4pcs-106823.jpg?v=1750433628\u0026amp;width=713\" alt=\"Tesla LED 조명 설치 단계\"\u003e\n\u003cdiv class=\"info-box\"\u003e\n\u003cp class=\"box-title\"\u003e💡 간단한 3단계 설치:\u003c\/p\u003e\n\u003col\u003e\n\u003cli\u003e\n\u003cstrong\u003e1단계:\u003c\/strong\u003e 원래 공장 조명을 부드럽게 떼어내세요.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e2단계:\u003c\/strong\u003e 기존 조명에서 전원 플러그를 분리하세요.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e3단계:\u003c\/strong\u003e 새 LED 조명을 꽂고 제자리에 딱 맞게 끼우세요.\u003c\/li\u003e\n\u003c\/ol\u003e\n\u003cp class=\"plug-and-play\"\u003e⚡️ 손상 없이, 플러그 앤 플레이 설치. 전문 지식 불필요!\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cstyle\u003e\n\/* --- Main Container --- *\/\n.tesla-guide-container {\n    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;\n    background-color: #ffffff;\n    padding: 24px;\n    max-width: 700px;\n    margin: 20px auto;\n    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);\n    box-sizing: border-box;\n    border: 1px solid #e5e7eb;\n    border-radius: 12px; \/* \u003c-- ADDED: Main container rounded corners *\/\n    overflow: hidden; \/* \u003c-- ADDED: Ensures child elements conform to rounded corners *\/\n}\n\n\/* --- Gradient Alert Box --- *\/\n.color-clarification-alert {\n    display: flex;\n    align-items: flex-start;\n    gap: 12px;\n    color: #ffffff;\n    background: linear-gradient(110deg, #3b82f6, #8b5cf6);\n    padding: 14px 16px;\n    border-radius: 8px; \/* \u003c-- UPDATED: Rounded corners for alert box *\/\n    margin: 0 0 20px 0;\n}\n.color-clarification-alert .alert-icon {\n    font-size: 18px;\n    line-height: 1.6;\n}\n.color-clarification-alert p {\n    margin: 0;\n    font-size: 13px;\n    font-weight: 500;\n    line-height: 1.6;\n}\n.color-clarification-alert a {\n    color: #ffffff; \n    font-weight: 700;\n    opacity: 0.9;\n    transition: opacity 0.2s;\n    text-decoration: none !important; \/* Kept the underline fix *\/\n}\n.color-clarification-alert a:hover {\n    opacity: 1;\n}\n\n\/* --- Collapsible Sections --- *\/\n.collapsible-sections {\n    display: flex;\n    flex-direction: column;\n    gap: 8px;\n}\ndetails {\n    background: #ffffff;\n    border: 1px solid #e5e7eb;\n    overflow: hidden;\n    transition: border-color 0.2s ease;\n    border-radius: 8px; \/* \u003c-- ADDED: Rounded corners for details sections *\/\n}\ndetails:hover {\n    border-color: #d1d5db;\n}\nsummary {\n    background: #f7f8fa;\n    padding: 12px 16px;\n    cursor: pointer;\n    font-weight: 600;\n    font-size: 15px;\n    color: #0f172a;\n    list-style: none;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    transition: background-color 0.2s ease;\n}\nsummary:hover {\n    background: #f0f2f5;\n}\nsummary::-webkit-details-marker, summary::marker { display: none; }\n.icon {\n    font-size: 16px;\n    transition: transform 0.3s ease;\n}\ndetails[open] summary .icon {\n    transform: rotate(180deg);\n}\ndetails[open] summary {\n    border-bottom: 1px solid #e5e7eb;\n}\n.details-content {\n    padding: 16px;\n    animation: slideDown 0.3s ease-out;\n}\n@keyframes slideDown {\n    from { opacity: 0; transform: translateY(-10px); }\n    to { opacity: 1; transform: translateY(0); }\n}\n\n.guide-image {\n    width: 100%;\n    max-width: 400px;\n    height: auto;\n    margin: 0 auto 16px;\n    display: block;\n    border-radius: 6px; \/* \u003c-- ADDED: Rounded corners for images *\/\n}\n.info-box {\n    background-color: #f7f8fa;\n    padding: 16px;\n    border-radius: 6px; \/* \u003c-- ADDED: Rounded corners for info boxes *\/\n}\n.box-title {\n    color: #1f2937;\n    font-size: 14px;\n    margin: 0 0 10px 0;\n    font-weight: bold;\n}\n.info-box ul, .info-box ol {\n    color: #4b5563;\n    font-size: 13px;\n    margin: 0;\n    padding-left: 20px;\n    line-height: 1.6;\n}\n.info-box li { margin-bottom: 6px; }\n.plug-and-play {\n    margin: 12px 0 0 0;\n    font-size: 12px;\n    color: #475569;\n    font-style: italic;\n    text-align: center;\n}\n\n\/* --- Mobile Responsive --- *\/\n@media (max-width: 600px) {\n    .tesla-guide-container {\n        margin: 16px; \/* \u003c-- UPDATED: Adds space around the container on mobile *\/\n        padding: 16px; \/* \u003c-- UPDATED: Slightly adjusted padding for mobile *\/\n        \/* By removing border:none and box-shadow:none, it inherits from desktop, making it visible *\/\n    }\n    summary { font-size: 14px; padding: 12px; }\n    .details-content, .info-box { padding: 12px; }\n}\n\u003c\/style\u003e","brand":"Tesery Official Store","offers":[{"title":"색상을 선택하세요 \/ 풋웰\/퍼들 라이트【4PCS】","offer_id":42843949596904,"sku":"","price":37.99,"currency_code":"USD","in_stock":true},{"title":"색상을 선택하세요 \/ 7 PCS 기본 세트【풋웰\/도어\/글러브박스】","offer_id":44553563078888,"sku":"","price":59.99,"currency_code":"USD","in_stock":true},{"title":"색상을 선택하세요 \/ 11개 풀 세트 【발판\/문\/글로브박스\/프렁크\/트렁크】","offer_id":47430693650664,"sku":null,"price":79.99,"currency_code":"USD","in_stock":true},{"title":"흰색 \/ 풋웰\/퍼들 라이트【4PCS】","offer_id":47391552438504,"sku":"TSL1907-A","price":37.99,"currency_code":"USD","in_stock":true},{"title":"흰색 \/ 7 PCS 기본 세트【풋웰\/도어\/글러브박스】","offer_id":47391552504040,"sku":"TSL1907-A-7","price":59.99,"currency_code":"USD","in_stock":true},{"title":"흰색 \/ 11개 풀 세트 【발판\/문\/글로브박스\/프렁크\/트렁크】","offer_id":47430693683432,"sku":"TSL1907-A+TSL1907-A-7","price":79.99,"currency_code":"USD","in_stock":true},{"title":"파란색 \/ 풋웰\/퍼들 라이트【4PCS】","offer_id":46765633732840,"sku":"TSL1907-B","price":37.99,"currency_code":"USD","in_stock":true},{"title":"파란색 \/ 7 PCS 기본 세트【풋웰\/도어\/글러브박스】","offer_id":46765633798376,"sku":"TSL1907-B-7","price":59.99,"currency_code":"USD","in_stock":true},{"title":"파란색 \/ 11개 풀 세트 【발판\/문\/글로브박스\/프렁크\/트렁크】","offer_id":47430693716200,"sku":"TSL1907-B+TSL1907-B-7","price":79.99,"currency_code":"USD","in_stock":true},{"title":"보라색 \/ 풋웰\/퍼들 라이트【4PCS】","offer_id":46765633863912,"sku":"TSL1907-C","price":37.99,"currency_code":"USD","in_stock":true},{"title":"보라색 \/ 7 PCS 기본 세트【풋웰\/도어\/글러브박스】","offer_id":46765633929448,"sku":"TSL1907-C-7","price":59.99,"currency_code":"USD","in_stock":true},{"title":"보라색 \/ 11개 풀 세트 【발판\/문\/글로브박스\/프렁크\/트렁크】","offer_id":47430693748968,"sku":"TSL1907-C+TSL1907-C-7","price":79.99,"currency_code":"USD","in_stock":true},{"title":"빨간색 \/ 풋웰\/퍼들 라이트【4PCS】","offer_id":47406865809640,"sku":"TSL1907-D","price":37.99,"currency_code":"USD","in_stock":true},{"title":"빨간색 \/ 7 PCS 기본 세트【풋웰\/도어\/글러브박스】","offer_id":47406865875176,"sku":"TSL1907-D-7","price":59.99,"currency_code":"USD","in_stock":true},{"title":"빨간색 \/ 11개 풀 세트 【발판\/문\/글로브박스\/프렁크\/트렁크】","offer_id":47430693781736,"sku":"TSL1907-D+TSL1907-D-7","price":79.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/footwell-led-lights-for-tesla-model-3ysx-4pcs-593969.png?v=1749506577"},{"product_id":"tesla-ambient-lights-model-3-y","title":"모델 3\/Y (2020-현재)용 스트리머 LED 앰비언트 라이트 | 앱 제어","description":"\u003cstyle\u003e\n    \/* Basic Styles *\/\n    body {\n        font-family: Arial, sans-serif;\n        margin: 0;\n        padding: 0;\n        background-color: white; \/* Ensure background is pure white *\/\n    }\n\n    \/* --- APP CONTROL SECTION (Single Line) --- *\/\n    .app-control-section {\n        max-width: 1200px;\n        \/* Adjusted bottom margin for separation *\/\n        margin: 40px auto 20px auto; \n        padding: 0 20px;\n        text-align: left;\n    }\n\n    \/* Main Title for the section - REMOVED *\/\n    .app-control-header {\n        \/* This class is now redundant but kept hidden in case it needs to be restored *\/\n        display: none;\n    }\n\n    \/* Container for the Mode Tags *\/\n    .mode-tags {\n        display: flex;\n        gap: 15px; \/* Spacing between mode tags *\/\n        align-items: center;\n        flex-wrap: wrap;\n        padding-bottom: 10px; \/* Padding for mobile view\/wrapping *\/\n    }\n\n    \/* Individual Mode Tag Style - Kept as is *\/\n    .mode-tag {\n        font-size: 14px;\n        font-weight: 600;\n        padding: 8px 12px;\n        border-radius: 6px;\n        transition: transform 0.2s, box-shadow 0.2s;\n        cursor: default;\n        display: flex;\n        align-items: center;\n        white-space: nowrap;\n        border: none;\n        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);\n    }\n\n    \/* Remove the color indicator dot (::before) *\/\n    .mode-tag::before {\n        content: none;\n    }\n\n    \/* Mode 1: Smart APP Control (Grey\/Neutral Background) - NO CHANGE *\/\n    .mode-tag.smart {\n        background-color: #666666; \/* Medium Dark Grey *\/\n        color: #FFFFFF; \/* White text for contrast *\/\n    }\n\n    \/* Mode 2: Monochrome Mode (Black Background) - NO CHANGE *\/\n    .mode-tag.mono {\n        background-color: #000000; \/* Pure Black *\/\n        color: #FFFFFF; \/* White text for contrast *\/\n    }\n\n    \/* Mode 3: Colorful Streaming Light Mode (Vibrant Gradient Background) - NO CHANGE *\/\n    .mode-tag.color {\n        \/* Use a colorful gradient for the background *\/\n        background-image: linear-gradient(to right, #FF4136, #FFDC00, #2ECC40, #0074D9); \/* Multi-color gradient *\/\n        color: #000000; \/* Black text for readability on lighter parts of gradient *\/\n        font-weight: bold; \/* Bold text for better pop *\/\n    }\n\n    \/* Hover effect *\/\n    .mode-tag:hover {\n        transform: translateY(-2px);\n        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);\n    }\n    \/* ------------------------------------- *\/\n\n    \/* Header Container Style (Outer) *\/\n    .feedback-gallery-header-container {\n        \/* Adjusted top margin *\/\n        margin: 10px auto 20px auto; \n        max-width: 1200px;\n        padding: 0 20px;\n    }\n\n    \/* Header Style - Original Gallery Header *\/\n    .feedback-gallery-header {\n        font-size: 24px;\n        font-weight: bold;\n        margin-bottom: 20px;\n        text-align: left;\n        position: relative;\n    }\n\n    \/* Gradient Title - Black to Black for pure black text *\/\n    .feedback-gallery-header span {\n        background-image: linear-gradient(to right, #000000, #000000);\n        -webkit-background-clip: text;\n        -webkit-text-fill-color: transparent;\n        transition: all 0.3s ease;\n    }\n\n    \/* Container Style - MODIFIED: border-radius set to 0 *\/\n    .feedback-gallery-section {\n        width: 100%;\n        max-width: 1200px;\n        margin: 0 auto;\n        padding: 10px 20px;\n        background-color: white;\n        border-radius: 0; \/* REMOVED ROUNDED CORNERS (MADE RECTANGULAR) *\/\n        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n        overflow: hidden;\n    }\n\n    \/* Scrolling Container *\/\n    .review-slider {\n        display: flex;\n        overflow-x: auto;\n        scroll-snap-type: x mandatory;\n        scroll-behavior: smooth;\n        white-space: nowrap;\n        padding: 0 20px 10px 20px;\n    }\n\n    \/* Scrollbar and Image Spacing *\/\n    .review-slider::-webkit-scrollbar {\n        height: 12px;\n        background-color: transparent;\n        margin-top: 10px;\n    }\n\n    \/* Custom Scrollbar Design - Black only *\/\n    .review-slider::-webkit-scrollbar-thumb {\n        background-image: linear-gradient(to right, #000000, #000000); \/* Black to Black for pure black thumb *\/\n        border-radius: 16px;\n        border: 2px solid #fff;\n        box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);\n        transition: all 0.3s ease;\n    }\n\n    \/* Slider Thumb Scale on Hover *\/\n    .review-slider:hover::-webkit-scrollbar-thumb {\n        transform: scale(1.2);\n    }\n\n    \/* Each Image Item - MODIFIED: border-radius set to 0 *\/\n    .review-item {\n        flex-shrink: 0;\n        width: 200px;\n        height: 200px;\n        margin: 0 10px;\n        border-radius: 0; \/* REMOVED ROUNDED CORNERS (MADE RECTANGULAR) *\/\n        overflow: hidden;\n        scroll-snap-align: start;\n        transition: transform 0.3s ease;\n        cursor: pointer;\n    }\n\n    \/* Image Hover Effect *\/\n    .review-item:hover {\n        transform: scale(1.05);\n        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);\n    }\n\n    \/* Image Style *\/\n    .review-item img {\n        width: 100%;\n        height: 100%;\n        object-fit: cover;\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"app-control-section\"\u003e\n\u003cdiv class=\"mode-tags\"\u003e\n\u003cspan class=\"mode-tag smart\"\u003e스마트 앱 제어\u003c\/span\u003e \u003cspan class=\"mode-tag mono\"\u003e단색 모드\u003c\/span\u003e \u003cspan class=\"mode-tag color\"\u003e컬러풀 스트리밍 라이트 모드\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feedback-gallery-header-container\"\u003e\n\u003ch3 class=\"feedback-gallery-header\"\u003e\u003cspan\u003e고객 피드백 갤러리\u003c\/span\u003e\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feedback-gallery-section\"\u003e\n\u003cdiv class=\"review-slider\"\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/2_5c50d9a3-c1eb-409d-81c2-ae921f880db0.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 1\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/3_9d762280-87f7-4bd5-bb62-e6ab34b60ac3.png?v=1773727339\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/4_a4ffe151-bd94-49a2-bb78-42e10bbe054c.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 2\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/6_ecfc356b-f329-4fba-8ba6-3370ddd6c7a9.png?v=1773727338\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/8_21a9f5e9-8658-449c-b306-0cf819bef248.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 3\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/2_c1437a1d-6884-4da4-811a-6bd34eeae9cd.png?v=1773727338\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/3_f207456d-08d9-451e-8482-4fba702ba281.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 4\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/4_c66807a8-29b0-4232-adcd-ff18acf6f384.png?v=1773727338\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/6_8b2d5e59-a6c4-41c8-84ad-132b9acc2800.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 5\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/1_c3a3887e-9530-4fdb-a161-7bf1cc989aa1.jpg?v=1773727339\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/5_ab1e9eb4-663c-47b5-9754-6073dd6c96c2.png?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 6\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/5_18452e6b-005a-42f8-88db-0671e30bcd28.png?v=1773727337\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003cdiv class=\"review-item\" style=\"text-align: start;\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/1_e0f5753b-7d98-4c5c-917b-1ef1ce225a52.jpg?v=1745313741\u0026amp;width=1946\" target=\"_blank\"\u003e \u003cimg alt=\"피드백 이미지 7\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/1_f0061441-e38c-4229-a612-d5e3cc32251b.jpg?v=1745475821\u0026amp;width=1946\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 대시보드 전용","offer_id":45597081010408,"sku":"","price":59.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 센터 콘솔 전용","offer_id":47760348086504,"sku":null,"price":35.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 대시보드 + 센터 콘솔","offer_id":45597081075944,"sku":"","price":89.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 앞 유리 조명 【컬러풀 라이트 모드 전용】","offer_id":47774501667048,"sku":null,"price":65.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 선루프 라이트","offer_id":47774501699816,"sku":null,"price":69.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 하이랜드 \/ Model Y 주니퍼 \/ 대시보드 전용","offer_id":45597078487272,"sku":"TLA009","price":59.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 하이랜드 \/ Model Y 주니퍼 \/ 선루프 라이트","offer_id":47774501732584,"sku":"TLA010","price":69.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 2021-2023 \/ Model Y 2020-2024 \/ 대시보드 전용","offer_id":43154135515368,"sku":"TSL1003-B","price":59.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 2021-2023 \/ Model Y 2020-2024 \/ 센터 콘솔 전용","offer_id":47760348119272,"sku":"TSL1003-A","price":35.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 2021-2023 \/ Model Y 2020-2024 \/ 대시보드 + 센터 콘솔","offer_id":43154135548136,"sku":"TSL1003","price":89.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 2021-2023 \/ Model Y 2020-2024 \/ 앞 유리 조명 【컬러풀 라이트 모드 전용】","offer_id":47774501765352,"sku":"TLA011","price":65.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 2021-2023 \/ Model Y 2020-2024 \/ 선루프 라이트","offer_id":47774501798120,"sku":"TLA010","price":69.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/streamer-led-ambient-light-for-model-3y-2020-present-app-controlled-3176773.jpg?v=1761575899"},{"product_id":"led-front-trunk-rgb-lighting-kit-3-y","title":"TESERY RGB LED 프렁크 라이트 스트립 for 모델 3\/Y\/S \/X","description":"\u003ch3 style=\"text-align: center;\"\u003eModel 3\/Y\/S\/X용 RGB LED 프렁크 라이트 스트립\u003c\/h3\u003e\n\u003cp\u003e\u003ciframe width=\"100%\" height=\"361\" src=\"https:\/\/www.youtube.com\/embed\/VAPT3JTXkhk\" title=\"EPISODIO 32 - ILLUMINIAMO IL FRUNK\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"\u003e\u003c\/iframe\u003e\u003c\/p\u003e\n\u003cp\u003eTesla 프렁크 조명을 강화하고 싶으셨다면, 이 제품은 설치가 매우 간단한 조명 업그레이드 제품입니다. 이 LED 스트립 라이트는 프렁크 내 모든 물건을 밝히며, 조명 색상은 원하는 어떤 색상으로도 설정할 수 있습니다. 이 보이지 않는 LED 스트립 조명은 프렁크 내부 실링 아래에 숨겨져 있으며 모든 연결은 플러그 앤 플레이 방식입니다. 절단, 배선 작업 없이 보증 문제도 없습니다. 설치에 도구가 필요 없습니다.\u003c\/p\u003e\n\u003ch3\u003e주요 특징\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003e\u003cstrong\u003e[맞춤형 디자인]\u003c\/strong\u003e 이 라이트 스트립은 Model Y, Model 3, Model X, Model S에 맞게 특별히 맞춤 제작되었습니다. Tesla Model Y 및 Model 3의 실내 조명을 개선하는 데 완벽합니다.\u003c\/p\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003cstrong\u003e[쉬운 설치]\u003c\/strong\u003e 앞쪽 예비함 가장자리에 설치됩니다. 설치가 쉽고 숨길 수 있어 차량을 깔끔하게 유지합니다.\u003c\/p\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003cstrong\u003e[두 가지 제어 방법]\u003c\/strong\u003e 사용자는 앱 또는 리모컨을 통해 색상을 전환할 수 있습니다. 리모컨 제어: 리모컨 패널에서만 색상 전환 가능(고정 16색); 앱 제어: 더 다양한 색상을 선택할 수 있어 무한한 개인화 가능성을 제공합니다.\u003c\/p\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003cstrong\u003e[필수 액세서리]\u003c\/strong\u003e Tesla 차량에 새로운 콘솔을 장착할 수 있는 훌륭한 액세서리입니다. Tesery 조명 효과로 차량의 외관과 분위기를 향상시키세요.\u003c\/p\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3\u003e사양\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e적용 모델: \u003c\/strong\u003e2012-2024년형 모든 Model Y\/S\/X 및 2017-2023.10년형 Model 3\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e제어 방법: \u003c\/strong\u003e앱, 리모컨\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3\u003e패키지\u003c\/h3\u003e\n\u003cp\u003e1세트 * RGB LED 프렁크 라이트 스트립\u003c\/p\u003e\n\u003cp\u003e1개 * 사용 설명서\u003c\/p\u003e\n\u003ch3\u003e배송\u003c\/h3\u003e\n\u003cp\u003e주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다.\u003cbr\u003e\u003cbr\u003e귀하의 상품이 완벽한 상태로 설치 준비가 완료된 채로 도착할 수 있도록 모든 노력을 기울이고 있습니다. \u003cbr\u003e\u003cbr\u003e상품이 손상되었거나 용도에 맞지 않을 경우, 수령일로부터 30일 이내에 무조건 환불 또는 교환해 드립니다.\u003cbr\u003e\u003cbr\u003eTesla \u003cspan data-mce-fragment=\"1\"\u003eRGB LED 프렁크 라이트 스트립\u003c\/span\u003e에 대해 궁금한 점이 있으시면 온라인 고객 서비스에 문의하시거나, 📧 이메일 : market@tesery.com 또는 📞 전화\/Whatsapp\/Facebook\/메시지：+86 185 6670 3079로 연락해 주세요\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요!","offer_id":43963487551720,"sku":"","price":49.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2023.11-현재","offer_id":46592410288360,"sku":"TSL1005-new","price":49.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 2017-2023.10 \u0026 Model Y 2021+","offer_id":43963487650024,"sku":"TSL1005","price":49.0,"currency_code":"USD","in_stock":true},{"title":"Model S 2012-2023 \u0026 Model X 2016-2023","offer_id":44336285483240,"sku":"TSL1007","price":49.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-rgb-led-frunk-light-strip-for-model-3ys-x-888541.jpg?v=1717646323"},{"product_id":"model-3-y-x-treme-tail-light","title":"TESERY X-treme 테일 라이트 for 모델 3\/Y","description":"\u003cul\u003e\n\u003cli\u003e이 최신 테일라이트 어셈블리는 Model 3 \u0026 Model 3 Highland 2021-현재 \u0026 Model Y \u0026 Model Y Juniper 2021-2025와 호환됩니다.\u003c\/li\u003e\n\u003cli\u003e풀 LED 테일라이트로 업그레이드하여 기존 차량 라이트를 대체하며, 더 밝고 안전합니다. 도로 주행 합법이며 연간 검사 통과가 가능합니다.\u003c\/li\u003e\n\u003cli\u003e기존 테일라이트 스타일을 기반으로 새롭게 업그레이드되었으며, 원래 차량 몰드에 맞춰 정성스럽게 제작되었습니다.\u003c\/li\u003e\n\u003cli\u003e테슬라 테일라이트는 주행 시 다섯 가지 조명 모드를 제공합니다. 폭 지시등은 숨쉬기 효과의 동적 스캔 라이트를 가지고 있으며, 브레이크 LED 라이트는 하이라이트 알림 기능이 있습니다. 방향 지시등은 점진적 스트리머 효과를 가지며, 후진 차량은 이중 LED 안전 후진등 경고와 하이라이트 알림 기능이 있습니다. 안개등도 하이라이트 알림 기능으로 안전성을 높였습니다.\u003c\/li\u003e\n\u003cli\u003e포장: 완전 새 제품인 테일라이트 어셈블리 한 쌍! 수정 및 전구 교체 불필요, 설치가 간편합니다. (설명서 포함, 미포함 시 연락주세요).\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 빨간색","offer_id":43998684020968,"sku":"","price":509.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ RGB (호주 도로에서 금지됨)","offer_id":46971092435176,"sku":null,"price":559.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-2023.10 \/ 빨간색","offer_id":43998684053736,"sku":"TSL2303-3","price":509.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-2023.10 \/ RGB (호주 도로에서 금지됨)","offer_id":46971092467944,"sku":"TSL2303-RGB-3","price":559.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2021-2025.3 \/ 빨간색","offer_id":43998684086504,"sku":"TSL2303-Y","price":509.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2021-2025.3 \/ RGB (호주 도로에서 금지됨)","offer_id":46971092500712,"sku":"TSL2303-RGB-Y","price":559.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-x-treme-tail-light-for-model-3y-298530.jpg?v=1739907032"},{"product_id":"tail-light-assembly-for-tesla-model-3-model-y-1","title":"TESERY 테슬라 모델 3\/Y용 풀 LED 테일 라이트","description":"\u003cp\u003e\u003cspan\u003e원래 Tesla 테일 라이트의 완벽한 교체품을 찾고 있다면, 저희 매장의 제품을 반드시 선택해야 합니다. 완벽하게 맞고 설치가 매우 쉬우며, 단지 플러그만 꽂으면 됩니다! Tesla Model 3\/Y 테일 라이트는 차량에 완벽하게 맞고 설치가 쉽고 고품질입니다. LED 라이트는 선명하고 밝으며 긴 수명을 자랑하면서 차량의 외관을 더욱 돋보이게 합니다!\u003c\/span\u003e\u003c\/p\u003e\n\u003ch3\u003e제품 설명\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e【완벽한 적합성】\u003c\/strong\u003e원래 매개변수에 따라 완전히 제작된 이 Tesla 테일 라이트는 2017-2023 Model 3 및 2020-2024 ON Model Y에 거의 틈새 없이 완벽하게 적합합니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【설치 용이】\u003c\/strong\u003e플러그 앤 플레이, 설치가 쉽고 직접 교체 가능합니다. 간편한 조작을 위한 매뉴얼을 제공합니다. 하지만 Model Y\/3 테일 라이트 설치는 전문가에게 맡길 것을 권장합니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【고품질】\u003c\/strong\u003eLED 램프 비드 + PC 램프갓. 저희 Tesla 테일 라이트는 방수, 방진 및 견고합니다. 고품질 플러그와 코드로 내구성을 보장합니다. 악천후에서도 테일 라이트가 완벽하게 작동합니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【LED 라이트 포함】\u003c\/strong\u003eLED 라이트는 선명하고 밝으며, 긴 수명을 자랑하면서 차량의 외관을 더욱 돋보이게 합니다. 고휘도 후진등과 브레이크등은 도로에서의 안전을 지켜줍니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【다이내믹 효과】\u003c\/strong\u003e다이내믹 애니메이션 효과로 차량이 새것처럼 보이며, 차량 스타일을 바꾸고, 밤에 당신과 가족의 운전을 더 안전하게 만듭니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【공지!]\u003c\/strong\u003e 이것은 특별 버전입니다. 후진등이 듀얼이며, 방향 지시등은 빨간색이고, 브레이크 시 방향 지시등이 브레이크등과 함께 켜집니다.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cdiv\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/teslataillights9.jpg?v=1675219836\"\u003e\u003c\/div\u003e\n\u003cdiv\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/teslataillights8.jpg?v=1675219851\"\u003e\u003c\/div\u003e\n\u003ch3 class=\"a-section a-spacing-large bucket\"\u003e제품 사양\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e제품명:\u003c\/strong\u003e 업그레이드 테일 라이트 \u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e호환성:\u003c\/strong\u003e Tesla Model 3 2017-2023 및 Model Y 2017-2023에 적합\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e재질: \u003c\/strong\u003e\u003cspan data-mce-fragment=\"1\"\u003eLED 램프 비드 + PC 램프갓\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e브랜드:\u003c\/strong\u003e Tesery\u003c\/li\u003e\n\u003c\/ul\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 프리몬트\/텍사스 기가","offer_id":45566339776744,"sku":"","price":579.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 상하이 기가","offer_id":46482461917416,"sku":"","price":579.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 베를린 기가","offer_id":46482461950184,"sku":"","price":579.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 2020-2025.03 \/ 프리몬트\/텍사스 기가","offer_id":45566339842280,"sku":"TSL2304-US","price":579.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 2020-2025.03 \/ 상하이 기가","offer_id":46482461982952,"sku":"TSL2304-CN","price":579.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 2020-2025.03 \/ 베를린 기가","offer_id":46482462015720,"sku":"TSL2304-EU","price":579.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 프리몬트\/텍사스 기가","offer_id":45566339809512,"sku":"TSL2304-US","price":579.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 상하이 기가","offer_id":46482462048488,"sku":"TSL2304-CN","price":579.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 베를린 기가","offer_id":46482462081256,"sku":"TSL2304-EU","price":579.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-full-led-tail-light-for-tesla-model-3y-990913.jpg?v=1739907027"},{"product_id":"model-3-y-starlink-full-width-strip-taillight","title":"TESERY 스타링크 전폭 스트립 테일라이트 모델 3\/Y용","description":"\u003ch2 style=\"text-align: center;\"\u003e\n\u003cstrong\u003e\u003cb\u003e \u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003eS\u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003etarlink\u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e \u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e가득 찬\u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e-\u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e너비\u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e \u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e스트립\u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e \u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e테일라이트\u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e Model3\/Y용 \u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\n\u003c\/h2\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e특징\u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003e-Tesla OEM 테일라이트 스타일을 기반으로 업그레이드 및 최적화\u003c\/p\u003e\n\u003cp\u003e-OEM 테일라이트 동적 효과와 우수한 동기화, 인지도를 높임\u003c\/p\u003e\n\u003cp\u003e차량 조명 명령을 표현하여 안전성을 향상시킵니다.\u003c\/p\u003e\n\u003cp\u003e-통과형 외관 디자인 채택, 높은 인지도로\u003c\/p\u003e\n\u003cp\u003e테슬라 애호가의 개성; 기술과 패션 감각을 더함\u003c\/p\u003e\n\u003cp\u003e-저전력 소비, 향상된 밝기, 추가 전력 소비 없음\u003cbr\u003e-전기 도금 라듐 조각 공정, 고급스러운 질감; 방수, 방진\u003cbr\u003e플러그 앤 플레이 디자인, 비파괴 설치\u003c\/p\u003e\n\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e사양\u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cspan\u003e\u003c\/span\u003e\u003cstrong\u003e\u003cspan\u003e적합 차량:\u003c\/span\u003e\u003c\/strong\u003eTesla Model Y\/3 2020-2024\u003c\/li\u003e\n\u003cli\u003e\u003cspan style=\"color: #ff2a00;\"\u003e참고：\u003cspan style=\"color: #000000;\"\u003eStarlink 전면 전체 폭 스트립 테일라이트만 해당됩니다.\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e패키지 목록 \u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003e1 × Starlink 전면 전체 폭 스트립 테일라이트 Model Y\/3 2017-2023\u003c\/p\u003e\n\u003cp\u003e저희 Starlink 전면 전체 폭 스트립 테일라이트를 좋아하신다면, 장바구니에 추가하시고 지금 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다. Starlink 전면 전체 폭 스트립 테일라이트에 대해 궁금한 점이 있으시면 온라인 고객 서비스에 문의하시거나 이메일을 보내주세요.\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 프리몬트\/텍사스 기가","offer_id":44589319684328,"sku":"","price":659.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 상하이 기가","offer_id":47052478939368,"sku":null,"price":659.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 베를린 기가","offer_id":47052478972136,"sku":null,"price":659.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 프리몬트\/텍사스 기가","offer_id":44955717894376,"sku":"TSL2311-3-US","price":659.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 상하이 기가","offer_id":47052479070440,"sku":"TSL2311-3-CN","price":659.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 베를린 기가","offer_id":47052479103208,"sku":"TSL2311-3-EU","price":659.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 2020-2025.03 \/ 프리몬트\/텍사스 기가","offer_id":44955665662184,"sku":"TSL2311-Y-US","price":659.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 2020-2025.03 \/ 상하이 기가","offer_id":47052479004904,"sku":"TSL2311-Y-CN","price":659.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 2020-2025.03 \/ 베를린 기가","offer_id":47052479037672,"sku":"TSL2311-Y-EU","price":659.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-starlink-full-width-strip-taillight-for-model-3y-807850.jpg?v=1739907126"},{"product_id":"tesla-model-y-pilot-light","title":"TESERY 모델 Y(2020-2025.03)용 파일럿 라이트","description":"\u003ch1 style=\"text-align: center;\"\u003e\n\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e파일럿 라이트\u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e \u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e테슬라 모델 Y 2020-2025.03용\u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\n\u003c\/h1\u003e\n\u003cp class=\"output\"\u003e모델 Y 파일럿 라이트로 테슬라 모델 Y를 업그레이드하세요. 2020-2023 모델 Y에 완벽하게 맞도록 특별히 설계된 이 3-in-1 라이트는 LED 방향 지시등, 주행등, 브레이크등 역할을 합니다. 듀얼 컬러 스위치백 기능은 순차적으로 흐르는 역동적인 호박색 LED 방향 지시등을 보여주며, 빨간색 주행등과 브레이크등은 다양한 기상 조건에서 가시성을 높여줍니다. 방수 및 내구성 있는 소재로 제작되어 충격, 먼지, 녹에 강합니다. 모델 Y 파일럿 라이트로 안전과 스타일을 향상시키세요.\u003c\/p\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e특징\u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e【모델 Y 전용 설계】\u003c\/strong\u003e모델 Y 차량 데이터에 따라 제작되어 2020-2023 테슬라 모델 Y에 완벽하게 맞습니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【3-in-1 라이트】\u003c\/strong\u003eLED 방향 지시등, 주행등 및 브레이크등. 듀얼 컬러 스위치백 기능으로 호박색 방향 지시등은 역동적인 LED 순차 흐름, 빨간색 주행등과 브레이크등 포함.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【방수 소재】\u003c\/strong\u003eIP67 방수 스모크 PP 렌즈 및 견고한 ABS 플라스틱 하우징, 충격 방지, 방진, 방청. 모델 Y 파일럿 라이트는 다양한 기상 조건에서 완벽하게 작동합니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【업그레이드 디자인】\u003c\/strong\u003e고출력 LED 칩, 역동적인 호박색 LED 방향 지시등 및 고휘도 주행등으로 설계되어 안개 낀 날과 비 오는 날 가시성이 향상되어 도로상의 다른 차량이 쉽게 인지할 수 있어 안전 운전에 도움을 줍니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【쉬운 설치】\u003c\/strong\u003e3개의 설치 도구와 설명서가 포함된 플러그 앤 플레이 케이블. 직접 설치하기 쉬운 진정한 DIY 제품으로 공장 견인 커버를 직접 교체하며, 수정이나 절단이 필요 없고 추가 저항기나 릴레이도 필요 없습니다. 특별 설계된 플러그 앤 플레이 케이블로 트레일러 히치를 설치할 때마다 모델 Y 파일럿 라이트를 쉽게 분리할 수 있습니다.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e사양\u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e제품명:\u003c\/strong\u003e 모델 Y 파일럿 라이트\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cspan\u003e\u003c\/span\u003e\u003cstrong\u003e\u003cspan\u003e적합 차량:\u003c\/span\u003e\u003c\/strong\u003e테슬라 모델 Y 2020-2023\u003c\/li\u003e\n\u003cli\u003e\n\u003cb\u003e\u003cspan\u003e\u003c\/span\u003e\u003c\/b\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e재질: \u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003eABS\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e패키지 목록 \u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003e1 ×\u003cspan\u003e 모델 Y 파일럿 라이트\u003c\/span\u003e\u003c\/p\u003e\n\u003ch2\u003e배송\u003c\/h2\u003e\n\u003cp\u003e상품이 완벽한 상태로 도착하여 설치 준비가 완료되도록 모든 노력을 기울이고 있습니다.\u003c\/p\u003e\n\u003cp\u003e모델 Y 파일럿 라이트가 마음에 드시면 장바구니에 담고 지금 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다.\u003c\/p\u003e\n\u003cp\u003e상품이 손상되었거나 용도에 맞지 않을 경우 수령일로부터 30일 이내 무조건 환불 또는 교환해 드립니다.\u003c\/p\u003e\n\u003cp\u003e모델 Y 파일럿 라이트에 대해 궁금한 점이 있으시면 온라인 고객 서비스에 문의하시거나 📧\u003cspan\u003e \u003c\/span\u003e\u003cspan data-mce-fragment=\"1\"\u003e이메일:\u003c\/span\u003e\u003cspan data-mce-fragment=\"1\"\u003e \u003c\/span\u003e\u003cspan data-mce-fragment=\"1\"\u003eabbynina@tesery.com\u003c\/span\u003e\u003cspan data-mce-fragment=\"1\"\u003e \u003c\/span\u003e\u003cspan data-mce-fragment=\"1\"\u003e또는📞 전화\/Whatsapp\/Facebook\/메시지：+86 16620794187\u003c\/span\u003e\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"블랙 - 하트비트 스타일","offer_id":44410610450664,"sku":"TSL2318-black","price":120.0,"currency_code":"USD","in_stock":true},{"title":"블랙 - 횡단보도","offer_id":44707619864808,"sku":"TSL2321-black","price":120.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-pilot-light-for-model-y-2020-202503-9945208.png?v=1754742701"},{"product_id":"tesla-fog-light-for-model-3-y","title":"TESERY 수정된 안개등 순차 방향 지시등 for 모델 3\/Y","description":"\u003ch1 style=\"text-align: center;\" id=\"offer-template-0\"\u003eTesla Model 3\/Y 2017-2024용 Modified Fog Light\u003c\/h1\u003e\n\u003cp\u003e\u003ciframe title=\"Fendinebbia Modificato per Tesla Model Y\/3 - Stile e Sicurezza Unite! 🌟#tutorials #tutorial\" src=\"https:\/\/www.youtube.com\/embed\/A7L0nc5ZyhE\" height=\"360\" width=\"100%\" allowfullscreen=\"\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" frameborder=\"0\"\u003e\u003c\/iframe\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ciframe title=\"installazione nuovi fendinebbia 2024 Tesla Model y RWD\" src=\"https:\/\/www.youtube.com\/embed\/PdIEk0_h6CU\" height=\"360\" width=\"100%\" allowfullscreen=\"\" referrerpolicy=\"strict-origin-when-cross-origin\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" frameborder=\"0\"\u003e\u003c\/iframe\u003e\u003c\/p\u003e\n\u003ch2\u003e특징\u003c\/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\"Blade\" 스타일 주간 주행등 디자인, 원래 차량 몰드\u003c\/li\u003e\n\u003cli\u003e4-in-1 다기능 통합 조명 (안개등 + 주간 주행등 + 코너링 라이트 + 호흡등)\u003c\/li\u003e\n\u003cli\u003e고휘도, 높은 광효율, 운전 인식 능력 향상\u003c\/li\u003e\n\u003cli\u003e방수 및 방폭, 안전하고 내구성 있음\u003c\/li\u003e\n\u003cli\u003e에너지 절약 및 환경 보호, 긴 수명\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch2\u003e사양\u003c\/h2\u003e\n\u003cp\u003e모델: Tesla Model 3 \/ Model Y 2017-2023\u003cbr\u003e재질: ABS\u003cbr\u003eTesla Model 3 Model Y용 TESLA Modified Fog Light 2개 세트\u003c\/p\u003e\n\u003ch2\u003e배송\u003c\/h2\u003e\n\u003cp\u003e귀하의 상품이 완벽한 상태로 설치 준비가 완료된 채로 도착할 수 있도록 모든 노력을 기울이고 있습니다.\u003cbr\u003e\u003cbr\u003e만약 Tesla Modified Fog Light- [US Version\/China Version]를 좋아하신다면, 장바구니에 추가하고 지금 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다.\u003cbr\u003e\u003cbr\u003e상품이 손상되었거나 용도에 맞지 않을 경우, 수령일로부터 30일 이내 무조건 환불 또는 교환해 드립니다.\u003cbr class=\"img-brk\"\u003e\u003cbr\u003e\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"모델 3 2017-2023.10 \u0026 모델 Y 2020-2025.3","offer_id":44538311704808,"sku":"TSL2319","price":319.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/modified-fog-light-for-tesla-model-3y-140881.jpg?v=1743928757"},{"product_id":"eagle-eye-rear-tail-light-for-tesla-model-3-model-y","title":"TESERY 이글 아이 테일라이트 업그레이드 for 모델 3\/Y","description":"\u003ch1 style=\"text-align: center;\"\u003eTesla Model 3 \/ Model Y용 Rear Tail Light\u003c\/h1\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e제품 설명\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003e\u003cspan\u003e[[ADAPTATION] \u003c\/span\u003e\u003cspan\u003e \u003c\/span\u003e\u003cspan\u003eTesla Model 3 Model Y 2017 2018 2019 2020 2021 2022에 완벽히 맞는 테일라이트 어셈블리. \u003c\/span\u003e\u003cspan\u003e2023.2024 \u003c\/span\u003e\u003cspan\u003e2017-2024년 완벽 호환\u003c\/span\u003e\u003cspan\u003e Tesla Model 3 좌핸들 롱 레인지 세단\/퍼포먼스 세단\/스탠다드 플러스 세단 4도어, Model Y 롱 레인지 스포츠 유틸리티\/퍼포먼스 스포츠 유틸리티 4도어.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003e[MAGIC STAR DESIGN] 독특한 매직 스타 디자인 LED 테일라이트로 밝은 색상으로 도로 위에서 차량을 더 멋지고 위엄 있게 보이게 합니다. 3D 동적 효과가 환상적입니다. 매끄러운 마감으로 차량 외관을 업그레이드하며 먼지가 쉽게 쌓이지 않습니다. 이 멋진 테일라이트로 차량을 장착하고 멋진 여행을 떠나세요!\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003e[HIGH PERFORMANCE HEADLIGHTS] 주간 주행등, 순차 방향 지시등, 로우빔 및 하이빔을 포함한 조명 모드. 태양광의 색온도에 가까운 더 밝고, 더 선명하며, 더 하얀 빛을 제공하고, 더 긴 조명 범위와 더 넓은 시야를 제공하여 자신 있게 운전할 수 있습니다. 자동차 등급 ABS 쉘과 투명 렌즈로 제작되어 수명이 깁니다. 엄격한 테스트 후 밀봉 성능이 우수합니다.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003e[SIMPLE INSTALLATION] 배선이나 수정 없이 플러그 앤 플레이 설치. 원래 차량 설계에 따라 직접 교체할 수 있습니다. 설치 시간이 오래 걸리지 않는 고신뢰성, 고성능 후미등입니다.\u003c\/span\u003e\u003c\/p\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e패키지 목록 \u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003eModel Y\/3 2020-2024용 Rear Tail Light 4개 세트 ×Rear Tail Light\u003c\/p\u003e\n\u003cp\u003e저희 Rear Tail Light를 좋아하신다면 장바구니에 추가하시고 지금 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다. Pilot light에 대해 궁금한 점이 있으시면 온라인 고객 서비스에 문의하시거나 이메일을 보내주세요.\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ Fremont\/Texas Giga【RED Turn Signals】","offer_id":47043298951400,"sku":null,"price":519.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 상하이 기가","offer_id":47043298984168,"sku":null,"price":519.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 베를린 기가","offer_id":47043299016936,"sku":null,"price":519.99,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ Fremont\/Texas Giga【RED Turn Signals】","offer_id":45566483169512,"sku":"TSL2312-US","price":519.99,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 상하이 기가","offer_id":46482451529960,"sku":"TSL2312-CN","price":519.99,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 베를린 기가","offer_id":46482451562728,"sku":"TSL2312-EU","price":519.99,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025.3 \/ Fremont\/Texas Giga【RED Turn Signals】","offer_id":45566483136744,"sku":"TSL2312-US","price":519.99,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025.3 \/ 상하이 기가","offer_id":46482451464424,"sku":"TSL2312-CN","price":519.99,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025.3 \/ 베를린 기가","offer_id":46482451497192,"sku":"TSL2312-EU","price":519.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-eagle-eye-taillight-upgrade-for-model-3y-571075.jpg?v=1741093130"},{"product_id":"model-3-y-4-pin-turn-brake-lamp-inner-tail-light-replacement","title":"4핀 턴 브레이크 램프 및 내부 테일 라이트 교체용 모델 3\/Y (21-24)","description":"\u003c!-- Tesla Tail Light Replacement Guide - Compact Collapsible Version --\u003e\n\u003cdiv style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%); padding: 14px; border-radius: 10px; max-width: 400px; margin: 10px auto; box-shadow: 0 6px 20px rgba(0,0,0,0.15);\"\u003e\n\u003c!-- Header --\u003e\n\u003cdiv style=\"text-align: center; margin-bottom: 12px;\"\u003e\n\u003ch2 style=\"color: white; margin: 0; font-size: 18px; font-weight: bold; margin-bottom: 3px;\"\u003e턴 브레이크 램프 및 내부 테일 라이트\u003c\/h2\u003e\n\u003cp style=\"color: #fecaca; margin: 0; font-size: 12px; font-weight: 500;\"\u003eModel 3 (21-23) \/Model Y (20-24) \u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- Critical Warning - Always Visible --\u003e\n\u003cdiv style=\"background: rgba(255,255,255,0.2); border-radius: 6px; padding: 10px; text-align: center; margin-bottom: 10px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3);\"\u003e\n\u003cp style=\"color: white; margin: 0; font-size: 12px; line-height: 1.4; font-weight: 600;\"\u003e⚠️ 주문 전에 OE 부품 번호 및 4-PIN을 확인하세요!\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- Collapsible Sections --\u003e\n\u003cdiv style=\"display: flex; flex-direction: column; gap: 6px;\"\u003e\n\u003c!-- OE Part Numbers Section --\u003e\n\u003cdetails style=\"background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.1);\"\u003e\n\u003csummary style=\"background: linear-gradient(135deg, #dc2626, #b91c1c); color: white; padding: 10px 12px; cursor: pointer; font-weight: 600; font-size: 13px; list-style: none; transition: all 0.2s ease; display: flex; align-items: center; justify-content: space-between;\"\u003e\u003cspan\u003e🔧 OE 부품 번호\u003c\/span\u003e \u003cspan style=\"font-size: 14px; transition: transform 0.3s ease;\"\u003e▼\u003c\/span\u003e\u003c\/summary\u003e\n\u003cdiv style=\"padding: 12px;\"\u003e\n\u003cdiv style=\"display: grid; grid-template-columns: 1fr; gap: 6px;\"\u003e\n\u003cdiv style=\"background: #fef2f2; border-radius: 4px; padding: 8px; border-left: 3px solid #dc2626;\"\u003e\n\u003cdiv style=\"font-weight: bold; color: #991b1b; font-size: 11px; margin-bottom: 3px;\"\u003e턴 브레이크 램프:\u003c\/div\u003e\n\u003cdiv style=\"color: #7f1d1d; font-size: 11px; line-height: 1.3;\"\u003e\n\u003cstrong\u003e왼쪽:\u003c\/strong\u003e 1502086-00-D 1502086\u003cbr\u003e\u003cstrong\u003e오른쪽:\u003c\/strong\u003e 1502087-00-D 1502087\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv style=\"background: #fef2f2; border-radius: 4px; padding: 8px; border-left: 3px solid #dc2626;\"\u003e\n\u003cdiv style=\"font-weight: bold; color: #991b1b; font-size: 11px; margin-bottom: 3px;\"\u003e내부 테일 라이트:\u003c\/div\u003e\n\u003cdiv style=\"color: #7f1d1d; font-size: 11px; line-height: 1.3;\"\u003e\n\u003cstrong\u003e왼쪽:\u003c\/strong\u003e 1502088-00-B 1502088\u003cbr\u003e\u003cstrong\u003e오른쪽:\u003c\/strong\u003e 1502089-00-B 1502089\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c!-- Pin Configuration Section --\u003e\n\u003cdetails style=\"background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.1);\"\u003e\n\u003csummary style=\"background: linear-gradient(135deg, #059669, #047857); color: white; padding: 10px 12px; cursor: pointer; font-weight: 600; font-size: 13px; list-style: none; transition: all 0.2s ease; display: flex; align-items: center; justify-content: space-between;\"\u003e\u003cspan\u003e🔌 4-PIN 커넥터 정보\u003c\/span\u003e \u003cspan style=\"font-size: 14px; transition: transform 0.3s ease;\"\u003e▼\u003c\/span\u003e\u003c\/summary\u003e\n\u003cdiv style=\"padding: 12px;\"\u003e\n\u003cdiv style=\"background: #ecfdf5; border-radius: 4px; padding: 10px; border: 1px solid #059669; text-align: center;\"\u003e\n\u003cdiv style=\"display: flex; align-items: center; justify-content: center; margin-bottom: 6px;\"\u003e\n\u003cdiv style=\"background: #059669; color: white; border-radius: 50%; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 12px; margin-right: 6px;\"\u003e4\u003c\/div\u003e\n\u003cspan style=\"color: #047857; font-weight: bold; font-size: 12px;\"\u003e이 제품은 4-PIN이 필요합니다\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cp style=\"color: #065f46; font-size: 10px; margin: 0;\"\u003e주문 전에 커넥터가 4핀인지 확인하세요\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c!-- 3-PIN Redirect Section - Moved to Last --\u003e\n\u003cdetails style=\"background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.1);\"\u003e\n\u003csummary style=\"background: linear-gradient(135deg, #9333ea, #7c3aed); color: white; padding: 10px 12px; cursor: pointer; font-weight: 600; font-size: 13px; list-style: none; transition: all 0.2s ease; display: flex; align-items: center; justify-content: space-between;\"\u003e\u003cspan\u003e🔄 3-PIN 버전이 필요하신가요?\u003c\/span\u003e \u003cspan style=\"font-size: 14px; transition: transform 0.3s ease;\"\u003e▼\u003c\/span\u003e\u003c\/summary\u003e\n\u003cdiv style=\"padding: 12px;\"\u003e\n\u003cdiv style=\"background: #9333ea; border-radius: 6px; padding: 8px; text-align: center;\"\u003e\n\u003cp style=\"color: white; margin: 0 0 6px 0; font-size: 11px; font-weight: 600;\"\u003e3-PIN 커넥터가 있나요?\u003c\/p\u003e\n\u003ca style=\"background: rgba(255,255,255,0.2); color: white; padding: 6px 12px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 11px; display: inline-block; transition: all 0.2s ease; border: 1px solid rgba(255,255,255,0.3);\" href=\"https:\/\/www.tesery.com\/products\/taillght-turn-brake-lamp-for-tesla-model-3-y\"\u003e 3-PIN 버전은 여기를 클릭 → \u003c\/a\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Enhanced CSS for Shopify compatibility --\u003e\n\u003cstyle\u003e\n\/* Enhance the collapsible sections *\/\ndetails[open] summary span:last-child {\n  transform: rotate(180deg);\n}\n\ndetails summary:hover {\n  opacity: 0.9;\n  transform: translateY(-1px);\n}\n\ndetails summary::-webkit-details-marker {\n  display: none;\n}\n\ndetails summary::marker {\n  display: none;\n}\n\n\/* Animation for content *\/\ndetails[open] \u003e div {\n  animation: slideDown 0.3s ease-out;\n}\n\n@keyframes slideDown {\n  from {\n    opacity: 0;\n    transform: translateY(-8px);\n  }\n  to {\n    opacity: 1;\n    transform: translateY(0);\n  }\n}\n\n\/* Hover effects for 3-PIN link *\/\na:hover {\n  background: rgba(255,255,255,0.3) !important;\n  transform: translateY(-1px);\n}\n\n\/* Mobile responsive for Shopify *\/\n@media (max-width: 480px) {\n  div[style*=\"max-width: 400px\"] {\n    margin: 8px 3px !important;\n    padding: 10px !important;\n  }\n  \n  h2[style*=\"font-size: 18px\"] {\n    font-size: 16px !important;\n  }\n  \n  details summary {\n    font-size: 12px !important;\n    padding: 8px 10px !important;\n  }\n  \n  div[style*=\"padding: 12px\"] {\n    padding: 10px !important;\n  }\n  \n  div[style*=\"gap: 6px\"] {\n    gap: 4px !important;\n  }\n}\n\u003c\/style\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 방향 브레이크 램프 \/ 왼쪽","offer_id":47427698458856,"sku":null,"price":129.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 방향 브레이크 램프 \/ 오른쪽","offer_id":47427698491624,"sku":null,"price":129.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 방향 브레이크 램프 \/ 한 쌍","offer_id":47427698524392,"sku":null,"price":249.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 내부 테일 라이트 \/ 왼쪽","offer_id":46712145182952,"sku":"","price":129.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 내부 테일 라이트 \/ 오른쪽","offer_id":47054752219368,"sku":null,"price":129.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 내부 테일 라이트 \/ 한 쌍","offer_id":47054752284904,"sku":null,"price":249.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 내부 테일 라이트 및 방향 브레이크 램프 \/ 왼쪽","offer_id":47054752186600,"sku":null,"price":249.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 내부 테일 라이트 및 방향 브레이크 램프 \/ 오른쪽","offer_id":47054752252136,"sku":null,"price":249.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 내부 테일 라이트 및 방향 브레이크 램프 \/ 한 쌍","offer_id":47054752317672,"sku":null,"price":479.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가 \/ 방향 브레이크 램프 \/ 왼쪽","offer_id":47427698557160,"sku":"TSLLJ0104-left","price":116.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가 \/ 방향 브레이크 램프 \/ 오른쪽","offer_id":47427698589928,"sku":"TSLLJ0104-right","price":129.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가 \/ 방향 브레이크 램프 \/ 한 쌍","offer_id":47427698622696,"sku":"TSLLJ0104","price":249.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가 \/ 내부 테일 라이트 \/ 왼쪽","offer_id":44437491548392,"sku":"TSLLJ0102-left","price":129.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가 \/ 내부 테일 라이트 \/ 오른쪽","offer_id":47054752383208,"sku":"TSLLJ0102-right","price":129.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가 \/ 내부 테일 라이트 \/ 한 쌍","offer_id":47054752448744,"sku":"TSLLJ0102","price":249.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가 \/ 내부 테일 라이트 및 방향 브레이크 램프 \/ 왼쪽","offer_id":47054752350440,"sku":"TSLLJ0102-left+TSLLJ0104-left","price":249.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가 \/ 내부 테일 라이트 및 방향 브레이크 램프 \/ 오른쪽","offer_id":47054752415976,"sku":"TSLLJ0102-right+TSLLJ0104-right","price":249.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가 \/ 내부 테일 라이트 및 방향 브레이크 램프 \/ 한 쌍","offer_id":47054752481512,"sku":"TSLLJ0102+TSLLJ0104","price":479.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가 \/ 방향 브레이크 램프 \/ 왼쪽","offer_id":47427698655464,"sku":"TSLLJ0104-left","price":129.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가 \/ 방향 브레이크 램프 \/ 오른쪽","offer_id":47427698688232,"sku":"TSLLJ0104-right","price":129.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가 \/ 방향 브레이크 램프 \/ 한 쌍","offer_id":47427698721000,"sku":"TSLLJ0104","price":224.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가 \/ 내부 테일 라이트 \/ 왼쪽","offer_id":44437491745000,"sku":"TSLLJ0102-left","price":129.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가 \/ 내부 테일 라이트 \/ 오른쪽","offer_id":47054752547048,"sku":"TSLLJ0102-right","price":129.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가 \/ 내부 테일 라이트 \/ 한 쌍","offer_id":47054752612584,"sku":"TSLLJ0102","price":224.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가 \/ 내부 테일 라이트 및 방향 브레이크 램프 \/ 왼쪽","offer_id":47054752514280,"sku":"TSLLJ0102-left+TSLLJ0104-left","price":249.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가 \/ 내부 테일 라이트 및 방향 브레이크 램프 \/ 오른쪽","offer_id":47054752579816,"sku":"TSLLJ0102-right+TSLLJ0104-right","price":249.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가 \/ 내부 테일 라이트 및 방향 브레이크 램프 \/ 한 쌍","offer_id":47054752645352,"sku":"TSLLJ0102+TSLLJ0104","price":479.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/TESERY_Taillight_Turn_Brake_Lamp_for_Model_3Y_7.jpg?v=1741845545"},{"product_id":"tesla-model-3-y-matrix-led-headlights","title":"Model 3\/Y용 매트릭스 LED 헤드라이트 교체 부품丨1514952\/1514953","description":"\u003c!-- Import Google Fonts --\u003e\n\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=DM+Sans:wght@400;500;600;700\u0026amp;family=Montserrat:wght@700;800\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n\/* Base Variables \u0026 Reset *\/\n.tpd-wrapper {\n  --tpd-primary: #0065b3;\n  --tpd-success: #10b981;\n  --tpd-danger: #ef4444;\n  --tpd-warning: #f59e0b;\n  --tpd-text-main: #333333;\n  --tpd-text-light: #666666;\n  --tpd-bg-light: #f9f9f9;\n  --tpd-border: #e5e5e5;\n  --tpd-radius-card: 20px;\n  --tpd-radius-img: 18px;\n  --tpd-radius-thumb: 12px;\n  --tpd-shadow: 0 8px 24px rgba(0,0,0,0.04);\n  --tpd-shadow-hover: 0 15px 35px rgba(0,0,0,0.1);\n\n  font-family: 'DM Sans', sans-serif;\n  color: var(--tpd-text-main);\n  line-height: 1.85;\n  max-width: 1320px;\n  margin: 0 auto;\n  padding: 20px;\n  box-sizing: border-box;\n}\n.tpd-wrapper * {\n  box-sizing: border-box;\n}\n.tpd-wrapper h2, .tpd-wrapper h3, .tpd-wrapper h4 {\n  font-family: 'Montserrat', sans-serif;\n  margin-top: 0;\n  color: var(--tpd-text-main);\n}\n.tpd-wrapper img {\n  max-width: 100%;\n  height: auto;\n  display: block;\n  border-radius: var(--tpd-radius-img);\n}\n\n\/* Force Section Spacing *\/\n.tpd-section {\n  margin-top: 100px !important;\n  margin-bottom: 100px !important;\n  clear: both;\n}\n.tpd-section-title {\n  font-size: 36px;\n  font-weight: 800;\n  text-align: center;\n  margin-bottom: 20px !important;\n}\n.tpd-section-subtitle {\n  font-size: 17px;\n  color: var(--tpd-text-light);\n  text-align: center;\n  max-width: 800px;\n  margin: 0 auto 50px auto !important;\n}\n\n\/* Top Hero Title *\/\n.tpd-hero-title {\n  font-size: 46px;\n  font-weight: 800;\n  line-height: 1.25;\n  text-align: center;\n  margin-bottom: 30px;\n}\n\n\/* Navigation *\/\n.tpd-nav {\n  display: flex;\n  justify-content: center;\n  gap: 15px;\n  flex-wrap: wrap;\n  margin-bottom: 80px;\n}\n.tpd-nav a {\n  text-decoration: none;\n  color: var(--tpd-text-main);\n  font-size: 14px;\n  font-weight: 600;\n  letter-spacing: 0.05em;\n  padding: 12px 24px;\n  border: 1px solid var(--tpd-border);\n  border-radius: 30px;\n  transition: all 0.3s ease;\n}\n.tpd-nav a:hover {\n  border-color: var(--tpd-primary);\n  color: var(--tpd-primary);\n  background-color: var(--tpd-bg-light);\n}\n\n\/* Product Intro *\/\n.tpd-hero-split {\n  display: grid;\n  grid-template-columns: 1fr 1fr;\n  gap: 60px;\n  align-items: center;\n  max-width: 1200px;\n  margin: 0 auto;\n}\n.tpd-hero-img img {\n  width: 100%;\n  border-radius: var(--tpd-radius-img);\n  box-shadow: 0 10px 30px rgba(0,0,0,0.08);\n  transition: transform 0.4s ease, box-shadow 0.4s ease;\n}\n.tpd-hero-img img:hover {\n  transform: translateY(-5px);\n  box-shadow: var(--tpd-shadow-hover);\n}\n.tpd-hero-content {\n  display: flex;\n  flex-direction: column;\n  gap: 30px;\n}\n\n\/* Notice Box *\/\n.tpd-notice-box {\n  background-color: #fff3cd;\n  border-left: 4px solid #ffc107;\n  padding: 18px 25px;\n  border-radius: 8px;\n  font-size: 15px;\n  color: #856404;\n  display: flex;\n  align-items: flex-start;\n  gap: 12px;\n  line-height: 1.6;\n}\n.tpd-notice-box svg {\n  flex-shrink: 0;\n  margin-top: 4px;\n}\n\n\/* Intro Features *\/\n.tpd-intro-features {\n  display: flex;\n  flex-direction: column;\n  gap: 25px;\n}\n.tpd-intro-feature {\n  display: flex;\n  align-items: flex-start;\n  gap: 18px;\n}\n.tpd-intro-feature-icon {\n  width: 36px;\n  height: 36px;\n  background: var(--tpd-bg-light);\n  border-radius: 50%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  color: var(--tpd-primary);\n  flex-shrink: 0;\n  margin-top: 2px;\n}\n.tpd-intro-feature h4 {\n  font-size: 19px;\n  margin-bottom: 6px;\n}\n.tpd-intro-feature p {\n  margin: 0;\n  font-size: 16px;\n  color: var(--tpd-text-light);\n}\n\n\/* Selection Guide *\/\n.tpd-guide-container {\n  max-width: 1200px;\n  margin: 0 auto;\n}\n.tpd-guide-split-card {\n  background: #fff;\n  border: 1px solid var(--tpd-border);\n  border-radius: var(--tpd-radius-card);\n  padding: 50px;\n  box-shadow: var(--tpd-shadow);\n  margin-bottom: 80px;\n}\n.tpd-guide-split {\n  display: grid;\n  grid-template-columns: 1fr 1fr;\n  gap: 50px;\n  align-items: center;\n}\n.tpd-comparison-img-wrap img {\n  max-width: 100%;\n  border-radius: var(--tpd-radius-img);\n  box-shadow: var(--tpd-shadow);\n  border: 1px solid var(--tpd-border);\n  margin: 0 auto;\n  display: block;\n}\n\n\/* Right Text Styles *\/\n.tpd-rule-content {\n  display: flex;\n  flex-direction: column;\n  gap: 30px;\n}\n.tpd-rule-card {\n  background: var(--tpd-bg-light);\n  border-left: 5px solid var(--tpd-primary);\n  border-radius: 12px;\n  padding: 30px;\n}\n.tpd-rule-card h4 {\n  font-size: 24px;\n  margin-bottom: 15px;\n  color: var(--tpd-primary);\n}\n.tpd-rule-card p {\n  margin: 0;\n  font-size: 16px;\n  color: var(--tpd-text-main);\n}\n.tpd-cs-box {\n  background: #fff;\n  border: 1px dashed #ccc;\n  border-radius: 12px;\n  padding: 25px;\n  display: flex;\n  align-items: flex-start;\n  gap: 15px;\n}\n.tpd-cs-box svg {\n  flex-shrink: 0;\n  color: var(--tpd-primary);\n  margin-top: 5px;\n}\n.tpd-cs-box p {\n  margin: 0;\n  font-size: 15px;\n  color: var(--tpd-text-light);\n}\n\n\/* Headlight Comparison *\/\n.tpd-comparison {\n  display: grid;\n  grid-template-columns: 1fr 1fr;\n  gap: 40px;\n}\n.tpd-comp-card {\n  background: #fff;\n  border: 2px solid var(--tpd-border);\n  border-radius: var(--tpd-radius-card);\n  padding: 40px;\n  text-align: center;\n  position: relative;\n  transition: all 0.3s ease;\n  display: flex;\n  flex-direction: column;\n  box-shadow: var(--tpd-shadow);\n}\n.tpd-comp-card.tpd-active {\n  border-color: var(--tpd-success);\n  background: linear-gradient(to bottom, #ffffff, #f0fdf4);\n}\n.tpd-comp-card.tpd-inactive {\n  border-color: var(--tpd-danger);\n  background: linear-gradient(to bottom, #ffffff, #fef2f2);\n}\n.tpd-comp-card h4 {\n  font-size: 26px;\n  margin-bottom: 25px;\n  color: var(--tpd-text-main);\n}\n.tpd-comp-card-subtitle {\n  font-size: 16px;\n  font-weight: 700;\n  color: var(--tpd-text-light);\n  margin-bottom: 15px;\n  text-align: left;\n}\n.tpd-comp-pn {\n  background: #fff;\n  border: 1px solid var(--tpd-border);\n  padding: 20px 25px;\n  border-radius: 12px;\n  font-family: 'DM Sans', sans-serif;\n  font-size: 15px;\n  line-height: 1.8;\n  text-align: left;\n  margin-bottom: 35px;\n  color: var(--tpd-text-main);\n  flex-grow: 1;\n  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);\n}\n.tpd-comp-pn ul {\n  margin: 0;\n  padding-left: 20px;\n}\n.tpd-comp-pn li {\n  margin-bottom: 10px;\n}\n.tpd-comp-pn li:last-child {\n  margin-bottom: 0;\n}\n.tpd-comp-pn strong {\n  color: var(--tpd-primary);\n  font-weight: 700;\n}\n.tpd-comp-card.tpd-inactive .tpd-comp-pn strong {\n  color: var(--tpd-text-main);\n}\n.tpd-comp-footer {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  gap: 18px;\n  margin-top: auto;\n}\n.tpd-status-icon {\n  width: 64px;\n  height: 64px;\n  border-radius: 50%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  color: #fff;\n  box-shadow: 0 4px 12px rgba(0,0,0,0.1);\n}\n.tpd-status-icon.success {\n  background: var(--tpd-success);\n}\n.tpd-status-icon.danger {\n  background: var(--tpd-danger);\n}\n.tpd-status-text {\n  font-size: 20px;\n  font-weight: 800;\n  letter-spacing: 0.5px;\n}\n.tpd-status-text.success {\n  color: var(--tpd-success);\n}\n.tpd-status-text.danger {\n  color: var(--tpd-danger);\n}\n\n\/* External Link Button *\/\n.tpd-shop-link {\n  display: inline-block;\n  padding: 14px 30px;\n  background-color: #fff;\n  color: var(--tpd-text-main);\n  border: 2px solid var(--tpd-border);\n  border-radius: 30px;\n  text-decoration: none;\n  font-weight: 700;\n  font-size: 15px;\n  transition: all 0.3s ease;\n  width: 100%;\n  max-width: 260px;\n}\n.tpd-shop-link:hover {\n  border-color: var(--tpd-danger);\n  color: var(--tpd-danger);\n}\n\n\/* Important Notes Grid *\/\n.tpd-notes-grid {\n  display: grid;\n  grid-template-columns: 1fr;\n  gap: 30px;\n  max-width: 1200px;\n  margin: 0 auto;\n}\n.tpd-note-card {\n  background: #fff;\n  border-radius: var(--tpd-radius-card);\n  box-shadow: var(--tpd-shadow);\n  overflow: hidden;\n  border: 1px solid var(--tpd-border);\n}\n.tpd-note-blue { border-left: 6px solid var(--tpd-primary); }\n.tpd-note-orange { border-left: 6px solid var(--tpd-warning); }\n.tpd-note-header {\n  display: flex;\n  align-items: center;\n  gap: 15px;\n  padding: 25px 30px;\n  background: var(--tpd-bg-light);\n  border-bottom: 1px solid var(--tpd-border);\n}\n.tpd-note-header h3 {\n  margin: 0;\n  font-size: 22px;\n}\n.tpd-note-blue .tpd-note-header h3 { color: var(--tpd-primary); }\n.tpd-note-orange .tpd-note-header h3 { color: #d97706; }\n.tpd-note-body { padding: 30px; }\n.tpd-note-body p {\n  margin: 0 0 15px 0;\n  font-size: 16px;\n  color: var(--tpd-text-light);\n  line-height: 1.7;\n}\n.tpd-note-body h4 {\n  font-size: 18px;\n  color: var(--tpd-text-main);\n  margin: 25px 0 10px 0;\n}\n.tpd-note-body h4:first-child { margin-top: 0; }\n\n\/* Highlight Box *\/\n.tpd-highlight-box {\n  display: flex;\n  align-items: flex-start;\n  gap: 15px;\n  background: #f0f7ff;\n  padding: 20px;\n  border-radius: 12px;\n  margin-top: 20px;\n}\n.tpd-highlight-box p { margin: 0; color: #0c4a6e; }\n\n\/* Step List *\/\n.tpd-steps-container {\n  display: flex;\n  flex-direction: column;\n  gap: 15px;\n  margin: 20px 0;\n}\n.tpd-step-item {\n  display: flex;\n  align-items: flex-start;\n  gap: 15px;\n  background: #fffbeb;\n  padding: 20px;\n  border-radius: 12px;\n  border: 1px solid #fde68a;\n}\n.tpd-step-item svg {\n  flex-shrink: 0;\n  color: #d97706;\n  margin-top: 2px;\n}\n.tpd-step-item strong {\n  display: block;\n  color: #92400e;\n  font-size: 17px;\n  margin-bottom: 5px;\n}\n.tpd-step-item p { margin: 0; color: #b45309; font-size: 15px; }\n\n\/* Disclaimer Box *\/\n.tpd-disclaimer-box {\n  margin-top: 25px;\n  padding-top: 20px;\n  border-top: 1px dashed var(--tpd-border);\n  display: flex;\n  align-items: flex-start;\n  gap: 12px;\n}\n.tpd-disclaimer-box svg {\n  flex-shrink: 0;\n  color: var(--tpd-text-light);\n  margin-top: 4px;\n}\n.tpd-disclaimer-box p { margin: 0; font-size: 14px; }\n\n\/* Video Container - FIXED: Better YouTube fit with black background *\/\n.tpd-video-container {\n  position: relative;\n  width: 100%;\n  padding-bottom: 56.25%;\n  height: 0;\n  overflow: hidden;\n  border-radius: var(--tpd-radius-card);\n  box-shadow: var(--tpd-shadow);\n  max-width: 1200px;\n  margin: 0 auto;\n  background: #000;\n}\n.tpd-video-container iframe {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  border-radius: var(--tpd-radius-card);\n  border: none;\n}\n\n\/* Video Thumbnail Navigation *\/\n.tpd-video-nav {\n  max-width: 1200px;\n  margin: 20px auto 0 auto;\n  display: flex;\n  gap: 20px;\n  align-items: center;\n}\n\n@media (min-width: 769px) {\n  .tpd-video-nav-thumbnails { display: flex; gap: 12px; flex: 0 0 auto; }\n  .tpd-video-nav-info {\n    flex: 1 1 auto;\n    padding-left: 20px;\n    border-left: 1px solid var(--tpd-border);\n  }\n  .tpd-video-nav-info h4 {\n    font-family: 'Montserrat', sans-serif;\n    font-size: 18px;\n    margin: 0 0 8px 0;\n    color: var(--tpd-text-main);\n  }\n  .tpd-video-nav-info p { margin: 0; font-size: 15px; color: var(--tpd-text-light); line-height: 1.6; }\n}\n\n@media (max-width: 768px) {\n  .tpd-video-nav { flex-direction: column; align-items: stretch; }\n  .tpd-video-nav-thumbnails {\n    width: 100%;\n    display: flex;\n    gap: 10px;\n    overflow-x: auto;\n    padding-bottom: 12px;\n  }\n  .tpd-video-nav-info {\n    width: 100%;\n    padding-top: 16px;\n    border-top: 1px solid var(--tpd-border);\n    text-align: center;\n  }\n}\n\n\/* Desktop Thumbnail Styles *\/\n.tpd-thumbnail {\n  width: 150px;\n  min-width: 150px;\n  height: 100px;\n  overflow: hidden;\n  cursor: pointer;\n  position: relative;\n  transition: all 0.3s ease;\n  border: 2px solid var(--tpd-border);\n  box-shadow: var(--tpd-shadow);\n  background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%);\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  border-radius: var(--tpd-radius-thumb);\n}\n.tpd-thumbnail.active {\n  border-color: var(--tpd-primary);\n  transform: translateY(-3px);\n  box-shadow: var(--tpd-shadow-hover);\n}\n.tpd-thumbnail:hover:not(.active) {\n  transform: scale(1.03);\n  box-shadow: var(--tpd-shadow-hover);\n}\n.tpd-thumbnail span {\n  font-size: 48px;\n  font-weight: 700;\n  color: #ffffff;\n  display: block;\n}\n.tpd-thumbnail-label {\n  position: absolute;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  background: rgba(10, 22, 40, 0.85);\n  color: white;\n  font-size: 13px;\n  font-weight: 600;\n  padding: 6px 10px;\n  text-align: center;\n  border-bottom-left-radius: var(--tpd-radius-thumb);\n  border-bottom-right-radius: var(--tpd-radius-thumb);\n}\n\n\/* Mobile Thumbnail Styles - Smaller *\/\n@media (max-width: 768px) {\n  .tpd-thumbnail {\n    width: 110px;\n    min-width: 110px;\n    height: 75px;\n    border-radius: 10px;\n  }\n  .tpd-thumbnail span {\n    font-size: 36px;\n  }\n  .tpd-thumbnail-label {\n    font-size: 11px;\n    padding: 4px 8px;\n    border-bottom-left-radius: 10px;\n    border-bottom-right-radius: 10px;\n  }\n}\n\n\/* FAQ Styles *\/\n.tpd-faq-container {\n  max-width: 1200px;\n  margin: 0 auto;\n  display: flex;\n  flex-direction: column;\n  gap: 18px;\n}\n.tpd-faq-item {\n  background: #fff;\n  border: 1px solid var(--tpd-border);\n  border-radius: 12px;\n  overflow: hidden;\n  box-shadow: var(--tpd-shadow);\n}\n.tpd-faq-summary {\n  padding: 22px 30px;\n  font-size: 19px;\n  font-family: 'Montserrat', sans-serif;\n  font-weight: 700;\n  color: var(--tpd-text-main);\n  cursor: pointer;\n  list-style: none;\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  transition: background-color 0.3s ease;\n}\n.tpd-faq-summary:hover { background-color: var(--tpd-bg-light); }\n.tpd-faq-summary::-webkit-details-marker { display: none; }\n.tpd-faq-summary::after {\n  content: '+';\n  font-size: 26px;\n  color: var(--tpd-primary);\n  font-weight: 400;\n  transition: transform 0.3s ease;\n}\n.tpd-faq-item[open] .tpd-faq-summary::after { transform: rotate(45deg); }\n.tpd-faq-content {\n  padding: 0 30px 30px 30px;\n  color: var(--tpd-text-light);\n  font-size: 16px;\n  line-height: 1.7;\n}\n\n\/* Selling Point Tags *\/\n.tpd-tags {\n  display: flex;\n  flex-wrap: wrap;\n  gap: 12px;\n  margin-top: 10px;\n  padding-top: 25px;\n  border-top: 1px solid var(--tpd-border);\n}\n.tpd-tag {\n  background: #e6f0f9;\n  color: var(--tpd-primary);\n  padding: 8px 16px;\n  border-radius: 20px;\n  font-size: 14px;\n  font-weight: 700;\n  margin-bottom: 5px;\n}\n\n\/* Responsive Design *\/\n@media (max-width: 768px) {\n  .tpd-section { margin-top: 60px !important; margin-bottom: 60px !important; }\n  .tpd-hero-title { font-size: 32px; margin-bottom: 20px; }\n  .tpd-hero-split { grid-template-columns: 1fr; gap: 40px; }\n  .tpd-section-title { font-size: 28px; }\n  .tpd-guide-split-card { padding: 30px 20px; }\n  .tpd-guide-split { grid-template-columns: 1fr; gap: 40px; }\n  .tpd-comparison { grid-template-columns: 1fr; gap: 30px; }\n  .tpd-comp-card { padding: 30px 20px; }\n  .tpd-note-header { padding: 20px; }\n  .tpd-note-body { padding: 20px; }\n  .tpd-step-item { flex-direction: column; gap: 10px; }\n  .tpd-faq-summary { font-size: 17px; padding: 18px 20px; }\n  .tpd-faq-content { padding: 0 20px 25px 20px; }\n}\n\u003c\/style\u003e\n\n\u003c!-- Main Content --\u003e\n\n\u003cdiv class=\"tpd-wrapper\"\u003e\n  \u003c!-- Top Title \u0026 Navigation --\u003e\n  \u003cdiv style=\"margin-bottom: 60px;\"\u003e\n    \u003ch2 class=\"tpd-hero-title\"\u003e매트릭스 LED 헤드라이트 교체\u003cbr\u003eModel 3\/Y용\u003c\/h2\u003e\n    \u003cdiv class=\"tpd-nav\"\u003e\n      \u003ca href=\"#tpd-overview\"\u003e개요\u003c\/a\u003e\n      \u003ca href=\"#tpd-guide\"\u003e선택 가이드\u003c\/a\u003e\n      \u003ca href=\"#tpd-important\"\u003e중요 참고 사항\u003c\/a\u003e\n      \u003ca href=\"#tpd-installation\"\u003e설치\u003c\/a\u003e\n      \u003ca href=\"#tpd-faq\"\u003e자주 묻는 질문\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Top Product Intro --\u003e\n  \u003cdiv style=\"margin-top: 0 !important;\" class=\"tpd-section tpd-hero-split\" id=\"tpd-overview\"\u003e\n    \u003cdiv class=\"tpd-hero-img\"\u003e\n      \u003cimg alt=\"Tesla Model 3\/Y 매트릭스 헤드라이트 교체\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-led-headlight-assembly-for-model-3y-matrix-headlights-replacement-605063.jpg?v=1742408698\u0026amp;width=713\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"tpd-hero-content\"\u003e\n      \u003c!-- Notice Box --\u003e\n      \u003cdiv class=\"tpd-notice-box\"\u003e\n        \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"#856404\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"24\" width=\"24\"\u003e\n          \u003cpath d=\"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z\"\u003e\u003c\/path\u003e\n          \u003cline y2=\"13\" x2=\"12\" y1=\"9\" x1=\"12\"\u003e\u003c\/line\u003e\n          \u003cline y2=\"17\" x2=\"12.01\" y1=\"17\" x1=\"12\"\u003e\u003c\/line\u003e\n        \u003c\/svg\u003e\n        \u003cdiv\u003e\n          \u003cstrong\u003e중요 설치 안내:\u003c\/strong\u003e 이 헤드라이트 설치는 전면 범퍼를 제거해야 하는 복잡한 작업입니다. 경험이 없는 DIY 사용자는 전문 정비사에게 설치를 맡길 것을 강력히 권장합니다.\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv class=\"tpd-intro-features\"\u003e\n        \u003cdiv class=\"tpd-intro-feature\"\u003e\n          \u003cdiv class=\"tpd-intro-feature-icon\"\u003e\n            \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"18\" width=\"18\"\u003e\n              \u003cpath d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"\u003e\u003c\/path\u003e\n              \u003cpolyline points=\"22 4 12 14.01 9 11.01\"\u003e\u003c\/polyline\u003e\n            \u003c\/svg\u003e\n          \u003c\/div\u003e\n          \u003cdiv\u003e\n            \u003ch4\u003e완벽한 OEM 교체품\u003c\/h4\u003e\n            \u003cp\u003e손상되었거나 노후되었거나 고장난 공장 매트릭스 LED 헤드라이트를 수정 없이 직접 교체하도록 특별히 설계되었습니다.\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-intro-feature\"\u003e\n          \u003cdiv class=\"tpd-intro-feature-icon\"\u003e\n            \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"18\" width=\"18\"\u003e\n              \u003cpath d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"\u003e\u003c\/path\u003e\n              \u003cpolyline points=\"22 4 12 14.01 9 11.01\"\u003e\u003c\/polyline\u003e\n            \u003c\/svg\u003e\n          \u003c\/div\u003e\n          \u003cdiv\u003e\n            \u003ch4\u003e플러그 앤 플레이 장착\u003c\/h4\u003e\n            \u003cp\u003e원래 Tesla 부품(PN: 1514952 \/ 1514953)의 정확한 사양, 장착 지점, 커넥터와 일치합니다.\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-intro-feature\"\u003e\n          \u003cdiv class=\"tpd-intro-feature-icon\"\u003e\n            \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"18\" width=\"18\"\u003e\n              \u003cpath d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"\u003e\u003c\/path\u003e\n              \u003cpolyline points=\"22 4 12 14.01 9 11.01\"\u003e\u003c\/polyline\u003e\n            \u003c\/svg\u003e\n          \u003c\/div\u003e\n          \u003cdiv\u003e\n            \u003ch4\u003e공장 수준 조명\u003c\/h4\u003e\n            \u003cp\u003e원래 밝기, 선명한 차단선, 완전한 매트릭스 투사 기능을 복원하여 최적의 야간 가시성을 제공합니다.\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003c!-- Selling Point Tags --\u003e\n      \u003cdiv class=\"tpd-tags\"\u003e\n        \u003cspan class=\"tpd-tag\"\u003e직접 장착 가능\u003c\/span\u003e\n        \u003cspan class=\"tpd-tag\"\u003e수정 불필요\u003c\/span\u003e\n        \u003cspan class=\"tpd-tag\"\u003e오류 코드 없음\u003c\/span\u003e\n        \u003cspan class=\"tpd-tag\"\u003eOEM 품질\u003c\/span\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Selection Guide --\u003e\n  \u003cdiv class=\"tpd-section\" id=\"tpd-guide\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e헤드라이트를 100% 정확하게 선택하는 방법?\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003e구매 전에 원래 헤드라이트를 식별하는 아래 황금 규칙을 따르세요.\u003c\/p\u003e\n    \u003cdiv class=\"tpd-guide-container\"\u003e\n      \u003cdiv class=\"tpd-guide-split-card\"\u003e\n        \u003cdiv class=\"tpd-guide-split\"\u003e\n          \u003cdiv class=\"tpd-comparison-img-wrap\"\u003e\n            \u003cimg alt=\"매트릭스 LED 대 전체 LED 헤드라이트 비교\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/TESERY_LED_Headlight_Assembly_for_Model_3Y_9.jpg?v=1751619541\u0026amp;width=1946\"\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"tpd-rule-content\"\u003e\n            \u003cdiv class=\"tpd-rule-card\"\u003e\n              \u003ch4\u003e유일한 기준: 프로젝터 렌즈\u003c\/h4\u003e\n              \u003cp\u003e헤드라이트에 \u003cstrong\u003e프로젝터 렌즈\u003c\/strong\u003e가 있는지가 매트릭스 헤드라이트인지 판단하는 \u003cstrong\u003e유일한\u003c\/strong\u003e 기준입니다.\u003c\/p\u003e\n              \u003cp style=\"margin-top: 15px;\"\u003e사진에서 보듯이, 매트릭스 헤드라이트는 외곽에 뚜렷한 원형 프로젝터 렌즈가 있으며, 전체 LED 헤드라이트는 렌즈 없이 반사경만 있습니다.\u003c\/p\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"tpd-cs-box\"\u003e\n              \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"28\" width=\"28\"\u003e\n                \u003cpath d=\"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z\"\u003e\u003c\/path\u003e\n              \u003c\/svg\u003e\n              \u003cdiv\u003e\n                \u003cstrong\u003e아직도 확실하지 않나요? 저희가 도와드리겠습니다!\u003c\/strong\u003e\n                \u003cp style=\"margin-top: 8px;\"\u003e차량에 어떤 헤드라이트가 장착되어 있는지 확인할 수 없으면, 현재 헤드라이트의 선명하고 고화질 사진을 찍어 고객 서비스 팀에 보내주세요. 정확히 확인해 드립니다.\u003c\/p\u003e\n              \u003c\/div\u003e\n            \u003c\/div\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003c!-- Headlight Comparison --\u003e\n      \u003cdiv class=\"tpd-comparison\"\u003e\n        \u003cdiv class=\"tpd-comp-card tpd-active\"\u003e\n          \u003ch4\u003e매트릭스 LED (프로젝터 스타일)\u003c\/h4\u003e\n          \u003cdiv class=\"tpd-comp-card-subtitle\"\u003e일반 부품 번호:\u003c\/div\u003e\n          \u003cdiv class=\"tpd-comp-pn\"\u003e\n            \u003cul\u003e\n              \u003cli\u003e시작 번호: \u003cstrong\u003e1514952-XX-X\u003c\/strong\u003e 또는 \u003cstrong\u003e1514953-XX-X\u003c\/strong\u003e\n\u003c\/li\u003e\n              \u003cli\u003e북미 SAE: 왼쪽 \u003cstrong\u003e2085749-XX-X\u003c\/strong\u003e \/ 오른쪽 \u003cstrong\u003e2085750-XX-X\u003c\/strong\u003e\n\u003c\/li\u003e\n            \u003c\/ul\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"tpd-comp-footer\"\u003e\n            \u003cdiv class=\"tpd-status-icon success\"\u003e\n              \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"3\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"32\" width=\"32\"\u003e\n                \u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\n              \u003c\/svg\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"tpd-status-text success\"\u003e이 제품\u003c\/div\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-comp-card tpd-inactive\"\u003e\n          \u003ch4\u003e전체 LED 헤드라이트 (렌즈 없음)\u003c\/h4\u003e\n          \u003cdiv class=\"tpd-comp-card-subtitle\"\u003e일반 부품 번호:\u003c\/div\u003e\n          \u003cdiv class=\"tpd-comp-pn\"\u003e\n            \u003cul\u003e\n              \u003cli\u003e시작 번호: \u003cstrong\u003e1077371-XX-X\u003c\/strong\u003e 또는 \u003cstrong\u003e1077372-XX-X\u003c\/strong\u003e\n\u003c\/li\u003e\n              \u003cli\u003eRHD (영국\/아일랜드 ECE): 왼쪽 \u003cstrong\u003e1077379-XX-X\u003c\/strong\u003e \/ 오른쪽 \u003cstrong\u003e1077380-XX-X\u003c\/strong\u003e\n\u003c\/li\u003e\n            \u003c\/ul\u003e\n          \u003c\/div\u003e\n          \u003cdiv class=\"tpd-comp-footer\"\u003e\n            \u003cdiv class=\"tpd-status-icon danger\"\u003e\n              \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"3\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"32\" width=\"32\"\u003e\n                \u003cline y2=\"18\" x2=\"6\" y1=\"6\" x1=\"18\"\u003e\u003c\/line\u003e\n                \u003cline y2=\"18\" x2=\"18\" y1=\"6\" x1=\"6\"\u003e\u003c\/line\u003e\n              \u003c\/svg\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"tpd-status-text danger\"\u003e이 제품 아님\u003c\/div\u003e\n            \u003ca class=\"tpd-shop-link\" href=\"https:\/\/www.tesery.com\/products\/headlight-assembly-compatible-for-tesla-model3\" target=\"_blank\"\u003e전체 LED 헤드라이트 구매하기\u003c\/a\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Important Notes Section --\u003e\n  \u003cdiv class=\"tpd-section\" id=\"tpd-important\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e중요 참고 사항\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003e구매 전에 이 중요한 내용을 꼭 읽어주세요.\u003c\/p\u003e\n    \u003cdiv class=\"tpd-notes-grid\"\u003e\n      \u003c!-- Issue 1: Control Modules --\u003e\n      \u003cdiv class=\"tpd-note-card tpd-note-blue\"\u003e\n        \u003cdiv class=\"tpd-note-header\"\u003e\n          \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"var(--tpd-primary)\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"28\" width=\"28\"\u003e\n            \u003crect ry=\"2\" rx=\"2\" height=\"16\" width=\"16\" y=\"4\" x=\"4\"\u003e\u003c\/rect\u003e\n            \u003crect height=\"6\" width=\"6\" y=\"9\" x=\"9\"\u003e\u003c\/rect\u003e\n            \u003cline y2=\"4\" x2=\"9\" y1=\"1\" x1=\"9\"\u003e\u003c\/line\u003e\n            \u003cline y2=\"4\" x2=\"15\" y1=\"1\" x1=\"15\"\u003e\u003c\/line\u003e\n            \u003cline y2=\"23\" x2=\"9\" y1=\"20\" x1=\"9\"\u003e\u003c\/line\u003e\n            \u003cline y2=\"23\" x2=\"15\" y1=\"20\" x1=\"15\"\u003e\u003c\/line\u003e\n            \u003cline y2=\"9\" x2=\"23\" y1=\"9\" x1=\"20\"\u003e\u003c\/line\u003e\n            \u003cline y2=\"14\" x2=\"23\" y1=\"14\" x1=\"20\"\u003e\u003c\/line\u003e\n            \u003cline y2=\"9\" x2=\"4\" y1=\"9\" x1=\"1\"\u003e\u003c\/line\u003e\n            \u003cline y2=\"14\" x2=\"4\" y1=\"14\" x1=\"1\"\u003e\u003c\/line\u003e\n          \u003c\/svg\u003e\n          \u003ch3\u003e기술 지원 안내: 제어 모듈\u003c\/h3\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-note-body\"\u003e\n          \u003cp\u003e100% 소프트웨어 호환성과 안정성을 위해 저희 헤드라이트는 원래 사양의 제어 모듈이 사전 장착되어 출고됩니다. 이 고가 부품은 최고의 성능을 제공하지만, 매우 드문 경우 전자 동기화 문제가 발생할 수 있습니다.\u003c\/p\u003e\n          \u003cdiv class=\"tpd-highlight-box\"\u003e\n            \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"#0284c7\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"24\" width=\"24\"\u003e\n              \u003ccircle r=\"10\" cy=\"12\" cx=\"12\"\u003e\u003c\/circle\u003e\n              \u003cline y2=\"12\" x2=\"12\" y1=\"16\" x1=\"12\"\u003e\u003c\/line\u003e\n              \u003cline y2=\"8\" x2=\"12.01\" y1=\"8\" x1=\"12\"\u003e\u003c\/line\u003e\n            \u003c\/svg\u003e\n            \u003cp\u003e설치 중 모듈 관련 오류가 발생하면 즉시 연락해 주세요—\u003cstrong\u003e무료 교체 모듈을 바로 제공해 드립니다.\u003c\/strong\u003e 또는, 저희 어셈블리가 정밀한 1:1 매칭이므로 원래 헤드라이트에서 정상 작동하는 모듈을 교체하여 즉시 문제를 해결할 수도 있습니다. 저희는 하드웨어를 보증하며 성공적인 설치를 보장합니다.\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003c!-- Issue 2: Europe Calibration --\u003e\n      \u003cdiv class=\"tpd-note-card tpd-note-orange\"\u003e\n        \u003cdiv class=\"tpd-note-header\"\u003e\n          \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"#d97706\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"28\" width=\"28\"\u003e\n            \u003cpath d=\"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z\"\u003e\u003c\/path\u003e\n            \u003cline y2=\"13\" x2=\"12\" y1=\"9\" x1=\"12\"\u003e\u003c\/line\u003e\n            \u003cline y2=\"17\" x2=\"12.01\" y1=\"17\" x1=\"12\"\u003e\u003c\/line\u003e\n          \u003c\/svg\u003e\n          \u003ch3\u003e구매 전 안내: 유럽 Matrix LED 보정\u003c\/h3\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-note-body\"\u003e\n          \u003ch4\u003e표준 교체 및 전문 정렬\u003c\/h4\u003e\n          \u003cp\u003e이 프리미엄 Matrix LED 어셈블리는 완벽한 장착을 위한 1:1 OEM 사양 교체품입니다. 그러나 2026.x 유럽용 Tesla 적응형 조명 업데이트 이후 차량 소프트웨어는 매우 정밀한 물리적 정렬을 요구합니다. 헤드라이트가 완벽히 보정되지 않으면, 시스템이 안전을 위해 투사 밝기를 자동으로 제한하거나 흐릿한 패턴을 표시하여 마주 오는 차량 운전자를 눈부시게 하지 않도록 할 수 있습니다.\u003c\/p\u003e\n          \u003ch4\u003e중요 설치 단계\u003c\/h4\u003e\n          \u003cp\u003e100% 성능을 발휘하려면 이중 정렬(Double-Alignment)을 수행해야 합니다:\u003c\/p\u003e\n          \u003cdiv class=\"tpd-steps-container\"\u003e\n            \u003cdiv class=\"tpd-step-item\"\u003e\n              \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"24\" width=\"24\"\u003e\n                \u003cpath d=\"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z\"\u003e\u003c\/path\u003e\n              \u003c\/svg\u003e\n              \u003cdiv\u003e\n                \u003cstrong\u003e1. 기계적 조정\u003c\/strong\u003e\n                \u003cp\u003e하우징 뒷면의 6mm\/10mm 육각 나사를 사용해 빔을 물리적으로 수평 조절하세요.\u003c\/p\u003e\n              \u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"tpd-step-item\"\u003e\n              \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"24\" width=\"24\"\u003e\n                \u003crect ry=\"2\" rx=\"2\" height=\"14\" width=\"20\" y=\"3\" x=\"2\"\u003e\u003c\/rect\u003e\n                \u003cline y2=\"21\" x2=\"16\" y1=\"21\" x1=\"8\"\u003e\u003c\/line\u003e\n                \u003cline y2=\"21\" x2=\"12\" y1=\"17\" x1=\"12\"\u003e\u003c\/line\u003e\n              \u003c\/svg\u003e\n              \u003cdiv\u003e\n                \u003cstrong\u003e2. 소프트웨어 보정\u003c\/strong\u003e\n                \u003cp\u003eTesla 터치스크린에서 서비스 모드 \u0026gt; 헤드라이트 조정을 실행하여 Matrix 픽셀을 차량 컴퓨터와 동기화하세요.\u003c\/p\u003e\n              \u003c\/div\u003e\n            \u003c\/div\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-disclaimer-box\"\u003e\n          \u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"20\" width=\"20\"\u003e\n            \u003ccircle r=\"10\" cy=\"12\" cx=\"12\"\u003e\u003c\/circle\u003e\n            \u003cline y2=\"12\" x2=\"12\" y1=\"8\" x1=\"12\"\u003e\u003c\/line\u003e\n            \u003cline y2=\"16\" x2=\"12.01\" y1=\"16\" x1=\"12\"\u003e\u003c\/line\u003e\n          \u003c\/svg\u003e\n          \u003cdiv\u003e\n            \u003cstrong\u003e중요 면책 조항:\u003c\/strong\u003e\n            \u003cp style=\"margin-top: 4px; color: var(--tpd-text-light);\"\u003e하드웨어는 완벽히 호환되지만, 최종 결과는 차량의 특정 펌웨어 버전과 성공적인 소프트웨어 동기화에 달려 있습니다. 이전에 차량의 다른 교체용 라이트에서 해결되지 않은 프로젝션 또는 정렬 문제가 있었다면 신중히 구매하시기 바랍니다. 하드웨어 품질은 보장하지만, 소프트웨어 측 보정 실패나 제3자 설치 오류에 대해서는 책임지지 않습니다.\u003c\/p\u003e\n          \u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Installation Guide with Video Switcher --\u003e\n  \u003cdiv class=\"tpd-section\" id=\"tpd-installation\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e설치 가이드\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003e상세 설치 과정을 시청하세요. 앞 범퍼 분리가 필요하다는 점을 기억하세요.\u003c\/p\u003e\n\n    \u003c!-- Video Container --\u003e\n    \u003cdiv class=\"tpd-video-container\"\u003e\n      \u003ciframe title=\"Installation Video\" src=\"https:\/\/www.youtube.com\/embed\/P95PdQxxtlA?modestbranding=1\u0026amp;rel=0\" id=\"video-iframe\" allowfullscreen allow=\"autoplay; fullscreen\"\u003e\u003c\/iframe\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- Video Navigation Thumbnails (Dark blue background with numbers) --\u003e\n    \u003cdiv class=\"tpd-video-nav\"\u003e\n      \u003cdiv class=\"tpd-video-nav-thumbnails\"\u003e\n        \u003cdiv class=\"tpd-thumbnail active\"\u003e\n          \u003cspan\u003e①\u003c\/span\u003e\n          \u003cdiv class=\"tpd-thumbnail-label\"\u003e표준 설치\u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-thumbnail\"\u003e\n          \u003cspan\u003e②\u003c\/span\u003e\n          \u003cdiv class=\"tpd-thumbnail-label\"\u003e리플렉터에서 Matrix로 업그레이드\u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"tpd-video-nav-info\"\u003e\n        \u003ch4 id=\"video-title\"\u003e표준 설치\u003c\/h4\u003e\n        \u003cp id=\"video-description\"\u003eMatrix LED 헤드라이트 교체의 전체 설치 과정을 시청하세요. 올바른 설치를 위해서는 앞 범퍼 분리가 필요합니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FAQ Section --\u003e\n  \u003cdiv style=\"margin-bottom: 40px !important;\" class=\"tpd-section\" id=\"tpd-faq\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e자주 묻는 질문\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003e헤드라이트 교체에 관한 가장 흔한 질문에 대한 답변을 찾아보세요.\u003c\/p\u003e\n    \u003cdiv class=\"tpd-faq-container\"\u003e\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003e내 Model 3\/Y가 Matrix 헤드라이트인지 리플렉터 헤드라이트인지 어떻게 확인하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003eMatrix LED 헤드라이트는 크고 둥근 외부 프로젝터 렌즈로 식별할 수 있습니다. 만약 헤드라이트 내부가 여러 개의 직사각형 반사 세그먼트로 구성되어 있고 눈에 띄는 렌즈가 없다면, 구형 리플렉터 스타일입니다. 이 1514952\/1514953 조립품은 원래 Matrix 시스템이 장착된 차량에만 직접 교체용입니다.\u003c\/div\u003e\n      \u003c\/details\u003e\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003e이 교체품이 어댑티브 하이빔과 라이트 쇼 기능을 지원하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e네. 이 제품은 OEM 사양의 Matrix 조립품으로, Tesla의 어댑티브 하이빔 기능을 완벽히 지원하여 마주 오는 운전자를 눈부시게 하지 않도록 빛 패턴을 조절합니다. 또한 맞춤 Tesla 라이트 쇼 패턴과도 호환되어 차량의 첨단 조명 기능을 모두 유지합니다.\u003c\/div\u003e\n      \u003c\/details\u003e\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003e이 헤드라이트는 단순한 플러그 앤 플레이 설치인가요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e설치는 공장 장착 지점과 배선 하네스를 사용한 직접 볼트온 교체입니다. 다만, Model 3\/Y Matrix 헤드라이트는 차량 컴퓨터 시스템에 통합되어 있어, 터치스크린의 Tesla 서비스 메뉴에서 \"헤드라이트 보정\"을 수행해 빔 레벨을 완벽하게 맞춰야 할 수 있습니다.\u003c\/div\u003e\n      \u003c\/details\u003e\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003e부품 번호 1514952와 1514953의 차이점은 무엇인가요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e이 부품들은 차량의 양쪽을 나타냅니다: 1514952는 운전석 측(왼쪽), 1514953은 조수석 측(오른쪽)입니다. 현재 헤드라이트 하우징의 스티커를 확인하여 부품 번호 접미사가 지역 차량 사양과 일치하는지 확인하는 것을 권장합니다.\u003c\/div\u003e\n      \u003c\/details\u003e\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003e기존 LED 헤드라이트를 이 Matrix LED 유닛으로 업그레이드할 수 있나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e기술적으로는, 네—많은 소유자가 이 하드웨어 교체를 성공적으로 수행했습니다. 다만, 이것은 단순한 플러그 앤 플레이 업그레이드가 아님을 유의해 주세요. Matrix LED 헤드라이트(부품 번호 1514952 \/ 1514953)는 물리적 장착 지점에 맞지만, 어댑티브 하이빔 같은 고급 기능을 활성화하려면 Teslabox와 같은 전문 서드파티 진단 도구를 통한 소프트웨어 프로그래밍이 필요합니다.\u003cbr\u003e\u003cbr\u003e\u003cstrong\u003e서비스 범위:\u003c\/strong\u003e 저희는 Matrix 하드웨어 자체의 품질과 기능을 보장합니다. 개조 과정이나 소프트웨어 활성화에 대한 기술 지원은 제공하지 않습니다. 업그레이드 성공 여부는 고객님의 기술력이나 지역 전문점의 전문성에 달려 있습니다.\u003c\/div\u003e\n      \u003c\/details\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003c!-- Video Switcher Script --\u003e\n\u003cscript\u003e\n(function() {\n  const thumbnails = document.querySelectorAll('.tpd-thumbnail');\n  const videoIframe = document.getElementById('video-iframe');\n  const videoTitle = document.getElementById('video-title');\n  const videoDescription = document.getElementById('video-description');\n\n  const videoData = [\n    {\n      src: 'https:\/\/www.youtube.com\/embed\/P95PdQxxtlA?modestbranding=1\u0026rel=0',\n      title: 'Standard Installation',\n      description: 'Watch the complete installation process for replacing your Matrix LED headlights. Front bumper removal is required for proper installation.'\n    },\n    {\n      src: 'https:\/\/www.youtube.com\/embed\/DQt3Gb9SvQg?modestbranding=1\u0026rel=0',\n      title: 'Reflector to Matrix Upgrade',\n      description: 'Learn how to upgrade from standard reflector headlights to Matrix LED system. Includes wiring and software activation steps.'\n    }\n  ];\n\n  thumbnails.forEach((thumb, index) =\u003e {\n    thumb.addEventListener('click', function() {\n      \/\/ Remove active class from all thumbnails\n      thumbnails.forEach(t =\u003e t.classList.remove('active'));\n      \/\/ Add active class to clicked thumbnail\n      this.classList.add('active');\n      \/\/ Update video source\n      videoIframe.src = videoData[index].src;\n      \/\/ Update title and description\n      videoTitle.textContent = videoData[index].title;\n      videoDescription.textContent = videoData[index].description;\n    });\n  });\n})();\n\u003c\/script\u003e\n\n\u003c!-- FAQ JSON-LD --\u003e\n\u003cscript type=\"application\/ld+json\"\u003e\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"FAQPage\",\n  \"mainEntity\": [\n    {\n      \"@type\": \"Question\",\n      \"name\": \"How can I confirm if my Model 3\/Y uses Matrix or Reflector headlights?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"You can identify Matrix LED Headlights by the large, circular outer projector lens. If your headlight interior consists of multiple rectangular reflective segments without a prominent lens, you have the older Reflector style.\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"Will this replacement support the Adaptive High Beam and Light Show features?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"Yes. Since this is an OEM-spec Matrix assembly, it fully supports Tesla's Adaptive High Beam functionality and is also compatible with the custom Tesla Light Show patterns.\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"Is this headlight a simple plug-and-play installation?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"Installation is a direct bolt-on replacement using your factory mounting points and wiring harness. However, you may need to perform a Headlight Calibration via the Tesla Service Menu.\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"What is the difference between part numbers 1514952 and 1514953?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"1514952 corresponds to the Driver Side (Left), and 1514953 corresponds to the Passenger Side (Right).\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"Can I upgrade my standard LED headlights to these Matrix LED units?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"Technically yes, but it requires specialized third-party diagnostic tools for software activation. We guarantee hardware quality but do not provide retrofitting support.\"\n      }\n    }\n  ]\n}\n\u003c\/script\u003e","brand":"Tesery Official Store","offers":[{"title":"모델 3 2021-2023.10 \u0026 모델 Y 2021-2025.3 \/ 선택해 주세요 \/ 일반 지역","offer_id":48197788991720,"sku":null,"price":359.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-2023.10 \u0026 모델 Y 2021-2025.3 \/ 선택해 주세요 \/ 유럽 지역","offer_id":48197789024488,"sku":null,"price":359.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-2023.10 \u0026 모델 Y 2021-2025.3 \/ 왼쪽【1514952】 \/ 일반 지역","offer_id":47034086916328,"sku":"TSLLJ0105-left","price":359.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-2023.10 \u0026 모델 Y 2021-2025.3 \/ 왼쪽【1514952】 \/ 유럽 지역","offer_id":47694967308520,"sku":"TSLLJ0105-left-EU","price":359.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-2023.10 \u0026 모델 Y 2021-2025.3 \/ 오른쪽【1514953】 \/ 일반 지역","offer_id":47034086949096,"sku":"TSLLJ0105-right","price":359.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-2023.10 \u0026 모델 Y 2021-2025.3 \/ 오른쪽【1514953】 \/ 유럽 지역","offer_id":47694967341288,"sku":"TSLLJ0105-right-EU","price":359.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-2023.10 \u0026 모델 Y 2021-2025.3 \/ 왼쪽+오른쪽 \/ 일반 지역","offer_id":47034086981864,"sku":"TSLLJ0105","price":718.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-2023.10 \u0026 모델 Y 2021-2025.3 \/ 왼쪽+오른쪽 \/ 유럽 지역","offer_id":47694967374056,"sku":"TSLLJ0105-EU","price":718.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-led-headlight-assembly-for-model-3y-matrix-headlights-replacement-605063.jpg?v=1742408698"},{"product_id":"tesla-model-3-y-taillight-turn-brake-lamp","title":"모델 3 (17-20) 회전 브레이크 램프 및 내부 테일 라이트 교체","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        \/* Basic styles *\/\n        body {\n            font-family: 'Roboto', Arial, sans-serif;\n            margin: 0;\n            padding: 15px;\n            background-color: white;\n            line-height: 1.4;\n        }\n\n        \/* Main container *\/\n        .demo-container {\n            max-width: 1200px;\n            margin: 0 auto;\n            background-color: white;\n        }\n\n        \/* Section spacing - optimized for collapsed state *\/\n        .section {\n            margin-bottom: 25px;\n            transition: margin-bottom 0.4s ease;\n        }\n\n        \/* Remove bottom margin when collapsed *\/\n        .section:has(.section-toggle:checke) {\n            margin-bottom: 5px;\n        }\n\n        \/* Video section *\/\n        .video-section {\n            background-color: white;\n            margin-bottom: 0;\n        }\n\n        \/* Common header styles for both sections *\/\n        .section-header {\n            font-size: 20px;\n            font-weight: bold;\n            margin-bottom: 15px;\n            text-align: left;\n            color: #333;\n            background-color: #f8f9fa;\n            padding: 12px 20px;\n            margin: 0 0 15px 0;\n            transition: margin-bottom 0.4s ease;\n            position: relative;\n            border-left: 5px solid #007bff;\n        }\n\n        \/* Video section color indicator *\/\n        .video-section .section-header {\n            border-left-color: #28a745;\n        }\n\n        \/* Remove header bottom margin when collapsed *\/\n        .section-toggle:checked + .section-label.section-header {\n            margin-bottom: 0;\n        }\n\n        \/* Collapsible functionality using CSS only - for both sections *\/\n        .section-toggle {\n            display: none;\n        }\n\n        .section-label {\n            cursor: pointer;\n            display: flex;\n            align-items: center;\n            justify-content: space-between;\n            transition: color 0.3s ease;\n            user-select: none;\n        }\n\n        .section-label:hover {\n            color: #666;\n        }\n\n        .collapse-icon {\n            font-size: 16px;\n            transition: transform 0.3s ease;\n            margin-left: auto;\n        }\n\n        \/* Rotate icon for collapsed state *\/\n        .section-toggle:not(:checked) + .section-label .collapse-icon {\n            transform: rotate(-90deg);\n        }\n\n        .section-toggle:checked + .section-label .collapse-icon {\n            transform: rotate(0deg);\n        }\n\n        \/* Video wrapper with clean rounded rectangle styling *\/\n        .video-wrapper {\n            position: relative;\n            width: 100%;\n            height: 0;\n            padding-bottom: 56.25%; \/* 16:9 aspect ratio *\/\n            overflow: hidden;\n            opacity: 1;\n            transition: max-height 0.4s ease, opacity 0.3s ease, padding-bottom 0.4s ease, margin-bottom 0.4s ease;\n            max-height: 500px;\n            margin-bottom: 0;\n            background-color: #000;\n            border-radius: 12px;\n            box-shadow: 0 4px 16px rgba(0,0,0,0.1);\n        }\n\n        .section-toggle:checked ~ .video-wrapper {\n            max-height: 0;\n            opacity: 0;\n            padding-bottom: 0;\n            overflow: hidden;\n            margin-bottom: 0;\n        }\n\n        .video-wrapper iframe {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            border: none;\n            border-radius: 9px;\n            object-fit: cover;\n        }\n\n        \/* Alternative approach for better video fitting *\/\n        @media (min-width: 769px) {\n            .video-wrapper {\n                max-width: 100%;\n                padding-bottom: 56.25%;\n            }\n        }\n\n        \/* Responsive design *\/\n        @media (max-width: 768px) {\n            body {\n                padding: 10px;\n            }\n\n            .section {\n                margin-bottom: 20px;\n            }\n\n            .section:has(.section-toggle:checked) {\n                margin-bottom: 3px;\n            }\n\n            .section-header {\n                font-size: 18px;\n                margin-bottom: 8px;\n                padding: 10px 15px;\n            }\n\n            \/* Mobile video optimization without border *\/\n            .video-wrapper {\n                padding-bottom: 56.25%;\n                max-height: 300px;\n                background-color: transparent;\n                border-radius: 8px;\n                box-shadow: 0 2px 12px rgba(0,0,0,0.1);\n            }\n\n            .video-wrapper iframe {\n                border-radius: 5px;\n                width: 100%;\n                height: 100%;\n            }\n        }\n\n        @media (max-width: 480px) {\n            .section {\n                margin-bottom: 15px;\n            }\n\n            .section:has(.section-toggle:checked) {\n                margin-bottom: 2px;\n            }\n\n            .section-header {\n                font-size: 16px;\n                margin-bottom: 6px;\n                padding: 8px 10px;\n            }\n\n            \/* Small mobile video optimization without border *\/\n            .video-wrapper {\n                padding-bottom: 56.25%;\n                max-height: 250px;\n                margin-bottom: 10px;\n                background-color: transparent;\n                border-radius: 6px;\n                box-shadow: 0 2px 10px rgba(0,0,0,0.08);\n            }\n\n            .video-wrapper iframe {\n                border-radius: 3px;\n                width: 100%;\n                height: 100%;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"demo-container\"\u003e\n\u003cdiv class=\"section\"\u003e\n\u003cdiv class=\"video-section\"\u003e\n\u003cinput type=\"checkbox\" id=\"videoToggle\" class=\"section-toggle\"\u003e \u003clabel for=\"videoToggle\" class=\"section-label section-header\"\u003e 설치 및 사용자 경험 \u003cspan class=\"collapse-icon\"\u003e▼\u003c\/span\u003e \u003c\/label\u003e\n\u003cdiv class=\"video-wrapper\"\u003e\u003ciframe width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/8JBdLYO_DcY?si=IlwN6fObxgF2o8LQ\" title=\"YouTube video player\"\u003e\u003c\/iframe\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 회전 브레이크 램프【빨간색 방향 지시등】 \/ 선택해 주세요","offer_id":47913636856040,"sku":null,"price":129.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 회전 브레이크 램프【빨간색 방향 지시등】 \/ 왼쪽","offer_id":47054675869928,"sku":"TSLLJ0103-left-US","price":129.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 회전 브레이크 램프【빨간색 방향 지시등】 \/ 오른쪽","offer_id":47913643442408,"sku":"TSLLJ0103-right-US","price":129.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 회전 브레이크 램프【빨간색 방향 지시등】 \/ 한 쌍","offer_id":47913636888808,"sku":"TSLLJ0103-US","price":259.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 내부 테일 라이트【흰색 후진등】 \/ 선택해 주세요","offer_id":47913636921576,"sku":null,"price":129.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 내부 테일 라이트【흰색 후진등】 \/ 왼쪽","offer_id":47913476718824,"sku":"TSLLJ0101-left-US","price":109.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 내부 테일 라이트【흰색 후진등】 \/ 오른쪽","offer_id":47913643475176,"sku":"TSLLJ0101-right-US","price":129.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 내부 테일 라이트【흰색 후진등】 \/ 한 쌍","offer_id":47913636954344,"sku":"TSLLJ0101-US","price":259.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 회전 브레이크 램프 및 내부 테일 라이트 \/ 선택해 주세요","offer_id":47913636987112,"sku":null,"price":259.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 회전 브레이크 램프 및 내부 테일 라이트 \/ 왼쪽","offer_id":47913476784360,"sku":"TSLLJ0103-left-US+TSLLJ0101-left-US","price":259.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 회전 브레이크 램프 및 내부 테일 라이트 \/ 오른쪽","offer_id":47913643507944,"sku":"TSLLJ0103-right-US+TSLLJ0101-right-US","price":259.99,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가【3 PIN】 \/ 회전 브레이크 램프 및 내부 테일 라이트 \/ 한 쌍","offer_id":47913637019880,"sku":"TSLLJ0103-US+TSLLJ0101-US","price":499.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 회전 브레이크 램프【호박색 방향 지시등】 \/ 선택해 주세요","offer_id":47913637052648,"sku":null,"price":129.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 회전 브레이크 램프【호박색 방향 지시등】 \/ 왼쪽","offer_id":47054675673320,"sku":"TSLLJ0103-left","price":129.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 회전 브레이크 램프【호박색 방향 지시등】 \/ 오른쪽","offer_id":47913643606248,"sku":"TSLLJ0103-right","price":129.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 회전 브레이크 램프【호박색 방향 지시등】 \/ 한 쌍","offer_id":47913637085416,"sku":"TSLLJ0103","price":259.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 내부 테일 라이트【빨간색 안개등】 \/ 선택해 주세요","offer_id":47913637118184,"sku":null,"price":129.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 내부 테일 라이트【빨간색 안개등】 \/ 왼쪽","offer_id":47427612606696,"sku":"TSLLJ0101-left","price":116.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 내부 테일 라이트【빨간색 안개등】 \/ 오른쪽","offer_id":47913643639016,"sku":"TSLLJ0101-right","price":116.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 내부 테일 라이트【빨간색 안개등】 \/ 한 쌍","offer_id":47913637150952,"sku":"TSLLJ0101","price":233.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 회전 브레이크 램프 및 내부 테일 라이트 \/ 선택해 주세요","offer_id":47913637249256,"sku":null,"price":259.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 회전 브레이크 램프 및 내부 테일 라이트 \/ 왼쪽","offer_id":47913476915432,"sku":"TSLLJ0103-left+TSLLJ0101-left","price":259.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 회전 브레이크 램프 및 내부 테일 라이트 \/ 오른쪽","offer_id":47913643573480,"sku":"TSLLJ0103-right+TSLLJ0101-right","price":259.99,"currency_code":"USD","in_stock":true},{"title":"상하이\/베를린 기가【4 PIN】 \/ 회전 브레이크 램프 및 내부 테일 라이트 \/ 한 쌍","offer_id":47913637282024,"sku":"TSLLJ0103+TSLLJ0101","price":499.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-taillight-turn-brake-lamp-for-model-3y-731148.jpg?v=1739989468"},{"product_id":"front-bumper-fog-light-for-tesla-model-3-y","title":"테슬라 모델 3\/Y 전면 범퍼 안개등 교체용 【미국 버전】","description":"\u003ch2 style=\"text-align: center;\"\u003e프론트 범퍼 안개등 [미국 버전] Tesla Model 3\/Y 2017-2023용【1077391-00 1077392-0】\u003c\/h2\u003e\n\u003cp\u003e\u003cspan data-mce-fragment=\"1\"\u003eTesla Model 3\/Y 2017-2023용 미국 버전 프론트 범퍼 안개등으로 안전한 여행과 향상된 가시성을 누리세요! 마음 편히 운전하며 더 높은 수준의 조명을 경험할 수 있어 더욱 편안하고 즐거운 주행이 가능합니다. 무엇을 기다리시나요? 오늘 바로 차량의 잠재력을 최대한 발휘하세요!\u003c\/span\u003e\u003c\/p\u003e\n\u003ch2\u003e특징\u003c\/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e【\u003c\/strong\u003e개조\u003cstrong\u003e】\u003c\/strong\u003eTesla Model 3\/Y 2017-2023에 완벽한 프론트 범퍼 램프 안개등\u003c\/li\u003e\n\u003cli\u003e【독특한 디자인】독특한 노란색 디자인의 프론트 범퍼 안개등은 다채로워 차량을 더욱 멋지고 도도하게 보이게 합니다. 매끄러운 마감은 차량의 외관을 향상시켜 매번의 여행을 멋지게 만듭니다!\u003c\/li\u003e\n\u003cli\u003e【고성능 안개등】자신감을 가지고 운전할 수 있으며 긴 수명을 자랑합니다. 엄격한 테스트를 거쳐 밀봉 성능이 우수합니다.\u003c\/li\u003e\n\u003cli\u003e【간단한 설치】플러그 앤 플레이 방식으로 배선이나 별도의 개조가 필요 없습니다. 원래 차량 디자인에 따라 설치 시간이 오래 걸리지 않습니다.\u003c\/li\u003e\n\u003cli\u003e【가시성 향상】Tesla Model 3\/Y 2017-2023용 미국 버전 프론트 범퍼 안개등으로 안전한 주행과 가시성 향상을 누리세요! 마음 편히 운전하며 더 높은 수준의 조명을 경험할 수 있어 더욱 편안하고 즐거운 주행이 가능합니다\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003ch2\u003e사양\u003c\/h2\u003e\n\u003cp\u003e\u003cspan\u003e모델: Tesla Model 3 \/ Model Y 2017-2023\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cspan\u003e재질: ABS\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003ch2\u003e배송\u003c\/h2\u003e\n\u003cp\u003e상품이 완벽한 상태로 설치 준비가 되어 고객님께 도착할 수 있도록 모든 노력을 기울이고 있습니다.\u003cbr\u003e\u003cbr\u003eTesla 프론트 범퍼 안개등 【미국 버전】을 마음에 드시면 장바구니에 담고 지금 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다.\u003cbr\u003e\u003cbr\u003e상품이 손상되었거나 용도에 맞지 않을 경우, 수령일로부터 30일 이내 무조건 환불 또는 교환해 드립니다.\u003cbr\u003e\u003cbr\u003eTesla 프론트 범퍼 안개등 【미국 버전】에 대해 궁금한 점이 있으시면 온라인 고객 서비스에 문의하시거나, 📧 이메일: market@tesery.com 또는 📞 전화\/Whatsapp\/Facebook\/메시지：+86 185 6670 3079로 연락해 주세요\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요","offer_id":44455115981032,"sku":"","price":199.0,"currency_code":"USD","in_stock":true},{"title":"왼쪽 + 오른쪽","offer_id":44455116079336,"sku":"TSLLJ0106","price":258.0,"currency_code":"USD","in_stock":true},{"title":"왼쪽 측면만","offer_id":44455116013800,"sku":"TSLLJ0106-left","price":129.0,"currency_code":"USD","in_stock":true},{"title":"오른쪽 측면만","offer_id":44455116046568,"sku":"TSLLJ0106-right","price":129.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/front-bumper-fog-light-for-tesla-model-3y-us-version-655603.jpg?v=1741092707"},{"product_id":"tesla-model-3-tail-lights-led","title":"TESERY OLED 앱 제어 테일 라이트 for 모델 3\/Y","description":"\u003ch1 style=\"text-align: center;\"\u003eTesla Model 3\/Y용 LED APP 제어 문자 테일 라이트\u003c\/h1\u003e\n\u003cp\u003e\u003cspan\u003e이 고성능 LED 테일라이트로 Tesla Model 3 또는 Y의 외관을 업그레이드하세요. 독점적인 퀵 싱크 기술을 특징으로 하여, 테일라이트는 차량의 기존 시스템과 원활하게 통합되며 향상된 안전을 위한 우수한 가시성을 제공합니다.\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e【모델 적용】Tesla Model 3 Model Y 2017 2018 2019 2020 2021 2022.2023.2024에 완벽한 테일 라이트 조립품. 2017-2023 Tesla Model 3 좌핸들 장거리 세단\/고성능 세단\/표준 스트레치 세단 4도어, Model Y 장거리 스포츠 유틸리티 차량\/고성능 스포츠 유틸리티 차량 4도어에 완벽함.\u003cbr\u003e【매직 스타 디자인】독특한 매직 스타 디자인 LED 테일라이트는 생생한 색상으로 차량을 더욱 멋지고 도로에서 돋보이게 만듭니다. 3D 동적 효과가 환상적입니다. 매끄러운 표면은 차량의 품격을 높이고 먼지가 쌓이기 어렵습니다. 이 훌륭한 테일 라이트로 차량을 장착하고 멋진 여행을 즐기세요!\u003cbr\u003e【고성능 헤드라이트】조명 모드에는 주간 주행등, 순차 방향 지시등, 로우빔 및 하이빔이 포함됩니다. 햇빛의 색온도에 가까운 더 밝고, 더 선명하며, 더 하얀 빛을 제공하고, 더 긴 조명 범위와 더 넓은 시야를 제공하여 자신 있게 운전할 수 있습니다. 자동차 등급 ABS 하우징과 투명 렌즈로 제작되어 수명이 깁니다. 우수한 밀봉 성능으로 엄격하게 테스트됨.\u003cbr\u003e【쉬운 설치】앱 자동화. 플러그 앤 플레이, 배선이나 수정 불필요. 원래 차량 디자인에 따라 직접 교체 가능. 보통 긴 설치 시간이 필요 없는 고신뢰성, 고성능 후미등.\u003cbr\u003e\u003c\/p\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e사양\u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003e제품명：Tesla Model 3\/Y 2017-2024용 LED APP 제어 문자 테일 라이트\u003c\/p\u003e\n\u003cp\u003e모델: Tesla Model 3\/Y\u003c\/p\u003e\n\u003cp\u003e재질 ：ABS\u003cbr\u003e부피 :50*45*25cm\u003c\/p\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e배송\u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003e상품이 완벽한 상태로 설치 준비가 되어 고객님께 도착할 수 있도록 모든 노력을 기울이고 있습니다.\u003c\/p\u003e\n\u003cp\u003e저희 LED APP 제어 문자 테일 라이트를 좋아하신다면\u003cspan\u003e \u003c\/span\u003e장바구니에 추가하고 지금 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다.\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 프리몬트\/텍사스 기가","offer_id":46482491801832,"sku":"","price":759.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 상하이 기가","offer_id":46482491834600,"sku":"","price":759.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ EU 표준","offer_id":46482491867368,"sku":"","price":759.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 프리몬트\/텍사스 기가","offer_id":45566254973160,"sku":"TSL2320-US","price":759.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 상하이 기가","offer_id":46482491900136,"sku":"TSL2320-CN","price":759.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ EU 표준","offer_id":46482491932904,"sku":"TSL2320-EU","price":759.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025.3 \/ 프리몬트\/텍사스 기가","offer_id":45566255005928,"sku":"TSL2320-US","price":759.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025.3 \/ 상하이 기가","offer_id":46482491965672,"sku":"TSL2320-CN","price":759.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025.3 \/ EU 표준","offer_id":46482491998440,"sku":"TSL2320-EU","price":759.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-oled-app-controlled-tail-light-for-model-3y-7856999.png?v=1773894797"},{"product_id":"trunk-ambient-lighting-for-tesla-model-y","title":"테슬라 모델 Y용 트렁크 앰비언트 조명","description":"\u003ch1 style=\"text-align: center;\"\u003eTesla Model Y 2020-2024용 부트 앰비언트 조명\u003c\/h1\u003e\n\u003cp\u003eTesla Model Y 2020-2023용 부트 앰비언트 조명 키트로 세련되고 현대적인 조명 환경을 즐기세요. 부드러운 LED 조명이 차량 내부를 밝혀 쾌적한 운전 경험을 제공합니다. 설치가 쉽고 전력 소모가 적어 Tesla Model Y 소유자에게 필수 아이템입니다.\u003c\/p\u003e\n\u003ch2\u003e주요 이점\u003c\/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e【Specific fitment】\u003c\/strong\u003e이 링 LED 라이트 바는 이전에 Tesla Model Y 2020 2021 2022 2023 2024에 적합했습니다. 참고: 일부 모델의 경우 라이트 바가 너무 길 수 있으니 직접 절단해야 할 수 있습니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【High Brightness LED Beads】\u003c\/strong\u003e눈부심 없는 360도 전방위 조명. 밤에 물건을 쉽게 찾을 수 있고 분위기와 시각 효과를 향상시킵니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【High-quality material】\u003c\/strong\u003eTesla 실내 LED 라이트 바는 고품질 유연한 실리콘 소재로 만들어져 부드럽고 방수(IP67) 및 고온(최대 70°C) 저항성이 있어 안정적이고 오래 사용할 수 있습니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【Blinking color change】\u003c\/strong\u003e점멸 및 색상 변경 기능은 음성 제어, 리모컨 또는 모바일 앱을 통해 작동할 수 있습니다. 컨트롤러에 QR 코드가 있어 휴대폰으로 스캔하여 앱을 다운로드할 수 있으며, 앱을 통해 원하는 모드나 색상을 조작할 수 있습니다. 이 제품은 자동으로 꺼지지 않으며, 원래 차량의 시가잭 베이스는 항상 전원이 공급되어 수동으로 시가잭을 통해 켜고 꺼야 합니다. \u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【Easy installation】\u003c\/strong\u003e원래 차량 배선 커넥터가 장착되어 있어 Tesla 부트 라이트에 직접 연결할 수 있습니다. 플러시 마운팅으로 라이트 스트립이 차량 본체와 완벽하게 통합되어 매끄럽고 보이지 않는 효과를 만듭니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【Cuttable design】\u003c\/strong\u003eTesla LED 스트립 라이트 키트는 특정 요구에 맞게 정확한 크기 조절을 위한 검은 점 표시가 있습니다. 참고: 절단 후에는 라이트 바의 절단 끝을 제대로 밀봉해야 합니다.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cp\u003e차량에 전원이 공급되는 동안 조명이 켜져 있으며 시가잭 소켓이나 앱을 통해 제어할 수 있습니다.\u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003ch2\u003e사양\u003c\/h2\u003e\n\u003cp\u003e\u003cstrong\u003e제품명:\u003c\/strong\u003e\u003cspan\u003e \u003c\/span\u003e\u003cspan\u003e Tesla Model Y 2020-2024용 부트 앰비언트 조명\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e호환성: \u003c\/strong\u003e\u003cspan\u003eTesla Model Y에 적합\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003esizes：\u003c\/strong\u003e25*18*5cm\u003c\/p\u003e\n\u003ch2\u003e배송\u003c\/h2\u003e\n\u003cp\u003e\u003cspan\u003e상품이 손상 없이 설치 준비가 완료된 상태로 고객님께 도착할 수 있도록 최선을 다하겠습니다.\u003cbr\u003e\u003cbr\u003eTesla Model Y 2020-2024용 부트 앰비언트 조명이 마음에 드시면 장바구니에 담고 지금 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다.\u003cbr\u003e\u003cbr\u003e상품이 손상되었거나 용도에 맞지 않는 경우, 수령일로부터 30일 이내에 무조건 환불 또는 교환해 드립니다.\u003cbr\u003e\u003cbr\u003eTesla Model Y 2020-2023용 부트 앰비언트 조명에 대해 궁금한 점이 있으시면 온라인 고객 서비스에 문의하시거나 📧 이메일: support@tesery.com 또는📞 전화\/Whatsapp\/Facebook\/메시지: +86 18594211091로 연락해 주세요.\u003c\/span\u003e\u003c\/p\u003e","brand":"Tesery Official Store - Tesla Premium Accessories Store","offers":[{"title":"화이트（리모컨 없음）","offer_id":44741606572264,"sku":"TSL1009-white","price":35.99,"currency_code":"USD","in_stock":true},{"title":"\"색상 (\"화이트\" 옵션보다 약간 더 어두움)\"","offer_id":44741606605032,"sku":"TSL1009-color","price":39.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/trunk-ambient-lighting-for-tesla-model-y-428617.jpg?v=1750226108"},{"product_id":"headlight-assembly-compatible-for-tesla-model3","title":"모델 3 (17-20) 및 모델 Y (20-21)용 전면 발광 다이오드 전조등 교체 부품 丨1077371\/1077372","description":"\u003c!-- Import Google Fonts --\u003e\n\u003cp\u003e\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin=\"\"\u003e \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=DM+Sans:wght@400;500;600;700\u0026amp;family=Montserrat:wght@700;800\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n  \/* Base Variables \u0026 Reset *\/\n  .tpd-wrapper {\n    --tpd-primary: #0065b3;\n    --tpd-success: #10b981;\n    --tpd-danger: #ef4444;\n    --tpd-warning: #f59e0b;\n    --tpd-text-main: #333333;\n    --tpd-text-light: #666666;\n    --tpd-bg-light: #f9f9f9;\n    --tpd-border: #e5e5e5;\n    --tpd-radius-card: 20px;\n    --tpd-radius-img: 18px;\n    --tpd-shadow: 0 8px 24px rgba(0,0,0,0.04);\n    --tpd-shadow-hover: 0 15px 35px rgba(0,0,0,0.1);\n    \n    font-family: 'DM Sans', sans-serif;\n    color: var(--tpd-text-main);\n    line-height: 1.85;\n    max-width: 1320px;\n    margin: 0 auto;\n    padding: 20px;\n    box-sizing: border-box;\n  }\n  .tpd-wrapper * {\n    box-sizing: border-box;\n  }\n  .tpd-wrapper h2, .tpd-wrapper h3, .tpd-wrapper h4 {\n    font-family: 'Montserrat', sans-serif;\n    margin-top: 0;\n    color: var(--tpd-text-main);\n  }\n  .tpd-wrapper img {\n    max-width: 100%;\n    height: auto;\n    display: block;\n    border-radius: var(--tpd-radius-img);\n  }\n  \n  \/* Force Section Spacing *\/\n  .tpd-section {\n    margin-top: 100px !important;\n    margin-bottom: 100px !important;\n    clear: both;\n  }\n  .tpd-section-title {\n    font-size: 36px;\n    font-weight: 800;\n    text-align: center;\n    margin-bottom: 20px !important;\n  }\n  .tpd-section-subtitle {\n    font-size: 17px;\n    color: var(--tpd-text-light);\n    text-align: center;\n    max-width: 800px;\n    margin: 0 auto 50px auto !important;\n  }\n\n  \/* Top Hero Title *\/\n  .tpd-hero-title {\n    font-size: 46px;\n    font-weight: 800;\n    line-height: 1.25;\n    text-align: center;\n    margin-bottom: 30px;\n  }\n\n  \/* Navigation *\/\n  .tpd-nav {\n    display: flex;\n    justify-content: center;\n    gap: 15px;\n    flex-wrap: wrap;\n    margin-bottom: 80px;\n  }\n  .tpd-nav a {\n    text-decoration: none;\n    color: var(--tpd-text-main);\n    font-size: 14px;\n    font-weight: 600;\n    letter-spacing: 0.05em;\n    padding: 12px 24px;\n    border: 1px solid var(--tpd-border);\n    border-radius: 30px;\n    transition: all 0.3s ease;\n  }\n  .tpd-nav a:hover {\n    border-color: var(--tpd-primary);\n    color: var(--tpd-primary);\n    background-color: var(--tpd-bg-light);\n  }\n\n  \/* Product Intro *\/\n  .tpd-hero-split {\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: 60px;\n    align-items: center;\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  \n  .tpd-hero-img img {\n    width: 100%;\n    border-radius: var(--tpd-radius-img);\n    box-shadow: 0 10px 30px rgba(0,0,0,0.08);\n    transition: transform 0.4s ease, box-shadow 0.4s ease;\n  }\n  .tpd-hero-img img:hover {\n    transform: translateY(-5px);\n    box-shadow: var(--tpd-shadow-hover);\n  }\n\n  .tpd-hero-content {\n    display: flex;\n    flex-direction: column;\n    gap: 30px;\n  }\n  \n  \/* Notice Box *\/\n  .tpd-notice-box {\n    background-color: #fff3cd;\n    border-left: 4px solid #ffc107;\n    padding: 18px 25px;\n    border-radius: 8px;\n    font-size: 15px;\n    color: #856404;\n    display: flex;\n    align-items: flex-start;\n    gap: 12px;\n    line-height: 1.6;\n  }\n  .tpd-notice-box svg {\n    flex-shrink: 0;\n    margin-top: 4px;\n  }\n\n  .tpd-intro-features {\n    display: flex;\n    flex-direction: column;\n    gap: 25px;\n  }\n  .tpd-intro-feature {\n    display: flex;\n    align-items: flex-start;\n    gap: 18px;\n  }\n  .tpd-intro-feature-icon {\n    width: 36px;\n    height: 36px;\n    background: var(--tpd-bg-light);\n    border-radius: 50%;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    color: var(--tpd-primary);\n    flex-shrink: 0;\n    margin-top: 2px;\n  }\n  .tpd-intro-feature h4 {\n    font-size: 19px;\n    margin-bottom: 6px;\n  }\n  .tpd-intro-feature p {\n    margin: 0;\n    font-size: 16px;\n    color: var(--tpd-text-light);\n  }\n  \n  \/* Tags *\/\n  .tpd-tags {\n    display: flex;\n    flex-wrap: wrap;\n    gap: 12px;\n    margin-top: 10px;\n    padding-top: 25px;\n    border-top: 1px solid var(--tpd-border);\n  }\n  .tpd-tag {\n    background: #e6f0f9;\n    color: var(--tpd-primary);\n    padding: 8px 16px;\n    border-radius: 20px;\n    font-size: 14px;\n    font-weight: 700;\n    margin-bottom: 5px;\n  }\n\n  \/* Selection Guide *\/\n  .tpd-guide-container {\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  \n  .tpd-guide-split-card {\n    background: #fff;\n    border: 1px solid var(--tpd-border);\n    border-radius: var(--tpd-radius-card);\n    padding: 50px;\n    box-shadow: var(--tpd-shadow);\n    margin-bottom: 80px;\n  }\n  .tpd-guide-split {\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: 50px;\n    align-items: center;\n  }\n  .tpd-comparison-img-wrap {\n    text-align: center;\n  }\n  .tpd-comparison-img-wrap img {\n    max-width: 100%;\n    border-radius: var(--tpd-radius-img);\n    box-shadow: var(--tpd-shadow);\n    border: 1px solid var(--tpd-border);\n    margin: 0 auto;\n  }\n  \n  .tpd-rule-content {\n    display: flex;\n    flex-direction: column;\n    gap: 30px;\n  }\n  .tpd-rule-card {\n    background: var(--tpd-bg-light);\n    border-left: 5px solid var(--tpd-primary);\n    border-radius: 12px;\n    padding: 30px;\n  }\n  .tpd-rule-card h4 {\n    font-size: 24px;\n    margin-bottom: 15px;\n    color: var(--tpd-primary);\n  }\n  .tpd-rule-card p {\n    margin: 0;\n    font-size: 16px;\n    color: var(--tpd-text-main);\n  }\n  .tpd-cs-box {\n    background: #fff;\n    border: 1px dashed #ccc;\n    border-radius: 12px;\n    padding: 25px;\n    display: flex;\n    align-items: flex-start;\n    gap: 15px;\n  }\n  .tpd-cs-box svg {\n    flex-shrink: 0;\n    color: var(--tpd-primary);\n    margin-top: 5px;\n  }\n  .tpd-cs-box p {\n    margin: 0;\n    font-size: 15px;\n    color: var(--tpd-text-light);\n  }\n\n  \/* Comparison Layout *\/\n  .tpd-comparison {\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: 40px;\n  }\n  .tpd-comp-card {\n    background: #fff;\n    border: 2px solid var(--tpd-border);\n    border-radius: var(--tpd-radius-card);\n    padding: 40px;\n    text-align: center;\n    position: relative;\n    transition: all 0.3s ease;\n    display: flex;\n    flex-direction: column;\n    box-shadow: var(--tpd-shadow);\n  }\n  .tpd-comp-card.tpd-active {\n    border-color: var(--tpd-success);\n    background: linear-gradient(to bottom, #ffffff, #f0fdf4);\n  }\n  .tpd-comp-card.tpd-inactive {\n    border-color: var(--tpd-danger);\n    background: linear-gradient(to bottom, #ffffff, #fef2f2);\n  }\n  .tpd-comp-card h4 {\n    font-size: 26px;\n    margin-bottom: 25px;\n    color: var(--tpd-text-main);\n  }\n  .tpd-comp-card-subtitle {\n    font-size: 16px;\n    font-weight: 700;\n    color: var(--tpd-text-light);\n    margin-bottom: 15px;\n    text-align: left;\n  }\n  \n  .tpd-comp-pn {\n    background: #fff;\n    border: 1px solid var(--tpd-border);\n    padding: 20px 25px;\n    border-radius: 12px;\n    font-family: 'DM Sans', sans-serif;\n    font-size: 15px;\n    line-height: 1.8;\n    text-align: left;\n    margin-bottom: 35px;\n    color: var(--tpd-text-main);\n    flex-grow: 1;\n    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);\n  }\n  .tpd-comp-pn ul {\n    margin: 0;\n    padding-left: 20px;\n  }\n  .tpd-comp-pn li {\n    margin-bottom: 10px;\n  }\n  .tpd-comp-pn li:last-child {\n    margin-bottom: 0;\n  }\n  .tpd-comp-pn strong {\n    color: var(--tpd-primary);\n    font-weight: 700;\n  }\n  .tpd-comp-card.tpd-inactive .tpd-comp-pn strong {\n    color: var(--tpd-text-main);\n  }\n\n  .tpd-comp-footer {\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    gap: 18px;\n    margin-top: auto;\n  }\n  .tpd-status-icon {\n    width: 64px;\n    height: 64px;\n    border-radius: 50%;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    color: #fff;\n    box-shadow: 0 4px 12px rgba(0,0,0,0.1);\n  }\n  .tpd-status-icon.success {\n    background: var(--tpd-success);\n  }\n  .tpd-status-icon.danger {\n    background: var(--tpd-danger);\n  }\n  .tpd-status-text {\n    font-size: 20px;\n    font-weight: 800;\n    letter-spacing: 0.5px;\n  }\n  .tpd-status-text.success {\n    color: var(--tpd-success);\n  }\n  .tpd-status-text.danger {\n    color: var(--tpd-danger);\n  }\n  \n  .tpd-shop-link {\n    display: inline-block;\n    padding: 14px 30px;\n    background-color: #fff;\n    color: var(--tpd-text-main);\n    border: 2px solid var(--tpd-border);\n    border-radius: 30px;\n    text-decoration: none;\n    font-weight: 700;\n    font-size: 15px;\n    transition: all 0.3s ease;\n    width: 100%;\n    max-width: 260px;\n  }\n  .tpd-shop-link:hover {\n    border-color: var(--tpd-danger);\n    color: var(--tpd-danger);\n  }\n\n  \/* Important Notes Grid *\/\n  .tpd-notes-grid {\n    display: grid;\n    grid-template-columns: 1fr;\n    gap: 30px;\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  \n  .tpd-note-card {\n    background: #fff;\n    border-radius: var(--tpd-radius-card);\n    box-shadow: var(--tpd-shadow);\n    overflow: hidden;\n    border: 1px solid var(--tpd-border);\n  }\n  \n  .tpd-note-blue {\n    border-left: 6px solid var(--tpd-primary);\n  }\n  \n  .tpd-note-header {\n    display: flex;\n    align-items: center;\n    gap: 15px;\n    padding: 25px 30px;\n    background: var(--tpd-bg-light);\n    border-bottom: 1px solid var(--tpd-border);\n  }\n  \n  .tpd-note-header h3 {\n    margin: 0;\n    font-size: 22px;\n  }\n  \n  .tpd-note-blue .tpd-note-header h3 {\n    color: var(--tpd-primary);\n  }\n  \n  .tpd-note-body {\n    padding: 30px;\n  }\n  \n  .tpd-note-body p {\n    margin: 0 0 15px 0;\n    font-size: 16px;\n    color: var(--tpd-text-light);\n    line-height: 1.7;\n  }\n  \n  .tpd-highlight-box {\n    display: flex;\n    align-items: flex-start;\n    gap: 15px;\n    background: #f0f7ff;\n    padding: 20px;\n    border-radius: 12px;\n    margin-top: 20px;\n  }\n  .tpd-highlight-box p {\n    margin: 0;\n    color: #0c4a6e;\n  }\n\n  \/* FAQ Styles *\/\n  .tpd-faq-container {\n    max-width: 1200px;\n    margin: 0 auto;\n    display: flex;\n    flex-direction: column;\n    gap: 18px;\n  }\n  .tpd-faq-item {\n    background: #fff;\n    border: 1px solid var(--tpd-border);\n    border-radius: 12px;\n    overflow: hidden;\n    box-shadow: var(--tpd-shadow);\n  }\n  .tpd-faq-summary {\n    padding: 22px 30px;\n    font-size: 19px;\n    font-family: 'Montserrat', sans-serif;\n    font-weight: 700;\n    color: var(--tpd-text-main);\n    cursor: pointer;\n    list-style: none;\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    transition: background-color 0.3s ease;\n  }\n  .tpd-faq-summary:hover {\n    background-color: var(--tpd-bg-light);\n  }\n  .tpd-faq-summary::-webkit-details-marker {\n    display: none;\n  }\n  .tpd-faq-summary::after {\n    content: '+';\n    font-size: 26px;\n    color: var(--tpd-primary);\n    font-weight: 400;\n    transition: transform 0.3s ease;\n  }\n  .tpd-faq-item[open] .tpd-faq-summary::after {\n    transform: rotate(45deg);\n  }\n  .tpd-faq-content {\n    padding: 0 30px 30px 30px;\n    color: var(--tpd-text-light);\n    font-size: 16px;\n    line-height: 1.7;\n  }\n\n  \/* Responsive Design *\/\n  @media (max-width: 768px) {\n    .tpd-section { margin-top: 60px !important; margin-bottom: 60px !important; }\n    .tpd-hero-title { font-size: 32px; margin-bottom: 20px; }\n    .tpd-hero-split { grid-template-columns: 1fr; gap: 40px; }\n    .tpd-section-title { font-size: 28px; }\n    .tpd-guide-split-card { padding: 30px 20px; }\n    .tpd-guide-split { grid-template-columns: 1fr; gap: 40px; }\n    .tpd-comparison { grid-template-columns: 1fr; gap: 30px; }\n    .tpd-comp-card { padding: 30px 20px; }\n    .tpd-note-header { padding: 20px; }\n    .tpd-note-body { padding: 20px; }\n    .tpd-faq-summary { font-size: 17px; padding: 18px 20px; }\n    .tpd-faq-content { padding: 0 20px 25px 20px; }\n  }\n\u003c\/style\u003e\n\u003cdiv class=\"tpd-wrapper\"\u003e\n\u003c!-- Top Title \u0026 Navigation --\u003e\n\u003cdiv style=\"margin-bottom: 60px;\"\u003e\n\u003ch2 class=\"tpd-hero-title\"\u003e풀 LED 헤드라이트 교체\u003cbr\u003e모델 3 (17-20) 및 모델 Y (20-21)용\u003c\/h2\u003e\n\u003cdiv class=\"tpd-nav\"\u003e\n\u003ca href=\"#tpd-overview\"\u003e개요\u003c\/a\u003e \u003ca href=\"#tpd-guide\"\u003e선택 가이드\u003c\/a\u003e \u003ca href=\"#tpd-important\"\u003e중요 참고 사항\u003c\/a\u003e \u003ca href=\"#tpd-faq\"\u003e자주 묻는 질문\u003c\/a\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Top Product Intro --\u003e\n\u003cdiv style=\"margin-top: 0 !important;\" class=\"tpd-section tpd-hero-split\" id=\"tpd-overview\"\u003e\n\u003cdiv class=\"tpd-hero-img\"\u003e\u003cimg alt=\"테슬라 모델 3\/Y 풀 LED 헤드라이트 교체\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-full-led-headlight-assembly-for-model-3-2017-2020-129109.jpg?v=1749972702\u0026amp;width=713\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"tpd-hero-content\"\u003e\n\u003c!-- Notice Box --\u003e\n\u003cdiv class=\"tpd-notice-box\"\u003e\n\u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"#856404\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"24\" width=\"24\"\u003e\u003cpath d=\"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z\"\u003e\u003c\/path\u003e\u003cline y2=\"13\" x2=\"12\" y1=\"9\" x1=\"12\"\u003e\u003c\/line\u003e\u003cline y2=\"17\" x2=\"12.01\" y1=\"17\" x1=\"12\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n\u003cdiv\u003e\n\u003cstrong\u003e중요 설치 안내:\u003c\/strong\u003e 이 헤드라이트를 설치하려면 앞 범퍼를 제거해야 합니다. 경험이 부족한 DIY 사용자는 전문 정비사에게 설치를 맡길 것을 강력히 권장합니다.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tpd-intro-features\"\u003e\n\u003cdiv class=\"tpd-intro-feature\"\u003e\n\u003cdiv class=\"tpd-intro-feature-icon\"\u003e\u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"18\" width=\"18\"\u003e\u003cpath d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"\u003e\u003c\/path\u003e\u003cpolyline points=\"22 4 12 14.01 9 11.01\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\u003c\/div\u003e\n\u003cdiv\u003e\n\u003ch4\u003e완벽한 OEM 교체품\u003c\/h4\u003e\n\u003cp\u003e손상되었거나 노후되었거나 고장난 공장 풀 LED(반사경 스타일) 헤드라이트를 수정 없이 직접 교체할 수 있도록 특별히 설계되었습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tpd-intro-feature\"\u003e\n\u003cdiv class=\"tpd-intro-feature-icon\"\u003e\u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"18\" width=\"18\"\u003e\u003cpath d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"\u003e\u003c\/path\u003e\u003cpolyline points=\"22 4 12 14.01 9 11.01\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\u003c\/div\u003e\n\u003cdiv\u003e\n\u003ch4\u003e플러그 앤 플레이 장착\u003c\/h4\u003e\n\u003cp\u003e원래 테슬라 부품(PN: 1077371 \/ 1077372)의 정확한 사양, 장착 지점 및 커넥터와 일치합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tpd-intro-feature\"\u003e\n\u003cdiv class=\"tpd-intro-feature-icon\"\u003e\u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"18\" width=\"18\"\u003e\u003cpath d=\"M22 11.08V12a10 10 0 1 1-5.93-9.14\"\u003e\u003c\/path\u003e\u003cpolyline points=\"22 4 12 14.01 9 11.01\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\u003c\/div\u003e\n\u003cdiv\u003e\n\u003ch4\u003e공장 수준 조명\u003c\/h4\u003e\n\u003cp\u003e표준 LED 반사경 디자인의 원래 밝기와 선명한 빛 분포를 복원하여 최적의 야간 가시성을 제공합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Tags --\u003e\n\u003cdiv class=\"tpd-tags\"\u003e\n\u003cspan class=\"tpd-tag\"\u003e직접 장착 가능\u003c\/span\u003e \u003cspan class=\"tpd-tag\"\u003e수정 불필요\u003c\/span\u003e \u003cspan class=\"tpd-tag\"\u003e오류 코드 없음\u003c\/span\u003e \u003cspan class=\"tpd-tag\"\u003eOEM 품질\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Selection Guide --\u003e\n\u003cdiv class=\"tpd-section\" id=\"tpd-guide\"\u003e\n\u003ch2 class=\"tpd-section-title\"\u003e100% 정확하게 헤드라이트를 선택하는 방법?\u003c\/h2\u003e\n\u003cp class=\"tpd-section-subtitle\"\u003e구매 전에 원래 헤드라이트를 식별하는 황금 규칙을 따르세요.\u003c\/p\u003e\n\u003cdiv class=\"tpd-guide-container\"\u003e\n\u003cdiv class=\"tpd-guide-split-card\"\u003e\n\u003cdiv class=\"tpd-guide-split\"\u003e\n\u003c!-- Left Comparison Image --\u003e\n\u003cdiv class=\"tpd-comparison-img-wrap\"\u003e\u003cimg alt=\"매트릭스 LED 대 풀 LED 헤드라이트 비교\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/TESERY_LED_Headlight_Assembly_for_Model_3Y_9.jpg?v=1751619541\u0026amp;width=1946\"\u003e\u003c\/div\u003e\n\u003c!-- Right Step Text --\u003e\n\u003cdiv class=\"tpd-rule-content\"\u003e\n\u003cdiv class=\"tpd-rule-card\"\u003e\n\u003ch4\u003e핵심 차이점: 프로젝터 렌즈 없음\u003c\/h4\u003e\n\u003cp\u003e헤드라이트를 가장 쉽게 구분하는 방법은 외곽을 보는 것입니다. \u003cstrong\u003e원형 프로젝터 렌즈가 없다면, 이 풀 LED 버전이 필요합니다.\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp style=\"margin-top: 15px;\"\u003e사진에서 보시다시피, \u003cstrong\u003e풀 LED 헤드라이트(이 제품)\u003c\/strong\u003e는 여러 개의 직사각형 반사경과 최신 매트릭스 버전에서 볼 수 있는 외부 원형 렌즈가 전혀 없습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tpd-cs-box\"\u003e\n\u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"28\" width=\"28\"\u003e\u003cpath d=\"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n\u003cdiv\u003e\n\u003cstrong\u003e아직 확실하지 않나요? 저희가 도와드리겠습니다!\u003c\/strong\u003e\n\u003cp style=\"margin-top: 8px;\"\u003e차량에 어떤 헤드라이트가 장착되어 있는지 확인할 수 없다면, 현재 헤드라이트의 선명하고 고화질 사진을 찍어 고객 서비스팀에 보내주세요. 정확히 확인해 드리겠습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Headlight Comparison --\u003e\n\u003cdiv class=\"tpd-comparison\"\u003e\n\u003c!-- Standard Headlight (Current Product) --\u003e\n\u003cdiv class=\"tpd-comp-card tpd-active\"\u003e\n\u003ch4\u003e풀 LED 헤드라이트 (렌즈 없음)\u003c\/h4\u003e\n\u003cdiv class=\"tpd-comp-card-subtitle\"\u003e일반 부품 번호:\u003c\/div\u003e\n\u003cdiv class=\"tpd-comp-pn\"\u003e\n\u003cul\u003e\n\u003cli\u003e시작 번호: \u003cstrong\u003e1077371-XX-X\u003c\/strong\u003e 또는 \u003cstrong\u003e1077372-XX-X\u003c\/strong\u003e\n\u003c\/li\u003e\n\u003cli\u003eRHD (영국\/아일랜드 ECE): 좌측 \u003cstrong\u003e1077379-XX-X\u003c\/strong\u003e \/ 우측 \u003cstrong\u003e1077380-XX-X\u003c\/strong\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tpd-comp-footer\"\u003e\n\u003cdiv class=\"tpd-status-icon success\"\u003e\u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"3\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"32\" width=\"32\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\u003c\/div\u003e\n\u003cdiv class=\"tpd-status-text success\"\u003e이 제품\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Matrix Headlight (Not this product) --\u003e\n\u003cdiv class=\"tpd-comp-card tpd-inactive\"\u003e\n\u003ch4\u003e매트릭스 LED (프로젝터 스타일)\u003c\/h4\u003e\n\u003cdiv class=\"tpd-comp-card-subtitle\"\u003e일반 부품 번호:\u003c\/div\u003e\n\u003cdiv class=\"tpd-comp-pn\"\u003e\n\u003cul\u003e\n\u003cli\u003e시작 번호: \u003cstrong\u003e1514952-XX-X\u003c\/strong\u003e 또는 \u003cstrong\u003e1514953-XX-X\u003c\/strong\u003e\n\u003c\/li\u003e\n\u003cli\u003e북미 SAE: 좌측 \u003cstrong\u003e2085749-XX-X\u003c\/strong\u003e \/ 우측 \u003cstrong\u003e2085750-XX-X\u003c\/strong\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tpd-comp-footer\"\u003e\n\u003cdiv class=\"tpd-status-icon danger\"\u003e\u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"3\" stroke=\"currentColor\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"32\" width=\"32\"\u003e\u003cline y2=\"18\" x2=\"6\" y1=\"6\" x1=\"18\"\u003e\u003c\/line\u003e\u003cline y2=\"18\" x2=\"18\" y1=\"6\" x1=\"6\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\u003c\/div\u003e\n\u003cdiv class=\"tpd-status-text danger\"\u003e이 제품 아님\u003c\/div\u003e\n\u003ca class=\"tpd-shop-link\" href=\"https:\/\/www.tesery.com\/products\/tesla-model-3-y-matrix-led-headlights\" target=\"_blank\"\u003e매트릭스 LED 헤드라이트 구매하기\u003c\/a\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Important Notes Section --\u003e\n\u003cdiv class=\"tpd-section\" id=\"tpd-important\"\u003e\n\u003ch2 class=\"tpd-section-title\"\u003e중요 참고 사항\u003c\/h2\u003e\n\u003cp class=\"tpd-section-subtitle\"\u003e구매 전에 이 중요한 내용을 꼭 읽어주세요.\u003c\/p\u003e\n\u003cdiv class=\"tpd-notes-grid\"\u003e\n\u003c!-- Issue 1: Control Modules (Blue Theme) --\u003e\n\u003cdiv class=\"tpd-note-card tpd-note-blue\"\u003e\n\u003cdiv class=\"tpd-note-header\"\u003e\n\u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"var(--tpd-primary)\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"28\" width=\"28\"\u003e\u003crect ry=\"2\" rx=\"2\" height=\"16\" width=\"16\" y=\"4\" x=\"4\"\u003e\u003c\/rect\u003e\u003crect height=\"6\" width=\"6\" y=\"9\" x=\"9\"\u003e\u003c\/rect\u003e\u003cline y2=\"4\" x2=\"9\" y1=\"1\" x1=\"9\"\u003e\u003c\/line\u003e\u003cline y2=\"4\" x2=\"15\" y1=\"1\" x1=\"15\"\u003e\u003c\/line\u003e\u003cline y2=\"23\" x2=\"9\" y1=\"20\" x1=\"9\"\u003e\u003c\/line\u003e\u003cline y2=\"23\" x2=\"15\" y1=\"20\" x1=\"15\"\u003e\u003c\/line\u003e\u003cline y2=\"9\" x2=\"23\" y1=\"9\" x1=\"20\"\u003e\u003c\/line\u003e\u003cline y2=\"14\" x2=\"23\" y1=\"14\" x1=\"20\"\u003e\u003c\/line\u003e\u003cline y2=\"9\" x2=\"4\" y1=\"9\" x1=\"1\"\u003e\u003c\/line\u003e\u003cline y2=\"14\" x2=\"4\" y1=\"14\" x1=\"1\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n\u003ch3\u003e기술 지원 안내: 제어 모듈\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"tpd-note-body\"\u003e\n\u003cp\u003e100% 소프트웨어 호환성과 안정성을 보장하기 위해 저희 헤드라이트는 원래 사양의 제어 모듈이 사전 장착되어 출고됩니다. 이 고가 부품은 최고의 성능을 제공하지만, 매우 드문 경우 전자 동기화 문제가 발생할 수 있습니다.\u003c\/p\u003e\n\u003cdiv class=\"tpd-highlight-box\"\u003e\n\u003csvg stroke-linejoin=\"round\" stroke-linecap=\"round\" stroke-width=\"2\" stroke=\"#0284c7\" fill=\"none\" viewbox=\"0 0 24 24\" height=\"24\" width=\"24\"\u003e\u003ccircle r=\"10\" cy=\"12\" cx=\"12\"\u003e\u003c\/circle\u003e\u003cline y2=\"12\" x2=\"12\" y1=\"16\" x1=\"12\"\u003e\u003c\/line\u003e\u003cline y2=\"8\" x2=\"12.01\" y1=\"8\" x1=\"12\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n\u003cp\u003e설치 중 모듈 관련 오류가 발생하면 즉시 연락해 주세요—\u003cstrong\u003e무료 교체 모듈을 바로 제공해 드립니다.\u003c\/strong\u003e 또는 저희 어셈블리는 1:1 정밀 매칭이므로 원래 헤드라이트에서 정상 작동하는 모듈을 교체해 즉시 문제를 해결할 수도 있습니다. 저희는 하드웨어에 자신이 있으며 설치가 성공적으로 완료되도록 지원합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- FAQ Section --\u003e\n\u003cdiv style=\"margin-bottom: 40px !important;\" class=\"tpd-section\" id=\"tpd-faq\"\u003e\n\u003ch2 class=\"tpd-section-title\"\u003e자주 묻는 질문\u003c\/h2\u003e\n\u003cp class=\"tpd-section-subtitle\"\u003e헤드라이트 교체에 관한 가장 흔한 질문에 대한 답변을 확인하세요.\u003c\/p\u003e\n\u003cdiv class=\"tpd-faq-container\"\u003e\n\u003cdetails class=\"tpd-faq-item\"\u003e\n\u003csummary class=\"tpd-faq-summary\"\u003e내 헤드라이트가 \"리플렉터\" 스타일인지 \"매트릭스\" 스타일인지 어떻게 알 수 있나요?\u003c\/summary\u003e\n\u003cdiv class=\"tpd-faq-content\"\u003e이 1077371\/1077372 유닛은 리플렉터 스타일(표준 LED)입니다. 내부를 보면 여러 개의 직사각형 크롬 마감 볼이 있고 큰 원형 렌즈가 없으면 이 부품이 맞습니다. 만약 차량에 외곽에 눈에 띄는 둥근 프로젝터 렌즈가 있다면 2021년 이후 매트릭스 버전이므로 매트릭스 전용 제품을 선택해야 합니다.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails class=\"tpd-faq-item\"\u003e\n\u003csummary class=\"tpd-faq-summary\"\u003e이 제품이 모델 3의 노란색 빛 스트립(DRL) 문제를 해결해 주나요?\u003c\/summary\u003e\n\u003cdiv class=\"tpd-faq-content\"\u003e네. 현재 헤드라이트의 노란색 또는 호박색 빛은 내부 열과 습기로 인해 공장 DRL 가이드가 손상되어 발생합니다. 저희 교체품은 100% 완전 새 제품이며, 습기 침투를 막는 고밀도 실링이 업그레이드되어 테슬라의 선명하고 밝은 흰색 시그니처 룩을 복원합니다.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails class=\"tpd-faq-item\"\u003e\n\u003csummary class=\"tpd-faq-summary\"\u003e프로그래밍이나 \"서비스 모드\" 보정이 필요한가요?\u003c\/summary\u003e\n\u003cdiv class=\"tpd-faq-content\"\u003e이 표준 LED 유닛은 100% 플러그 앤 플레이 설치입니다. 매트릭스 버전과 달리 복잡한 소프트웨어 핸드셰이크가 필요하지 않습니다. 다만, 설치 후 테슬라 서비스 메뉴에서 간단한 \"헤드라이트 보정\"을 권장하여 빔 높이가 완벽하게 맞춰져 야간 시야가 최적화되도록 하세요.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003cdetails class=\"tpd-faq-item\"\u003e\n\u003csummary class=\"tpd-faq-summary\"\u003e이 제품은 제어 모듈이 포함된 완전한 어셈블리로 제공되나요?\u003c\/summary\u003e\n\u003cdiv class=\"tpd-faq-content\"\u003e네. 이것은 완전한 헤드라이트 어셈블리입니다. 하우징, LED 보드, 통합 제어 모듈이 포함되어 있습니다. 오래된 고장난 헤드라이트에서 부품을 따로 떼어낼 필요 없이 전체 유닛을 교체하고 공장 하네스에 연결하기만 하면 됩니다.\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- FAQ JSON-LD --\u003e\n\u003cp\u003e \u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"모델 3 2017-2020 \/ 모델 Y 2021 \/ 선택해 주세요","offer_id":47110452904168,"sku":null,"price":798.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2020 \/ 모델 Y 2021 \/ 왼쪽【1077371】","offer_id":47034097041640,"sku":"TSLLJ0111-left","price":399.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2020 \/ 모델 Y 2021 \/ 오른쪽【1077372】","offer_id":47034097074408,"sku":"TSLLJ0111-right","price":399.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2020 \/ 모델 Y 2021 \/ 왼쪽+오른쪽","offer_id":47034097107176,"sku":"TSLLJ0111","price":798.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-full-led-headlight-assembly-for-model-3-2017-2020-129109.jpg?v=1749972702"},{"product_id":"tesla-dragon-scale-tail-lights-model-3-y","title":"TESERY 드래곤 스케일 테일 라이트 for 모델 3\/Y","description":"\u003cp\u003e테슬라 모델 Y 또는 모델 3을 드래곤 스케일 테일 라이트로 업그레이드하세요. 이 고광택 LED 라이트는 스타일리시하고 독특한 외관을 더할 뿐만 아니라 주행 안전성을 30% 향상시킵니다. 호박색은 안전 요구 사항을 충족하며 후방 추돌을 방지합니다. 밝은 브레이크 라이트와 선명한 후진등으로 낮과 밤 모두 자신 있게 운전할 수 있습니다.\u003c\/p\u003e\n\u003c!----\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 프리몬트\/텍사스 기가","offer_id":46353927733480,"sku":"","price":759.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 상하이 기가","offer_id":46482435080424,"sku":"","price":759.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 베를린 기가","offer_id":46482435113192,"sku":"","price":759.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 프리몬트\/텍사스 기가","offer_id":46353927799016,"sku":"TSL2314-US","price":759.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 상하이 기가","offer_id":46482435211496,"sku":"TSL2314-CN","price":689.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \/ 베를린 기가","offer_id":46482435244264,"sku":"TSL2314-EU","price":759.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025 \/ 프리몬트\/텍사스 기가","offer_id":46353927766248,"sku":"TSL2314-US","price":759.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025 \/ 상하이 기가","offer_id":46482435145960,"sku":"TSL2314-CN","price":689.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025 \/ 베를린 기가","offer_id":46482435178728,"sku":"TSL2314-EU","price":759.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-dragon-scale-tail-lights-for-model-3y-291107.jpg?v=1739906606"},{"product_id":"tesla-model-3-highland-taillight-starlink-full-width-strip","title":"TESERY 스타링크 전폭 스트립 테일라이트 모델 3 하이랜드용","description":"\u003ch3 style=\"text-align: center;\"\u003eTesla Model 3 Highland용 Starlink 전면 전체 폭 스트립 테일라이트\u003c\/h3\u003e\n\u003cp\u003eModel 3 Highland용 Starlink 전면 전체 폭 스트립 테일라이트로 차량의 안전성을 업그레이드하세요. 첨단 기술로 향상된 가시성과 사고 위험 감소를 경험하십시오. 우수한 디자인과 전문적인 엔지니어링을 신뢰하여 더 안전하고 신뢰할 수 있는 주행 경험을 누리세요.\u003c\/p\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e특징\u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003e\u003cstrong\u003e세련되고 현대적인 디자인\u003c\/strong\u003e: Starlink 전면 전체 폭 스트립 테일라이트는 Model 3 Highland 후면 전체 폭을 가로지르는 연속적이고 유선형의 라이트 바를 특징으로 하여 차량의 미적 매력을 높이는 세련되고 미래지향적인 외관을 제공합니다.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e향상된 가시성 및 안전성\u003c\/strong\u003e: 전체 폭 디자인은 다른 운전자에게 최대 가시성을 보장하여 야간 운전 및 악천후 시 안전성을 크게 향상시킵니다. 밝고 균일한 조명은 제동 또는 신호 시 다른 운전자에게 더 효과적으로 경고하는 데 도움을 줍니다.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e에너지 효율적인 LED 기술\u003c\/strong\u003e: 첨단 LED 기술을 활용하여 Starlink 테일라이트는 강력한 조명을 제공하면서도 전력 소비를 줄입니다. 이 에너지 효율적인 설계는 차량의 전체 효율성을 높이고 배터리에 가해지는 부담을 줄입니다.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e내구성 및 장수명\u003c\/strong\u003e: 고품질 소재로 제작되어 혹독한 환경 조건을 견딜 수 있도록 설계된 Starlink 전면 전체 폭 스트립 테일라이트는 매우 내구성이 뛰어나고 오래갑니다. 견고한 구조로 진동, 습기, 극한 온도를 견딜 수 있습니다.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e쉬운 설치 및 통합\u003c\/strong\u003e: 이 테일라이트는 Model 3 Highland와 완벽하게 통합되도록 설계되어 광범위한 개조 없이도 쉽게 설치할 수 있습니다. 차량의 기존 전기 시스템 및 제어 장치와 완벽하게 맞고 원활하게 작동하도록 설계되었습니다.\u003c\/p\u003e\n\u003ch2\u003e\u003cstrong\u003e\u003cb\u003e\u003cspan\u003e사양\u003c\/span\u003e\u003c\/b\u003e\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cspan\u003e\u003c\/span\u003e\u003cstrong\u003e\u003cspan\u003e적합 차종: \u003c\/span\u003e\u003c\/strong\u003eTesla Model 3 Highland\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch2\u003e배송\u003c\/h2\u003e\n\u003cp\u003e\u003cspan\u003e상품이 손상 없이 설치 준비가 완료된 상태로 도착할 수 있도록 최선을 다하겠습니다. Tesla Model 3 Highland용 Starlink 전면 전체 폭 스트립 테일라이트를 좋아하신다면 \u003c\/span\u003e\u003cspan\u003e장바구니에 담고 지금 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다.\u003cbr data-mce-fragment=\"1\"\u003e\u003cbr data-mce-fragment=\"1\"\u003e상품이 손상되었거나 용도에 맞지 않는 경우, 수령일로부터 30일 이내에 무조건 환불 또는 교환해 드립니다.\u003cbr data-mce-fragment=\"1\"\u003e\u003cbr data-mce-fragment=\"1\"\u003eTesla Model 3 Highland용 Starlink 전면 전체 폭 스트립 테일라이트에 대해 궁금한 점이 있으시면 온라인 고객 서비스에 문의하시거나 📧 이메일: support@tesery.com 또는 📞 전화\/Whatsapp\/Facebook\/메시지: +86 18594211091로 연락해 주세요.\u003c\/span\u003e\u003c\/p\u003e\n\u003c!----\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요","offer_id":46439922204904,"sku":"","price":699.0,"currency_code":"USD","in_stock":true},{"title":"프리몬트\/텍사스 기가","offer_id":46439922270440,"sku":"TSL2316-US","price":699.0,"currency_code":"USD","in_stock":true},{"title":"상하이 기가","offer_id":46439922303208,"sku":"TSL2316-CN","price":699.0,"currency_code":"USD","in_stock":true},{"title":"베를린 기가","offer_id":46439922335976,"sku":"TSL2316-EU","price":699.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-starlink-full-width-strip-taillight-for-model-3-highland-969671.jpg?v=1769421853"},{"product_id":"tesla-model-y-triangle-window-ambient-light","title":"Triangle Window Ambient Light For Model Y (2PCS) | TESERY","description":"\u003ch2 style=\"text-align: center;\"\u003eTriangle Window Ambient Light For Tesla Model Y 2020-2025.03\u003c\/h2\u003e\n\u003cp\u003e\u003cspan\u003eTriangle Window Ambient Light for Tesla Model Y와 함께 운전 경험을 밝히세요! 2020년 이후 모델을 위해 특별히 설계된 이 독특한 조명 기능은 차량에 세련미와 스타일을 더합니다. 이 필수 업그레이드로 스타일리시하게 주행하며 어디서든 시선을 사로잡으세요.\u003c\/span\u003e\u003c\/p\u003e\n\u003ch3 data-mce-fragment=\"1\"\u003e주요 특징\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e【Model Y 전용 맞춤 설계】\u003c\/strong\u003eTesla Model Y를 위해 특별히 제작된 이 조명은 차량의 시그니처 삼각형 창을 강조합니다. 현대적인 스타일을 더해 차량 외관에 세련미를 더합니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【잠금 해제 시 즉시 점등】\u003c\/strong\u003e \u003cspan style=\"font-size: 0.875rem;\"\u003eTesla에 다가갈 때 자동으로 밝아지는 조명으로 도착을 환하게 비추며, 낮은 전력 소비로 에너지를 절약하는 시각적으로 인상적인 분위기를 제공합니다.\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【미적 우아함】\u003c\/strong\u003e\u003cspan style=\"font-size: 0.875rem;\"\u003e이 장식 조명은 Tesla의 외관을 한층 돋보이게 하며, 3D 풍경 효과를 도입해 매혹적인 분위기를 연출하여 Model Y에 새로운 수준의 고급스러움을 더합니다.\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【간편한 설치】\u003c\/strong\u003e\u003cspan style=\"font-size: 0.875rem;\"\u003e이 조명은 설치가 간편하여 Tesla Model Y에 손상 없이 매끄럽게 통합됩니다. 방수 설계로 어떤 날씨에도 지속적인 성능을 보장합니다.\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【프리미엄 향상】\u003c\/strong\u003e\u003cspan style=\"font-size: 0.875rem;\"\u003e삼각형 창 조명으로 Tesla의 위상을 높여 대담한 인상을 남기세요. 이 조명은 Model Y를 돋보이게 하여 스타일과 세련미의 지속적인 인상을 남깁니다.\u003c\/span\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3 data-mce-fragment=\"1\"\u003e제품 파라미터\u003c\/h3\u003e\n\u003cp data-mce-fragment=\"1\"\u003e\u003cstrong\u003e제품명:\u003c\/strong\u003e Tesla Triangle Window Ambient Light\u003c\/p\u003e\n\u003cp data-mce-fragment=\"1\"\u003e\u003cstrong\u003e호환성: \u003c\/strong\u003eModel Y 2020년 이후\u003c\/p\u003e\n\u003cp data-mce-fragment=\"1\"\u003e\u003cstrong\u003e크기: \u003c\/strong\u003e33*23*8cm\u003c\/p\u003e\n\u003cp data-mce-fragment=\"1\"\u003e\u003cstrong\u003e재질: \u003c\/strong\u003eABS+LED\u003c\/p\u003e\n\u003cp data-mce-fragment=\"1\"\u003e\u003cstrong\u003e수량: 2개\u003c\/strong\u003e（왼쪽 또는 오른쪽만 판매하는 것이 아닙니다）\u003c\/p\u003e\n\u003cdiv class=\"D5aOJc vJwDU\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003ch3\u003e배송\u003c\/h3\u003e\n\u003cp\u003e상품이 완벽한 상태로 고객님께 도착하고 설치 준비가 완료되도록 모든 노력을 기울이고 있습니다.\u003c\/p\u003e\n\u003cp\u003eTriangle Window Ambient Light For Tesla Model Y를 마음에 드시면 장바구니에 담고 지금 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다.\u003c\/p\u003e\n\u003cp\u003e상품이 손상되었거나 용도에 맞지 않을 경우, 수령일로부터 30일 이내 무조건 환불 또는 교환해 드립니다.\u003c\/p\u003e\n\u003cp\u003eTriangle Window Ambient Light For Tesla Model Y에 대해 궁금한 점이 있으시면 온라인 고객 서비스에 문의하시거나\u003cspan\u003e \u003c\/span\u003e\u003cspan data-mce-fragment=\"1\"\u003e이메일:\u003c\/span\u003e\u003cspan data-mce-fragment=\"1\"\u003e sales001\u003c\/span\u003e\u003cspan data-mce-fragment=\"1\"\u003e@tesery.com\u003c\/span\u003e\u003cspan data-mce-fragment=\"1\"\u003e \u003c\/span\u003e\u003cspan data-mce-fragment=\"1\"\u003e또는 전화\/Whatsapp\/Facebook\/메시지：+86 16763286386\u003c\/span\u003e로 연락해 주세요\u003c\/p\u003e\n\u003c!----\u003e","brand":"Tesery Official Store","offers":[{"title":"인피니티 미러","offer_id":48161174618344,"sku":"TSL2326","price":109.0,"currency_code":"USD","in_stock":true},{"title":"우주비행사 (세일!)","offer_id":48161174651112,"sku":"TSL2329-Y-E","price":99.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/triangle-window-ambient-light-for-tesla-model-y2pcs-340196.jpg?v=1723268837"},{"product_id":"led-lights-door-sills-for-tesla-model-y-3-s-x","title":"테슬라 모델 Y\/3\/S\/X용 LED 컬러풀 조명 도어 실","description":"\u003cdiv style=\"position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%;\"\u003e\u003ciframe src=\"https:\/\/www.youtube.com\/embed\/On8x8evYakE\" title=\"Svítící prahové lišty do TESLA 3 i Y - TESERY\" style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%;\"\u003e\u003c\/iframe\u003e\u003c\/div\u003e\n\u003cdiv class=\"a-section a-spacing-large bucket\"\u003e\n\u003cdiv style=\"text-align: start;\" class=\"a-section a-spacing-large bucket\"\u003e\n\u003ch3\u003e사양\u003c\/h3\u003e\n\u003cdiv class=\"aplus-v2 desktop celwidget\"\u003e\n\u003cstrong\u003e적합 모델: \u003c\/strong\u003e테슬라 모델 3 2017년 이후 \/ 모델 Y 2020년 이후 \/ 모델 X 2017년 이후 \/ 모델 S 2020년 이후\u003c\/div\u003e\n\u003cdiv class=\"aplus-v2 desktop celwidget\"\u003e\n\u003cstrong\u003e충전 시간: \u003c\/strong\u003e0.5-1시간\u003cbr\u003e\u003cstrong\u003e조명 지속 시간: \u003c\/strong\u003e6시간\u003cbr\u003e\u003cstrong\u003e설치:\u003c\/strong\u003e 자석 설치\u003cbr\u003e\n\u003c\/div\u003e\n\u003ch3 class=\"aplus-v2 desktop celwidget\"\u003e패키지\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e테슬라 조명 도어 실\u003c\/li\u003e\n\u003cli\u003e\u003cspan style=\"font-size: 0.875rem;\"\u003eUSB 케이블\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택하세요 \/ 2개 (앞문)","offer_id":46678118269160,"sku":"","price":69.0,"currency_code":"USD","in_stock":true},{"title":"선택하세요 \/ 2개 (뒷문)","offer_id":47807203082472,"sku":null,"price":49.0,"currency_code":"USD","in_stock":true},{"title":"선택하세요 \/ 4개 (앞문 및 뒷문)","offer_id":46678118301928,"sku":null,"price":119.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-현재 \/ 2개 (앞문)","offer_id":46678118334696,"sku":"TSL0203-3-front","price":69.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-현재 \/ 2개 (뒷문)","offer_id":47807203115240,"sku":"TSL0203-3-rear","price":59.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-현재 \/ 4개 (앞문 및 뒷문)","offer_id":46678118367464,"sku":"TSL0203-3","price":119.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-현재 \/ 2개 (앞문)","offer_id":46678118400232,"sku":"TSL0203-Y-front","price":69.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-현재 \/ 2개 (뒷문)","offer_id":47807203148008,"sku":"TSL0203-Y-rear","price":59.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-현재 \/ 4개 (앞문 및 뒷문)","offer_id":46678118433000,"sku":"TSL0203-Y","price":119.0,"currency_code":"USD","in_stock":true},{"title":"Model S 2020-ON \/ 2개 (앞문)","offer_id":46678134227176,"sku":"TSL0203-S-front","price":69.0,"currency_code":"USD","in_stock":true},{"title":"Model S 2020-ON \/ 2개 (뒷문)","offer_id":47807203180776,"sku":"TSL0203-S-rear","price":59.0,"currency_code":"USD","in_stock":true},{"title":"Model S 2020-ON \/ 4개 (앞문 및 뒷문)","offer_id":46678134259944,"sku":"TSL0203-S","price":119.0,"currency_code":"USD","in_stock":true},{"title":"Model X 2017-ON \/ 2개 (앞문)","offer_id":46678134292712,"sku":"TSL0203-X-front","price":69.0,"currency_code":"USD","in_stock":true},{"title":"Model X 2017-ON \/ 2개 (뒷문)","offer_id":47807203213544,"sku":"TSL0203-X-rear","price":59.0,"currency_code":"USD","in_stock":true},{"title":"Model X 2017-ON \/ 4개 (앞문 및 뒷문)","offer_id":46678134325480,"sku":"TSL0203-X","price":119.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/led-colorful-lights-illuminated-door-sills-for-tesla-model-y3sx-1323588.jpg?v=1754362017"},{"product_id":"tesla-model-3-highland-seat-back-ambient-lighting","title":"시트 백 앰비언트 라이팅 for Model 3 Highland \u0026 Model Y Juniper (2PCS) | TESERY","description":"\u003cdiv style=\"position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden;\"\u003e\u003ciframe src=\"https:\/\/www.youtube.com\/embed\/wGb17Kw5_vY\" title=\"2026 Tesla Model Y Juniper Seat Back Ambient Lighting Upgrade! (Tesery Install \u0026amp; Review)\" style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%;\"\u003e\u003c\/iframe\u003e\u003c\/div\u003e\n\u003cp\u003e\u003cspan\u003eTesla Model 3 Highland 전용 시트 백 앰비언트 라이팅으로 새로운 수준의 편안함과 스타일을 경험하세요. 설치가 간편한 조명으로 운전 경험을 향상시키고 차량에 분위기를 더하세요. 지루한 자동차 여행은 이제 그만!\u003c\/span\u003e\u003c\/p\u003e\n\u003ch2\u003e\u003cspan\u003e제품 특징\u003c\/span\u003e\u003c\/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e【뒷좌석 조명으로 향상된 분위기】: \u003c\/strong\u003e앰비언트 조명과 완벽하게 어우러지도록 설계된 뒷좌석 조명 시리즈로 Tesla 내부 분위기를 한층 높이세요. 정밀 몰드로 제작되어 어두운 곳에서도 Tesla를 독특하게 빛나게 합니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong style=\"font-size: 0.875rem;\"\u003e【에너지 효율적인 LED 기술】: \u003c\/strong\u003e\u003cspan style=\"font-size: 0.875rem;\"\u003e배터리 소모 걱정 없이 생생한 LED 조명을 즐기세요. 에너지 효율적인 설계로 최소한의 전력 소비를 보장하여 안심하고 조명 효과를 누릴 수 있습니다.\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong style=\"font-size: 0.875rem;\"\u003e【개인화 가능한 64가지 색상 옵션】: \u003c\/strong\u003e\u003cspan style=\"font-size: 0.875rem;\"\u003e64가지 색상 선택과 밝기 조절로 Tesla 내부를 맞춤 설정하세요. 스마트 화면 제어로 다양한 조명 설정을 손쉽게 탐색하며 완벽한 분위기를 연출할 수 있습니다.\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong style=\"font-size: 0.875rem;\"\u003e【내구성과 선명도를 위한 프리미엄 소재】: \u003c\/strong\u003e\u003cspan style=\"font-size: 0.875rem;\"\u003e친환경적이고 비발열 광도관이 적용된 LED 라이트 스트립으로 프리미엄 조명을 경험하세요. \u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong style=\"font-size: 0.875rem;\"\u003e【간소화된 설치 과정】: \u003c\/strong\u003e\u003cspan style=\"font-size: 0.875rem;\"\u003eTesla에 손상 없이 LED 조명을 쉽게 설치하세요. 접착제나 열로 인한 접착 실패 걱정 없이 간단한 과정입니다. 간편한 온라인 설치 영상을 따라 하시면 문제없이 설치할 수 있습니다.（설치 영상 문의는 고객 서비스에 연락해 주세요）\u003c\/span\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch2\u003e\u003cstrong\u003e제품 사양\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003e\u003cstrong\u003e제품명:\u003cspan\u003e \u003c\/span\u003e\u003c\/strong\u003eTESERY 시트 백 앰비언트 라이팅\u003cbr\u003e\u003cstrong\u003e적용 모델 연도：\u003c\/strong\u003eTesla Model 3 Highland 2024+ \u0026amp; New Model Y 2025+용\u003cbr\u003e\u003cstrong\u003e제어 방법:\u003c\/strong\u003e  화면 제어\u003cbr\u003e\u003cstrong\u003e재질:\u003c\/strong\u003e\u003cspan\u003e PU+MMA\u003cbr\u003e\u003cstrong\u003e조절 가능한 색상：\u003c\/strong\u003e64가지 색상\u003cbr\u003e\u003c\/span\u003e\u003cspan\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003ch2\u003e\u003cstrong\u003e포장 목록:\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp\u003e1쌍 (2PCS) Tesla Model 3 Highland \u0026amp; New Model Y 시트 백 앰비언트 라이팅\u003c\/p\u003e\n\u003ch2\u003e배송비\u003c\/h2\u003e\n\u003cp\u003e\u003cbr\u003e상품이 완벽한 상태로 고객님께 도착하여 설치 준비가 완료되도록 모든 노력을 기울이고 있습니다.\u003c\/p\u003e\n\u003cp\u003eTesla Model 3 Highland \u0026amp; New Model Y (2PCS)용 The Seat Back Ambient Lighting을(를) 좋아하신다면 장바구니에 담아 지금 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다.\u003c\/p\u003e\n\u003cp\u003e상품이 손상되었거나 용도에 맞지 않을 경우, 수령일로부터 30일 이내 무조건 환불 또는 교환해 드립니다.\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요","offer_id":46968638374120,"sku":null,"price":149.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 하이랜드 2024+","offer_id":46968638406888,"sku":"TSL1014-3","price":149.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 주니퍼 2025+","offer_id":46968638439656,"sku":"TSL1014-Y","price":149.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/seat-back-ambient-lighting-for-tesla-model-3-highland-2pcs-106091.jpg?v=1732891885"},{"product_id":"tesla-projection-lights-for-model-y","title":"Projection Lights for Model Y \/ 3 | TESERY","description":"\u003cstyle\u003e\n  .tesla-puddle-wrapper {\n    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;\n    line-height: 1.6;\n    color: #333333; \n    background-color: #ffffff; \n    max-width: 850px;\n    margin: 0 auto;\n    padding: 40px 15px;\n  }\n  .tesla-puddle-wrapper h2 {\n    font-size: 2.2rem;\n    color: #111111; \n    margin-bottom: 20px;\n    font-weight: 800;\n    letter-spacing: -0.8px;\n    line-height: 1.2;\n  }\n  .hero-intro {\n    font-size: 1.15rem;\n    color: #555555;\n    margin-bottom: 40px;\n    line-height: 1.8;\n  }\n  .blue-highlight {\n    color: #0056B3;\n    font-weight: 600;\n  }\n\n  .video-wrapper {\n    position: relative;\n    padding-bottom: 56.25%; \n    height: 0;\n    margin-bottom: 50px;\n    background-color: #f4f5f7;\n    border-radius: 12px;\n    overflow: hidden;\n    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);\n  }\n  .video-wrapper iframe {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    border: none;\n  }\n\n  .section-heading {\n    font-size: 1.6rem;\n    color: #111111;\n    margin: 60px 0 30px;\n    padding-bottom: 15px;\n    border-bottom: 2px solid #f0f2f5; \n    display: flex;\n    align-items: center;\n    font-weight: 700;\n    letter-spacing: -0.5px;\n  }\n  .section-heading::before {\n    content: '';\n    display: inline-block;\n    width: 6px;\n    height: 24px;\n    background-color: #0056B3; \n    margin-right: 15px;\n    border-radius: 4px;\n  }\n  \n  .benefit-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n    gap: 25px;\n    margin-bottom: 50px;\n  }\n  .benefit-card {\n    background-color: #ffffff; \n    border: 1px solid #e5e7eb; \n    padding: 30px 25px;\n    border-radius: 12px;\n    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n    box-shadow: 0 2px 8px rgba(0,0,0,0.02);\n  }\n  .benefit-card:hover {\n    border-color: #0056B3; \n    box-shadow: 0 12px 24px rgba(0, 86, 179, 0.08);\n    transform: translateY(-4px); \n  }\n  .benefit-icon {\n    margin-bottom: 15px;\n    display: inline-block;\n    padding: 10px;\n    background-color: #f5f9ff;\n    border-radius: 8px;\n    color: #0056B3;\n  }\n  .benefit-card h4 {\n    color: #111111;\n    margin-top: 0;\n    margin-bottom: 12px;\n    font-size: 1.2rem;\n    font-weight: 700;\n  }\n  .benefit-card p {\n    margin: 0;\n    font-size: 0.95rem;\n    color: #555555;\n    line-height: 1.6;\n  }\n\n  .specs-container {\n    border: 1px solid #e5e7eb;\n    border-radius: 12px;\n    margin-bottom: 25px;\n    overflow: hidden;\n  }\n  .specs-list {\n    list-style: none;\n    padding: 0;\n    margin: 0;\n  }\n  .specs-list li {\n    display: flex;\n    border-bottom: 1px solid #e5e7eb;\n  }\n  .specs-list li:last-child {\n    border-bottom: none;\n  }\n  .specs-list strong {\n    background-color: #f9fafb;\n    color: #333333;\n    flex: 0 0 180px; \n    padding: 16px 20px;\n    font-weight: 600;\n    border-right: 1px solid #e5e7eb;\n  }\n  .specs-list span {\n    background-color: #ffffff;\n    flex: 1;\n    color: #444444;\n    padding: 16px 20px;\n  }\n  \n  .package-box {\n    background-color: #f8fafc;\n    border: 1px solid #e2e8f0;\n    border-left: 5px solid #0056B3;\n    padding: 20px 25px;\n    border-radius: 8px;\n    margin-bottom: 50px;\n    font-size: 1.05rem;\n    display: flex;\n    align-items: center;\n    gap: 15px;\n    color: #333333;\n  }\n  .package-box strong {\n    color: #111111;\n  }\n\n  .faq-container {\n    margin-bottom: 50px;\n  }\n  .faq-item {\n    background-color: #ffffff;\n    border: 1px solid #e5e7eb;\n    border-radius: 10px;\n    margin-bottom: 15px;\n    transition: all 0.3s ease;\n  }\n  .faq-item:hover {\n    border-color: #d1d5db;\n    background-color: #fafafa;\n  }\n  .faq-item[open] {\n    border-color: #0056B3;\n    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.05);\n    background-color: #ffffff;\n  }\n  .faq-item summary {\n    padding: 20px 25px;\n    font-weight: 600;\n    font-size: 1.1rem;\n    cursor: pointer;\n    color: #111111;\n    list-style: none; \n    position: relative;\n    outline: none;\n  }\n  .faq-item summary::-webkit-details-marker {\n    display: none; \n  }\n  .faq-item summary::after {\n    content: '+';\n    position: absolute;\n    right: 25px;\n    color: #0056B3;\n    font-size: 1.6rem;\n    line-height: 1;\n    top: 50%;\n    transform: translateY(-50%);\n    font-weight: 300;\n    transition: transform 0.3s ease;\n  }\n  .faq-item[open] summary::after {\n    content: '−';\n    transform: translateY(-50%) rotate(180deg);\n  }\n  .faq-content {\n    padding: 0 25px 25px;\n    color: #555555;\n    font-size: 1rem;\n    line-height: 1.7;\n    border-top: 1px solid transparent;\n  }\n  .faq-item[open] .faq-content {\n    border-top: 1px solid #f0f2f5;\n    padding-top: 20px;\n    margin-top: -5px;\n  }\n\n  .bottom-trust-badges {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    gap: 20px;\n    margin-top: 60px;\n    padding-top: 40px;\n    border-top: 1px solid #e5e7eb;\n    text-align: center;\n  }\n  .trust-badge-item {\n    flex: 1;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    gap: 12px;\n  }\n  .trust-badge-icon {\n    color: #0056B3;\n    background-color: #f5f9ff;\n    width: 56px;\n    height: 56px;\n    border-radius: 50%;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n  }\n  .trust-badge-item span {\n    font-size: 0.95rem;\n    font-weight: 600;\n    color: #111111;\n  }\n  \n  @media (max-width: 600px) {\n    .specs-list li {\n      flex-direction: column;\n    }\n    .specs-list strong {\n      flex: 0 0 auto;\n      border-right: none;\n      border-bottom: 1px solid #e5e7eb;\n      padding: 12px 20px;\n    }\n    .specs-list span {\n      padding: 12px 20px;\n    }\n    .tesla-puddle-wrapper {\n      padding: 20px 10px;\n    }\n    .benefit-grid {\n      grid-template-columns: 1fr;\n    }\n    .tesla-puddle-wrapper h2 {\n      font-size: 1.8rem;\n    }\n    .bottom-trust-badges {\n      flex-wrap: wrap;\n      gap: 30px 10px;\n    }\n    .trust-badge-item {\n      flex: 1 1 40%;\n    }\n  }\n\u003c\/style\u003e\n\n\u003cdiv class=\"tesla-puddle-wrapper\"\u003e\n\n  \u003ch2\u003e테슬라 모델 Y \u0026amp; 3용 프리미엄 울트라 HD 유리 풋라이트\u003c\/h2\u003e\n  \n  \u003cp class=\"hero-intro\"\u003eOEM+ 럭셔리 감성을 더해 테슬라 입구를 한층 고급스럽게 만드세요. 흐릿한 공장 지상 조명과 몇 달 만에 흐려지는 저가 애프터마켓 플라스틱 프로젝터는 이제 그만. 저희 프리미엄 프로젝션 라이트는 문을 열 때마다 날카롭고 고화질의 \u003cstrong\u003eTESLA 워드마크\u003c\/strong\u003e를 바닥에 투사해 안전성과 고급스러움을 동시에 제공합니다.\u003c\/p\u003e\n\n  \u003cdiv class=\"video-wrapper\"\u003e\n    \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/ukkOx-UsqZg?si=5J1wnHgtVaAXANEP\" title=\"Tesla Puddle Light Installation\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen\u003e\u003c\/iframe\u003e\n  \u003c\/div\u003e\n\n  \u003ch3 class=\"section-heading\"\u003e왜 저희 프리미엄 프로젝터를 선택해야 하나요?\u003c\/h3\u003e\n  \n  \u003cdiv class=\"benefit-grid\"\u003e\n    \u003cdiv class=\"benefit-card\"\u003e\n      \u003cdiv class=\"benefit-icon\"\u003e\n        \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003ccircle cx=\"12\" cy=\"12\" r=\"10\"\u003e\u003c\/circle\u003e\u003ccircle cx=\"12\" cy=\"12\" r=\"6\"\u003e\u003c\/circle\u003e\u003ccircle cx=\"12\" cy=\"12\" r=\"2\"\u003e\u003c\/circle\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n      \u003ch4\u003e레이저 각인 유리 렌즈\u003c\/h4\u003e\n      \u003cp\u003e90%의 저가 대체품이 시간이 지나면서 타고 흐려지는 플라스틱 필름을 사용하는 반면, 저희 조명은 레이저 각인 코팅 쿼츠 유리를 사용해 정밀하고 생생하며 \u003cspan class=\"blue-highlight\"\u003e절대 바래지 않는\u003c\/span\u003e 투사를 보장합니다.\u003c\/p\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"benefit-card\"\u003e\n      \u003cdiv class=\"benefit-icon\"\u003e\n        \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z\"\u003e\u003c\/path\u003e\u003ccircle cx=\"12\" cy=\"12\" r=\"3\"\u003e\u003c\/circle\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n      \u003ch4\u003e5개의 울트라 HD 광학 렌즈\u003c\/h4\u003e\n      \u003cp\u003e정교한 5렌즈 광학 시스템을 갖춘 이 풋라이트는 선명하고 왜곡 없는 초고휘도 투사를 제공하여 야간 시인성과 스타일을 크게 향상시킵니다.\u003c\/p\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"benefit-card\"\u003e\n      \u003cdiv class=\"benefit-icon\"\u003e\n        \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n      \u003ch4\u003eADC12 알루미늄 히트 싱크\u003c\/h4\u003e\n      \u003cp\u003e열은 LED의 적입니다. 표준 플라스틱 백킹 대신 양극산화된 ADC12 알루미늄 합금 후면 케이스를 사용해 우수한 열 방출과 내식성을 제공합니다.\u003c\/p\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"benefit-card\"\u003e\n      \u003cdiv class=\"benefit-icon\"\u003e\n        \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M13 2L3 14h9l-1 8 10-12h-9l1-8z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n      \u003ch4\u003e5분 플러그 앤 플레이\u003c\/h4\u003e\n      \u003cp\u003e원래 공장 조명을 완벽하게 대체하도록 설계되었습니다. 배선 절단, 드릴 작업 없이 완벽히 보정된 회로로 테슬라 시스템에 \u003cspan class=\"blue-highlight\"\u003e전혀 문제 없이\u003c\/span\u003e 작동합니다.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003ch3 class=\"section-heading\"\u003e사양 및 설치\u003c\/h3\u003e\n  \n  \u003cdiv class=\"specs-container\"\u003e\n    \u003cul class=\"specs-list\"\u003e\n      \u003cli\u003e\n\u003cstrong\u003e호환성\u003c\/strong\u003e \u003cspan\u003e테슬라 모델 3 \u0026amp; 모델 Y 2017년 이후 (하이랜드 \u0026amp; 주니퍼 포함 모든 버전)\u003c\/span\u003e\n\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e투사\u003c\/strong\u003e \u003cspan\u003e“TESLA” 로고 (고화질 렌즈)\u003c\/span\u003e\n\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e재질\u003c\/strong\u003e \u003cspan\u003eABS 플라스틱 + 알루미늄 합금 베이스\u003c\/span\u003e\n\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e광원\u003c\/strong\u003e \u003cspan\u003e고휘도 LED\u003c\/span\u003e\n\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e동작 전압\u003c\/strong\u003e \u003cspan\u003e12 V\u003c\/span\u003e\n\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e전력 소비\u003c\/strong\u003e \u003cspan\u003e개당 5 W\u003c\/span\u003e\n\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e보호 등급\u003c\/strong\u003e \u003cspan\u003eIP65 (방수 및 방진)\u003c\/span\u003e\n\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e온도 제어\u003c\/strong\u003e \u003cspan\u003e내장 지능형 열 관리 칩\u003c\/span\u003e\n\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e작동\u003c\/strong\u003e \u003cspan\u003e자동 도어 센서\u003c\/span\u003e\n\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e설치\u003c\/strong\u003e \u003cspan\u003e\u003cspan class=\"blue-highlight\"\u003e플러그 앤 플레이, 배선 변경 불필요\u003c\/span\u003e\u003c\/span\u003e\n\u003c\/li\u003e\n    \u003c\/ul\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"package-box\"\u003e\n    \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"#0056B3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z\"\u003e\u003c\/path\u003e\u003cpolyline points=\"3.27 6.96 12 12.01 20.73 6.96\"\u003e\u003c\/polyline\u003e\u003cline x1=\"12\" y1=\"22.08\" x2=\"12\" y2=\"12\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n    \u003cdiv\u003e\n\u003cstrong\u003e패키지 구성:\u003c\/strong\u003e LED 도어 프로젝터 풋라이트 2개\u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003ch3 class=\"section-heading\"\u003e자주 묻는 질문\u003c\/h3\u003e\n  \n  \u003cdiv class=\"faq-container\"\u003e\n    \u003cdetails class=\"faq-item\"\u003e\n      \u003csummary\u003e이 조명이 제 모델 Y의 창문 하강 문제를 일으키나요?\u003c\/summary\u003e\n      \u003cdiv class=\"faq-content\"\u003e\n        절대 그렇지 않습니다. 저희 풋라이트는 테슬라 회로에 완벽히 맞춘 업그레이드된 내장 디코딩 칩을 탑재했습니다. 100% 안전하며 자동 창문 하강 기능에 전혀 영향을 주지 않습니다.\n      \u003c\/div\u003e\n    \u003c\/details\u003e\n    \n    \u003cdetails class=\"faq-item\"\u003e\n      \u003csummary\u003e로고가 시간이 지나면서 다른 저가 브랜드처럼 바래나요?\u003c\/summary\u003e\n      \u003cdiv class=\"faq-content\"\u003e\n        아니요. 저가 브랜드는 LED 열에 의해 타고 흐려지는 플라스틱 필름을 사용합니다. 저희 조명은 \u003cstrong\u003e레이저 각인 코팅 쿼츠 유리 렌즈\u003c\/strong\u003e를 사용하여 로고가 선명하고 밝게 유지되며 차량 수명 동안 절대 바래지 않습니다.\n      \u003c\/div\u003e\n    \u003c\/details\u003e\n    \n    \u003cdetails class=\"faq-item\"\u003e\n      \u003csummary\u003e이것이 제 테슬라 보증을 무효화하나요?\u003c\/summary\u003e\n      \u003cdiv class=\"faq-content\"\u003e\n        아니요, 이 조명을 설치해도 테슬라 보증이 무효화되지 않습니다. 100% 플러그 앤 플레이 방식의 비파괴 업그레이드로, 배선 절단이나 연결 작업이 필요 없으며 언제든지 원래 공장 조명으로 쉽게 교체할 수 있습니다.\n      \u003c\/div\u003e\n    \u003c\/details\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"bottom-trust-badges\"\u003e\n    \u003cdiv class=\"trust-badge-item\"\u003e\n      \u003cdiv class=\"trust-badge-icon\"\u003e\n        \u003csvg width=\"26\" height=\"26\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z\"\u003e\u003c\/path\u003e\u003cpolyline points=\"9 12 11 14 15 10\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n      \u003cspan\u003e1년 보증\u003c\/span\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"trust-badge-item\"\u003e\n      \u003cdiv class=\"trust-badge-icon\"\u003e\n        \u003csvg width=\"26\" height=\"26\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M13 2L3 14h9l-1 8 10-12h-9l1-8z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n      \u003cspan\u003e플러그 앤 플레이\u003c\/span\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"trust-badge-item\"\u003e\n      \u003cdiv class=\"trust-badge-icon\"\u003e\n        \u003csvg width=\"26\" height=\"26\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003crect x=\"1\" y=\"3\" width=\"15\" height=\"13\"\u003e\u003c\/rect\u003e\u003cpolygon points=\"16 8 20 8 23 11 23 16 16 16 16 8\"\u003e\u003c\/polygon\u003e\u003ccircle cx=\"5.5\" cy=\"18.5\" r=\"2.5\"\u003e\u003c\/circle\u003e\u003ccircle cx=\"18.5\" cy=\"18.5\" r=\"2.5\"\u003e\u003c\/circle\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n      \u003cspan\u003e빠른 배송\u003c\/span\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"trust-badge-item\"\u003e\n      \u003cdiv class=\"trust-badge-icon\"\u003e\n        \u003csvg width=\"26\" height=\"26\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003crect x=\"3\" y=\"11\" width=\"18\" height=\"11\" rx=\"2\" ry=\"2\"\u003e\u003c\/rect\u003e\u003cpath d=\"M7 11V7a5 5 0 0 1 10 0v4\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n      \u003c\/div\u003e\n      \u003cspan\u003e안전 결제\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"모델 Y 2020-현재 \u0026 모델 3 2017-현재 \/ 앞문 2개","offer_id":46930898419944,"sku":"TSL1904-y-front","price":32.99,"currency_code":"USD","in_stock":true},{"title":"모델 Y 2020-현재 \u0026 모델 3 2017-현재 \/ 앞뒤 도어 4개 세트","offer_id":46948957225192,"sku":"TSL1904-y-4","price":59.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/projection-lights-for-tesla-model-y-286176.jpg?v=1736406498"},{"product_id":"chassis-streamer-ambient-lights-for-tesla-model-3-y","title":"테슬라 모델 3\/Y용 LED 섀시 앰비언트 라이트 (4개입)","description":"\u003ch2 style=\"text-align: center;\"\u003eTesla Model 3\/Y용 LED 섀시 \u003cstrong\u003e앰비언트\u003c\/strong\u003e 라이트(4개)\u003c\/h2\u003e\n\u003cp\u003e\u003cspan\u003eTesla Model 3\/Y를 밝히고 이 LED 섀시 앰비언트 라이트로 분위기를 더하세요. 다채로운 조명으로 차량에 독특하고 즐거운 느낌을 더해 운전 경험을 향상시킵니다. Tesla Model 3\/Y용으로 지금 구매 가능합니다.\u003c\/span\u003e\u003c\/p\u003e\n\u003ch3\u003e\u003cspan\u003e제품 특징\u003c\/span\u003e\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e【향상된 Tesla 미학】: 저희 섀시 스트리머 앰비언트 라이트는 Tesla Model 3 (2017-2023), Model Y (2021-현재), Model 3 Highland (2024+)에 맞게 설계되어 차량 하부에 멋진 시각적 업그레이드를 제공하며 운전 경험을 향상시킵니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【스마트 제어 옵션】\u003c\/strong\u003e: APP을 통해 밝기 조절, 색상 선택 및 완벽한 분위기 연출이 가능합니다. 언더바디 라이트 키트는 무선 통신 기능도 갖추어 스마트폰을 디지털 리모컨으로 사용할 수 있어 편리합니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【내구성 실리콘 구조】\u003c\/strong\u003e: 고급 실리콘으로 제작되어 방수, 내식성이 뛰어나며 극한 온도도 견딜 수 있습니다. 라이트 스트립은 유연하고 내구성이 강해 쉽게 부러지지 않습니다.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【안전한 접착】\u003c\/strong\u003e: 강력한 접착제와 케이블 타이로 이 LED 스트립은 폭우, 고속 주행, 거친 도로 조건에서도 단단히 고정됩니다. 접착력을 극대화하려면 설치할 표면을 깨끗하게 유지하세요.\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e【간단한 설치】\u003c\/strong\u003e: 양극 및 음극 전원 케이블을 사용하여 스트립 라이트에 전원을 공급하세요. 포함된 강력한 접착 테이프와 장착 하드웨어(나사, 스냅, 케이블 타이)는 안정적이고 쉬운 설치 과정을 보장합니다.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3\u003e사양\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e제품명:\u003c\/strong\u003e  Tesla LED 섀시 앰비언트 라이트\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e호환성:\u003c\/strong\u003e\u003cspan\u003e \u003c\/span\u003eModel 3(2017-현재) 및 Model Y(2020-현재)에 적합\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e재질: \u003c\/strong\u003eABS\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e색상:\u003c\/strong\u003e 검정\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3\u003e패키지\u003c\/h3\u003e\n\u003cp\u003e4개 × 35.4인치 라이트 스트립 *2 + 47.24인치 라이트 스트립 *2\u003cbr\u003e\u003c\/p\u003e\n\u003ch3\u003e배송\u003c\/h3\u003e\n\u003cp\u003e상품이 완벽한 상태로 고객님께 도착하여 설치 준비가 완료되도록 모든 노력을 기울이고 있습니다.\u003c\/p\u003e\n\u003cp\u003e만약 Tesla\u003cspan\u003e Model 3\/Y LED 섀시 앰비언트 라이트를 좋아하신다면, \u003c\/span\u003e장바구니에 추가하시고 지금 바로 구매하세요. 주문 금액이 $149 이상일 경우 전 세계 어느 도시로든 무료 배송해 드립니다.\u003cbr\u003e\u003c\/p\u003e\n\u003cp\u003e상품이 손상되었거나 용도에 맞지 않을 경우, 수령일로부터 30일 이내 무조건 환불 또는 교환해 드립니다.\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"Model 3 (2017-현재) 및 Model Y (2020-현재)용 \/ 35.4인치 라이트 스트립 *2 + 47.24인치 라이트 스트립 *2","offer_id":46963231654120,"sku":"TSL1013","price":59.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/led-chassis-ambient-lights-for-tesla-model-3y-4pcs-457586.png?v=1736987345"},{"product_id":"tesla-model-3-y-led-door-projector-puddle-lights","title":"모델 3 하이랜드 \/ Y 주니퍼용 LED 도어 프로젝터 퍼들 라이트","description":"\u003ch3\u003e모든 출입구를 특별한 표현으로 바꾸세요\u003c\/h3\u003e\n\u003cp\u003e테슬라 모델 3 하이랜드 또는 모델 Y 주니퍼를 프리미엄 LED 도어 프로젝터 퍼들 라이트로 업그레이드하여 문을 열 때마다 상징적인 \"Plaid\" 로고가 바닥에 투사됩니다. 이 세련된 조명 업그레이드는 기능성과 고급스러움을 결합하여 잊을 수 없는 첫인상을 만들어냅니다.\u003c\/p\u003e\n\u003ch3\u003e프리미엄 기능\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e상징적인 Plaid 로고 투사\u003c\/strong\u003e – 테슬라의 퍼포먼스 유산을 보여주는 선명하고 고화질의 로고 디스플레이\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e플러그 앤 플레이 설치\u003c\/strong\u003e – 절단이나 연결 작업 없이 바로 교체 가능한 OEM 설계\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e우수한 LED 기술\u003c\/strong\u003e – 밝고 에너지 효율적인 조명과 긴 수명\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e완벽한 맞춤 보장\u003c\/strong\u003e – 모델 3 하이랜드(2024-2026) 및 모델 Y 주니퍼(2025-2026)를 위해 특별히 설계됨\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e내후성 구조\u003c\/strong\u003e – 모든 기후 조건을 견딜 수 있도록 제작\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3\u003e왜 이 제품을 좋아할까요\u003c\/h3\u003e\n\u003cp\u003e밤에 테슬라에서 내릴 때 발 아래에서 빛나는 대담한 Plaid 엠블럼이 반겨주는 모습을 상상해 보세요. 단순한 조명이 아니라 차량의 퍼포먼스 DNA와 세심한 디테일에 대한 일상의 상기입니다. 비즈니스 미팅에 도착하거나 집 진입로에 들어설 때, 이 퍼들 라이트는 테슬라를 돋보이게 하는 프리미엄 터치를 더해줍니다.\u003c\/p\u003e\n\u003ch3\u003e구성품\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePlaid 로고가 있는 LED 도어 프로젝터 퍼들 라이트 2개\u003c\/li\u003e\n\u003cli\u003e완전한 설치 하드웨어\u003c\/li\u003e\n\u003cli\u003e따라 하기 쉬운 설치 가이드\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3\u003e호환성\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e테슬라 모델 3 하이랜드 (2024, 2025, 2026)\u003c\/li\u003e\n\u003cli\u003e테슬라 모델 Y 주니퍼 (2025, 2026)\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cp\u003e\u003cem\u003e이 프리미엄 조명 액세서리로 테슬라의 환영 경험을 업그레이드하세요. 설치는 단 몇 분이면 끝나지만 인상은 영원히 지속됩니다.\u003c\/em\u003e\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"모델 3 2017-현재 \u0026 모델 Y 2020-현재 \/ 앞문 2개","offer_id":46953562964200,"sku":"TSL1903-plaid","price":32.88,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-현재 \u0026 모델 Y 2020-현재 \/ 앞뒤 도어 4개 세트","offer_id":46953563029736,"sku":"TSL1903-plaid-4","price":52.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/led-door-projector-puddle-lights-for-tesla-model-3-y-highland-284749.png?v=1736821199"},{"product_id":"tesla-model-s-rear-door-led-trunk-tail-light","title":"TESERY 리어 도어 LED 트렁크 테일 라이트 for 모델 S (2014-2020)","description":"\u003ch2\u003e테슬라 모델 S를 위한 프리미엄 LED 테일 라이트 업그레이드\u003c\/h2\u003e\n\u003cp\u003eTESERY 리어 도어 LED 트렁크 테일 라이트로 2014-2020년형 테슬라 모델 S를 스타일, 안전성, 혁신이 완벽하게 조화된 모습으로 변신시키세요.\u003c\/p\u003e\n\u003ch3\u003e주요 장점:\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e향상된 가시성:\u003c\/strong\u003e 더 밝은 LED 기술로 모든 조건에서 명확하게 보이므로 운전자와 다른 차량의 안전을 높여줍니다\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e현대적인 미학:\u003c\/strong\u003e 모델 S의 고급스러운 외관을 보완하는 세련되고 현대적인 디자인\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e간편한 설치:\u003c\/strong\u003e 별도의 수정 없이 바로 교체 가능한 직결형 – 몇 분 만에 업그레이드 완료\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e내구성 있는 구조:\u003c\/strong\u003e 외부 환경을 견디며 수년간 성능을 유지하도록 제작됨\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003eOEM 품질:\u003c\/strong\u003e 테슬라의 엄격한 기준에 맞춰 정밀 설계됨\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3\u003e적합 대상:\u003c\/h3\u003e\n\u003cp\u003e차량의 외관을 개선하고 후방 가시성과 안전성을 높이고자 하는 테슬라 모델 S 소유자에게 적합합니다. 손상된 라이트를 교체하거나 단순히 업그레이드하려는 경우에도 이 LED 테일 라이트는 탁월한 가치를 제공합니다.\u003c\/p\u003e\n\u003ch3\u003e제품 사양:\u003c\/h3\u003e\n\u003cul class=\"a-unordered-list a-vertical\"\u003e\n\u003cli\u003e\u003cspan class=\"a-list-item\"\u003e\u003cspan\u003e작동 전압: DC 12V\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan class=\"a-list-item\"\u003e\u003cspan\u003e네 가지 기능: 시동 환영등 + 주행등 + 후진등 + 제동 고휘도등\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan class=\"a-list-item\"\u003e\u003cspan\u003e재질: ABS + 고품질 LED\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3\u003e\u003cspan class=\"a-text-bold\"\u003e패키지 구성품\u003c\/span\u003e\u003c\/h3\u003e\n\u003cp\u003e\u003cspan\u003e1x LED 리어 트렁크 테일 라이트\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eTESERY의 차이를 경험하세요\u003c\/strong\u003e – 럭셔리와 기능성이 만나는 곳. 오늘 LED 테일 라이트 업그레이드를 주문하고 더 안전하고 스타일리시한 테슬라 모델 S를 즐기세요.\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요","offer_id":47029217263848,"sku":"","price":429.0,"currency_code":"USD","in_stock":true},{"title":"글로스 블랙","offer_id":47029217296616,"sku":"TTL003-GB","price":429.0,"currency_code":"USD","in_stock":true},{"title":"워터 트랜스퍼 프린팅","offer_id":47029217329384,"sku":"TTL003-WT","price":429.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-rear-door-led-trunk-tail-light-for-model-s-2014-2020-670339.jpg?v=1739906567"},{"product_id":"tesla-model-3-y-martin-style-tail-lights","title":"TESERY 마틴 스타일 테일 라이트 for 모델 3\/Y","description":"\u003ch3 style=\"text-align: center;\"\u003e TESERY 마틴 스타일 테일 라이트 for Model 3\/Y\u003c\/h3\u003e\n\u003ch4 style=\"text-align: center;\"\u003e당신의 테슬라 스타일을 높이세요 – 세련되고 현대적이며 독보적으로 유니크!\u003c\/h4\u003e\n\u003cp\u003e\u003cspan\u003e모임에 도착할 때, 당신의 테슬라 모델 3 또는 모델 Y가 눈길을 사로잡는 \u003c\/span\u003e\u003cstrong\u003e마틴 스타일 테일 라이트\u003c\/strong\u003e\u003cspan\u003e로 모두의 주목을 받는 모습을 상상해 보세요. 이 테일 라이트는 단순한 업그레이드가 아니라 하나의 선언입니다. 도시를 가로지르는 야간 운전이든 주말 여행이든, 이 라이트는 차량에 세련미와 현대적인 감각을 더합니다. 이 세련되고 고성능 조명 솔루션으로 당신의 테슬라를 시선을 끄는 걸작으로 변신시키세요.\u003c\/span\u003e\u003c\/p\u003e\n\u003ch3\u003e\u003cspan\u003e주요 특징\u003c\/span\u003e\u003c\/h3\u003e\n\u003col\u003e\n\u003cli\u003e\n\u003cstrong\u003e아이코닉 마틴 스타일 디자인\u003c\/strong\u003e\u003cspan\u003e – 고급스러운 미학에서 영감을 받아, 이 테일 라이트는 당신의 테슬라 외관을 재정의합니다.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e향상된 가시성\u003c\/strong\u003e\u003cspan\u003e – 더 밝고 효율적인 조명으로 야간 운전을 더욱 안전하게 합니다.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e플러그 앤 플레이 설치\u003c\/strong\u003e\u003cspan\u003e – 테슬라 기존 시스템과 원활하게 통합되도록 설계되었습니다.\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e내구성 및 방수\u003c\/strong\u003e\u003cspan\u003e – 혹독한 환경에서도 견딜 수 있도록 제작되어 오랜 성능을 보장합니다.\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ol\u003e\n\u003ch3\u003e사양\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cstrong\u003e호환성\u003c\/strong\u003e: 테슬라 모델 3 \u0026amp; 모델 Y\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e재질\u003c\/strong\u003e: LED 기술이 적용된 고품질 ABS 플라스틱\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e설치\u003c\/strong\u003e: 플러그 앤 플레이, 배선 수정 불필요\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e방수 등급\u003c\/strong\u003e: IP67 (방진 및 방수)\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e디자인\u003c\/strong\u003e: 세련된 마틴 영감 스타일과 다이내믹 조명 효과\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch3\u003e자주 묻는 질문\u003c\/h3\u003e\n\u003cp\u003e\u003cstrong\u003eQ: 이 테일 라이트가 제 테슬라 모델 3\/모델 Y와 호환되나요?\u003c\/strong\u003e\u003cbr\u003eA: 네, 이 제품은 테슬라 모델 3와 모델 Y를 위해 특별히 설계되었습니다.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eQ: 전문 설치가 필요한가요?\u003c\/strong\u003e\u003cbr\u003eA: 아니요, 플러그 앤 플레이 디자인으로 쉽게 직접 설치할 수 있습니다.\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eQ: 차량 보증에 영향을 미치나요?\u003c\/strong\u003e\u003cbr\u003eA: 아니요, 이 테일 라이트는 비침습적이며 테슬라 보증에 영향을 주지 않습니다.\u003c\/p\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요","offer_id":47038561452264,"sku":"","price":509.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-2023.10","offer_id":47038561485032,"sku":"TSLLJ0401","price":509.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025.3","offer_id":47038561517800,"sku":"TSLLJ0401","price":509.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-martin-style-tail-lights-for-model-3y-966153.jpg?v=1739906568"},{"product_id":"tesla-angel-wings-door-welcome-lights","title":"TESERY 천사 날개 도어 환영등 for Model 3\/Y\/S\/X","description":"\u003cstyle\u003e\n        \/* === Premium Tesla Accessory Page Styling === *\/\n        :root {\n            --tesla-blue: #2c5e8a;\n            --tesla-light-blue: #3a7cb4;\n            --tesla-dark: #1c1c1c;\n            --tesla-light: #f8f9fa;\n            --tesla-accent: #e82127; \/* Tesla red accent *\/\n            --section-color-1: #ffffff;\n            --section-color-2: #ffffff;\n            --section-color-3: #ffffff;\n            --section-color-4: #ffffff;\n            --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\n            --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\n        }\n        \n        \/* Base styling *\/\n        .tesery-product-description-container {\n            font-family: var(--body-font);\n            color: #333;\n            line-height: 1.6;\n            background-color: #ffffff;\n            max-width: 1200px;\n            margin: 0 auto; \n            padding: 0;\n        }\n        \n        \/* Hero section *\/\n        .hero-section {\n            position: relative;\n            text-align: center;\n            padding: 0;\n            margin-bottom: 40px;\n            overflow: hidden;\n            border-radius: 12px;\n            max-height: 500px;\n            display: flex;\n            flex-direction: column;\n            justify-content: center;\n        }\n        \n        .hero-image {\n            width: 100%;\n            height: auto;\n            object-fit: cover;\n            z-index: 0;\n        }\n        \n        .hero-overlay {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background: rgba(0, 0, 0, 0.4);\n            z-index: 1;\n        }\n        \n        .hero-content {\n            position: absolute;\n            top: 50%;\n            left: 50%;\n            transform: translate(-50%, -50%);\n            z-index: 2;\n            width: 90%;\n            text-align: center;\n        }\n        \n        .product-title {\n            color: white;\n            font-family: var(--heading-font);\n            font-weight: 700;\n            font-size: 2.8rem;\n            text-shadow: 0 2px 4px rgba(0,0,0,0.5);\n            margin-bottom: 15px;\n        }\n        \n        .product-subtitle {\n            font-weight: 500;\n            color: white;\n            font-size: 1.2rem;\n            margin-bottom: 0;\n            text-shadow: 0 2px 3px rgba(0,0,0,0.5);\n        }\n        \n        \/* Content container *\/\n        .content-container {\n            padding: 0 24px;\n        }\n        \n        \/* Section styling *\/\n        .section-title {\n            color: var(--tesla-blue);\n            text-align: center;\n            margin: 2.5rem 0 1.5rem;\n            font-family: var(--heading-font);\n            font-weight: 600;\n            font-size: 1.8rem;\n            position: relative;\n            padding-bottom: 15px;\n        }\n        \n        .section-title::after {\n            content: \"\";\n            position: absolute;\n            bottom: 0;\n            left: 50%;\n            transform: translateX(-50%);\n            width: 80px;\n            height: 3px;\n            background: var(--tesla-blue);\n            border-radius: 2px;\n        }\n        \n        \/* Feature grid styling *\/\n        .feature-section {\n            padding: 50px 0;\n            background-color: var(--section-color-1);\n            border-radius: 12px;\n            margin-bottom: 40px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n        }\n        \n        .feature-list {\n            display: grid;\n            grid-template-columns: repeat(3, 1fr);\n            gap: 30px;\n            margin: 2.5rem 0;\n        }\n        \n        .feature-card {\n            background: white;\n            border-radius: 12px;\n            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);\n            overflow: hidden;\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n            display: flex;\n            flex-direction: column;\n            height: 100%;\n            text-align: center;\n            padding: 30px 20px;\n        }\n        \n        .feature-card:hover {\n            transform: translateY(-5px);\n            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);\n        }\n        \n        .feature-icon {\n            font-size: 2.2rem;\n            color: var(--tesla-blue);\n            margin-bottom: 20px;\n            display: inline-block;\n        }\n        \n        .feature-title {\n            color: var(--tesla-dark);\n            font-weight: 600;\n            font-size: 1.2rem;\n            margin: 0 0 12px;\n        }\n        \n        .feature-description {\n            color: #555;\n            font-size: 0.95rem;\n            margin: 0;\n        }\n        \n        \/* Why Choose Us Section *\/\n        .benefits-section {\n            padding: 40px 0;\n            margin: 40px 0;\n            text-align: center;\n        }\n        \n        .benefits-intro {\n            max-width: 800px;\n            margin: 0 auto 30px;\n            color: #444;\n            font-size: 1.1rem;\n        }\n        \n        \/* Installation steps section *\/\n        .installation-section {\n            background-color: var(--section-color-2);\n            border-radius: 12px;\n            padding: 40px;\n            margin: 3rem 0;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n        }\n        \n        .steps-container {\n            display: grid;\n            grid-template-columns: repeat(3, 1fr);\n            gap: 25px;\n            margin-top: 30px;\n        }\n        \n        .step-card {\n            background: white;\n            border-radius: 12px;\n            padding: 30px 25px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n            text-align: center;\n            transition: transform 0.3s ease;\n            position: relative;\n        }\n        \n        .step-card:hover {\n            transform: translateY(-5px);\n        }\n        \n        .step-number {\n            position: absolute;\n            top: -15px;\n            left: 50%;\n            transform: translateX(-50%);\n            background: var(--tesla-blue);\n            color: white;\n            width: 30px;\n            height: 30px;\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-weight: bold;\n        }\n        \n        .step-icon {\n            font-size: 2.5rem;\n            margin-bottom: 20px;\n            color: var(--tesla-blue);\n        }\n        \n        .step-title {\n            color: var(--tesla-dark);\n            font-weight: 600;\n            font-size: 1.2rem;\n            margin-bottom: 15px;\n        }\n        \n        .step-desc {\n            color: #555;\n            font-size: 0.95rem;\n            margin: 0;  \n        }\n        \n        \/* Compatibility section *\/\n        .compatibility-section {\n            padding: 40px 0;\n            margin: 40px 0;\n        }\n        \n        .table-container {\n            margin-top: 30px;\n            overflow-x: auto;\n        }\n        \n        .compatibility-table {\n            width: 100%;\n            border-collapse: collapse;\n            border-radius: 8px;\n            overflow: hidden;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n        }\n        \n        .compatibility-table th,\n        .compatibility-table td {\n            padding: 15px 20px;\n            text-align: left;\n            border-bottom: 1px solid #eaeaea;\n        }\n        \n        .compatibility-table th {\n            background-color: var(--tesla-blue);\n            color: white;\n            font-weight: 600;\n        }\n        \n        .compatibility-table tr:nth-child(even) {\n            background-color: #f8f9fa;\n        }\n        \n        .compatibility-table tr:hover {\n            background-color: #f1f8ff;\n        }\n        \n        \/* Specs section *\/\n        .specs-section {\n            background-color: var(--section-color-3);\n            border-radius: 12px;\n            padding: 40px;\n            margin: 3rem 0;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n        }\n        \n        .specs-grid {\n            display: grid;\n            grid-template-columns: repeat(2, 1fr);\n            gap: 25px;\n            margin-top: 30px;\n        }\n        \n        .spec-item {\n            display: flex;\n            align-items: center;\n            background: white;\n            padding: 20px;\n            border-radius: 8px;\n            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);\n        }\n        \n        .spec-icon {\n            font-size: 1.5rem;\n            margin-right: 15px;\n            color: var(--tesla-blue);\n            flex-shrink: 0;\n        }\n        \n        .spec-content {\n            flex-grow: 1;\n        }\n        \n        .spec-name {\n            font-weight: 600;\n            color: var(--tesla-dark);\n            margin: 0 0 5px 0;\n        }\n        \n        .spec-value {\n            font-size: 0.95rem;\n            color: #555;\n            margin: 0;\n        }\n        \n        \/* FAQ styling *\/\n        .faq-section {\n            margin: 3rem 0;\n            background-color: var(--section-color-4);\n            padding: 40px;\n            border-radius: 12px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n        }\n        \n        .faq-item {\n            margin-bottom: 15px;\n            border-radius: 8px;\n            background: white;\n            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);\n            overflow: hidden;\n            border: 1px solid #f0f0f0;\n        }\n        \n        .faq-question {\n            color: var(--tesla-dark);\n            font-weight: 600;\n            padding: 20px;\n            margin: 0;\n            border-bottom: 1px solid #f0f0f0;\n            position: relative;\n        }\n        \n        .faq-question::before {\n            content: \"Q:\";\n            color: var(--tesla-blue);\n            font-weight: 700;\n            margin-right: 8px;\n        }\n        \n        .faq-answer {\n            color: #555;\n            padding: 15px 20px 20px;\n            margin: 0;\n        }\n        \n        .faq-answer::before { \n            content: \"A:\";\n            color: var(--tesla-accent);\n            font-weight: 700;\n            margin-right: 8px;\n        }\n        \n        \/* Banner section *\/\n        .banner-section {\n            position: relative;\n            text-align: center;\n            padding: 0;\n            margin: 60px 0;\n            overflow: hidden;\n            border-radius: 12px;\n            max-height: 300px;\n        }\n        \n        .banner-image {\n            width: 100%;\n            height: auto;\n            object-fit: cover;\n            border-radius: 12px;\n        }\n        \n        .banner-overlay {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background: rgba(0, 0, 0, 0.3);\n            border-radius: 12px;\n        }\n        \n        .banner-content {\n            position: absolute;\n            top: 50%;\n            left: 50%;\n            transform: translate(-50%, -50%);\n            width: 80%;\n            color: white;\n            text-align: center;\n        }\n        \n        .banner-title {\n            font-size: 2.2rem;\n            font-weight: 700;\n            margin-bottom: 15px;\n            text-shadow: 0 2px 4px rgba(0,0,0,0.5);\n        }\n        \n        .banner-subtitle {\n            font-size: 1.1rem;\n            font-weight: 400;\n            margin-bottom: 20px;\n            text-shadow: 0 2px 3px rgba(0,0,0,0.5);\n            line-height: 1.6;\n        }\n        \n        \/* CTA Button styling *\/\n        .cta-section {\n            text-align: center;\n            margin: 3rem 0;\n            padding: 20px;\n        }\n        \n        .brand-button {\n            background: var(--tesla-blue);\n            color: white !important;\n            padding: 16px 32px;\n            border-radius: 50px;\n            font-weight: 600;\n            text-transform: uppercase;\n            transition: all 0.3s;\n            border: none;\n            cursor: pointer;\n            display: inline-block;\n            text-decoration: none;\n            font-size: 1rem;\n            letter-spacing: 0.5px;\n            box-shadow: 0 5px 15px rgba(44, 94, 138, 0.3);\n        }\n        \n        .brand-button:hover {\n            background: var(--tesla-light-blue);\n            transform: translateY(-2px);\n            box-shadow: 0 8px 20px rgba(44, 94, 138, 0.4);\n        }\n        \n        \/* Responsive adjustments *\/\n        @media (max-width: 768px) {\n            .product-title {\n                font-size: 2rem;\n            }\n            \n            .feature-list {\n                grid-template-columns: 1fr;\n            }\n            \n            .steps-container {\n                grid-template-columns: 1fr;\n            }\n            \n            .specs-grid {\n                grid-template-columns: 1fr;\n            }\n            \n            .installation-section, \n            .specs-section, \n            .faq-section {\n                padding: 25px 20px;\n            }\n            \n            .banner-title {\n                font-size: 1.8rem;\n            }\n            \n            .banner-subtitle {\n                font-size: 1rem;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"tesery-product-description-container\"\u003e\n\u003c!-- Hero Section --\u003e\n\u003cdiv class=\"content-container\"\u003e\n\u003cdiv class=\"benefits-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e\u003cstrong\u003e스타일과 안전으로 테슬라 경험을 밝히세요\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003cp class=\"benefits-intro\"\u003e🔥 테슬라에 타고 내릴 때 시야가 좁아 어려움을 겪고 계신가요? 70% 이상의 소유자가 어두운 조명 조건에서 사고를 보고했습니다. 저희 Angel Wings 도어 웰컴 라이트는 길을 밝히는 것뿐만 아니라 테슬라 경험에 고급스러움을 더해줍니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- Core Features --\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003cdiv class=\"feature-list\"\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e✨\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e독특한 디자인 \u003c\/h4\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cp class=\"feature-description\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-angel-wings-door-welcome-lights-for-model-3ysx-871208.jpg?v=1744344167\" alt=\"TESERY 천사 날개 도어 웰컴 라이트 Model 3\/Y\/S\/X용 - Tesery 공식 스토어\"\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🛡️\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e향상된 안전성\u003c\/h4\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cp class=\"feature-description\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-angel-wings-door-welcome-lights-for-model-3ysx-561764.jpg?v=1744344167\" alt=\"TESERY 천사 날개 도어 웰컴 라이트 Model 3\/Y\/S\/X용 - Tesery 공식 스토어\"\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e⚡\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e에너지 효율적\u003c\/h4\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cp class=\"feature-description\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/TESERY_Angel_Wings_Door_Welcome_Lights_for_Model_3YSX_2.jpg?v=1744281295\" alt=\"TESERY 천사 날개 도어 웰컴 라이트 Model 3\/Y\/S\/X용 - Tesery 공식 스토어\"\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🔧\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e쉬운 설치\u003c\/h4\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cp class=\"feature-description\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/TESERY_Angel_Wings_Door_Welcome_Lights_for_Model_3YSX_1.jpg?v=1744281295\" alt=\"TESERY 천사 날개 도어 웰컴 라이트 Model 3\/Y\/S\/X용 - Tesery 공식 스토어\"\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🚗\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e범용 호환성\u003c\/h4\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cp class=\"feature-description\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-angel-wings-door-welcome-lights-for-model-3ysx-840721.jpg?v=1744344168\" alt=\"TESERY 천사 날개 도어 웰컴 라이트 Model 3\/Y\/S\/X용 - Tesery 공식 스토어\"\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e💡\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e사용자 정의 옵션\u003c\/h4\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cp class=\"feature-description\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-angel-wings-door-welcome-lights-for-model-3ysx-888858.jpg?v=1744344168\" alt=\"TESERY 천사 날개 도어 웰컴 라이트 Model 3\/Y\/S\/X용 - Tesery 공식 스토어\"\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Banner Section --\u003e\n\u003cdiv class=\"banner-section\" style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-angel-wings-door-welcome-lights-for-model-3ysx-724688.jpg?v=1744344167\u0026amp;width=713\" alt=\"Tesla 천사 날개 도어 라이트\" class=\"banner-image\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"installation-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e천사 날개 도어 웰컴 라이트 설치 방법\u003c\/h3\u003e\n\u003cp style=\"text-align: center; margin-bottom: 30px;\"\u003e간편한 설치를 위한 다음 간단한 단계를 따르세요\u003c\/p\u003e\n\u003cp style=\"text-align: center; margin-bottom: 30px;\"\u003e \u003c\/p\u003e\n\u003cdiv class=\"steps-container\"\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e1\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e🧹\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e도어 실 청소\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e도어 실 부위가 깨끗하고 건조한지 확인하세요. 최적의 접착을 위해 알코올 솜으로 먼지나 잔여물을 제거하세요.\u003c\/p\u003e\n\u003cp class=\"step-desc\"\u003e\u003cimg\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e2\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e📏\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e조명 위치 지정\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e도어 라이트 유닛을 도어 실에 조심스럽게 위치시키고, 최대 투사 효과를 위해 문 열림과 올바르게 정렬되었는지 확인하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e3\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e📌\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e접착제 보호 필름 제거\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e조명 유닛의 접착제 뒷면 보호층을 벗겨 끈적한 표면을 노출시키세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e4\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e👇\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e압력 가하기\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e조명 유닛을 도어 실 표면에 최소 30초간 단단히 눌러 제대로 접착되도록 하세요. 모든 문에 대해 반복하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e5\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e⏱️\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e테스트 전 대기\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e접착제가 최소 30분 동안 고정되도록 한 후 문을 열고 닫아 조명을 테스트하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e6\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e✅\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e기능 테스트\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e문을 열어 천사 날개 패턴이 올바르게 투사되는지 확인하세요. 문이 열리면 조명이 자동으로 켜져야 합니다.\u003c\/p\u003e\n\u003cp class=\"step-desc\"\u003e \u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Specifications Section --\u003e\n\u003cdiv class=\"specs-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e사양\u003c\/h3\u003e\n\u003cdiv class=\"specs-grid\"\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e💡\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003e조명 유형\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003e고품질 LED\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e🔋\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003e전원\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003e차량 배터리 (최소 소모)\u003cspan class=\"spec-icon\"\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e🌡️\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003e작동 온도\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003e-20°C ~ +70°C\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e💦\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003e방수 등급\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003eIP65 (먼지 차단 및 방수)\u003cspan class=\"spec-icon\"\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e📦\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003e패키지 구성품\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003e4개 도어 라이트 유닛(2쌍) \u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Compatibility Section --\u003e\n\u003cdiv class=\"compatibility-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e호환성\u003c\/h3\u003e\n\u003cp style=\"text-align: center; margin-bottom: 30px;\"\u003eTESERY Angel Wings 도어 웰컴 라이트는 모든 Tesla 모델과 완벽하게 호환됩니다:\u003c\/p\u003e\n\u003cdiv class=\"table-container\"\u003e\n\u003ctable class=\"compatibility-table\" style=\"width: 100%; height: 201.515px;\"\u003e\n\u003cthead\u003e\n\u003ctr style=\"height: 44.7812px;\"\u003e\n\u003cth style=\"width: 15.3504%; height: 44.7812px;\"\u003e테슬라 모델\u003c\/th\u003e\n\u003cth style=\"width: 17.6605%; height: 44.7812px;\"\u003e호환성\u003c\/th\u003e\n\u003cth style=\"width: 42.7703%; height: 44.7812px;\"\u003e메모\u003c\/th\u003e\n\u003c\/tr\u003e\n\u003c\/thead\u003e\n\u003ctbody\u003e\n\u003ctr style=\"height: 22.3906px;\"\u003e\n\u003ctd style=\"width: 15.3504%; height: 22.3906px;\"\u003e\u003cstrong\u003e모델 3\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd style=\"width: 17.6605%; height: 22.3906px;\"\u003e✓ 모든 연식\u003c\/td\u003e\n\u003ctd style=\"width: 42.7703%; height: 22.3906px;\"\u003e모든 도어 실에 완벽한 맞춤\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr style=\"height: 44.7812px;\"\u003e\n\u003ctd style=\"width: 15.3504%; height: 44.7812px;\"\u003e\u003cstrong\u003e모델 Y\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd style=\"width: 17.6605%; height: 44.7812px;\"\u003e✓ 모든 연식\u003c\/td\u003e\n\u003ctd style=\"width: 42.7703%; height: 44.7812px;\"\u003e앞문과 뒷문 모두에 이상적\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr style=\"height: 44.7812px;\"\u003e\n\u003ctd style=\"width: 15.3504%; height: 44.7812px;\"\u003e\u003cstrong\u003e모델 S\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd style=\"width: 17.6605%; height: 44.7812px;\"\u003e✓ 모든 연식\u003c\/td\u003e\n\u003ctd style=\"width: 42.7703%; height: 44.7812px;\"\u003e더 큰 도어 실에서 프리미엄 효과\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr style=\"height: 44.7812px;\"\u003e\n\u003ctd style=\"width: 15.3504%; height: 44.7812px;\"\u003e\u003cstrong\u003e모델 X\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd style=\"width: 17.6605%; height: 44.7812px;\"\u003e✓ 모든 연식\u003c\/td\u003e\n\u003ctd style=\"width: 42.7703%; height: 44.7812px;\"\u003e팔콘 윙 도어와 호환 가능\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003cp style=\"text-align: center; margin-top: 20px; color: #666;\"\u003e모든 Tesla 모델에 프리미엄 Angel Wings 도어 웰컴 라이트로 업그레이드하세요 - Tesla 라인업의 모든 차량에 완벽한 맞춤형입니다!\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- FAQ Section --\u003e\n\u003cdiv class=\"faq-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e자주 묻는 질문 (FAQs)\u003c\/h3\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4 class=\"faq-question\"\u003e이 조명은 모든 Tesla 모델과 호환되나요?\u003c\/h4\u003e\n\u003cp class=\"faq-answer\"\u003e네, 저희 Angel Wings 도어 웰컴 라이트는 Tesla Model 3, Y, S, X 전용으로 설계되었습니다. 이 모델들의 모든 도어 실에 완벽하게 맞도록 제작되어 별도의 수정이 필요 없습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4 class=\"faq-question\"\u003e전문가 설치가 필요한가요?\u003c\/h4\u003e\n\u003cp class=\"faq-answer\"\u003e아니요, 이 조명은 간편한 DIY 설치 과정을 제공합니다. 포함된 접착 백킹을 사용해 도어 실에 단단히 부착되며 도구, 드릴링, 배선이 필요 없습니다. \u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4 class=\"faq-question\"\u003e이 조명이 제 Tesla 배터리를 소모하나요?\u003c\/h4\u003e\n\u003cp class=\"faq-answer\"\u003e아니요, 저희 도어 라이트는 문이 열릴 때만 작동하는 에너지 효율적인 설계로 전력 사용을 최소화합니다. \u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4 class=\"faq-question\"\u003e프로젝션 디자인을 맞춤 설정할 수 있나요?\u003c\/h4\u003e\n\u003cp class=\"faq-answer\"\u003e네, 개인 스타일에 맞는 다양한 프로젝션 디자인을 제공합니다. 시그니처 천사 날개 패턴 외에도 맞춤형 옵션을 제공합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4 class=\"faq-question\"\u003e조명은 얼마나 오래 지속되나요?\u003c\/h4\u003e\n\u003cp class=\"faq-answer\"\u003e일상적인 사용 조건(하루에 몇 번 문을 열고 닫는 경우)에서는 이 조명이 교체 없이 수년간 지속됩니다. \u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- CTA Section --\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 2개","offer_id":47071747571944,"sku":null,"price":19.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 4개","offer_id":47071747604712,"sku":null,"price":35.99,"currency_code":"USD","in_stock":true},{"title":"천사 날개 \/ 2개","offer_id":47057981735144,"sku":"TSL2904","price":19.99,"currency_code":"USD","in_stock":true},{"title":"천사 날개 \/ 4개","offer_id":47057981767912,"sku":"TSL2904-4","price":35.99,"currency_code":"USD","in_stock":true},{"title":"악마 날개 \/ 2개 세트 (BFCM 플래시 세일)","offer_id":47057981800680,"sku":"TSL2905","price":19.99,"currency_code":"USD","in_stock":true},{"title":"악마 날개 \/ 4개","offer_id":47057981833448,"sku":"TSL2905-4","price":35.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-angel-wings-door-welcome-lights-for-model-3ysx-724688.jpg?v=1744344167"},{"product_id":"tesla-model-3-highland-led-headlight-assembly","title":"TESERY 헤드라이트 어셈블리 for Model 3 Highland丨PN 1694086\/1694087","description":"\u003c!-- Import Google Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=DM+Sans:wght@400;500;600;700\u0026amp;family=Montserrat:wght@700;800\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n  \/* === Base Variables \u0026 Reset === *\/\n  .tpd-wrapper {\n    --tpd-primary: #0065b3;\n    --tpd-success: #10b981;\n    --tpd-danger: #ef4444;\n    --tpd-warning: #f59e0b;\n    --tpd-text-main: #333333;\n    --tpd-text-light: #666666;\n    --tpd-bg-light: #f9f9f9;\n    --tpd-border: #e5e5e5;\n    --tpd-radius-card: 20px;\n    --tpd-radius-img: 18px;\n    --tpd-shadow: 0 8px 24px rgba(0,0,0,0.04);\n    --tpd-shadow-hover: 0 15px 35px rgba(0,0,0,0.1);\n    \n    font-family: 'DM Sans', sans-serif;\n    color: var(--tpd-text-main);\n    line-height: 1.85;\n    max-width: 1320px;\n    margin: 0 auto;\n    padding: 20px 0;\n    box-sizing: border-box;\n  }\n  .tpd-wrapper * {\n    box-sizing: border-box;\n  }\n  .tpd-wrapper h2, .tpd-wrapper h3, .tpd-wrapper h4 {\n    font-family: 'Montserrat', sans-serif;\n    margin-top: 0;\n    color: var(--tpd-text-main);\n  }\n  .tpd-wrapper img {\n    max-width: 100%;\n    height: auto;\n    display: block;\n    border-radius: var(--tpd-radius-img);\n  }\n  \n  \/* Force Section Spacing *\/\n  .tpd-section {\n    margin-top: 80px !important;\n    margin-bottom: 80px !important;\n    clear: both;\n  }\n  .tpd-section-title {\n    font-size: 36px;\n    font-weight: 800;\n    text-align: center;\n    margin-bottom: 20px !important;\n  }\n  .tpd-section-subtitle {\n    font-size: 17px;\n    color: var(--tpd-text-light);\n    text-align: center;\n    max-width: 800px;\n    margin: 0 auto 50px auto !important;\n  }\n\n  \/* Navigation *\/\n  .tpd-nav {\n    display: flex;\n    justify-content: center;\n    gap: 15px;\n    flex-wrap: wrap;\n    margin-bottom: 60px;\n  }\n  .tpd-nav a {\n    text-decoration: none;\n    color: var(--tpd-text-main);\n    font-size: 14px;\n    font-weight: 600;\n    letter-spacing: 0.05em;\n    padding: 12px 24px;\n    border: 1px solid var(--tpd-border);\n    border-radius: 30px;\n    transition: all 0.3s ease;\n  }\n  .tpd-nav a:hover {\n    border-color: var(--tpd-primary);\n    color: var(--tpd-primary);\n    background-color: var(--tpd-bg-light);\n  }\n\n  \/* === Hero Split Layout === *\/\n  .tpd-hero-split {\n    display: flex;\n    align-items: center;\n    gap: 50px;\n    margin-bottom: 80px;\n  }\n  .tpd-hero-split-img {\n    flex: 1;\n    border-radius: var(--tpd-radius-card);\n    overflow: hidden;\n    box-shadow: var(--tpd-shadow);\n  }\n  .tpd-hero-split-img img {\n    width: 100%;\n    display: block;\n    object-fit: cover;\n  }\n  .tpd-hero-split-text {\n    flex: 1;\n  }\n  .tpd-hero-split-title {\n    font-size: 42px;\n    font-weight: 800;\n    line-height: 1.2;\n    margin-bottom: 20px;\n    color: var(--tpd-text-main);\n  }\n  .tpd-hero-split-desc {\n    font-size: 16px;\n    color: var(--tpd-text-light);\n    margin-bottom: 25px;\n    line-height: 1.7;\n  }\n  .tpd-hero-split-list {\n    list-style: none;\n    padding: 0;\n    margin: 0 0 30px 0;\n  }\n  .tpd-hero-split-list li {\n    position: relative;\n    padding-left: 32px;\n    margin-bottom: 16px;\n    font-size: 16px;\n    color: var(--tpd-text-main);\n    font-weight: 600;\n    display: flex;\n    align-items: center;\n  }\n  .tpd-hero-split-list li svg {\n    position: absolute;\n    left: 0;\n    color: var(--tpd-primary);\n  }\n\n  \/* Notice Box *\/\n  .tpd-notice-box {\n    background-color: #fff3cd;\n    border-left: 4px solid #ffc107;\n    padding: 18px 25px;\n    border-radius: 8px;\n    font-size: 14px;\n    color: #856404;\n    display: flex;\n    align-items: flex-start;\n    gap: 12px;\n    line-height: 1.6;\n    margin-bottom: 20px;\n  }\n  .tpd-notice-box svg {\n    flex-shrink: 0;\n    margin-top: 2px;\n  }\n\n  \/* === Features Grid === *\/\n  .tpd-features-grid {\n    display: grid;\n    grid-template-columns: repeat(2, 1fr);\n    gap: 30px;\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  .tpd-feature-card {\n    background: #fff;\n    border: 1px solid var(--tpd-border);\n    border-radius: var(--tpd-radius-card);\n    padding: 40px;\n    transition: transform 0.3s ease, box-shadow 0.3s ease;\n  }\n  .tpd-feature-card:hover {\n    transform: translateY(-5px);\n    box-shadow: var(--tpd-shadow-hover);\n  }\n  .tpd-feature-icon {\n    width: 60px;\n    height: 60px;\n    background: #eff6ff;\n    border-radius: 12px;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    color: var(--tpd-primary);\n    margin-bottom: 20px;\n  }\n  .tpd-feature-title {\n    font-size: 22px;\n    font-weight: 700;\n    margin-bottom: 15px;\n  }\n  .tpd-feature-desc {\n    font-size: 15px;\n    color: var(--tpd-text-light);\n    line-height: 1.7;\n    margin: 0;\n  }\n\n  \/* === What's in the Box === *\/\n  .tpd-box-section {\n    background: var(--tpd-bg-light);\n    border-radius: var(--tpd-radius-card);\n    padding: 50px;\n    max-width: 1200px; \/* Aligned with other sections *\/\n    margin: 0 auto;\n    text-align: center;\n  }\n  .tpd-box-list {\n    display: flex;\n    justify-content: center;\n    gap: 40px;\n    flex-wrap: wrap;\n    list-style: none;\n    padding: 0;\n    margin: 30px 0 0 0;\n  }\n  .tpd-box-list li {\n    font-size: 18px;\n    font-weight: 600;\n    display: flex;\n    align-items: center;\n    gap: 10px;\n  }\n  .tpd-box-list li svg {\n    color: var(--tpd-success);\n  }\n\n  \/* === Specifications Table === *\/\n  .tpd-specs-container {\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  .tpd-specs-table {\n    width: 100%;\n    border-collapse: collapse;\n    background: #fff;\n    border-radius: var(--tpd-radius-card);\n    overflow: hidden;\n    box-shadow: var(--tpd-shadow);\n    border: 1px solid var(--tpd-border);\n  }\n  .tpd-specs-table th, .tpd-specs-table td {\n    padding: 18px 25px;\n    text-align: left;\n    border-bottom: 1px solid var(--tpd-border);\n    font-size: 16px;\n  }\n  .tpd-specs-table tr:last-child th, .tpd-specs-table tr:last-child td {\n    border-bottom: none;\n  }\n  .tpd-specs-table th {\n    background-color: var(--tpd-bg-light);\n    width: 35%;\n    font-weight: 700;\n    color: var(--tpd-text-main);\n    font-family: 'Montserrat', sans-serif;\n  }\n  .tpd-specs-table td {\n    color: var(--tpd-text-light);\n  }\n\n  \/* === FAQ Styles === *\/\n  .tpd-faq-container {\n    max-width: 1200px;\n    margin: 0 auto;\n    display: flex;\n    flex-direction: column;\n    gap: 18px;\n  }\n  .tpd-faq-item {\n    background: #fff;\n    border: 1px solid var(--tpd-border);\n    border-radius: 12px;\n    overflow: hidden;\n    box-shadow: var(--tpd-shadow);\n  }\n  .tpd-faq-summary {\n    padding: 22px 30px;\n    font-size: 17px;\n    font-family: 'Montserrat', sans-serif;\n    font-weight: 700;\n    color: var(--tpd-text-main);\n    cursor: pointer;\n    list-style: none;\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    transition: background-color 0.3s ease;\n  }\n  .tpd-faq-summary:hover {\n    background-color: var(--tpd-bg-light);\n  }\n  .tpd-faq-summary::-webkit-details-marker {\n    display: none;\n  }\n  .tpd-faq-summary::after {\n    content: '+';\n    font-size: 26px;\n    color: var(--tpd-primary);\n    font-weight: 400;\n    transition: transform 0.3s ease;\n  }\n  .tpd-faq-item[open] .tpd-faq-summary::after {\n    transform: rotate(45deg);\n  }\n  .tpd-faq-content {\n    padding: 0 30px 30px 30px;\n    color: var(--tpd-text-light);\n    font-size: 16px;\n    line-height: 1.7;\n  }\n\n  \/* Responsive Design *\/\n  @media (max-width: 992px) {\n    .tpd-hero-split { flex-direction: column; gap: 30px; }\n    .tpd-hero-split-text { text-align: center; }\n    .tpd-hero-split-list li { text-align: left; display: inline-flex; width: 100%; max-width: 400px; }\n    .tpd-notice-box { text-align: left; }\n    .tpd-features-grid { grid-template-columns: 1fr; }\n  }\n  @media (max-width: 768px) {\n    .tpd-section { margin-top: 60px !important; margin-bottom: 60px !important; }\n    .tpd-hero-split-title { font-size: 32px; }\n    .tpd-section-title { font-size: 28px; }\n    .tpd-feature-card { padding: 25px; }\n    .tpd-box-list { flex-direction: column; gap: 15px; align-items: center; }\n    \n    .tpd-specs-table th, .tpd-specs-table td { display: block; width: 100%; padding: 15px 20px; }\n    .tpd-specs-table th { border-bottom: none; padding-bottom: 5px; }\n    .tpd-specs-table td { padding-top: 0; padding-bottom: 20px; }\n    \n    .tpd-faq-summary { font-size: 16px; padding: 18px 20px; }\n    .tpd-faq-content { padding: 0 20px 25px 20px; }\n  }\n\u003c\/style\u003e\n\n\u003cdiv class=\"tpd-wrapper\"\u003e\n  \n  \u003c!-- Top Navigation --\u003e\n  \u003cdiv class=\"tpd-nav\"\u003e\n    \u003ca href=\"#tpd-overview\"\u003e개요\u003c\/a\u003e\n    \u003ca href=\"#tpd-features\"\u003e특징\u003c\/a\u003e\n    \u003ca href=\"#tpd-specs\"\u003e사양\u003c\/a\u003e\n    \u003ca href=\"#tpd-faq\"\u003e자주 묻는 질문\u003c\/a\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Hero Split Layout --\u003e\n  \u003cdiv id=\"tpd-overview\" class=\"tpd-hero-split\"\u003e\n    \u003cdiv class=\"tpd-hero-split-img\"\u003e\n      \u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/TESERY_LED_Headlight_Assembly_for_Model_3_Highland_3.jpg?v=1742443149\u0026amp;width=1320\" alt=\"테슬라 모델 3 하이랜드용 TESERY LED 헤드라이트 어셈블리\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"tpd-hero-split-text\"\u003e\n      \u003ch2 class=\"tpd-hero-split-title\"\u003e모델 3 하이랜드 (2024+)\u003cbr\u003eOEM 교체용 헤드라이트\u003c\/h2\u003e\n      \n      \u003c!-- Installation Notice Box --\u003e\n      \u003cdiv class=\"tpd-notice-box\"\u003e\n        \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"#856404\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z\"\u003e\u003c\/path\u003e\u003cline x1=\"12\" y1=\"9\" x2=\"12\" y2=\"13\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n        \u003cdiv\u003e\n          \u003cstrong\u003e중요 설치 안내:\u003c\/strong\u003e 이 헤드라이트 설치 시 전면 범퍼를 분리해야 합니다. 경험이 부족한 DIY 사용자는 전문 정비사에게 설치를 맡길 것을 강력히 권장합니다.\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003cp class=\"tpd-hero-split-desc\"\u003eTESERY의 직접 OEM 교체 LED 헤드라이트 어셈블리로 테슬라 모델 3 하이랜드 (2024+)를 원래 상태로 복원하세요. 손상되거나 파손된 공장 부품을 품질과 기능을 손상시키지 않고 완벽하게 대체하도록 설계되었습니다.\u003c\/p\u003e\n      \n      \u003cul class=\"tpd-hero-split-list\"\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          1:1 정확한 OEM 적합성\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          공장 매트릭스\/적응형 기능 유지\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          새 제품 (중고 부품 없음)\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          직접 플러그 앤 플레이 설치\n        \u003c\/li\u003e\n      \u003c\/ul\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Key Features Grid --\u003e\n  \u003cdiv id=\"tpd-features\" class=\"tpd-section\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e프리미엄 OEM 교체 기능\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003e손상된 하이랜드 헤드라이트 교체에 TESERY를 선택해야 하는 이유\u003c\/p\u003e\n    \n    \u003cdiv class=\"tpd-features-grid\"\u003e\n      \u003c!-- Feature 1 --\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003ccircle cx=\"12\" cy=\"12\" r=\"10\"\u003e\u003c\/circle\u003e\u003cline x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003e2세대 매트릭스 LED 기술\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003e테슬라 적응형 헤드라이트 프로토콜을 완벽 지원합니다. 개별 픽셀이 다른 차량 접근 시 자동으로 밝기를 낮춰 눈부심을 방지하면서도 최대 도로 가시성을 유지합니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003c!-- Feature 2 --\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003eOEM급 내구성\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003eIP68 방수 하우징과 UV 코팅 폴리카보네이트 렌즈로 제작되었습니다. 노란 변색, 김서림, 내부 결로 현상을 방지하여 수년간 선명한 성능을 보장합니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003c!-- Feature 3 --\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003crect x=\"2\" y=\"3\" width=\"20\" height=\"14\" rx=\"2\" ry=\"2\"\u003e\u003c\/rect\u003e\u003cline x1=\"8\" y1=\"21\" x2=\"16\" y2=\"21\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"17\" x2=\"12\" y2=\"21\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003eOTA 업데이트 지원\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003e테슬라 게이트웨이와 완벽히 통신하는 사전 프로그래밍된 내부 제어 모듈 탑재. \"헤드라이트 오류\" 없이 차량 소프트웨어를 무선 업데이트하세요.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003c!-- Feature 4 --\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolygon points=\"13 2 3 14 12 14 11 22 21 10 12 10 13 2\"\u003e\u003c\/polygon\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003e완전 플러그 앤 플레이\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003e하우징, 렌즈, LED 칩, 발라스트를 포함한 완전한 어셈블리입니다. 손상된 라이트에서 기존 모듈을 옮길 필요 없이, 단순히 연결 후 서비스 모드에서 소프트웨어를 재설치하세요.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- What's in the Box --\u003e\n  \u003cdiv class=\"tpd-section\"\u003e\n    \u003cdiv class=\"tpd-box-section\"\u003e\n      \u003ch2 class=\"tpd-section-title\" style=\"margin-bottom: 10px !important;\"\u003e구성품\u003c\/h2\u003e\n      \u003cp class=\"tpd-section-subtitle\" style=\"margin-bottom: 0 !important;\"\u003e완전 교체에 필요한 모든 것\u003c\/p\u003e\n      \u003cul class=\"tpd-box-list\"\u003e\n        \u003cli\u003e\n          \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          1x LED 헤드라이트 어셈블리 (선택에 따라 좌측 또는 우측)\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          사전 장착된 LED 제어 모듈 (발라스트)\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          안전한 운송을 위한 견고한 포장\n        \u003c\/li\u003e\n      \u003c\/ul\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Specifications Section --\u003e\n  \u003cdiv id=\"tpd-specs\" class=\"tpd-section\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e기술 사양\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003e모델 3 하이랜드 헤드라이트 어셈블리의 상세 기술 정보\u003c\/p\u003e\n    \n    \u003cdiv class=\"tpd-specs-container\"\u003e\n      \u003ctable class=\"tpd-specs-table\"\u003e\n        \u003ctbody\u003e\n          \u003ctr\u003e\n            \u003cth\u003e적합성\u003c\/th\u003e\n            \u003ctd\u003e테슬라 모델 3 하이랜드 (2024, 2025, 2026)\u003c\/td\u003e\n          \u003c\/tr\u003e\n          \u003ctr\u003e\n            \u003cth\u003eOEM 참조\u003c\/th\u003e\n            \u003ctd\u003eLH: 1694086-00-G \/ RH: 1694087-00-G (유니버설 호환)\u003c\/td\u003e\n          \u003c\/tr\u003e\n          \u003ctr\u003e\n            \u003cth\u003e기술\u003c\/th\u003e\n            \u003ctd\u003e2세대 매트릭스 LED 및 픽셀 디밍 지원\u003c\/td\u003e\n          \u003c\/tr\u003e\n          \u003ctr\u003e\n            \u003cth\u003e밝기\u003c\/th\u003e\n            \u003ctd\u003e4500K - 6000K 크리스탈 화이트 (기본 대비 최대 20% 더 밝음)\u003c\/td\u003e\n          \u003c\/tr\u003e\n          \u003ctr\u003e\n            \u003cth\u003e호환성\u003c\/th\u003e\n            \u003ctd\u003e글로벌 유니버설 핏 (SAE 및 ECE 지역 모두 지원)\u003c\/td\u003e\n          \u003c\/tr\u003e\n          \u003ctr\u003e\n            \u003cth\u003e소프트웨어 지원\u003c\/th\u003e\n            \u003ctd\u003eOTA 지원 (펌웨어 2026.x 테스트 완료)\u003c\/td\u003e\n          \u003c\/tr\u003e\n          \u003ctr\u003e\n            \u003cth\u003e보호 기능\u003c\/th\u003e\n            \u003ctd\u003eIP68 방수 \/ UV 코팅 노란 변색 방지 렌즈\u003c\/td\u003e\n          \u003c\/tr\u003e\n        \u003c\/tbody\u003e\n      \u003c\/table\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FAQ Section --\u003e\n  \u003cdiv id=\"tpd-faq\" class=\"tpd-section\" style=\"margin-bottom: 40px !important;\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e자주 묻는 질문\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003e하이랜드 헤드라이트 교체에 관한 가장 흔한 질문과 답변을 확인하세요.\u003c\/p\u003e\n    \n    \u003cdiv class=\"tpd-faq-container\"\u003e\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ1: 이 헤드라이트는 미국(SAE) 및 글로벌(ECE) 모델 3 하이랜드 모두와 호환되나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          네. TESERY 조립품은 글로벌 범용 장치입니다. 지역에 상관없이 PN 1694086(왼쪽)과 PN 1694087(오른쪽)을 대체하도록 설계되었습니다. 국제 안전 기준을 충족하여 북미, 유럽, 아시아 고객에게 완벽한 올인원 솔루션입니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n      \n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ2: TESERY 조립품이 \"어댑티브 하이빔\"(매트릭스) 기능을 지원하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          물론입니다. 이 제품은 완전한 매트릭스 LED 조립품입니다. 테슬라의 어댑티브 헤드라이트 프로토콜을 지원하여, 다른 차량에 접근할 때 개별 픽셀이 어두워집니다. 최대 가시성을 유지하면서 다른 운전자의 눈부심을 방지하여 하이랜드의 스마트 조명 기능을 100% 유지합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ3: 설치 후 \"헤드라이트 오류\" 코드가 발생하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          아닙니다. 저희 제품에는 테슬라 게이트웨이와 호환되도록 사전 프로그래밍된 통합 LED 드라이버 모듈(발라스트)이 포함되어 있습니다. 원활한 동기화를 위해 설치 후 터치스크린에서 서비스 모드를 실행하고 \"소프트웨어 재설치\"를 시작하세요. 차량이 새 하드웨어를 자동으로 보정합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ4: 이 제품은 전체 조립품인가요, 아니면 하우징만 포함되나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          이 제품은 완전한 헤드라이트 조립품입니다. 하우징, 렌즈, 고성능 LED 칩, 내부 제어 모듈이 포함되어 있습니다. 100% 플러그 앤 플레이 교체품으로, 손상된 원래 라이트에서 모듈을 교체할 필요가 없습니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ5: 이 헤드라이트는 테슬라 OTA(무선) 업데이트를 어떻게 처리하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          TESERY 조립품은 OTA 업데이트를 지원합니다. 테슬라 최신 2026 펌웨어와 올바르게 통신하는 고급 부품을 사용합니다. 하드웨어 잠금이나 기능 손실 위험 없이 차량 소프트웨어를 평소처럼 업데이트할 수 있습니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n      \n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ6: 폐차장에서 구한 중고 OEM 헤드라이트보다 이 제품이 더 나은 이유는 무엇인가요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          중고 부품은 내부 균열이나 LED 열화가 있을 수 있지만, 저희 제품은 노란 변색을 방지하는 UV 코팅 폴리카보네이트 렌즈가 적용된 완전 새 제품입니다. 또한 1년 품질 보증과 전문 기술 지원을 제공하여 하이랜드의 장기적인 신뢰성을 보장합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 일반 지역","offer_id":47367562789096,"sku":null,"price":509.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 유럽 지역 【E-Mark 인증】","offer_id":47850782097640,"sku":null,"price":509.0,"currency_code":"USD","in_stock":true},{"title":"왼쪽【1694086】 \/ 일반 지역","offer_id":47058267439336,"sku":"TSLLJ0112-left","price":509.0,"currency_code":"USD","in_stock":true},{"title":"왼쪽【1694086】 \/ 유럽 지역 【E-Mark 인증】","offer_id":47850782130408,"sku":"TSLLJ0112-left-EU","price":509.0,"currency_code":"USD","in_stock":true},{"title":"오른쪽【1694087】 \/ 일반 지역","offer_id":47058267472104,"sku":"TSLLJ0112-right","price":509.0,"currency_code":"USD","in_stock":true},{"title":"오른쪽【1694087】 \/ 유럽 지역 【E-Mark 인증】","offer_id":47850782163176,"sku":"TSLLJ0112-right-EU","price":509.0,"currency_code":"USD","in_stock":true},{"title":"왼쪽+오른쪽 \/ 일반 지역","offer_id":47058267504872,"sku":"TSLLJ0112","price":998.0,"currency_code":"USD","in_stock":true},{"title":"왼쪽+오른쪽 \/ 유럽 지역 【E-Mark 인증】","offer_id":47850782195944,"sku":"TSLLJ0112-EU","price":998.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/TESERY_LED_Headlight_Assembly_for_Model_3_Highland_5.jpg?v=1742443086"},{"product_id":"tesla-led-rear-taillights-for-model-3-highland","title":"TESERY LED 후미등 for 모델 3 하이랜드","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        \/* === Premium Tesla Accessory Page Styling === *\/\n        :root {\n            --tesla-blue: #2c5e8a;\n            --tesla-light-blue: #3a7cb4;\n            --tesla-dark: #1c1c1c;\n            --tesla-light: #f8f9fa;\n            --tesla-accent: #e82127; \/* Tesla red accent *\/\n            --section-color-1: #ffffff;\n            --section-color-2: #ffffff;\n            --section-color-3: #ffffff;\n            --section-color-4: #ffffff;\n            --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\n            --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\n        }\n        \n        \/* Base styling *\/\n        .tesery-product-description-container {\n            font-family: var(--body-font);\n            color: #333;\n            line-height: 1.6;\n            background-color: #ffffff;\n            max-width: 1200px;\n            margin: 0 auto; \n            padding: 0;\n        }\n        \n        \/* Hero section *\/\n        .hero-section {\n            position: relative;\n            text-align: center;\n            padding: 0;\n            margin-bottom: 40px;\n            overflow: hidden;\n            border-radius: 12px;\n            max-height: 500px;\n            display: flex;\n            flex-direction: column;\n            justify-content: center;\n        }\n        \n        .hero-image {\n            width: 100%;\n            height: auto;\n            object-fit: cover;\n            z-index: 0;\n        }\n        \n        .hero-overlay {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background: rgba(0, 0, 0, 0.4);\n            z-index: 1;\n        }\n        \n        .hero-content {\n            position: absolute;\n            top: 50%;\n            left: 50%;\n            transform: translate(-50%, -50%);\n            z-index: 2;\n            width: 90%;\n            text-align: center;\n        }\n        \n        .product-title {\n            color: white;\n            font-family: var(--heading-font);\n            font-weight: 700;\n            font-size: 2.8rem;\n            text-shadow: 0 2px 4px rgba(0,0,0,0.5);\n            margin-bottom: 15px;\n        }\n        \n        .product-subtitle {\n            font-weight: 500;\n            color: white;\n            font-size: 1.2rem;\n            margin-bottom: 0;\n            text-shadow: 0 2px 3px rgba(0,0,0,0.5);\n        }\n        \n        \/* Content container *\/\n        .content-container {\n            padding: 0 24px;\n        }\n        \n        \/* Section styling *\/\n        .section-title {\n            color: var(--tesla-blue);\n            text-align: center;\n            margin: 2.5rem 0 1.5rem;\n            font-family: var(--heading-font);\n            font-weight: 600;\n            font-size: 1.8rem;\n            position: relative;\n            padding-bottom: 15px;\n        }\n        \n        .section-title::after {\n            content: \"\";\n            position: absolute;\n            bottom: 0;\n            left: 50%;\n            transform: translateX(-50%);\n            width: 80px;\n            height: 3px;\n            background: var(--tesla-blue);\n            border-radius: 2px;\n        }\n        \n        \/* Feature grid styling *\/\n        .feature-section {\n            padding: 50px 0;\n            background-color: var(--section-color-1);\n            border-radius: 12px;\n            margin-bottom: 40px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n        }\n        \n        .feature-list {\n            display: grid;\n            grid-template-columns: repeat(2, 1fr);\n            gap: 30px;\n            margin: 2.5rem 0;\n        }\n        \n        .feature-card {\n            background: white;\n            border-radius: 12px;\n            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);\n            overflow: hidden;\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n            display: flex;\n            flex-direction: column;\n            height: 100%;\n            text-align: center;\n            padding: 30px 20px;\n        }\n        \n        .feature-card:hover {\n            transform: translateY(-5px);\n            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);\n        }\n        \n        .feature-icon {\n            font-size: 2.2rem;\n            color: var(--tesla-blue);\n            margin-bottom: 20px;\n            display: inline-block;\n        }\n        \n        .feature-title {\n            color: var(--tesla-dark);\n            font-weight: 600;\n            font-size: 1.2rem;\n            margin: 0 0 12px;\n        }\n        \n        .feature-description {\n            color: #555;\n            font-size: 0.95rem;\n            margin: 0;\n        }\n        \n        \/* Why Choose Us Section *\/\n        .benefits-section {\n            padding: 40px 0;\n            margin: 40px 0;\n            text-align: center;\n        }\n        \n        .benefits-intro {\n            max-width: 800px;\n            margin: 0 auto 30px;\n            color: #444;\n            font-size: 1.1rem;\n        }\n        \n        \/* Installation steps section *\/\n        .installation-section {\n            background-color: var(--section-color-2);\n            border-radius: 12px;\n            padding: 40px;\n            margin: 3rem 0;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n        }\n        \n        .steps-container {\n            display: grid;\n            grid-template-columns: repeat(3, 1fr);\n            gap: 25px;\n            margin-top: 30px;\n        }\n        \n        .step-card {\n            background: white;\n            border-radius: 12px;\n            padding: 30px 25px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n            text-align: center;\n            transition: transform 0.3s ease;\n            position: relative;\n        }\n        \n        .step-card:hover {\n            transform: translateY(-5px);\n        }\n        \n        .step-number {\n            position: absolute;\n            top: -15px;\n            left: 50%;\n            transform: translateX(-50%);\n            background: var(--tesla-blue);\n            color: white;\n            width: 30px;\n            height: 30px;\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-weight: bold;\n        }\n        \n        .step-icon {\n            font-size: 2.5rem;\n            margin-bottom: 20px;\n            color: var(--tesla-blue);\n        }\n        \n        .step-title {\n            color: var(--tesla-dark);\n            font-weight: 600;\n            font-size: 1.2rem;\n            margin-bottom: 15px;\n        }\n        \n        .step-desc {\n            color: #555;\n            font-size: 0.95rem;\n            margin: 0;  \n        }\n        \n        \/* Compatibility section *\/\n        .compatibility-section {\n            padding: 40px 0;\n            margin: 40px 0;\n        }\n        \n        .table-container {\n            margin-top: 30px;\n            overflow-x: auto;\n        }\n        \n        .compatibility-table {\n            width: 100%;\n            border-collapse: collapse;\n            border-radius: 8px;\n            overflow: hidden;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n        }\n        \n        .compatibility-table th,\n        .compatibility-table td {\n            padding: 15px 20px;\n            text-align: left;\n            border-bottom: 1px solid #eaeaea;\n        }\n        \n        .compatibility-table th {\n            background-color: var(--tesla-blue);\n            color: white;\n            font-weight: 600;\n        }\n        \n        .compatibility-table tr:nth-child(even) {\n            background-color: #f8f9fa;\n        }\n        \n        .compatibility-table tr:hover {\n            background-color: #f1f8ff;\n        }\n        \n        \/* Specs section *\/\n        .specs-section {\n            background-color: var(--section-color-3);\n            border-radius: 12px;\n            padding: 40px;\n            margin: 3rem 0;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n        }\n        \n        .specs-grid {\n            display: grid;\n            grid-template-columns: repeat(2, 1fr);\n            gap: 25px;\n            margin-top: 30px;\n        }\n        \n        .spec-item {\n            display: flex;\n            align-items: center;\n            background: white;\n            padding: 20px;\n            border-radius: 8px;\n            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);\n        }\n        \n        .spec-icon {\n            font-size: 1.5rem;\n            margin-right: 15px;\n            color: var(--tesla-blue);\n            flex-shrink: 0;\n        }\n        \n        .spec-content {\n            flex-grow: 1;\n        }\n        \n        .spec-name {\n            font-weight: 600;\n            color: var(--tesla-dark);\n            margin: 0 0 5px 0;\n        }\n        \n        .spec-value {\n            font-size: 0.95rem;\n            color: #555;\n            margin: 0;\n        }\n        \n        \/* FAQ styling *\/\n        .faq-section {\n            margin: 3rem 0;\n            background-color: var(--section-color-4);\n            padding: 40px;\n            border-radius: 12px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n        }\n        \n        .faq-item {\n            margin-bottom: 15px;\n            border-radius: 8px;\n            background: white;\n            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);\n            overflow: hidden;\n            border: 1px solid #f0f0f0;\n        }\n        \n        .faq-question {\n            color: var(--tesla-dark);\n            font-weight: 600;\n            padding: 20px;\n            margin: 0;\n            border-bottom: 1px solid #f0f0f0;\n            position: relative;\n        }\n        \n        .faq-question::before {\n            content: \"Q:\";\n            color: var(--tesla-blue);\n            font-weight: 700;\n            margin-right: 8px;\n        }\n        \n        .faq-answer {\n            color: #555;\n            padding: 15px 20px 20px;\n            margin: 0;\n        }\n        \n        .faq-answer::before { \n            content: \"A:\";\n            color: var(--tesla-accent);\n            font-weight: 700;\n            margin-right: 8px;\n        }\n        \n        \/* Banner section *\/\n        .banner-section {\n            position: relative;\n            text-align: center;\n            padding: 0;\n            margin: 60px 0;\n            overflow: hidden;\n            border-radius: 12px;\n            max-height: 300px;\n        }\n        \n        .banner-image {\n            width: 100%;\n            height: auto;\n            object-fit: cover;\n            border-radius: 12px;\n        }\n        \n        .banner-overlay {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background: rgba(0, 0, 0, 0.3);\n            border-radius: 12px;\n        }\n        \n        .banner-content {\n            position: absolute;\n            top: 50%;\n            left: 50%;\n            transform: translate(-50%, -50%);\n            width: 80%;\n            color: white;\n            text-align: center;\n        }\n        \n        .banner-title {\n            font-size: 2.2rem;\n            font-weight: 700;\n            margin-bottom: 15px;\n            text-shadow: 0 2px 4px rgba(0,0,0,0.5);\n        }\n        \n        .banner-subtitle {\n            font-size: 1.1rem;\n            font-weight: 400;\n            margin-bottom: 20px;\n            text-shadow: 0 2px 3px rgba(0,0,0,0.5);\n            line-height: 1.6;\n        }\n        \n        \/* CTA Button styling *\/\n        .cta-section {\n            text-align: center;\n            margin: 3rem 0;\n            padding: 20px;\n        }\n        \n        .brand-button {\n            background: var(--tesla-blue);\n            color: white !important;\n            padding: 16px 32px;\n            border-radius: 50px;\n            font-weight: 600;\n            text-transform: uppercase;\n            transition: all 0.3s;\n            border: none;\n            cursor: pointer;\n            display: inline-block;\n            text-decoration: none;\n            font-size: 1rem;\n            letter-spacing: 0.5px;\n            box-shadow: 0 5px 15px rgba(44, 94, 138, 0.3);\n        }\n        \n        .brand-button:hover {\n            background: var(--tesla-light-blue);\n            transform: translateY(-2px);\n            box-shadow: 0 8px 20px rgba(44, 94, 138, 0.4);\n        }\n        \n        \/* Shipping section *\/\n        .shipping-section {\n            background-color: var(--section-color-4);\n            border-radius: 12px;\n            padding: 40px;\n            margin: 3rem 0;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n            text-align: center;\n        }\n        \n        .shipping-highlight {\n            background: linear-gradient(135deg, var(--tesla-blue), var(--tesla-light-blue));\n            color: white;\n            padding: 20px;\n            border-radius: 8px;\n            margin: 20px 0;\n            font-weight: 600;\n            font-size: 1.1rem;\n        }\n        \n        \/* Responsive adjustments *\/\n        @media (max-width: 768px) {\n            .product-title {\n                font-size: 2rem;\n            }\n            \n            .feature-list {\n                grid-template-columns: 1fr;\n            }\n            \n            .steps-container {\n                grid-template-columns: 1fr;\n            }\n            \n            .specs-grid {\n                grid-template-columns: 1fr;\n            }\n            \n            .installation-section, \n            .specs-section, \n            .faq-section,\n            .shipping-section {\n                padding: 25px 20px;\n            }\n            \n            .banner-title {\n                font-size: 1.8rem;\n            }\n            \n            .banner-subtitle {\n                font-size: 1rem;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"tesery-product-description-container\"\u003e\n\u003c!-- Hero Section --\u003e\n\u003cdiv style=\"text-align: center;\" class=\"hero-section\"\u003e\n\u003cdiv class=\"hero-content\"\u003e\n\u003cp class=\"product-subtitle\"\u003e \u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"content-container\"\u003e\n\u003c!-- Introduction --\u003e\n\u003cdiv class=\"benefits-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e\u003cstrong\u003eTesla의 잠재력을 밝혀라\u003c\/strong\u003e\u003c\/h3\u003e\n\u003cp class=\"benefits-intro\"\u003e프리미엄 LED 테일라이트로 Tesla Model 3 Highland를 업그레이드하세요 — 더 밝고, 더 대담하며, 오래 지속되도록 제작되었습니다. 테일라이트가 손상되었다면 OEM과 동일한 교체품으로 교체하세요 — 새것 같은 외관을 저렴한 비용으로 제공합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- Core Features --\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e주요 특징\u003c\/h3\u003e\n\u003cdiv class=\"feature-list\"\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🔧\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e완벽한 OEM 교체\u003c\/h4\u003e\n\u003cp class=\"feature-description\"\u003eTesla Model 3 Highland 공장 테일라이트 소켓에 완벽하게 맞도록 설계되었습니다. 모든 원래 기능(브레이크등, 방향지시등, 테일라이트)을 유지하면서 전문 설치가 필요 없습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e💡\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e초고광 LED 기술\u003c\/h4\u003e\n\u003cp class=\"feature-description\"\u003e자동차 등급 SMD LED는 원래 할로겐 전구보다 3배 더 밝아 비, 안개 또는 저조도 조건에서 가시성을 향상시킵니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e✨\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e현대적인 미적 디자인\u003c\/h4\u003e\n\u003cp class=\"feature-description\"\u003e슬림하고 윤곽이 뚜렷한 LED 스트립은 모델 3 하이랜드의 미니멀리스트 디자인과 완벽하게 조화를 이루며 선명한 빨간색과 호박색 빛 분포로 대담하면서도 세련된 외관을 제공합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🛡️\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e내구성 및 장기 지속\u003c\/h4\u003e\n\u003cp class=\"feature-description\"\u003eLED 기술은 필라멘트 열화를 없애 극한 온도(-40°C ~ 85°C)에서도 신뢰성을 보장하며 공장 전구보다 10배 더 오래갑니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Banner Section --\u003e\n\u003cdiv class=\"installation-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e설치 도우미\u003c\/h3\u003e\n\u003cp style=\"text-align: center; margin-bottom: 30px;\"\u003e몇 단계만으로 간단한 플러그 앤 플레이 설치\u003c\/p\u003e\n\u003cdiv class=\"steps-container\"\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e1\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e🔌\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e전원 차단\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e테슬라를 끄고 설치 작업을 시작하기 전에 전기 시스템이 안전하게 분리되었는지 확인하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e2\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e🔧\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e원래 테일라이트 제거\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e배선 하니스를 분리하고 장착 하드웨어를 풀어 공장 출고 테일라이트를 조심스럽게 제거하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e3\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e💡\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003eLED 테일라이트 설치\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e새로운 LED 테일라이트를 기존 배선 하니스에 연결하고 원래의 장착 하드웨어로 고정하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e4\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e✅\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e기능 테스트\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e테슬라를 켜고 브레이크등, 방향지시등, 주행등 등 모든 테일라이트 기능을 테스트하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e5\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e🎯\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e최종 조정\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e적절한 정렬을 확인하고 모든 연결을 안전하게 고정하세요. 이제 LED 테일라이트가 도로 주행 준비가 완료되었습니다!\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"step-card\"\u003e\n\u003cdiv class=\"step-number\"\u003e6\u003c\/div\u003e\n\u003cspan class=\"step-icon\"\u003e🚗\u003c\/span\u003e\n\u003ch4 class=\"step-title\"\u003e향상된 안전성 즐기기\u003c\/h4\u003e\n\u003cp class=\"step-desc\"\u003e새로운 LED 테일라이트로 향상된 가시성과 현대적인 미학을 경험하세요. 자신감을 가지고 운전하세요!\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Specifications Section --\u003e\n\u003cdiv class=\"specs-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e사양\u003c\/h3\u003e\n\u003cdiv class=\"specs-grid\"\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e🚗\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003e호환 모델\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003e테슬라 모델 3 하이랜드\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e📦\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003e패키지 크기\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003e35 × 20 × 10 cm\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e🌡️\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003e작동 온도\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003e-40°C ~ +85°C\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e💡\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003eLED 기술\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003e자동차용 SMD LED\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e⚡\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003e밝기\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003eOEM보다 3배 더 밝음\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-item\"\u003e\n\u003cspan class=\"spec-icon\"\u003e🔧\u003c\/span\u003e\n\u003cdiv class=\"spec-content\"\u003e\n\u003ch4 class=\"spec-name\"\u003e설치\u003c\/h4\u003e\n\u003cp class=\"spec-value\"\u003e플러그 앤 플레이, 별도 개조 불필요\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Compatibility Section --\u003e\n\u003cdiv class=\"compatibility-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e호환성\u003c\/h3\u003e\n\u003cp style=\"text-align: center; margin-bottom: 30px; color: #e82127; font-weight: 600;\"\u003e⚠️ 중요: 구매 전 차량 정보를 꼭 확인하세요\u003c\/p\u003e\n\u003cdiv class=\"table-container\"\u003e\n\u003ctable class=\"compatibility-table\"\u003e\n\u003cthead\u003e\n\u003ctr\u003e\n\u003cth\u003e테슬라 모델\u003c\/th\u003e\n\u003cth\u003e연도\u003c\/th\u003e\n\u003cth\u003e호환성\u003c\/th\u003e\n\u003c\/tr\u003e\n\u003c\/thead\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd\u003e\u003cstrong\u003eModel 3 하이랜드\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd\u003e2024년 이후\u003c\/td\u003e\n\u003ctd\u003e✅ 완전 호환\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\u003cstrong\u003eModel 3 (하이랜드 이전)\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd\u003e2017-2023\u003c\/td\u003e\n\u003ctd\u003e❌ 호환되지 않음\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\u003cstrong\u003e모델 Y\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd\u003e모든 연식\u003c\/td\u003e\n\u003ctd\u003e❌ 호환되지 않음\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\u003cstrong\u003e모델 S\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd\u003e모든 연식\u003c\/td\u003e\n\u003ctd\u003e❌ 호환되지 않음\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\u003cstrong\u003e모델 X\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd\u003e모든 연식\u003c\/td\u003e\n\u003ctd\u003e❌ 호환되지 않음\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Package Contents --\u003e\n\u003cdiv class=\"specs-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e패키지 구성품\u003c\/h3\u003e\n\u003cdiv style=\"text-align: center; padding: 30px;\"\u003e\n\u003cdiv style=\"background: white; border-radius: 12px; padding: 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\"\u003e\n\u003cspan style=\"font-size: 3rem; color: var(--tesla-blue); margin-bottom: 20px; display: block;\"\u003e📦\u003c\/span\u003e\n\u003ch4 style=\"color: var(--tesla-dark); font-weight: 600; margin-bottom: 15px;\"\u003e포함 내역\u003c\/h4\u003e\n\u003cp style=\"color: #555; font-size: 1.1rem; margin: 0;\"\u003e1 × 모델 3 하이랜드 호환 LED 테일라이트\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Shipping Section --\u003e\n\u003cdiv class=\"shipping-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e배송 정보\u003c\/h3\u003e\n\u003cp style=\"margin-bottom: 20px; color: #444;\"\u003e상품이 완벽한 상태로 설치 준비가 되어 고객님께 도착할 수 있도록 모든 노력을 기울이고 있습니다.\u003c\/p\u003e\n\u003cdiv class=\"shipping-highlight\"\u003e🚚 주문 금액 $149 이상 시 전 세계 무료 배송!\u003c\/div\u003e\n\u003cp style=\"margin-top: 20px; color: #666;\"\u003e주문 금액이 $149 이상일 경우, 전 세계 어느 도시로든 무료 배송해 드립니다. 고객님의 만족이 저희의 최우선입니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- FAQ Section --\u003e\n\u003cdiv class=\"faq-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e자주 묻는 질문\u003c\/h3\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4 class=\"faq-question\"\u003e이 테일라이트는 모든 모델 3 버전과 호환되나요?\u003c\/h4\u003e\n\u003cp class=\"faq-answer\"\u003e아니요, 이 LED 테일라이트는 테슬라 모델 3 하이랜드(2024년 이후) 전용으로 설계되었습니다. 장착 방식과 전기 연결이 달라 2017-2023년형 하이랜드 이전 모델 3와는 호환되지 않습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4 class=\"faq-question\"\u003e전문가 설치가 필요한가요?\u003c\/h4\u003e\n\u003cp class=\"faq-answer\"\u003e전문가 설치가 필요 없습니다. 플러그 앤 플레이 기능을 갖춘 원활한 OEM 교체용으로 설계되었습니다. 다만, 자동차 전기 부품 작업에 익숙하지 않다면 전문가와 상담하는 것을 권장합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4 class=\"faq-question\"\u003e이 제품은 순정 테일라이트보다 얼마나 더 밝나요?\u003c\/h4\u003e\n\u003cp class=\"faq-answer\"\u003e당사의 자동차용 SMD LED는 원래 할로겐 전구보다 3배 밝아 비, 안개, 저조도 조건에서 가시성을 크게 향상시키면서도 적절한 빔 패턴을 유지합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4 class=\"faq-question\"\u003e이 LED 테일라이트의 수명은 얼마나 되나요?\u003c\/h4\u003e\n\u003cp class=\"faq-answer\"\u003eLED 기술은 필라멘트 열화를 없애고 공장용 전구보다 10배 더 오래 사용할 수 있습니다. -40°C에서 +85°C까지 극한 온도에서도 신뢰성 있게 작동하도록 설계되어 장기적인 성능을 보장합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch4 class=\"faq-question\"\u003e이 제품이 제 테슬라 보증에 영향을 미치나요?\u003c\/h4\u003e\n\u003cp class=\"faq-answer\"\u003e이 제품들은 모든 원래 기능을 유지하는 OEM 호환 교체품으로 설계되었습니다. 다만, 설치 전에 테슬라 서비스 센터에 보증 관련 사항을 확인하는 것을 권장합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- CTA Section --\u003e\n\u003cdiv class=\"cta-section\"\u003e\n\u003ch3 style=\"color: var(--tesla-blue); margin-bottom: 20px;\"\u003e\u003cspan style=\"color: rgb(56, 122, 176);\"\u003e\u003ca style=\"color: rgb(56, 122, 176);\" href=\"https:\/\/www.tesery.com\/collections\/tesla-model-3-highland-accessories\" title=\"Model 3 highland\" target=\"_blank\"\u003e\u003cstrong\u003e모델 3 하이랜드 업그레이드 준비되셨나요?\u003c\/strong\u003e\u003c\/a\u003e\u003c\/span\u003e\u003c\/h3\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요","offer_id":47107791552744,"sku":"","price":249.0,"currency_code":"USD","in_stock":true},{"title":"왼쪽","offer_id":47107791585512,"sku":"TSL0330-L","price":249.0,"currency_code":"USD","in_stock":true},{"title":"오른쪽","offer_id":47107791618280,"sku":"TSL0330-R","price":249.0,"currency_code":"USD","in_stock":true},{"title":"한 쌍","offer_id":47107791651048,"sku":"TSL0330","price":475.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-led-rear-taillights-for-model-3-highland-503063.jpg?v=1741691602"},{"product_id":"led-door-projection-lights-for-tesla-model-y-3","title":"모델 Y \/ 3용 LED 도어 프로젝터 라이트 | TESERY","description":"\u003ch3 class=\"\"\u003e\u003cstrong class=\"\"\u003eTesla Model Y \/ Model 3용 LED 도어 프로젝터 라이트\u003c\/strong\u003e\u003c\/h3\u003e\n\u003ch4 class=\"\"\u003e\u003cstrong class=\"\"\u003e제품 설명\u003c\/strong\u003e\u003c\/h4\u003e\n\u003cdiv class=\"paragraph\"\u003e프리미엄 LED 도어 프로젝터 라이트로 테슬라 모델 Y 또는 모델 3를 업그레이드하여 운전 경험을 향상시키세요. 이 라이트는 정품 테슬라 주니퍼 디자인을 특징으로 하며, 자동차 문을 열 때 선명하고 깨끗한 TESLA 로고를 바닥에 투사합니다. 고품질 Osram LEDs를 사용하여 따뜻하고 밝은 조명을 제공하며, 차량에 우아함과 세련미를 더합니다. 매 입장마다 스타일과 기능성의 완벽한 조화를 경험하세요.\u003c\/div\u003e\n\u003ch4 class=\"\"\u003e\u003cstrong class=\"\"\u003e주요 특징\u003c\/strong\u003e\u003c\/h4\u003e\n\u003col start=\"1\"\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cp\u003e\u003cstrong\u003e정품 테슬라 주니퍼 디자인\u003c\/strong\u003e: 모델 Y 또는 모델 3과 완벽하게 어울리는 정통 테슬라 영감을 받은 패턴입니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e자동 온\/오프\u003c\/strong\u003e: 문을 열면 조명이 켜지고 닫으면 꺼져 매끄럽고 세련된 경험을 제공합니다.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e6가지 핵심 장점\u003c\/strong\u003e: 테슬라 맞춤형, OEM 몰딩, 선명한 프로젝션, 센서 기반 작동, 고품질 디코딩 칩 포함.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e4도어 설치\u003c\/strong\u003e: Osram LEDs가 장착되어 부드럽고 밝은 조명으로 가시성과 미관을 향상시킵니다.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e내장 퓨즈\u003c\/strong\u003e: 단락 위험을 제거하여 안전하고 신뢰할 수 있는 성능을 보장합니다.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003eHD 프로젝션\u003c\/strong\u003e: 고화질 TESLA 로고 프로젝션으로 일상 운전에 고급스러움을 더하세요.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003c\/ol\u003e\n\u003ch4 class=\"\"\u003e\u003cstrong class=\"\"\u003e왜 우리의 LED 도어 프로젝터 라이트를 선택해야 할까요?\u003c\/strong\u003e\u003c\/h4\u003e\n\u003cul start=\"1\"\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e정품 디자인\u003c\/strong\u003e: 테슬라의 원래 스타일과 완벽하게 일치합니다.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e쉬운 설치\u003c\/strong\u003e: 복잡한 배선 없이 직접 교체 가능합니다.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e고품질 부품\u003c\/strong\u003e: Osram LEDs와 내장 퓨즈로 내구성과 안전성을 보장합니다.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e향상된 미관\u003c\/strong\u003e: 따뜻하고 밝은 조명으로 선명한 TESLA 로고를 투사합니다.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e고객 만족\u003c\/strong\u003e: 스타일과 신뢰성을 모두 갖춘 제품으로 당신의 테슬라를 업그레이드하세요.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch4 class=\"\"\u003e\u003cstrong class=\"\"\u003e제품 사양\u003c\/strong\u003e\u003c\/h4\u003e\n\u003cul start=\"1\"\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e재질\u003c\/strong\u003e: 고품질 ABS\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e설치 위치\u003c\/strong\u003e: 자동차 문\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e호환성\u003c\/strong\u003e: 모델 3 (2017-현재), 모델 Y (2020-현재)\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e설치 방법\u003c\/strong\u003e: OEM 맞춤형 직접 교체\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003eLED 유형\u003c\/strong\u003e: Osram LEDs\u003c\/div\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch4 class=\"\"\u003e\u003cstrong class=\"\"\u003e행동 촉구\u003c\/strong\u003e\u003c\/h4\u003e\n\u003cdiv class=\"paragraph\"\u003e테슬라에 우아함과 세련미를 더할 준비가 되셨나요? 지금 주문하고 LED 도어 프로젝터 라이트로 스타일과 기능성의 완벽한 조화를 경험하세요. 오늘 바로 입구를 업그레이드하세요!\u003c\/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong class=\"\"\u003e\u003c\/strong\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\u003cstrong class=\"\"\u003e모든 입장마다 당신의 테슬라를 변신시키세요!\u003c\/strong\u003e\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"모델 3 2017-현재 \u0026 모델 Y 2020-현재 \/ 앞문 2개","offer_id":47096125784296,"sku":"TSL1905-new-rear","price":28.99,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-현재 \u0026 모델 Y 2020-현재 \/ 앞뒤 도어 4개 세트","offer_id":47096125849832,"sku":"TSL1905-new","price":36.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/led-door-projector-lights-for-tesla-model-y-3-598186.jpg?v=1768975164"},{"product_id":"led-courtesy-door-projector-puddle-lights-for-tesla-model-3-y","title":"테슬라 모델 3 \/ Y용 LED 커튼시 도어 프로젝터 웅덩이 조명","description":"\u003ch3 class=\"\"\u003e\u003cstrong class=\"\"\u003e테슬라 모델 3 \/ Y용 LED 커튼시 도어 프로젝터 웅덩이 조명\u003c\/strong\u003e\u003c\/h3\u003e\n\u003ch4 class=\"\"\u003e\u003cstrong class=\"\"\u003e제품 설명\u003c\/strong\u003e\u003c\/h4\u003e\n\u003cdiv class=\"paragraph\"\u003e저희 첨단 LED 커튼시 도어 프로젝터 퍼들 라이트로 Tesla 모델 3 또는 모델 Y를 업그레이드하세요. 이 혁신적인 라이트는 3D 육안 동적 효과가 있는 이중 렌즈 투사 시스템을 제공하여 입구를 고급스러운 경험으로 바꿉니다. 정밀하게 설계된 이 라이트는 선명하고 고화질의 TESLA 로고를 지면에 투사하여 안전성과 스타일을 모두 향상시킵니다. 문을 열 때마다 기술과 우아함의 완벽한 조화를 경험하세요.\u003c\/div\u003e\n\u003ch4 class=\"\"\u003e\u003cstrong class=\"\"\u003e주요 특징\u003c\/strong\u003e\u003c\/h4\u003e\n\u003col start=\"1\"\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e이중 렌즈 투사\u003c\/strong\u003e: 두 개의 렌즈로 이중 패턴 투사를 제공하여 독특하고 고급스러운 환영 경험 제공.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e3D 동적 효과\u003c\/strong\u003e: 3초마다 전환되는 3D 육안 동적 효과로 현대적이고 역동적인 입구 연출.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e스마트 온도 제어\u003c\/strong\u003e: 온도 제어 칩이 장착되어 3분 후 자동으로 꺼져 안전과 에너지 효율 보장.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e고화질 투사\u003c\/strong\u003e: 선명하고 깨끗한 투사를 위해 고화질 전구 사용, 가시성과 미관 향상.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e방수 및 내구성\u003c\/strong\u003e: 프리미엄 ABS 플라스틱으로 제작되어 방수, 충격 방지 및 다양한 기상 조건에 견딤.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003c\/ol\u003e\n\u003ch4 class=\"\"\u003e\u003cstrong class=\"\"\u003e왜 저희 LED 커튼시 라이트를 선택해야 할까요?\u003c\/strong\u003e\u003c\/h4\u003e\n\u003cul start=\"1\"\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e이중 패턴 투사\u003c\/strong\u003e: 두 가지 독특한 TESLA 로고 투사로 모든 입구를 기억에 남게 만드세요.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e에너지 효율\u003c\/strong\u003e: 3분 후 자동으로 꺼져 전력 소비를 줄이고 배터리 수명을 연장.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e향상된 안전성\u003c\/strong\u003e: 밝고 선명한 투사로 지면 가시성을 높여 안전한 출입 보장.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e내구성 디자인\u003c\/strong\u003e: 방수 및 충격 방지 구조로 오랜 성능 보장.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong class=\"\"\u003e쉬운 설치\u003c\/strong\u003e: 복잡한 배선 없이 직접 교체 방식.\u003c\/div\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003ch4 class=\"\"\u003e\u003cstrong class=\"\"\u003e제품 사양\u003c\/strong\u003e\u003c\/h4\u003e\n\u003cul start=\"1\"\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e재질\u003c\/strong\u003e: 프리미엄 ABS 플라스틱\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e설치 위치\u003c\/strong\u003e: 자동차 문\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e호환성\u003c\/strong\u003e: 모델 3 (2017-현재), 모델 Y (2020-현재)\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e설치 방법\u003c\/strong\u003e: OEM 맞춤형 직접 교체\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003eLED 유형\u003c\/strong\u003e: 수입 고화질 전구\u003c\/div\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cdiv class=\"paragraph\"\u003e\n\u003cstrong\u003e투사 효과\u003c\/strong\u003e: 이중 패턴의 3D 육안 동적 효과\u003c\/div\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cdiv class=\"paragraph\"\u003e당신의 Tesla를 스타일과 기술의 움직이는 표현으로 바꾸세요. 오늘 저희 LED 커튼시 도어 프로젝터 퍼들 라이트를 주문하여 모든 입구를 기억에 남는 순간으로 만드세요!\u003c\/div\u003e\n\u003cdiv class=\"paragraph\"\u003e\u003cstrong class=\"\"\u003e오늘 당신의 Tesla 입구를 업그레이드하세요!\u003c\/strong\u003e\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"모델 3 \u0026 모델 Y 2017-현재 \/ 앞문 2개 \/ Mars 로그인 스타일","offer_id":47096202264808,"sku":"TSL1906-A-front","price":39.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 \u0026 모델 Y 2017-현재 \/ 앞문 2개 \/ “T” 그라데이션 글자 스타일","offer_id":47096277336296,"sku":"TSL1906-B-front","price":39.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 \u0026 모델 Y 2017-현재 \/ 앞뒤 도어 4개 세트 \/ Mars 로그인 스타일","offer_id":47096202330344,"sku":"TSL1906-A","price":59.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 \u0026 모델 Y 2017-현재 \/ 앞뒤 도어 4개 세트 \/ “T” 그라데이션 글자 스타일","offer_id":47096277401832,"sku":"TSL1906-B","price":59.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/led-courtesy-door-projector-puddle-lights-for-tesla-model-3-y-463245.jpg?v=1741270584"},{"product_id":"tesla-model-3-y-rgb-front-bumper-fog-light-upgrade","title":"TESERY RGB 전면 범퍼 안개등 업그레이드 for 모델 3\/Y","description":"\u003cstyle\u003e\n@import url('https:\/\/fonts.googleapis.com\/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400\u0026family=Montserrat:wght@600;700;800\u0026display=swap');\n\n.tpd {\n  --pr: #0065b3;\n  --prs: #e5f2fb;\n  --tx: #4b5563;\n  --txh: #0a1628;\n  --txs: #374151;\n  --txm: #6b7280;\n  --sh: 0 10px 40px rgba(15,23,42,0.06);\n  --sh-float: 0 20px 50px rgba(0,0,0,0.12);\n  --fd: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;\n  --fb: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;\n  max-width: 1320px;\n  margin: 0 auto;\n  padding: 40px 10px;\n  font-family: var(--fb);\n  font-size: 16px;\n  line-height: 1.7;\n  color: var(--tx);\n}\n\n.tpd * { box-sizing: border-box; }\n.tpd a { text-decoration: none; color: inherit; }\n\n\/* Hero Section *\/\n.tpd .hero { text-align: center; margin-bottom: 64px; padding-top: 28px; }\n.tpd .hero h2 { margin: 0 0 16px; font-family: var(--fd); font-size: 42px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; color: var(--txh); }\n.tpd .hsub { font-size: 17px; color: var(--txs); margin: 0 auto 24px; max-width: 760px; line-height: 1.65; }\n.tpd .alert-note { background: rgba(0,101,179,.08); color: var(--pr); border-radius: 12px; padding: 16px 24px; max-width: 800px; margin: 0 auto 48px; font-size: 15px; font-weight: 600; border-left: 4px solid var(--pr); text-align: left; }\n.tpd .inav { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; font-size: 13px; font-weight: 600; color: var(--pr); letter-spacing: .1em; text-transform: uppercase; }\n.tpd .inav a:hover { color: #024777; }\n\n\/* Card Layout *\/\n.tpd .card, .tpd .faqwrap { background: #fff; border-radius: 20px; border: 1px solid rgba(229,231,235,.8); box-shadow: var(--sh); padding: 64px; margin-bottom: 48px; }\n.tpd .stit { margin: 0 0 12px; font-family: var(--fd); font-size: 34px; font-weight: 700; text-align: center; letter-spacing: -.02em; line-height: 1.2; color: var(--txh); }\n.tpd .ssub { margin: 0 auto 48px; font-size: 16px; color: var(--txs); text-align: center; line-height: 1.65; max-width: 640px; }\n\n\/* Product Details *\/\n.tpd .badge { display: inline-block; padding: 6px 18px; border-radius: 999px; background: var(--pr); color: #fff; font-size: 11px; letter-spacing: .18em; font-weight: 700; text-transform: uppercase; margin-bottom: 28px; }\n.tpd .tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 48px; }\n.tpd .tag { padding: 8px 18px; border-radius: 999px; background: #f3f4f6; border: 1px solid #e5e7eb; font-size: 13px; font-weight: 500; color: var(--txm); }\n.tpd .tag:nth-child(odd) { border-color: var(--prs); background: var(--prs); color: #024777; }\n.tpd .ibody p { margin: 0 0 28px; font-size: 16px; max-width: 820px; line-height: 1.85; }\n.tpd .ibody ul { list-style: none; margin: 28px 0 0; padding: 0; }\n.tpd .ibody li { margin-bottom: 24px; font-size: 16px; padding-left: 26px; position: relative; line-height: 1.85; }\n.tpd .ibody li::before { content: \"\"; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--pr); }\n\n\/* Showcase Gallery - FORCE SEAL FIX *\/\n.tpd #tpd-gl { padding: 48px 24px; }\n.tpd .gwrap { max-width: 750px; margin: 0 auto; }\n.tpd .gmain { \n  border-radius: 24px; \n  overflow: hidden; \n  background: transparent; \n  display: flex;             \/* Eliminates inline white gaps *\/\n  flex-direction: column;\n  line-height: 0;           \n  font-size: 0;             \n  padding: 0 !important;    \n  margin: 0 !important;\n  box-shadow: var(--sh-float); \n  transition: transform 0.3s ease;\n}\n.tpd .gmain:hover { transform: translateY(-5px); }\n.tpd .gmain img { \n  width: 100%; \n  height: auto;\n  display: block;           \n  aspect-ratio: 1\/1; \n  object-fit: cover; \n  border: none !important;\n  padding: 0 !important;\n  margin: 0 !important;\n  transition: opacity 0.2s ease; \n}\n\n.tpd .gthumbs { \n  display: flex; \n  gap: 12px; \n  margin-top: 20px; \n  justify-content: center; \n  overflow-x: auto; \n  padding-bottom: 8px; \n  scrollbar-width: none; \n}\n.tpd .gthumbs::-webkit-scrollbar { display: none; }\n.tpd .gth { \n  flex: 0 0 auto; \n  cursor: pointer; \n  border-radius: 12px; \n  display: flex;            \/* Removes gap from thumbnails *\/\n  overflow: hidden;\n  padding: 0 !important;\n}\n.tpd .gth img { \n  width: 85px; \n  height: 85px; \n  object-fit: cover; \n  border-radius: 12px; \n  border: 2px solid transparent; \n  opacity: 0.6; \n  display: block; \n  transition: all 0.2s; \n}\n.tpd .gth:hover img { opacity: 0.9; transform: scale(1.05); }\n.tpd .gth-on img { opacity: 1 !important; border-color: var(--pr) !important; box-shadow: 0 4px 12px rgba(0,101,179,0.2); }\n\n\/* Video Section *\/\n.tpd .ivwrap { margin: 0 auto; max-width: 1000px; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 40px rgba(15,23,42,.16); line-height: 0; }\n.tpd .ivwrap iframe { width: 100%; aspect-ratio: 16\/9; border: none; display: block; }\n\n\/* FAQ Section *\/\n.tpd details { border-bottom: 1px solid #ebebeb; }\n.tpd details:last-child { border-bottom: none; }\n.tpd summary { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 28px 0; cursor: pointer; list-style: none; font-size: 16px; font-weight: 600; line-height: 1.5; color: var(--txh); font-family: var(--fb); transition: color .2s; }\n.tpd summary::-webkit-details-marker { display: none; }\n.tpd summary:hover { color: var(--pr); }\n.tpd .fi { flex-shrink: 0; font-size: 24px; color: var(--pr); transition: transform .22s; user-select: none; }\n.tpd details[open] .fi { transform: rotate(45deg); }\n.tpd .fa { padding: 0 0 28px; font-size: 15px; color: var(--tx); line-height: 1.85; }\n\n\/* Responsive Adjustments *\/\n@media(max-width:1024px) { .tpd .card, .tpd .faqwrap { padding: 48px; } }\n@media(max-width:768px) {\n  .tpd .card, .tpd .faqwrap { padding: 28px 20px 32px; }\n  .tpd #tpd-gl { padding: 32px 15px; }\n  .tpd .hero h2 { font-size: 30px; }\n  .tpd .stit { font-size: 26px; }\n  .tpd .ssub { margin-bottom: 32px; }\n  .tpd .gth img { width: 65px; height: 65px; }\n}\n\u003c\/style\u003e\n\n\u003cdiv class=\"tpd\"\u003e\n  \u003csection class=\"hero\"\u003e\n    \u003ch2\u003eTESERY RGB 동적 안개등 for Tesla Model 3\/Y\u003c\/h2\u003e\n    \u003cp class=\"hsub\"\u003eTESERY의 RGB 안개등으로 테슬라 모델 3\/Y를 시선을 사로잡는 걸작으로 변신시키세요. 스타일과 기능성을 모두 중시하는 운전자를 위해 설계되었습니다.\u003c\/p\u003e\n    \u003cdiv class=\"alert-note\"\u003e\n      \u003cstrong\u003e중요 참고 사항:\u003c\/strong\u003e 조명 색상은 수동으로 맞춤 설정할 수 없습니다. 7가지 색상이 동적이고 흐르는 물 효과로 자동 전환됩니다.\n    \u003c\/div\u003e\n    \u003cnav class=\"inav\"\u003e\n      \u003ca href=\"#tpd-ft\"\u003e주요 특징\u003c\/a\u003e \n      \u003ca href=\"#tpd-gl\"\u003e동적 쇼케이스\u003c\/a\u003e \n      \u003ca href=\"#tpd-iv\"\u003e설치\u003c\/a\u003e \n      \u003ca href=\"#tpd-fq\"\u003e자주 묻는 질문\u003c\/a\u003e\n    \u003c\/nav\u003e\n  \u003c\/section\u003e\n\n  \u003csection id=\"tpd-ft\" class=\"card\"\u003e\n    \u003ch3 class=\"stit\"\u003e제품 상세 정보\u003c\/h3\u003e\n    \u003cp class=\"ssub\"\u003e프리미엄 미학과 안전성으로 운전 경험을 업그레이드하세요.\u003c\/p\u003e\n    \u003cdiv class=\"ibody\"\u003e\n      \u003cspan class=\"badge\"\u003e동적 흐르는 RGB\u003c\/span\u003e\n      \u003cdiv class=\"tags\"\u003e\n        \u003cspan class=\"tag\"\u003e모델 3\/Y 호환\u003c\/span\u003e \n        \u003cspan class=\"tag\"\u003e플러그 앤 플레이\u003c\/span\u003e \n        \u003cspan class=\"tag\"\u003e방수 기능\u003c\/span\u003e \n        \u003cspan class=\"tag\"\u003e향상된 안전성\u003c\/span\u003e\n      \u003c\/div\u003e\n      \u003cp\u003e생생한 색상으로 운전 경험을 맞춤 설정하세요. 이 조명은 7가지 색상이 부드럽고 흐르는 물 패턴으로 지속적으로 변하는 내장 동적 시스템을 특징으로 하여 놀라운 시각적 효과를 만듭니다.\u003c\/p\u003e\n      \u003cul\u003e\n        \u003cli\u003e\n\u003cstrong\u003e방수 설계:\u003c\/strong\u003e 비, 눈, 극한 온도를 견딜 수 있도록 내구성 있고 방수 기능이 있는 소재로 제작되었습니다.\u003c\/li\u003e\n        \u003cli\u003e\n\u003cstrong\u003e플러그 앤 플레이 설치:\u003c\/strong\u003e 복잡한 배선이나 수정 없이 몇 분 만에 즉시 업그레이드를 즐기세요.\u003c\/li\u003e\n        \u003cli\u003e\n\u003cstrong\u003e모델 3\/Y에 완벽한 맞춤:\u003c\/strong\u003e 차량 전면 범퍼와 완벽하게 통합되도록 특별히 설계되어 공장 출고 상태와 같은 마감 품질을 제공합니다.\u003c\/li\u003e\n        \u003cli\u003e\n\u003cstrong\u003e향상된 가시성 및 안전성:\u003c\/strong\u003e 밝고 에너지 효율적인 LED가 야간이나 안개 낀 조건에서 도로 가시성을 개선합니다.\u003c\/li\u003e\n      \u003c\/ul\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection id=\"tpd-gl\" class=\"card\"\u003e\n    \u003ch3 class=\"stit\"\u003e동적 흐르는 색상 쇼케이스\u003c\/h3\u003e\n    \u003cp class=\"ssub\"\u003e멋진 7가지 색상 동적 조명 시스템을 경험해 보세요. 아래 썸네일을 클릭하여 탐색하세요.\u003c\/p\u003e\n    \u003cdiv class=\"gwrap\"\u003e\n      \u003cdiv class=\"gmain\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-982190.jpg?v=1774596378\u0026amp;width=713\" alt=\"전체 흐르는 색상 쇼케이스\" id=\"tpd-mimg\"\u003e\u003c\/div\u003e\n      \u003cdiv id=\"tpd-thumbs\" class=\"gthumbs\"\u003e\n        \u003cdiv data-src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-982190.jpg?v=1774596378\u0026amp;width=713\" class=\"gth gth-on\"\u003e\n          \u003cimg alt=\"썸네일 1\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-982190.jpg?v=1774596378\u0026amp;width=713\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv data-src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-7899566.png?v=1774706769\u0026amp;width=713\" class=\"gth\"\u003e\n          \u003cimg alt=\"썸네일 2\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-7899566.png?v=1774706769\u0026amp;width=713\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv data-src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-9549088.png?v=1774706769\" class=\"gth\"\u003e\n          \u003cimg alt=\"썸네일 3\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-9549088.png?v=1774706769\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv data-src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-9451329.png?v=1774706769\u0026amp;width=713\" class=\"gth\"\u003e\n          \u003cimg alt=\"썸네일 4\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-9451329.png?v=1774706769\u0026amp;width=713\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv data-src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-7779107.png?v=1774706769\u0026amp;width=713\" class=\"gth\"\u003e\n          \u003cimg alt=\"썸네일 5\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-7779107.png?v=1774706769\u0026amp;width=713\"\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection id=\"tpd-iv\" class=\"card\"\u003e\n    \u003ch3 class=\"stit\"\u003e설치 가이드 동영상\u003c\/h3\u003e\n    \u003cp class=\"ssub\"\u003e단계별 튜토리얼을 시청하여 테슬라 DIY 스타일로 쉽게 업그레이드하세요.\u003c\/p\u003e\n    \u003cdiv class=\"ivwrap\"\u003e\n      \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/XjdKKRhHPOI\" title=\"TESERY LED DRL foglights Installation\"\u003e\u003c\/iframe\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection id=\"tpd-fq\" class=\"faqwrap\"\u003e\n    \u003ch3 class=\"stit\"\u003e자주 묻는 질문\u003c\/h3\u003e\n    \u003cp class=\"ssub\"\u003e궁금한 점이 있나요? 저희가 답변해 드립니다.\u003c\/p\u003e\n    \u003cdiv\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003cspan\u003e조명을 특정 색상으로 고정할 수 있나요?\u003c\/span\u003e\u003cspan class=\"fi\"\u003e+\u003c\/span\u003e\u003c\/summary\u003e\n        \u003cp class=\"fa\"\u003e아니요, 조명 색상을 수동으로 단일 색상으로 고정할 수 없습니다. 시스템은 7가지 색상이 연속적이고 흐르는 물 효과로 자동 전환되는 동적 디자인을 특징으로 합니다.\u003c\/p\u003e\n      \u003c\/details\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003cspan\u003e이 안개등은 모델 3와 모델 Y 모두에 호환되나요?\u003c\/span\u003e\u003cspan class=\"fi\"\u003e+\u003c\/span\u003e\u003c\/summary\u003e\n        \u003cp class=\"fa\"\u003e네, 이 안개등은 테슬라 모델 3와 모델 Y 전면 범퍼에 완벽하고 매끄럽게 맞도록 특별히 설계되고 성형되었습니다.\u003c\/p\u003e\n      \u003c\/details\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003cspan\u003e설치 과정이 어렵나요?\u003c\/span\u003e\u003cspan class=\"fi\"\u003e+\u003c\/span\u003e\u003c\/summary\u003e\n        \u003cp class=\"fa\"\u003e전혀 그렇지 않습니다. 안개등은 플러그 앤 플레이 디자인으로 복잡한 배선이나 영구적인 수정이 필요 없습니다. 단계별 가이드는 저희 동영상을 참고하세요.\u003c\/p\u003e\n      \u003c\/details\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003cspan\u003e이 조명은 폭우나 눈 속에서도 안전하게 사용할 수 있나요?\u003c\/span\u003e\u003cspan class=\"fi\"\u003e+\u003c\/span\u003e\u003c\/summary\u003e\n        \u003cp class=\"fa\"\u003e전혀 그렇지 않습니다. 이 제품은 혹독한 기상 조건과 극한 온도를 견딜 수 있도록 내구성이 뛰어나고 방수 기능이 있는 소재로 제작되었습니다.\u003c\/p\u003e\n      \u003c\/details\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003cspan\u003e이 제품을 설치하면 테슬라 보증이 무효화되나요?\u003c\/span\u003e\u003cspan class=\"fi\"\u003e+\u003c\/span\u003e\u003c\/summary\u003e\n        \u003cp class=\"fa\"\u003e이 조명은 플러그 앤 플레이 연결 방식을 사용하며 공장 배선에 연결할 필요가 없기 때문에 일반적으로 차량 보증을 무효화하지 않습니다. 다만, 특정 우려 사항이 있으시면 가까운 서비스 센터에 문의하시길 권장합니다.\u003c\/p\u003e\n      \u003c\/details\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\ndocument.addEventListener('DOMContentLoaded', function() {\n    const mainImg = document.getElementById('tpd-mimg');\n    const thumbs = document.querySelectorAll('#tpd-thumbs .gth');\n\n    thumbs.forEach(thumb =\u003e {\n        thumb.addEventListener('click', function() {\n            const newSrc = this.getAttribute('data-src');\n\n            if (newSrc) {\n                mainImg.style.opacity = '0.3';\n                setTimeout(() =\u003e {\n                    mainImg.src = newSrc;\n                    mainImg.style.opacity = '1';\n                }, 100);\n            }\n\n            thumbs.forEach(t =\u003e t.classList.remove('gth-on'));\n            this.classList.add('gth-on');\n        });\n    });\n});\n\u003c\/script\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 턴 시그널 포함","offer_id":47108343988456,"sku":"","price":319.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 턴 시그널 미포함","offer_id":47207067189480,"sku":"","price":309.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023 \/ 턴 시그널 포함","offer_id":47108344021224,"sku":"TSLLJ0114","price":319.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023 \/ 턴 시그널 미포함","offer_id":47207067222248,"sku":"TSLLJ0114-1","price":309.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 2020-2025.03 \/ 턴 시그널 포함","offer_id":47108344053992,"sku":"TSLLJ0114","price":319.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 2020-2025.03 \/ 턴 시그널 미포함","offer_id":47207067255016,"sku":"TSLLJ0114-1","price":309.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-rgb-front-bumper-fog-light-upgrade-for-model-3y-7899566.png?v=1774706769"},{"product_id":"model-3-y-ambient-light-screen-edge-protector","title":"모델 3\/Y 음악 동기화 RGB 앰비언트 조명 및 무선 충전 전화 거치대","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        \/* Basic styles *\/\n        body {\n            font-family: 'Roboto', Arial, sans-serif;\n            margin: 0;\n            padding: 15px;\n            background-color: white;\n            line-height: 1.4;\n        }\n\n        \/* Main container *\/\n        .demo-container {\n            max-width: 1200px;\n            margin: 0 auto;\n            background-color: white;\n        }\n\n        \/* Section spacing - optimized for collapsed state *\/\n        .section {\n            margin-bottom: 25px;\n            transition: margin-bottom 0.4s ease;\n        }\n\n        \/* Remove bottom margin when collapsed *\/\n        .section:has(.section-toggle:checked) {\n            margin-bottom: 5px;\n        }\n\n        \/* Video section *\/\n        .video-section {\n            background-color: white;\n            margin-bottom: 0;\n        }\n\n        \/* Common header styles for both sections *\/\n        .section-header {\n            font-size: 20px;\n            font-weight: bold;\n            margin-bottom: 15px;\n            text-align: left;\n            color: #333;\n            background-color: #f8f9fa;\n            padding: 12px 20px;\n            margin: 0 0 15px 0;\n            transition: margin-bottom 0.4s ease;\n            position: relative;\n            border-left: 5px solid #007bff;\n        }\n\n        \/* Video section color indicator *\/\n        .video-section .section-header {\n            border-left-color: #28a745;\n        }\n\n        \/* Gallery section color indicator *\/\n        .feedback-section .section-header {\n            border-left-color: #dc3545;\n        }\n\n        \/* Remove header bottom margin when collapsed *\/\n        .section-toggle:checked + .section-label.section-header {\n            margin-bottom: 0;\n        }\n\n        \/* Collapsible functionality using CSS only - for both sections *\/\n        .section-toggle {\n            display: none;\n        }\n\n        .section-label {\n            cursor: pointer;\n            display: flex;\n            align-items: center;\n            justify-content: space-between;\n            transition: color 0.3s ease;\n            user-select: none;\n        }\n\n        .section-label:hover {\n            color: #666;\n        }\n\n        .collapse-icon {\n            font-size: 16px;\n            transition: transform 0.3s ease;\n            margin-left: auto;\n        }\n\n        \/* 修改箭头方向逻辑：未选中时箭头向右，选中时箭头向下 *\/\n        .section-toggle:not(:checked) + .section-label .collapse-icon {\n            transform: rotate(-90deg);\n        }\n\n        .section-toggle:checked + .section-label .collapse-icon {\n            transform: rotate(0deg);\n        }\n\n        \/* Video wrapper with clean rounded rectangle styling *\/\n        .video-wrapper {\n            position: relative;\n            width: 100%;\n            height: 0;\n            padding-bottom: 56.25%; \/* 16:9 aspect ratio *\/\n            overflow: hidden;\n            opacity: 1;\n            transition: max-height 0.4s ease, opacity 0.3s ease, padding-bottom 0.4s ease, margin-bottom 0.4s ease;\n            max-height: 500px;\n            margin-bottom: 0;\n            background-color: #000;\n            \/* 移除绿色边框，保持圆角 *\/\n            border-radius: 12px;\n            box-shadow: 0 4px 16px rgba(0,0,0,0.1);\n        }\n\n        .section-toggle:checked ~ .video-wrapper {\n            max-height: 0;\n            opacity: 0;\n            padding-bottom: 0;\n            overflow: hidden;\n            margin-bottom: 0;\n        }\n\n        .video-wrapper iframe {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            border: none;\n            border-radius: 9px;\n            object-fit: cover;\n        }\n\n        \/* Alternative approach for better video fitting *\/\n        @media (min-width: 769px) {\n            .video-wrapper {\n                max-width: 100%;\n                padding-bottom: 56.25%;\n            }\n        }\n\n        \/* Customer feedback section *\/\n        .feedback-section {\n            background-color: white;\n            margin-bottom: 0;\n        }\n\n        \/* Scrollable gallery *\/\n        .review-slider {\n            display: flex;\n            overflow-x: auto;\n            scroll-snap-type: x mandatory;\n            scroll-behavior: smooth;\n            padding: 0 10px 10px 10px;\n            gap: 15px;\n            max-height: 220px;\n            opacity: 1;\n            transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, margin-bottom 0.4s ease;\n            margin-bottom: 0;\n        }\n\n        .section-toggle:checked ~ .review-slider {\n            max-height: 0;\n            opacity: 0;\n            padding: 0 10px;\n            overflow: hidden;\n            margin-bottom: 0;\n        }\n\n        .review-slider::-webkit-scrollbar {\n            height: 6px;\n            background-color: #f5f5f5;\n            border-radius: 3px;\n        }\n\n        .review-slider::-webkit-scrollbar-thumb {\n            background-color: #ccc;\n            border-radius: 3px;\n            transition: all 0.3s ease;\n        }\n\n        .review-slider::-webkit-scrollbar-thumb:hover {\n            background-color: #999;\n        }\n\n        \/* Review items - optimized for Shopify *\/\n        .review-item {\n            flex-shrink: 0;\n            width: 200px;\n            height: 200px;\n            overflow: hidden;\n            scroll-snap-align: start;\n            transition: transform 0.3s ease;\n            cursor: pointer;\n            border-radius: 8px;\n            box-shadow: 0 2px 8px rgba(0,0,0,0.1);\n            border: 1px solid #e0e0e0;\n        }\n\n        .review-item:hover {\n            transform: scale(1.03);\n            box-shadow: 0 4px 16px rgba(0,0,0,0.15);\n        }\n\n        .review-item img {\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n        }\n\n        \/* Responsive design *\/\n        @media (max-width: 768px) {\n            body {\n                padding: 10px;\n            }\n            \n            .section {\n                margin-bottom: 20px;\n            }\n            \n            .section:has(.section-toggle:checked) {\n                margin-bottom: 3px;\n            }\n            \n            .section-header {\n                font-size: 18px;\n                margin-bottom: 8px;\n                padding: 10px 15px;\n            }\n            \n            \/* Mobile video optimization without border *\/\n            .video-wrapper {\n                padding-bottom: 56.25%;\n                max-height: 300px;\n                background-color: transparent;\n                border-radius: 8px;\n                box-shadow: 0 2px 12px rgba(0,0,0,0.1);\n            }\n            \n            .video-wrapper iframe {\n                border-radius: 5px;\n                width: 100%;\n                height: 100%;\n            }\n            \n            .review-item {\n                width: 180px;\n                height: 180px;\n            }\n        }\n\n        @media (max-width: 480px) {\n            .section {\n                margin-bottom: 15px;\n            }\n            \n            .section:has(.section-toggle:checked) {\n                margin-bottom: 2px;\n            }\n            \n            .section-header {\n                font-size: 16px;\n                margin-bottom: 6px;\n                padding: 8px 10px;\n            }\n            \n            \/* Small mobile video optimization without border *\/\n            .video-wrapper {\n                padding-bottom: 56.25%;\n                max-height: 250px;\n                margin-bottom: 10px;\n                background-color: transparent;\n                border-radius: 6px;\n                box-shadow: 0 2px 10px rgba(0,0,0,0.08);\n            }\n            \n            .video-wrapper iframe {\n                border-radius: 3px;\n                width: 100%;\n                height: 100%;\n            }\n            \n            .review-item {\n                width: 160px;\n                height: 160px;\n            }\n            \n            .review-slider {\n                gap: 12px;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"demo-container\"\u003e\n\u003c!-- Installation Video Section with Collapsible Feature --\u003e\n\u003cdiv class=\"section\"\u003e\n\u003cdiv class=\"video-section\"\u003e\n\u003cinput class=\"section-toggle\" id=\"videoToggle\" type=\"checkbox\" checked\u003e \u003clabel class=\"section-label section-header\" for=\"videoToggle\"\u003e 설치 및 사용자 경험 \u003cspan class=\"collapse-icon\"\u003e▼\u003c\/span\u003e \u003c\/label\u003e\n\u003cdiv class=\"video-wrapper\"\u003e\u003ciframe loading=\"lazy\" title=\"Installation Demo Video\" src=\"https:\/\/www.youtube.com\/embed\/F8ph-wCOKcY?rel=0\u0026amp;modestbranding=1\u0026amp;showinfo=0\u0026amp;controls=1\u0026amp;autoplay=1\u0026amp;enablejsapi=1\u0026amp;origin=https:\/\/claude.ai\u0026amp;playsinline=0\" id=\"videoFrame\"\u003e\n                    \u003c\/iframe\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Customer Feedback Gallery Section --\u003e\n\u003cdiv class=\"section\"\u003e\n\u003cdiv class=\"feedback-section\"\u003e\n\u003cinput class=\"section-toggle\" id=\"galleryToggle\" type=\"checkbox\" checked\u003e \u003clabel class=\"section-label section-header\" for=\"galleryToggle\"\u003e 고객 사진 전시 \u003cspan class=\"collapse-icon\"\u003e▼\u003c\/span\u003e \u003c\/label\u003e\n\u003cdiv id=\"reviewSlider\" class=\"review-slider\"\u003e\n\u003c!-- Feedback Image 1 --\u003e\n\u003cdiv class=\"review-item\"\u003e\u003ca href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/review_1.png?v=1763535372\" target=\"_blank\"\u003e \u003cimg alt=\"고객 피드백 1\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/review_1.png?v=1763535372\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003c!-- Feedback Image 2 --\u003e\n\u003cdiv class=\"review-item\"\u003e\u003ca href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/review_4.png?v=1763535372\" target=\"_blank\"\u003e \u003cimg alt=\"고객 피드백 2\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/review_4.png?v=1763535372\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003c!-- Feedback Image 3 --\u003e\n\u003cdiv class=\"review-item\"\u003e\u003ca href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/review_2.png?v=1763535372\" target=\"_blank\"\u003e \u003cimg alt=\"고객 피드백 3\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/review_2.png?v=1763535372\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003c!-- Feedback Image 4 --\u003e\n\u003cdiv class=\"review-item\"\u003e\u003ca href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/review_5.png?v=1763535372\" target=\"_blank\"\u003e \u003cimg alt=\"고객 피드백 4\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/review_5.png?v=1763535372\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003c!-- Feedback Image 5 --\u003e\n\u003cdiv class=\"review-item\"\u003e\u003ca href=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/review_3.png?v=1763535372\" target=\"_blank\"\u003e \u003cimg alt=\"고객 피드백 5\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/review_3.png?v=1763535372\"\u003e \u003c\/a\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 스타일 1【무선 충전*1】","offer_id":47130025492712,"sku":"","price":109.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2017-2023.10 \u0026 모델 Y 2020-2025.3 \/ 스타일 1【무선 충전*1】","offer_id":47130025591016,"sku":"TSL6525","price":109.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 Highland \u0026 2025년형 New Model Y (15.4\") \/ 스타일 1【무선 충전*1】","offer_id":47130025623784,"sku":"TSL6525-new","price":89.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 Highland \u0026 2025년형 New Model Y (15.4\") \/ 스타일 2【무선 충전*2】","offer_id":47614349115624,"sku":"TSL6525-new-double","price":99.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/model-3y-ambient-light-screen-edge-protector-with-wireless-charging-phone-holder-825087.png?v=1749786312"},{"product_id":"tesla-led-headlight-assembly-for-model-s","title":"TESERY LED 헤드라이트 어셈블리 for 모델 S (16-22)","description":"\u003c!-- Import Google Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=DM+Sans:wght@400;500;600;700\u0026amp;family=Montserrat:wght@700;800\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n  \/* === Base Variables \u0026 Reset === *\/\n  .tpd-wrapper {\n    --tpd-primary: #0065b3;\n    --tpd-success: #10b981;\n    --tpd-danger: #ef4444;\n    --tpd-warning: #f59e0b;\n    --tpd-text-main: #333333;\n    --tpd-text-light: #666666;\n    --tpd-bg-light: #f9f9f9;\n    --tpd-border: #e5e5e5;\n    --tpd-radius-card: 20px;\n    --tpd-radius-img: 18px;\n    --tpd-shadow: 0 8px 24px rgba(0,0,0,0.04);\n    --tpd-shadow-hover: 0 15px 35px rgba(0,0,0,0.1);\n    \n    font-family: 'DM Sans', sans-serif;\n    color: var(--tpd-text-main);\n    line-height: 1.85;\n    max-width: 1320px;\n    margin: 0 auto;\n    padding: 20px 0;\n    box-sizing: border-box;\n  }\n  .tpd-wrapper * {\n    box-sizing: border-box;\n  }\n  .tpd-wrapper h2, .tpd-wrapper h3, .tpd-wrapper h4 {\n    font-family: 'Montserrat', sans-serif;\n    margin-top: 0;\n    color: var(--tpd-text-main);\n  }\n  .tpd-wrapper img {\n    max-width: 100%;\n    height: auto;\n    display: block;\n    border-radius: var(--tpd-radius-img);\n  }\n  \n  \/* Force Section Spacing *\/\n  .tpd-section {\n    margin-top: 80px !important;\n    margin-bottom: 80px !important;\n    clear: both;\n  }\n  .tpd-section-title {\n    font-size: 36px;\n    font-weight: 800;\n    text-align: center;\n    margin-bottom: 20px !important;\n  }\n  .tpd-section-subtitle {\n    font-size: 17px;\n    color: var(--tpd-text-light);\n    text-align: center;\n    max-width: 800px;\n    margin: 0 auto 50px auto !important;\n  }\n\n  \/* Navigation *\/\n  .tpd-nav {\n    display: flex;\n    justify-content: center;\n    gap: 15px;\n    flex-wrap: wrap;\n    margin-bottom: 60px;\n  }\n  .tpd-nav a {\n    text-decoration: none;\n    color: var(--tpd-text-main);\n    font-size: 14px;\n    font-weight: 600;\n    letter-spacing: 0.05em;\n    padding: 12px 24px;\n    border: 1px solid var(--tpd-border);\n    border-radius: 30px;\n    transition: all 0.3s ease;\n  }\n  .tpd-nav a:hover {\n    border-color: var(--tpd-primary);\n    color: var(--tpd-primary);\n    background-color: var(--tpd-bg-light);\n  }\n\n  \/* === Hero Split Layout === *\/\n  .tpd-hero-split {\n    display: flex;\n    align-items: center;\n    gap: 50px;\n    margin-bottom: 80px;\n  }\n  .tpd-hero-split-img {\n    flex: 1;\n    border-radius: var(--tpd-radius-card);\n    overflow: hidden;\n    box-shadow: var(--tpd-shadow);\n  }\n  .tpd-hero-split-img img {\n    width: 100%;\n    display: block;\n    object-fit: cover;\n  }\n  .tpd-hero-split-text {\n    flex: 1;\n  }\n  .tpd-hero-split-title {\n    font-size: 42px;\n    font-weight: 800;\n    line-height: 1.2;\n    margin-bottom: 20px;\n    color: var(--tpd-text-main);\n  }\n  .tpd-hero-split-desc {\n    font-size: 16px;\n    color: var(--tpd-text-light);\n    margin-bottom: 25px;\n    line-height: 1.7;\n  }\n  .tpd-hero-split-list {\n    list-style: none !important;\n    padding: 0;\n    margin: 0 0 30px 0;\n  }\n  .tpd-hero-split-list li {\n    list-style-type: none !important;\n    position: relative;\n    padding-left: 32px;\n    margin-bottom: 16px;\n    font-size: 16px;\n    color: var(--tpd-text-main);\n    font-weight: 600;\n    display: flex;\n    align-items: center;\n  }\n  .tpd-hero-split-list li svg {\n    position: absolute;\n    left: 0;\n    color: var(--tpd-primary);\n  }\n\n  \/* Notice Box *\/\n  .tpd-notice-box {\n    background-color: #fff3cd;\n    border-left: 4px solid #ffc107;\n    padding: 18px 25px;\n    border-radius: 8px;\n    font-size: 14px;\n    color: #856404;\n    display: flex;\n    align-items: flex-start;\n    gap: 12px;\n    line-height: 1.6;\n    margin-bottom: 20px;\n  }\n  .tpd-notice-box svg {\n    flex-shrink: 0;\n    margin-top: 2px;\n  }\n\n  \/* === Features Grid === *\/\n  .tpd-features-grid {\n    display: grid;\n    grid-template-columns: repeat(2, 1fr);\n    gap: 30px;\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  .tpd-feature-card {\n    background: #fff;\n    border: 1px solid var(--tpd-border);\n    border-radius: var(--tpd-radius-card);\n    padding: 40px;\n    transition: transform 0.3s ease, box-shadow 0.3s ease;\n    display: flex;\n    flex-direction: column;\n  }\n  .tpd-feature-card:hover {\n    transform: translateY(-5px);\n    box-shadow: var(--tpd-shadow-hover);\n  }\n  .tpd-feature-icon {\n    width: 60px;\n    height: 60px;\n    background: #eff6ff;\n    border-radius: 12px;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    color: var(--tpd-primary);\n    margin-bottom: 20px;\n  }\n  .tpd-feature-title {\n    font-size: 22px;\n    font-weight: 700;\n    margin-bottom: 15px;\n  }\n  .tpd-feature-desc {\n    font-size: 15px;\n    color: var(--tpd-text-light);\n    line-height: 1.7;\n    margin: 0;\n  }\n\n  \/* === Compatibility Table \u0026 Guide === *\/\n  .tpd-specs-container {\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  \n  \/* Buying Guide Box *\/\n  .tpd-guide-box {\n    background-color: #eff6ff;\n    border-left: 4px solid var(--tpd-primary);\n    padding: 25px 30px;\n    border-radius: 8px;\n    margin-bottom: 30px;\n  }\n  .tpd-guide-title {\n    font-size: 18px;\n    font-weight: 700;\n    color: var(--tpd-primary);\n    margin-bottom: 15px;\n    font-family: 'Montserrat', sans-serif;\n    display: flex;\n    align-items: center;\n    gap: 8px;\n  }\n  .tpd-guide-list {\n    list-style: none !important;\n    padding: 0;\n    margin: 0;\n  }\n  .tpd-guide-list li {\n    list-style-type: none !important;\n    position: relative;\n    padding-left: 24px;\n    margin-bottom: 12px;\n    color: var(--tpd-text-main);\n    font-size: 15px;\n    line-height: 1.6;\n  }\n  .tpd-guide-list li:last-child {\n    margin-bottom: 0;\n  }\n  .tpd-guide-list li::before {\n    content: '•';\n    color: var(--tpd-primary);\n    font-size: 20px;\n    position: absolute;\n    left: 0;\n    top: -2px;\n  }\n\n  .tpd-specs-table {\n    width: 100%;\n    border-collapse: collapse;\n    background: #fff;\n    border-radius: var(--tpd-radius-card);\n    overflow: hidden;\n    box-shadow: var(--tpd-shadow);\n    border: 1px solid var(--tpd-border);\n  }\n  .tpd-specs-table th, .tpd-specs-table td {\n    padding: 10px 20px;\n    text-align: left;\n    border-bottom: 1px solid var(--tpd-border);\n    font-size: 16px;\n    vertical-align: middle;\n  }\n  .tpd-specs-table tr:last-child th, .tpd-specs-table tr:last-child td {\n    border-bottom: none;\n  }\n  .tpd-specs-table th {\n    background-color: var(--tpd-bg-light);\n    font-weight: 700;\n    color: var(--tpd-text-main);\n    font-family: 'Montserrat', sans-serif;\n    padding: 14px 20px;\n  }\n  .tpd-specs-table td {\n    color: var(--tpd-text-light);\n  }\n  .tpd-specs-table tbody tr:hover {\n    background-color: var(--tpd-bg-light);\n  }\n  \n  \/* Year Tag Style *\/\n  .tpd-year-tag {\n    background-color: #eff6ff;\n    color: var(--tpd-primary);\n    border: 1px solid #bfdbfe;\n    padding: 2px 12px;\n    border-radius: 20px;\n    font-size: 14px;\n    font-weight: 700;\n    display: inline-block;\n  }\n\n  \/* === Installation Guide Video === *\/\n  .tpd-video-wrapper {\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  .tpd-video-container {\n    position: relative;\n    padding-bottom: 56.25%;\n    height: 0;\n    overflow: hidden;\n    border-radius: var(--tpd-radius-card);\n    box-shadow: var(--tpd-shadow-hover);\n  }\n  .tpd-video-container iframe {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    border: 0;\n    border-radius: var(--tpd-radius-card);\n  }\n\n  \/* === FAQ Styles === *\/\n  .tpd-faq-container {\n    max-width: 1200px;\n    margin: 0 auto;\n    display: flex;\n    flex-direction: column;\n    gap: 18px;\n  }\n  .tpd-faq-item {\n    background: #fff;\n    border: 1px solid var(--tpd-border);\n    border-radius: 12px;\n    overflow: hidden;\n    box-shadow: var(--tpd-shadow);\n  }\n  .tpd-faq-summary {\n    padding: 22px 30px;\n    font-size: 17px;\n    font-family: 'Montserrat', sans-serif;\n    font-weight: 700;\n    color: var(--tpd-text-main);\n    cursor: pointer;\n    list-style: none;\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    transition: background-color 0.3s ease;\n  }\n  .tpd-faq-summary:hover {\n    background-color: var(--tpd-bg-light);\n  }\n  .tpd-faq-summary::-webkit-details-marker {\n    display: none;\n  }\n  .tpd-faq-summary::after {\n    content: '+';\n    font-size: 26px;\n    color: var(--tpd-primary);\n    font-weight: 400;\n    transition: transform 0.3s ease;\n  }\n  .tpd-faq-item[open] .tpd-faq-summary::after {\n    transform: rotate(45deg);\n  }\n  .tpd-faq-content {\n    padding: 0 30px 30px 30px;\n    color: var(--tpd-text-light);\n    font-size: 16px;\n    line-height: 1.7;\n  }\n\n  \/* Responsive Design *\/\n  @media (max-width: 992px) {\n    .tpd-hero-split { flex-direction: column; gap: 30px; }\n    .tpd-hero-split-text { text-align: center; }\n    .tpd-hero-split-list li { text-align: left; display: inline-flex; width: 100%; max-width: 400px; }\n    .tpd-notice-box { text-align: left; }\n    .tpd-features-grid { grid-template-columns: 1fr; }\n  }\n  @media (max-width: 768px) {\n    .tpd-section { margin-top: 60px !important; margin-bottom: 60px !important; }\n    .tpd-hero-split-title { font-size: 32px; }\n    .tpd-section-title { font-size: 28px; }\n    .tpd-feature-card { padding: 25px; }\n    \n    .tpd-guide-box { padding: 20px; }\n    .tpd-specs-table th { padding: 10px 12px; font-size: 14px; }\n    .tpd-specs-table td { padding: 8px 12px; font-size: 14px; }\n    .tpd-year-tag { padding: 2px 8px; font-size: 12px; }\n    \n    .tpd-faq-summary { font-size: 16px; padding: 18px 20px; }\n    .tpd-faq-content { padding: 0 20px 25px 20px; }\n  }\n\u003c\/style\u003e\n\n\u003cdiv class=\"tpd-wrapper\"\u003e\n  \n  \u003c!-- Top Navigation --\u003e\n  \u003cdiv class=\"tpd-nav\"\u003e\n    \u003ca href=\"#tpd-overview\"\u003e개요\u003c\/a\u003e\n    \u003ca href=\"#tpd-features\"\u003e특징\u003c\/a\u003e\n    \u003ca href=\"#tpd-compatibility\"\u003e호환성\u003c\/a\u003e\n    \u003ca href=\"#tpd-installation\"\u003e설치 가이드\u003c\/a\u003e\n    \u003ca href=\"#tpd-faq\"\u003e자주 묻는 질문\u003c\/a\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Hero Split Layout --\u003e\n  \u003cdiv id=\"tpd-overview\" class=\"tpd-hero-split\"\u003e\n    \u003cdiv class=\"tpd-hero-split-img\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-led-headlight-assembly-for-model-s-16-22-907006.jpg?v=1742491353\" alt=\"Tesla Model S용 TESERY LED 헤드라이트 어셈블리\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"tpd-hero-split-text\"\u003e\n      \u003ch2 class=\"tpd-hero-split-title\"\u003eModel S (2016-2022)\u003cbr\u003eOEM 교체 헤드라이트\u003c\/h2\u003e\n      \n      \u003cdiv class=\"tpd-notice-box\"\u003e\n        \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"#856404\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z\"\u003e\u003c\/path\u003e\u003cline x1=\"12\" y1=\"9\" x2=\"12\" y2=\"13\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n        \u003cdiv\u003e\n          \u003cstrong\u003e중요 설치 안내:\u003c\/strong\u003e 이 헤드라이트를 설치하려면 앞 범퍼를 제거해야 합니다. 경험이 없는 DIY 사용자는 전문가 정비사에게 설치를 맡길 것을 강력히 권장합니다.\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003cp class=\"tpd-hero-split-desc\"\u003eTESERY의 직접 OEM 교체 LED 헤드라이트 어셈블리로 Tesla Model S를 원래의 상태로 복원하세요. 손상되거나 노랗게 변색되었거나 고장난 공장 부품을 품질과 기능을 손상시키지 않고 완벽하게 교체하도록 설계되었습니다.\u003c\/p\u003e\n      \n      \u003cul class=\"tpd-hero-split-list\"\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          1:1 정확한 OEM 맞춤\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          공장 턴 어시스트 유지\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          OEM 등급 내구성 및 변색 방지\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          직접 플러그 앤 플레이 교체\n        \u003c\/li\u003e\n      \u003c\/ul\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Key Features Grid --\u003e\n  \u003cdiv id=\"tpd-features\" class=\"tpd-section\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e프리미엄 OEM 교체 기능\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003e손상된 Model S 헤드라이트 교체에 TESERY를 선택해야 하는 이유는?\u003c\/p\u003e\n    \n    \u003cdiv class=\"tpd-features-grid\"\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003ccircle cx=\"12\" cy=\"12\" r=\"10\"\u003e\u003c\/circle\u003e\u003cline x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003e정밀 1:1 맞춤\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003eTesla Model S (2016-2022)의 윤곽과 장착 지점에 완벽히 맞도록 설계되었습니다. 공장 원본과 똑같이 보이고 맞는 완벽한 교체품입니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003e턴 어시스트 유지\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003e공장 기능 100% 유지. 어셈블리는 원래 OEM 헤드라이트처럼 회전 시 도로 측면을 자동으로 밝히는 턴 어시스트 기능을 완벽 지원합니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003crect x=\"2\" y=\"3\" width=\"20\" height=\"14\" rx=\"2\" ry=\"2\"\u003e\u003c\/rect\u003e\u003cline x1=\"8\" y1=\"21\" x2=\"16\" y2=\"21\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"17\" x2=\"12\" y2=\"21\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003e크리스탈 클리어 조명\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003e선명한 4500K 차가운 백색 조명으로 야간 시야를 복원합니다. 흐릿하거나 흐린, 또는 소진된 원래 조명을 교체하여 최대 도로 안전을 제공합니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolygon points=\"13 2 3 14 12 14 11 22 21 10 12 10 13 2\"\u003e\u003c\/polygon\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003e방수 및 변색 방지\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003eIP68 방수 하우징과 UV 코팅 폴리카보네이트 렌즈로 제작되어 노란 변색, 흐림, 내부 결로를 방지합니다. 혹독한 날씨에도 견딜 수 있도록 설계되었습니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Compatibility Table Section --\u003e\n  \u003cdiv id=\"tpd-compatibility\" class=\"tpd-section\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e차량 호환성\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003eTesla Model S (2016-2020)와 호환\u003c\/p\u003e\n    \n    \u003cdiv class=\"tpd-specs-container\"\u003e\n      \u003cdiv class=\"tpd-guide-box\"\u003e\n        \u003cdiv class=\"tpd-guide-title\"\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003ccircle cx=\"12\" cy=\"12\" r=\"10\"\u003e\u003c\/circle\u003e\u003cline x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n          호환성 구매 가이드\n        \u003c\/div\u003e\n        \u003cul class=\"tpd-guide-list\"\u003e\n          \u003cli\u003e\n\u003cstrong\u003e일반 확인:\u003c\/strong\u003e 아래 상세 호환성 표에서 차량 연식을 확인해 주세요.\u003c\/li\u003e\n          \u003cli\u003e\n\u003cstrong\u003e2016년 모델의 경우:\u003c\/strong\u003e 구매 전에 원래 공장 헤드라이트에 \"턴 어시스트\" 기능이 있는지 확인해 주세요.\u003c\/li\u003e\n          \u003cli\u003e\n\u003cstrong\u003e호환 불가:\u003c\/strong\u003e Model S가 \u003cstrong\u003e2015년 이전\u003c\/strong\u003e이거나 \u003cstrong\u003e2023년 이후\u003c\/strong\u003e인 경우, 이 제품은 차량과 명백히 \u003cstrong\u003e호환되지 않습니다\u003c\/strong\u003e.\u003c\/li\u003e\n        \u003c\/ul\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv style=\"overflow-x: auto;\"\u003e\n        \u003ctable class=\"tpd-specs-table\"\u003e\n          \u003cthead\u003e\n            \u003ctr\u003e\n              \u003cth\u003e연식\u003c\/th\u003e\n              \u003cth\u003e차량\u003c\/th\u003e\n              \u003cth\u003e트림 레벨\u003c\/th\u003e\n            \u003c\/tr\u003e\n          \u003c\/thead\u003e\n          \u003ctbody\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2020\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e롱 레인지 플러스 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2020\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003eMayor 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2020\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e퍼포먼스 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2019\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e75D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2019\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e100D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2019\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003eP100D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2018\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e75D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2018\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e100D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2018\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003eP100D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2017\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e60D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2017\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e60 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2017\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e75D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2017\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e75 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2017\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e90D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2017\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003eP100D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2016\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e70D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2016\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e70 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2016\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e85D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2016\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e85 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n            \u003ctr\u003e\n\u003ctd\u003e\u003cspan class=\"tpd-year-tag\"\u003e2016\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003eTesla Model S\u003c\/td\u003e\n\u003ctd\u003e90D 세단 4도어\u003c\/td\u003e\n\u003c\/tr\u003e\n          \u003c\/tbody\u003e\n        \u003c\/table\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Installation Guide Section --\u003e\n  \u003cdiv id=\"tpd-installation\" class=\"tpd-section\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e설치 가이드\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003eTESERY LED 헤드라이트 어셈블리를 Tesla Model S에 설치하는 단계별 비디오 가이드를 시청하세요.\u003c\/p\u003e\n    \n    \u003cdiv class=\"tpd-video-wrapper\"\u003e\n      \u003cdiv class=\"tpd-video-container\"\u003e\n        \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/wCbLnzcDKF8\" title=\"Installation Guide - TESERY LED Headlight Assembly for Tesla Model S\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen\u003e\u003c\/iframe\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FAQ Section --\u003e\n  \u003cdiv id=\"tpd-faq\" class=\"tpd-section\" style=\"margin-bottom: 40px !important;\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e자주 묻는 질문\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003e모델 S 헤드라이트 교체에 관한 가장 흔한 질문에 대한 답변을 확인하세요.\u003c\/p\u003e\n    \n    \u003cdiv class=\"tpd-faq-container\"\u003e\n      \n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ1: 이 헤드라이트는 \"노즈콘\" 모델 S용인가요, 아니면 \"페이스리프트\" 모델 S용인가요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          이 어셈블리는 세련된 통합 전면 페시아(그릴 없는 디자인)를 특징으로 하는 페이스리프트 이후 모델 S(2016–2022)를 위해 특별히 설계되었습니다. 공장 LED 세대 헤드라이트의 직접 교체품입니다.\u003cbr\u003e\u003cbr\u003e\n          \u003cem\u003e참고: 이 유닛은 2016년 이전 \"노즈콘\"(제논) 모델과는 호환되지 않습니다.\u003c\/em\u003e\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n      \n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ2: 제 차는 원래 LED 헤드라이트가 장착되어 있습니다. 이 어셈블리가 \"노란 DRL\" 문제를 해결하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          네. 이것이 TESERY 업그레이드를 선택하는 주요 이유입니다. 원래 공장 LED 유닛은 주간 주행등(DRL) 스트립이 노랗게 변하거나 어두워지는 경향이 있습니다. 저희 어셈블리는 내열성이 강화된 라이트 가이드와 고급 LED 칩을 사용해 DRL이 오랫동안 선명하고 깨끗한 6000K 백색을 유지하도록 합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ3: 이 제품은 \"매트릭스\" 헤드라이트인가요, 아니면 일반 LED 교체품인가요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          이 제품은 2016-2022년 기술 구조에 맞춘 고성능 LED 어셈블리입니다. 노후된 순정 LED보다 밝기가 크게 향상되었으며, 차량 원래 LED 드라이버 프로토콜과 100% 전기적 호환성을 보장합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ4: \"어댑티브\/3단계\" 코너링 기능을 지원하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          네. TESERY LED 어셈블리는 테슬라의 턴 어시스트 및 어댑티브 코너링 신호를 지원하도록 설계되었습니다. 조향 시 빛 분포가 조절되어 경로를 밝히며, 원래 LED 장착 모델 S의 고급 안전 기능을 유지합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ5: MCU1과 MCU2 하드웨어 모두와 호환되나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          물론입니다. 2016-2022년 모델 전환기 동안 이 유닛을 테스트했습니다. 모델 S가 원래 MCU1(Nvidia) 또는 업그레이드된 MCU2(Intel\/AMD) 인포테인먼트 시스템을 탑재했든, 헤드라이트는 차량 게이트웨이와 완벽하게 \"핸드셰이크\"하여 오류 코드 없이 작동합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n      \n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ6: 제가 직접 설치할 수 있나요? 정말 플러그 앤 플레이인가요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          100% 플러그 앤 플레이로 공장 14핀 커넥터를 사용합니다. 배선 절단이나 외부 저항기가 필요 없습니다. 설치 후에는 터치스크린에서 서비스 모드에 진입해 \"소프트웨어 재설치\"를 수행할 것을 강력히 권장합니다. 이를 통해 차량이 새 LED 유닛을 보정하고 완벽한 빔 정렬을 보장합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n      \n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ7: 이 헤드라이트가 향후 테슬라 OTA 업데이트를 지원하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          네. 저희 내부 제어 모듈은 OTA 준비가 되어 있습니다. 최신 2026.x 테슬라 펌웨어와 올바르게 통신하도록 설계되었습니다. 차량 소프트웨어를 업데이트해도 헤드라이트가 완전히 정상 작동함을 확신할 수 있습니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"Model S 2016-2022 프리미엄【코너링 라이트 포함】 \/ 선택해 주세요","offer_id":47172257415400,"sku":null,"price":1078.0,"currency_code":"USD","in_stock":true},{"title":"Model S 2016-2022 프리미엄【코너링 라이트 포함】 \/ 왼쪽","offer_id":47172233036008,"sku":"TSLLJ0113-Left","price":539.0,"currency_code":"USD","in_stock":true},{"title":"Model S 2016-2022 프리미엄【코너링 라이트 포함】 \/ 오른쪽","offer_id":47172233068776,"sku":"TSLLJ0113-right","price":539.0,"currency_code":"USD","in_stock":true},{"title":"Model S 2016-2022 프리미엄【코너링 라이트 포함】 \/ 한 쌍","offer_id":47172233101544,"sku":"TSLLJ0113","price":1078.0,"currency_code":"USD","in_stock":true},{"title":"모델 S 2016-2017 스탠다드 【코너링 라이트 없음】 \/ 선택해 주세요","offer_id":48007758938344,"sku":null,"price":1258.0,"currency_code":"USD","in_stock":true},{"title":"모델 S 2016-2017 스탠다드 【코너링 라이트 없음】 \/ 왼쪽","offer_id":48007758971112,"sku":"TSLLJ0113-left-STD","price":629.0,"currency_code":"USD","in_stock":true},{"title":"모델 S 2016-2017 스탠다드 【코너링 라이트 없음】 \/ 오른쪽","offer_id":48007759003880,"sku":"TSLLJ0113-right-STD","price":629.0,"currency_code":"USD","in_stock":true},{"title":"모델 S 2016-2017 스탠다드 【코너링 라이트 없음】 \/ 한 쌍","offer_id":48007759036648,"sku":"TSLLJ0113-STD","price":1258.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-led-headlight-assembly-for-model-s-16-22-9845276.jpg?v=1769113568"},{"product_id":"tesla-model-x-headlight-assembly","title":"TESERY Model X (16-23)용 LED 헤드라이트 교체용","description":"\u003c!-- Import Google Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=DM+Sans:wght@400;500;600;700\u0026amp;family=Montserrat:wght@700;800\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n  \/* === Base Variables \u0026 Reset === *\/\n  .tpd-wrapper {\n    --tpd-primary: #0065b3;\n    --tpd-success: #10b981;\n    --tpd-danger: #ef4444;\n    --tpd-warning: #f59e0b;\n    --tpd-text-main: #333333;\n    --tpd-text-light: #666666;\n    --tpd-bg-light: #f9f9f9;\n    --tpd-border: #e5e5e5;\n    --tpd-radius-card: 20px;\n    --tpd-radius-img: 18px;\n    --tpd-shadow: 0 8px 24px rgba(0,0,0,0.04);\n    --tpd-shadow-hover: 0 15px 35px rgba(0,0,0,0.1);\n    \n    font-family: 'DM Sans', sans-serif;\n    color: var(--tpd-text-main);\n    line-height: 1.85;\n    max-width: 1320px;\n    margin: 0 auto;\n    padding: 20px 0;\n    box-sizing: border-box;\n  }\n  .tpd-wrapper * {\n    box-sizing: border-box;\n  }\n  .tpd-wrapper h2, .tpd-wrapper h3, .tpd-wrapper h4 {\n    font-family: 'Montserrat', sans-serif;\n    margin-top: 0;\n    color: var(--tpd-text-main);\n  }\n  .tpd-wrapper img {\n    max-width: 100%;\n    height: auto;\n    display: block;\n    border-radius: var(--tpd-radius-img);\n  }\n  \n  \/* Force Section Spacing *\/\n  .tpd-section {\n    margin-top: 80px !important;\n    margin-bottom: 80px !important;\n    clear: both;\n  }\n  .tpd-section-title {\n    font-size: 36px;\n    font-weight: 800;\n    text-align: center;\n    margin-bottom: 20px !important;\n  }\n  .tpd-section-subtitle {\n    font-size: 17px;\n    color: var(--tpd-text-light);\n    text-align: center;\n    max-width: 800px;\n    margin: 0 auto 50px auto !important;\n  }\n\n  \/* Navigation *\/\n  .tpd-nav {\n    display: flex;\n    justify-content: center;\n    gap: 15px;\n    flex-wrap: wrap;\n    margin-bottom: 60px;\n  }\n  .tpd-nav a {\n    text-decoration: none;\n    color: var(--tpd-text-main);\n    font-size: 14px;\n    font-weight: 600;\n    letter-spacing: 0.05em;\n    padding: 12px 24px;\n    border: 1px solid var(--tpd-border);\n    border-radius: 30px;\n    transition: all 0.3s ease;\n  }\n  .tpd-nav a:hover {\n    border-color: var(--tpd-primary);\n    color: var(--tpd-primary);\n    background-color: var(--tpd-bg-light);\n  }\n\n  \/* === Hero Split Layout === *\/\n  .tpd-hero-split {\n    display: flex;\n    align-items: center;\n    gap: 50px;\n    margin-bottom: 80px;\n  }\n  .tpd-hero-split-img {\n    flex: 1;\n    border-radius: var(--tpd-radius-card);\n    overflow: hidden;\n    box-shadow: var(--tpd-shadow);\n  }\n  .tpd-hero-split-img img {\n    width: 100%;\n    display: block;\n    object-fit: cover;\n  }\n  .tpd-hero-split-text {\n    flex: 1;\n  }\n  .tpd-hero-split-title {\n    font-size: 42px;\n    font-weight: 800;\n    line-height: 1.2;\n    margin-bottom: 20px;\n    color: var(--tpd-text-main);\n  }\n  .tpd-hero-split-desc {\n    font-size: 16px;\n    color: var(--tpd-text-light);\n    margin-bottom: 25px;\n    line-height: 1.7;\n  }\n  .tpd-hero-split-list {\n    list-style: none !important; \/* Force hide shopify bullets *\/\n    padding: 0;\n    margin: 0 0 30px 0;\n  }\n  .tpd-hero-split-list li {\n    list-style-type: none !important; \/* Force hide shopify bullets *\/\n    position: relative;\n    padding-left: 32px;\n    margin-bottom: 16px;\n    font-size: 16px;\n    color: var(--tpd-text-main);\n    font-weight: 600;\n    display: flex;\n    align-items: center;\n  }\n  .tpd-hero-split-list li svg {\n    position: absolute;\n    left: 0;\n    color: var(--tpd-primary);\n  }\n\n  \/* Notice Box *\/\n  .tpd-notice-box {\n    background-color: #fff3cd;\n    border-left: 4px solid #ffc107;\n    padding: 18px 25px;\n    border-radius: 8px;\n    font-size: 14px;\n    color: #856404;\n    display: flex;\n    align-items: flex-start;\n    gap: 12px;\n    line-height: 1.6;\n    margin-bottom: 20px;\n  }\n  .tpd-notice-box svg {\n    flex-shrink: 0;\n    margin-top: 2px;\n  }\n\n  \/* === Features Grid === *\/\n  .tpd-features-grid {\n    display: grid;\n    grid-template-columns: repeat(2, 1fr);\n    gap: 30px;\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  .tpd-feature-card {\n    background: #fff;\n    border: 1px solid var(--tpd-border);\n    border-radius: var(--tpd-radius-card);\n    padding: 40px;\n    transition: transform 0.3s ease, box-shadow 0.3s ease;\n    display: flex;\n    flex-direction: column;\n  }\n  .tpd-feature-card:hover {\n    transform: translateY(-5px);\n    box-shadow: var(--tpd-shadow-hover);\n  }\n  .tpd-feature-icon {\n    width: 60px;\n    height: 60px;\n    background: #eff6ff;\n    border-radius: 12px;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    color: var(--tpd-primary);\n    margin-bottom: 20px;\n  }\n  .tpd-feature-title {\n    font-size: 22px;\n    font-weight: 700;\n    margin-bottom: 15px;\n  }\n  .tpd-feature-desc {\n    font-size: 15px;\n    color: var(--tpd-text-light);\n    line-height: 1.7;\n    margin: 0;\n  }\n\n  \/* === Compatibility Table \u0026 Guide === *\/\n  .tpd-specs-container {\n    max-width: 1200px;\n    margin: 0 auto;\n  }\n  \n  \/* Buying Guide Box *\/\n  .tpd-guide-box {\n    background-color: #eff6ff;\n    border-left: 4px solid var(--tpd-primary);\n    padding: 25px 30px;\n    border-radius: 8px;\n    margin-bottom: 30px;\n  }\n  .tpd-guide-title {\n    font-size: 18px;\n    font-weight: 700;\n    color: var(--tpd-primary);\n    margin-bottom: 15px;\n    font-family: 'Montserrat', sans-serif;\n    display: flex;\n    align-items: center;\n    gap: 8px;\n  }\n  .tpd-guide-list {\n    list-style: none !important; \/* Force hide shopify bullets *\/\n    padding: 0;\n    margin: 0;\n  }\n  .tpd-guide-list li {\n    list-style-type: none !important; \/* Force hide shopify bullets *\/\n    position: relative;\n    padding-left: 24px;\n    margin-bottom: 12px;\n    color: var(--tpd-text-main);\n    font-size: 15px;\n    line-height: 1.6;\n  }\n  .tpd-guide-list li:last-child {\n    margin-bottom: 0;\n  }\n  .tpd-guide-list li::before {\n    content: '•';\n    color: var(--tpd-primary);\n    font-size: 20px;\n    position: absolute;\n    left: 0;\n    top: -2px;\n  }\n\n  .tpd-specs-table {\n    width: 100%;\n    border-collapse: collapse;\n    background: #fff;\n    border-radius: var(--tpd-radius-card);\n    overflow: hidden;\n    box-shadow: var(--tpd-shadow);\n    border: 1px solid var(--tpd-border);\n  }\n  .tpd-specs-table th, .tpd-specs-table td {\n    padding: 14px 20px;\n    text-align: left;\n    border-bottom: 1px solid var(--tpd-border);\n    font-size: 16px;\n    vertical-align: middle;\n  }\n  .tpd-specs-table tr:last-child th, .tpd-specs-table tr:last-child td {\n    border-bottom: none;\n  }\n  .tpd-specs-table th {\n    background-color: var(--tpd-bg-light);\n    font-weight: 700;\n    color: var(--tpd-text-main);\n    font-family: 'Montserrat', sans-serif;\n    width: 30%;\n  }\n  .tpd-specs-table td {\n    color: var(--tpd-text-light);\n    font-weight: 500;\n  }\n  .tpd-specs-table tbody tr:hover {\n    background-color: var(--tpd-bg-light);\n  }\n\n  \/* === FAQ Styles === *\/\n  .tpd-faq-container {\n    max-width: 1200px;\n    margin: 0 auto;\n    display: flex;\n    flex-direction: column;\n    gap: 18px;\n  }\n  .tpd-faq-item {\n    background: #fff;\n    border: 1px solid var(--tpd-border);\n    border-radius: 12px;\n    overflow: hidden;\n    box-shadow: var(--tpd-shadow);\n  }\n  .tpd-faq-summary {\n    padding: 22px 30px;\n    font-size: 17px;\n    font-family: 'Montserrat', sans-serif;\n    font-weight: 700;\n    color: var(--tpd-text-main);\n    cursor: pointer;\n    list-style: none;\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    transition: background-color 0.3s ease;\n  }\n  .tpd-faq-summary:hover {\n    background-color: var(--tpd-bg-light);\n  }\n  .tpd-faq-summary::-webkit-details-marker {\n    display: none;\n  }\n  .tpd-faq-summary::after {\n    content: '+';\n    font-size: 26px;\n    color: var(--tpd-primary);\n    font-weight: 400;\n    transition: transform 0.3s ease;\n  }\n  .tpd-faq-item[open] .tpd-faq-summary::after {\n    transform: rotate(45deg);\n  }\n  .tpd-faq-content {\n    padding: 0 30px 30px 30px;\n    color: var(--tpd-text-light);\n    font-size: 16px;\n    line-height: 1.7;\n  }\n\n  \/* Responsive Design *\/\n  @media (max-width: 992px) {\n    .tpd-hero-split { flex-direction: column; gap: 30px; }\n    .tpd-hero-split-text { text-align: center; }\n    .tpd-hero-split-list li { text-align: left; display: inline-flex; width: 100%; max-width: 400px; }\n    .tpd-notice-box { text-align: left; }\n    .tpd-features-grid { grid-template-columns: 1fr; }\n  }\n  @media (max-width: 768px) {\n    .tpd-section { margin-top: 60px !important; margin-bottom: 60px !important; }\n    .tpd-hero-split-title { font-size: 32px; }\n    .tpd-section-title { font-size: 28px; }\n    .tpd-feature-card { padding: 25px; }\n    \n    .tpd-guide-box { padding: 20px; }\n    .tpd-specs-table th, .tpd-specs-table td { padding: 12px 15px; font-size: 14px; }\n    .tpd-specs-table th { width: 40%; }\n    \n    .tpd-faq-summary { font-size: 16px; padding: 18px 20px; }\n    .tpd-faq-content { padding: 0 20px 25px 20px; }\n  }\n\u003c\/style\u003e\n\n\u003cdiv class=\"tpd-wrapper\"\u003e\n  \n  \u003c!-- Top Navigation --\u003e\n  \u003cdiv class=\"tpd-nav\"\u003e\n    \u003ca href=\"#tpd-overview\"\u003e개요\u003c\/a\u003e\n    \u003ca href=\"#tpd-features\"\u003e특징\u003c\/a\u003e\n    \u003ca href=\"#tpd-compatibility\"\u003e제품 사양\u003c\/a\u003e\n    \u003ca href=\"#tpd-faq\"\u003e자주 묻는 질문\u003c\/a\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Hero Split Layout --\u003e\n  \u003cdiv id=\"tpd-overview\" class=\"tpd-hero-split\"\u003e\n    \u003cdiv class=\"tpd-hero-split-img\"\u003e\n      \u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-led-headlight-replacement-for-model-x-16-present-2960658.jpg?v=1765771424\u0026amp;width=713\" alt=\"테슬라 Model X용 TESERY LED 헤드라이트 어셈블리\"\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"tpd-hero-split-text\"\u003e\n      \u003ch2 class=\"tpd-hero-split-title\"\u003eModel X (2016-2023)\u003cbr\u003eOEM 교체용 헤드라이트\u003c\/h2\u003e\n      \n      \u003c!-- Installation Notice Box --\u003e\n      \u003cdiv class=\"tpd-notice-box\"\u003e\n        \u003csvg width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"#856404\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z\"\u003e\u003c\/path\u003e\u003cline x1=\"12\" y1=\"9\" x2=\"12\" y2=\"13\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"17\" x2=\"12.01\" y2=\"17\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n        \u003cdiv\u003e\n          \u003cstrong\u003e중요 설치 안내:\u003c\/strong\u003e 이 헤드라이트를 설치하려면 앞 범퍼를 분리해야 합니다. 경험이 부족한 DIY 사용자는 전문 정비사에게 설치를 맡길 것을 강력히 권장합니다.\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003cp class=\"tpd-hero-split-desc\"\u003eTESERY의 직접 OEM 교체 LED 헤드라이트 어셈블리로 테슬라 Model X를 원래 상태로 복원하세요. 손상되거나 변색되었거나 고장 난 공장 부품을 품질과 기능을 손상시키지 않고 완벽히 교체하도록 설계되었습니다.\u003c\/p\u003e\n      \n      \u003cul class=\"tpd-hero-split-list\"\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          1:1 정확한 OEM 장착\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          공장 회전 보조 기능 유지\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          OEM 등급 내구성 및 변색 방지\n        \u003c\/li\u003e\n        \u003cli\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolyline points=\"20 6 9 17 4 12\"\u003e\u003c\/polyline\u003e\u003c\/svg\u003e\n          직접 플러그 앤 플레이 교체\n        \u003c\/li\u003e\n      \u003c\/ul\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Key Features Grid --\u003e\n  \u003cdiv id=\"tpd-features\" class=\"tpd-section\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e프리미엄 OEM 교체 기능\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003e손상된 Model X 헤드라이트 교체에 TESERY를 선택해야 하는 이유는 무엇인가요?\u003c\/p\u003e\n    \n    \u003cdiv class=\"tpd-features-grid\"\u003e\n      \u003c!-- Feature 1 --\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003ccircle cx=\"12\" cy=\"12\" r=\"10\"\u003e\u003c\/circle\u003e\u003cline x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003e정밀 1:1 장착\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003e테슬라 모델 X (2016-2023)의 윤곽과 장착 지점에 완벽히 맞도록 설계되었습니다. 공장 원본과 똑같이 보이고 맞는 완벽한 교체품입니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003c!-- Feature 2 --\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpath d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003e회전 보조 기능 유지\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003e공장 출고 시 기능을 100% 유지합니다. 이 어셈블리는 원래 OEM 헤드라이트처럼 회전 보조 기능을 완벽히 지원하여 회전 시 도로 측면을 자동으로 밝힙니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003c!-- Feature 3 --\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003crect x=\"2\" y=\"3\" width=\"20\" height=\"14\" rx=\"2\" ry=\"2\"\u003e\u003c\/rect\u003e\u003cline x1=\"8\" y1=\"21\" x2=\"16\" y2=\"21\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"17\" x2=\"12\" y2=\"21\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003e선명한 조명\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003e선명한 4500K 차가운 백색 조명으로 야간 시야를 복원합니다. 흐릿하거나 연기 낀, 또는 소모된 원래 조명을 교체하여 최대한의 도로 안전을 제공합니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n      \u003c!-- Feature 4 --\u003e\n      \u003cdiv class=\"tpd-feature-card\"\u003e\n        \u003cdiv class=\"tpd-feature-icon\"\u003e\n          \u003csvg width=\"32\" height=\"32\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003cpolygon points=\"13 2 3 14 12 14 11 22 21 10 12 10 13 2\"\u003e\u003c\/polygon\u003e\u003c\/svg\u003e\n        \u003c\/div\u003e\n        \u003ch3 class=\"tpd-feature-title\"\u003e방수 및 변색 방지\u003c\/h3\u003e\n        \u003cp class=\"tpd-feature-desc\"\u003eIP68 방수 하우징과 UV 코팅 폴리카보네이트 렌즈로 제작되어 변색, 김서림, 내부 결로를 방지합니다. 혹독한 날씨에도 견딜 수 있도록 설계되었습니다.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Specifications Table Section --\u003e\n  \u003cdiv id=\"tpd-compatibility\" class=\"tpd-section\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e제품 사양\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003eTESERY Model X 헤드라이트 어셈블리의 상세 기술 사양\u003c\/p\u003e\n    \n    \u003cdiv class=\"tpd-specs-container\"\u003e\n      \n      \u003c!-- Buying Guide Box --\u003e\n      \u003cdiv class=\"tpd-guide-box\"\u003e\n        \u003cdiv class=\"tpd-guide-title\"\u003e\n          \u003csvg width=\"20\" height=\"20\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\u003ccircle cx=\"12\" cy=\"12\" r=\"10\"\u003e\u003c\/circle\u003e\u003cline x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"\u003e\u003c\/line\u003e\u003cline x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"\u003e\u003c\/line\u003e\u003c\/svg\u003e\n          장착 확인 안내\n        \u003c\/div\u003e\n        \u003cul class=\"tpd-guide-list\"\u003e\n          \u003cli\u003e\n\u003cstrong\u003e일반 확인:\u003c\/strong\u003e 아래 장착 사양과 차량 연식을 반드시 확인해 주세요.\u003c\/li\u003e\n          \u003cli\u003e\n\u003cstrong\u003eOE 번호:\u003c\/strong\u003e OE 1034312, 1034313, 1034314, 1034315, 1034316, 1034317, 1034318, 1034319와 호환됩니다.\u003c\/li\u003e\n          \u003cli\u003e\n\u003cstrong\u003e호환 불가:\u003c\/strong\u003e 귀하의 Model X가 \u003cstrong\u003e2023년 후반 및 이후 모델\u003c\/strong\u003e인 경우, 이 제품은 명확히 \u003cstrong\u003e호환되지 않습니다\u003c\/strong\u003e.\u003c\/li\u003e\n        \u003c\/ul\u003e\n      \u003c\/div\u003e\n\n      \u003cdiv style=\"overflow-x: auto;\"\u003e\n        \u003ctable class=\"tpd-specs-table\"\u003e\n          \u003cthead\u003e\n            \u003ctr\u003e\n              \u003cth\u003e제품\u003c\/th\u003e\n              \u003cth\u003e제품 사양\u003c\/th\u003e\n            \u003c\/tr\u003e\n          \u003c\/thead\u003e\n          \u003ctbody\u003e\n            \u003ctr\u003e\n              \u003ctd\u003e차량 장착 가능 여부\u003c\/td\u003e\n              \u003ctd\u003e테슬라 모델 X (2016년 - 2023년 초)\u003c\/td\u003e\n            \u003c\/tr\u003e\n            \u003ctr\u003e\n              \u003ctd\u003e스타일\u003c\/td\u003e\n              \u003ctd\u003e공장 LED 시그니처 (2016년 이후 페이스리프트 스타일)\u003c\/td\u003e\n            \u003c\/tr\u003e\n            \u003ctr\u003e\n              \u003ctd\u003e주간 주행등 색상\u003c\/td\u003e\n              \u003ctd\u003e6000K 다이아몬드 화이트 (변색 방지 기술)\u003c\/td\u003e\n            \u003c\/tr\u003e\n            \u003ctr\u003e\n              \u003ctd\u003e호환성\u003c\/td\u003e\n              \u003ctd\u003e글로벌 범용 호환 (SAE 및 ECE 지역 모두 지원)\u003c\/td\u003e\n            \u003c\/tr\u003e\n            \u003ctr\u003e\n              \u003ctd\u003e소프트웨어\u003c\/td\u003e\n              \u003ctd\u003eOTA 업데이트 지원 (펌웨어 2026.x 테스트 완료)\u003c\/td\u003e\n            \u003c\/tr\u003e\n            \u003ctr\u003e\n              \u003ctd\u003e보호 기능\u003c\/td\u003e\n              \u003ctd\u003eIP68 방수 \/ UV 코팅 스크래치 방지 렌즈\u003c\/td\u003e\n            \u003c\/tr\u003e\n          \u003c\/tbody\u003e\n        \u003c\/table\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FAQ Section --\u003e\n  \u003cdiv id=\"tpd-faq\" class=\"tpd-section\" style=\"margin-bottom: 40px !important;\"\u003e\n    \u003ch2 class=\"tpd-section-title\"\u003e자주 묻는 질문\u003c\/h2\u003e\n    \u003cp class=\"tpd-section-subtitle\"\u003eModel X 헤드라이트 교체에 관한 가장 흔한 질문에 대한 답변을 찾아보세요.\u003c\/p\u003e\n    \n    \u003cdiv class=\"tpd-faq-container\"\u003e\n      \n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ1: 이 헤드라이트가 원래 모델 X와 2021년 이후 리프레시 모델 모두와 호환되나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          네. 이 TESERY 어셈블리는 2016년부터 2023년 초까지 생산된 모든 모델 X 차량에 대한 범용 고사양 교체용으로 설계되었습니다. 내부 디코더가 차량 생산 연도별 통신 프로토콜에 자동으로 맞춰져 레이븐과 플래이드\/리프레시 세대 모두 100% 동기화를 보장합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n      \n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ2: 이 제품이 공장 조명에서 흔히 발생하는 \"노란색 DRL\" 문제를 해결하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          물론입니다. 많은 모델 X 오너가 업그레이드하는 주된 이유입니다. 원래 공장 LED 유닛은 시간이 지나면서 \"눈썹\" DRL 스트립이 누렇게 변하는 경향이 있습니다. 저희 어셈블리는 내열성 광가이드와 고급 LED 칩을 사용해 DRL이 선명하고 깨끗한 6000K 다이아몬드 화이트를 유지하도록 보장합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ3: \"적응형 코너링\" 및 \"턴 어시스트\" 기능을 지원하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          네. 저희는 테슬라의 3단계 적응형 조명 프로토콜을 지원하는 고급 로직을 통합했습니다. 조향 시 헤드라이트가 도로 곡선을 동적으로 비추어, 모델 X에 원래 장착된 프리미엄 안전성과 첨단 기능을 유지합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ4: 이 제품은 \"매트릭스\" 헤드라이트인가요, 아니면 일반 LED 교체품인가요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          이 제품은 2016-2023년대 공장 LED 아키텍처에 맞춘 고성능 LED 어셈블리입니다. 노후된 순정 유닛 대비 약 25% 더 밝은 루멘 출력을 제공하며, 차량 원래 LED 드라이버 시스템과 100% 전기적 호환성을 보장합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ5: MCU1과 MCU2\/MCU3 하드웨어 모두와 호환되나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          네. 귀하의 모델 X가 MCU1 (Nvidia) 기반의 2016년 초반 생산 모델이든 최신 MCU3 (AMD Ryzen) 인포테인먼트 시스템이 탑재된 2022년 이후 모델이든, 저희 헤드라이트는 차량 게이트웨이와 완벽히 \"핸드셰이크\"하여 오류 코드나 대시보드 경고를 발생시키지 않습니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n      \n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ6: 설치를 위해 배선을 수정해야 하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          아니요. 이 제품은 공장 14핀 커넥터를 사용하는 100% 플러그 앤 플레이 설치입니다. 배선 절단이나 외부 저항기 설치가 필요 없습니다. 물리적 설치 후에는 터치스크린에서 서비스 모드에 진입하여 \"소프트웨어 재설치\"를 수행해 차량이 새 하드웨어를 보정하도록 권장합니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n      \n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003eQ7: 이 헤드라이트가 향후 테슬라 Over-the-Air (OTA) 업데이트를 지원하나요?\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e\n          네. 저희 내부 제어 모듈은 OTA-Ready입니다. 최신 2026.x 테슬라 펌웨어와 올바르게 통신하도록 설계되었습니다. 차량 소프트웨어를 업데이트하셔도 조명 시스템이 완전히 정상 작동함을 확신할 수 있습니다.\n        \u003c\/div\u003e\n      \u003c\/details\u003e\n\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"모델 X 16-23【초기 버전】 \/ 선택해 주세요","offer_id":47172256694504,"sku":"","price":958.0,"currency_code":"USD","in_stock":true},{"title":"모델 X 16-23【초기 버전】 \/ 왼쪽","offer_id":47172256727272,"sku":"TSLLJ0115-left","price":479.0,"currency_code":"USD","in_stock":true},{"title":"모델 X 16-23【초기 버전】 \/ 오른쪽","offer_id":47172256760040,"sku":"TSLLJ0115-right","price":479.0,"currency_code":"USD","in_stock":true},{"title":"모델 X 16-23【초기 버전】 \/ 한 쌍","offer_id":47172256792808,"sku":"TSLLJ0115","price":958.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-led-headlight-replacement-for-model-x-16-present-2960658.jpg?v=1765771424"},{"product_id":"model-3-led-trunk-light-bar","title":"TESERY LED 트렁크 라이트 바 for Model 3\/Highland","description":"\u003cstyle\u003e\n    \/* === Scoped CSS Rules Start === *\/\n    .tesery-product-description-container {\n        font-family: 'Inter', system-ui, sans-serif;\n        color: var(--text-dark, #333);\n        line-height: 1.6;\n        padding: 0;\n        \/* Remove overall padding from container for full width sections *\/\n        background-color: transparent;\n        \/* No background color as requested *\/\n    }\n\n    .tesery-product-description-container section {\n        padding: 40px 24px;\n        \/* Default section padding *\/\n        max-width: 100%;\n        \/* Ensure sections go wide *\/\n        margin: 0 auto;\n        box-sizing: border-box;\n        \/* Include padding in element's total width and height *\/\n    }\n\n    .tesery-product-description-container h2 {\n        color: var(--accent-color, #333);\n        \/* Changed to dark grey *\/\n        text-align: center;\n        margin: 0 0 1.5em;\n        font-size: 2.8em;\n        \/* Larger heading for impact *\/\n        line-height: 1.2;\n    }\n\n    .tesery-product-description-container h3 {\n        color: var(--accent-color, #333);\n        \/* Changed to dark grey *\/\n        margin: 2.5em 0 1em;\n        \/* Adjusted margins *\/\n        font-size: 1.8em;\n        \/* Larger subheading *\/\n        text-align: center;\n    }\n\n    .tesery-product-description-container p {\n        color: var(--text-medium, #4a4a4a);\n        max-width: 800px;\n        \/* Constrain text width for readability *\/\n        margin: 1em auto;\n        text-align: center;\n    }\n\n    \/* Hero Section Specifics - Updated for Left Image, Right Text *\/\n    .tesery-hero-section {\n        background: linear-gradient(180deg, var(--bg-primary) 0%, var(--crisp-white) 100%);\n        \/* Changed to a subtle gradient from light grey to white for smoother transition *\/\n        padding: 60px 24px;\n        display: flex;\n        \/* Use flexbox for content centering *\/\n        flex-direction: column;\n        \/* Stack content vertically *\/\n        justify-content: center;\n        align-items: center;\n        text-align: center;\n        \/* Fallback for older browsers\/if flex not applied *\/\n    }\n\n    \/* Value Propositions (now at the very top, inside Hero Section) *\/\n    .tesery-hero-section .prop-grid {\n        display: flex;\n        justify-content: center;\n        flex-wrap: wrap;\n        gap: 20px;\n        max-width: 1200px;\n        margin-bottom: 40px;\n        \/* Added margin to separate from hero content *\/\n    }\n\n    .tesery-hero-section .prop-item {\n        display: flex;\n        align-items: center;\n        background: var(--bg-secondary, #f0f0f0);\n        \/* Light grey for prop items *\/\n        border-radius: 50px;\n        \/* Pill shape *\/\n        padding: 10px 20px;\n        font-weight: 600;\n        color: var(--text-dark);\n        font-size: 1.1em;\n        white-space: nowrap;\n        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);\n    }\n\n    .tesery-hero-section .prop-item span {\n        \/* Style for the bullet points *\/\n        font-size: 1.2em;\n        \/* Keep size for bullet *\/\n        margin-right: 8px;\n        color: var(--accent-color);\n        \/* Uses dark grey accent *\/\n    }\n\n    .tesery-hero-section .hero-content-wrapper {\n        display: flex;\n        flex-direction: row;\n        \/* Default for desktop: image left, text right *\/\n        align-items: center;\n        \/* Vertically align items *\/\n        gap: 40px;\n        \/* Space between image and text *\/\n        max-width: 1200px;\n        \/* Max width for the content wrapper *\/\n        width: 100%;\n        \/* Take full available width within parent *\/\n        margin: 0 auto;\n        \/* Center the content wrapper *\/\n    }\n\n    .tesery-hero-section .hero-image-wrapper {\n        flex: 1;\n        \/* Adjusted to 1 for half-half split *\/\n        min-width: 250px;\n        max-width: 600px;\n        text-align: center;\n        \/* Center image within its flexible container *\/\n    }\n\n    .tesery-hero-section .hero-image {\n        \/* Renamed from hero-banner for clarity *\/\n        width: 100%;\n        \/* Make image responsive within its wrapper *\/\n        height: auto;\n        max-width: 600px;\n        display: block;\n        \/* Remove extra space below image *\/\n        margin: 0 auto;\n        \/* Center image within its wrapper if it's smaller than max-width *\/\n        border-radius: var(--border-radius, 16px);\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0, 0, 0, 0.12));\n    }\n\n    .tesery-hero-section .hero-text-content {\n        flex: 1;\n        \/* Adjusted to 1 for half-half split *\/\n        text-align: left;\n        \/* Align text to the left *\/\n    }\n\n    .tesery-hero-section h1 {\n        font-size: 3.5em;\n        color: var(--primary-color, #1a1a1a);\n        margin-bottom: 0.2em;\n        line-height: 1.1;\n        text-align: left;\n        \/* Ensure text alignment *\/\n    }\n\n    .tesery-hero-section .hero-description {\n        \/* New style for the added description *\/\n        font-size: 1.1em;\n        color: var(--text-medium);\n        margin: 0.5em 0 1em;\n        \/* Adjust margin for placement *\/\n        text-align: left;\n    }\n\n    .tesery-hero-section .subtitle {\n        font-size: 1.5em;\n        color: var(--text-medium);\n        margin-bottom: 1.5em;\n        font-style: italic;\n        text-align: left;\n        \/* Ensure text alignment *\/\n    }\n\n    .tesery-hero-section .brand-button {\n        margin: 0;\n        \/* Remove auto margin to align left *\/\n        display: inline-block;\n        \/* For text-align to work on parent *\/\n    }\n\n\n    .tesery-product-description-container .prop-item {\n        display: flex;\n        align-items: center;\n        background: var(--bg-secondary, #f0f0f0);\n        \/* Light grey for prop items *\/\n        border-radius: 50px;\n        \/* Pill shape *\/\n        padding: 10px 20px;\n        font-weight: 600;\n        color: var(--text-dark);\n        font-size: 1.1em;\n        white-space: nowrap;\n        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);\n    }\n\n\n    \/* Feature Grid - Reused and enhanced *\/\n    .tesery-feature-grid-section {\n        background: linear-gradient(180deg, var(--crisp-white) 0%, var(--bg-secondary) 100%);\n        \/* Applied gradient from white to light grey *\/\n    }\n\n    .tesery-product-description-container .feature-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n        gap: 24px;\n        max-width: 1200px;\n        \/* Confine to a max-width for better layout *\/\n        margin: 2em auto;\n    }\n\n    .tesery-product-description-container .feature-card {\n        background: var(--crisp-white);\n        \/* Card background is white *\/\n        padding: 24px;\n        border-radius: var(--border-radius, 16px);\n        box-shadow: var(--shadow-light, 0 4px 20px rgba(0, 0, 0, 0.08));\n        border: 1px solid var(--border-color, #e5e7eb);\n        transition: all 0.3s ease;\n        text-align: center;\n        display: flex;\n        \/* Flexbox for consistent alignment *\/\n        flex-direction: column;\n        justify-content: space-between;\n    }\n\n    .tesery-product-description-container .feature-card:hover {\n        transform: translateY(-5px);\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0, 0, 0, 0.12));\n        border-color: var(--accent-light, #666);\n        \/* Changed to medium grey *\/\n    }\n\n    .tesery-product-description-container .feature-card h4 {\n        font-size: 1.4em;\n        color: var(--accent-color, #333);\n        \/* Changed to dark grey *\/\n        margin-bottom: 12px;\n    }\n\n    .tesery-product-description-container .feature-card p {\n        font-size: 0.95em;\n        color: var(--text-medium, #4a4a4a);\n        line-height: 1.7;\n        margin: 0 auto 15px;\n        \/* Adjust margin *\/\n    }\n\n    .tesery-product-description-container .feature-card img {\n        max-width: 100%;\n        height: auto;\n        border-radius: var(--border-radius, 8px);\n        margin-top: auto;\n        \/* Push image to bottom *\/\n        box-shadow: var(--shadow-light, 0 4px 20px rgba(0, 0, 0, 0.08));\n    }\n\n    \/* Adjust feature icon sizing and styling *\/\n    .tesery-product-description-container .feature-icon {\n        font-size: 2.8rem;\n        \/* Larger icon *\/\n        margin-bottom: 15px;\n        display: inline-block;\n        color: var(--accent-color, #333);\n        \/* Changed to dark grey *\/\n        background: none;\n    }\n\n    \/* Before \u0026 After Section *\/\n    .tesery-before-after-section {\n        background: var(--bg-primary, #fff);\n        text-align: center;\n    }\n\n    .tesery-compare-wrapper {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 20px;\n        margin-top: 2em;\n    }\n\n    .tesery-compare-wrapper .image-box {\n        flex: 1 1 45%;\n        \/* Adjusted for two images on desktop *\/\n        max-width: 500px;\n        text-align: center;\n    }\n\n    .tesery-compare-wrapper .image-box img {\n        width: 100%;\n        height: auto;\n        border-radius: var(--border-radius, 16px);\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0, 0, 0, 0.12));\n    }\n\n    .tesery-compare-wrapper .image-box p {\n        font-weight: 600;\n        margin-top: 10px;\n        font-size: 1.1em;\n        color: var(--accent-color, #333);\n    }\n\n    \/* Video Section *\/\n    .tesery-video-section {\n        background: var(--bg-secondary, #f5f5f5);\n        text-align: center;\n    }\n\n    .tesery-video-section .video-container {\n        max-width: 100%;\n        \/* Ensure it's full width for responsive design *\/\n        margin: 2em auto;\n        border-radius: var(--border-radius, 16px);\n        overflow: hidden;\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0, 0, 0, 0.12));\n    }\n\n    .tesery-video-section iframe {\n        width: 100%;\n        height: 56.25vw;\n        \/* 16:9 aspect ratio (9\/16 = 0.5625) *\/\n        max-height: 675px;\n        \/* Max height for video on larger screens *\/\n        display: block;\n    }\n\n\n    \/* Package Contents Section *\/\n    .tesery-package-list-section {\n        background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);\n        text-align: center;\n    }\n\n    .tesery-package-list-section .package-list {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 24px;\n        margin-top: 2em;\n    }\n\n    .tesery-package-list-section .package-item {\n        background: var(--crisp-white);\n        border: 1px solid var(--border-color, #e5e7eb);\n        border-radius: var(--border-radius, 16px);\n        padding: 20px;\n        text-align: center;\n        box-shadow: var(--shadow-light, 0 4px 20px rgba(0, 0, 0, 0.08));\n        transition: transform 0.3s ease;\n        flex: 1 1 200px;\n        \/* Adjusted for flexibility *\/\n        max-width: 300px;\n    }\n\n    .tesery-package-list-section .package-item:hover {\n        transform: translateY(-5px);\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0, 0, 0, 0.12));\n    }\n\n    .tesery-package-list-section .package-item img {\n        max-width: 100%;\n        height: auto;\n        border-radius: var(--border-radius, 8px);\n        margin-bottom: 15px;\n    }\n\n    .tesery-package-list-section .package-item h4 {\n        font-size: 1.2em;\n        color: var(--accent-color, #333);\n        margin: 0;\n    }\n\n\n    \/* FAQ Section *\/\n    .tesery-faq-section {\n        background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--crisp-white) 100%);\n        \/* Applied gradient from light grey to white *\/\n        box-shadow: var(--shadow-light, 0 4px 20px rgba(0, 0, 0, 0.08));\n    }\n\n    .tesery-product-description-container .faq-section-content {\n        \/* New wrapper for FAQ items *\/\n        margin: 2em auto;\n        max-width: 900px;\n        \/* Constrain FAQ width for readability *\/\n        text-align: left;\n        \/* Ensure FAQ content is left aligned *\/\n    }\n\n    .tesery-product-description-container .faq-item {\n        margin-bottom: 12px;\n        background: var(--crisp-white);\n        \/* Use crisp white *\/\n        border-radius: var(--border-radius, 16px);\n        border: 1px solid var(--border-color, #e5e7eb);\n        transition: all 0.3s ease;\n        overflow: hidden;\n    }\n\n    .tesery-product-description-container .faq-item:hover {\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0, 0, 0, 0.12));\n        border-color: var(--accent-light, #666);\n        \/* Changed to medium grey *\/\n    }\n\n    \/* Using details\/summary for FAQ for better interactivity *\/\n    .tesery-product-description-container .faq-item details {\n        border: none;\n    }\n\n    .tesery-product-description-container .faq-item summary {\n        padding: 20px 56px 20px 24px;\n        font-weight: 600;\n        font-size: 1.05rem;\n        cursor: pointer;\n        color: var(--text-dark);\n        transition: all 0.3s ease;\n        position: relative;\n        list-style: none;\n        outline: none;\n        user-select: none;\n        background: transparent;\n        text-align: left;\n        \/* Ensure summary is left aligned *\/\n    }\n\n    .tesery-product-description-container .faq-item summary::-webkit-details-marker {\n        display: none;\n    }\n\n    .tesery-product-description-container .faq-item summary::after {\n        content: '+';\n        position: absolute;\n        right: 24px;\n        top: 50%;\n        transform: translateY(-50%);\n        font-size: 20px;\n        color: var(--accent-color, #333);\n        \/* Changed to dark grey *\/\n        transition: all 0.3s ease;\n        font-weight: 300;\n        line-height: 1;\n    }\n\n    .tesery-product-description-container .faq-item details[open] summary::after {\n        content: '−';\n        transform: translateY(-50%) rotate(0deg);\n    }\n\n    .tesery-product-description-container .faq-item summary:hover {\n        background: rgba(0, 0, 0, 0.02);\n        \/* Subtle hover for b\/w *\/\n    }\n\n    .tesery-product-description-container .faq-content {\n        padding: 0 24px 20px;\n        color: var(--text-medium);\n        line-height: 1.6;\n        animation: fadeIn 0.3s ease-in-out;\n        text-align: left;\n        \/* FAQ answers aligned left - Re-verified *\/\n    }\n\n    @keyframes fadeIn {\n        from {\n            opacity: 0;\n            transform: translateY(-10px);\n        }\n\n        to {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    }\n\n    \/* Trust Section *\/\n    .tesery-trust-section {\n        background: linear-gradient(180deg, var(--crisp-white) 0%, var(--bg-secondary) 100%);\n        \/* Applied gradient from white to light grey *\/\n    }\n\n    .tesery-product-description-container .trust-section-content {\n        max-width: 1000px;\n        \/* Reviews section wider *\/\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .review-container {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 24px;\n        margin: 2em 0;\n    }\n\n    .tesery-product-description-container .review-box {\n        flex: 1;\n        min-width: 300px;\n        max-width: 45%;\n        border: 1px solid var(--border-color, #e2e8f0);\n        border-radius: var(--border-radius, 8px);\n        padding: 20px;\n        background: white;\n        box-shadow: var(--shadow-light, 0 4px 20px rgba(0, 0, 0, 0.08));\n        transition: all 0.3s ease;\n        display: flex;\n        flex-direction: column;\n        justify-content: space-between;\n    }\n\n    .tesery-product-description-container .review-box:hover {\n        transform: translateY(-5px);\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0, 0, 0, 0.12));\n    }\n\n    .tesery-product-description-container .review-header {\n        display: flex;\n        align-items: center;\n        margin-bottom: 12px;\n    }\n\n    .tesery-product-description-container .review-avatar {\n        width: 48px;\n        height: 48px;\n        border-radius: 50%;\n        background: var(--bg-secondary, #e0e0e0);\n        \/* Grey for avatar background *\/\n        color: var(--star-yellow, #d4af37);\n        \/* Keep star yellow *\/\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        font-weight: bold;\n        margin-right: 12px;\n        font-size: 1.2em;\n        flex-shrink: 0;\n    }\n\n    .tesery-product-description-container .review-stars {\n        color: var(--star-yellow, #ffd700);\n        \/* Keep star yellow *\/\n        margin-right: 4px;\n        font-size: 1.1em;\n    }\n\n    .tesery-product-description-container .review-stars+span {\n        font-weight: 600;\n        color: var(--text-dark);\n    }\n\n    .tesery-product-description-container .testimonial {\n        font-style: italic;\n        color: var(--text-medium, #666);\n        margin: 1em 0 0;\n        padding-left: 0;\n        border-left: none;\n        font-size: 1em;\n    }\n\n    \/* Call to Action *\/\n    .tesery-cta-section {\n        background: var(--accent-color, #333);\n        \/* Dark grey background for CTA *\/\n        color: white;\n        padding: 60px 24px;\n        text-align: center;\n    }\n\n    .tesery-cta-section h2 {\n        color: white;\n        font-size: 2.5em;\n        margin-bottom: 0.5em;\n    }\n\n    .tesery-cta-section p {\n        color: var(--crisp-white);\n        margin-bottom: 2em;\n        font-size: 1.2em;\n    }\n\n    .tesery-product-description-container .brand-button {\n        background: white;\n        \/* White button on colored background *\/\n        color: var(--accent-color, #333);\n        \/* Button text dark grey *\/\n        padding: 16px 40px;\n        border-radius: 50px;\n        font-weight: 700;\n        text-transform: none;\n        font-size: 1.2em;\n        transition: all 0.4s ease;\n        border: none;\n        cursor: pointer;\n        margin: 0 auto;\n        \/* Center button within CTA section *\/\n        display: block;\n        max-width: 320px;\n        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .tesery-product-description-container .brand-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);\n        \/* White subtle gradient *\/\n        transition: left 0.5s;\n    }\n\n    .tesery-product-description-container .brand-button:hover::before {\n        left: 100%;\n    }\n\n    .tesery-product-description-container .brand-button:hover {\n        transform: translateY(-3px);\n        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);\n        color: var(--accent-color);\n        \/* Maintain color *\/\n    }\n\n    .tesery-product-description-container .brand-button a {\n        text-decoration: none;\n        color: inherit;\n        display: block;\n    }\n\n\n    \/* Responsive adjustments *\/\n    @media (max-width: 1024px) {\n        .tesery-hero-section .hero-image {\n            max-width: 90%;\n        }\n\n        .tesery-product-description-container .feature-grid {\n            max-width: 90%;\n        }\n\n        .tesery-product-description-container .faq-section-content {\n            max-width: 90%;\n        }\n\n        .tesery-product-description-container .trust-section-content {\n            max-width: 90%;\n        }\n    }\n\n    @media (max-width: 768px) {\n        .tesery-product-description-container section {\n            padding: 30px 16px;\n        }\n\n        .tesery-product-description-container h2 {\n            font-size: 2.2em;\n        }\n\n        .tesery-product-description-container h3 {\n            font-size: 1.6em;\n            margin: 2em 0 0.8em;\n        }\n\n        \/* Hero Section Responsive *\/\n        .tesery-hero-section .hero-content-wrapper {\n            flex-direction: column;\n            text-align: center;\n            \/* Center content when stacked *\/\n        }\n\n        .tesery-hero-section .hero-image-wrapper {\n            text-align: center;\n            \/* Center image when stacked *\/\n            margin-bottom: 20px;\n            \/* Space below image when stacked *\/\n        }\n\n        .tesery-hero-section .hero-text-content {\n            text-align: center;\n            \/* Center text when stacked *\/\n        }\n\n        .tesery-hero-section h1,\n        .tesery-hero-section .hero-description,\n        \/* Apply to new description *\/\n        .tesery-hero-section .subtitle {\n            text-align: center;\n        }\n\n        .tesery-hero-section .brand-button {\n            margin: 0 auto;\n            \/* Center button when stacked *\/\n        }\n\n        .tesery-hero-section h1 {\n            font-size: 2.8em;\n        }\n\n        .tesery-hero-section .subtitle {\n            font-size: 1.2em;\n        }\n\n        .tesery-hero-section .hero-image {\n            max-width: 95%;\n        }\n\n        .tesery-hero-section .prop-grid {\n            margin-bottom: 20px;\n            \/* Adjusted responsive margin for top props *\/\n        }\n\n        .tesery-product-description-container .prop-item {\n            font-size: 1em;\n            padding: 8px 15px;\n        }\n\n        .tesery-product-description-container .prop-item span {\n            font-size: 1em;\n        }\n\n        .tesery-product-description-container .feature-grid {\n            grid-template-columns: 1fr;\n            gap: 16px;\n        }\n\n        .tesery-product-description-container .feature-card {\n            padding: 18px;\n        }\n\n        .tesery-product-description-container .feature-icon {\n            font-size: 2.5rem;\n            margin-bottom: 10px;\n        }\n\n        .tesery-product-description-container .feature-card h4 {\n            font-size: 1.2em;\n        }\n\n        .tesery-product-description-container .faq-item summary {\n            padding: 16px 44px 16px 20px;\n            font-size: 0.95rem;\n        }\n\n        .tesery-product-description-container .faq-item summary::after {\n            right: 20px;\n            font-size: 18px;\n        }\n\n        .tesery-product-description-container .faq-content {\n            padding: 0 20px 16px;\n            font-size: 0.9rem;\n        }\n\n        .tesery-product-description-container .review-container {\n            flex-direction: column;\n            align-items: center;\n            gap: 16px;\n        }\n\n        .tesery-product-description-container .review-box {\n            max-width: 90%;\n            margin: 0;\n            padding: 16px;\n        }\n\n        .tesery-product-description-container .review-avatar {\n            width: 40px;\n            height: 40px;\n            margin-right: 10px;\n            font-size: 1em;\n        }\n\n        .tesery-cta-section h2 {\n            font-size: 2em;\n        }\n\n        .tesery-cta-section p {\n            font-size: 1.1em;\n        }\n\n        .tesery-product-description-container .brand-button {\n            padding: 14px 30px;\n            font-size: 1em;\n            max-width: 280px;\n        }\n    }\n\n    @media (max-width: 480px) {\n        .tesery-product-description-container section {\n            padding: 20px 12px;\n        }\n\n        .tesery-product-description-container h2 {\n            font-size: 1.8em;\n        }\n\n        .tesery-product-description-container h3 {\n            font-size: 1.4em;\n        }\n\n        .tesery-hero-section h1 {\n            font-size: 2.2em;\n        }\n\n        .tesery-hero-section .subtitle {\n            font-size: 1.1em;\n        }\n\n        .tesery-product-description-container .prop-grid {\n            flex-direction: column;\n            \/* Stack props on very small screens *\/\n            align-items: center;\n        }\n\n        .tesery-product-description-container .prop-item {\n            font-size: 0.9em;\n        }\n\n        .tesery-product-description-container .feature-card {\n            padding: 16px;\n        }\n\n        .tesery-product-description-container .feature-icon {\n            font-size: 2.2rem;\n        }\n\n        .tesery-product-description-container .faq-item summary {\n            padding: 12px 40px 12px 16px;\n            font-size: 0.9rem;\n        }\n\n        .tesery-product-description-container .faq-item summary::after {\n            right: 16px;\n            font-size: 16px;\n        }\n\n        .tesery-product-description-container .faq-content {\n            padding: 0 16px 12px;\n            font-size: 0.85rem;\n        }\n\n        .tesery-cta-section h2 {\n            font-size: 1.8em;\n        }\n\n        .tesery-cta-section p {\n            font-size: 1em;\n        }\n\n        .tesery-product-description-container .brand-button {\n            padding: 12px 25px;\n            font-size: 0.9em;\n            max-width: 250px;\n        }\n    }\n\n    \/* === Scoped CSS Rules End === *\/\n\u003c\/style\u003e\n\u003cstyle\u003e\n    :root {\n        --primary-color: #1a1a1a;\n        \/* Black *\/\n        --secondary-color: #2a2a2a;\n        \/* Darker Grey *\/\n        --accent-color: #333333;\n        \/* Dark Grey for headings\/icons *\/\n        --accent-light: #666666;\n        \/* Medium Grey for subtle accents\/hover *\/\n        --accent-secondary: #999999;\n        \/* Light Grey (less prominent) *\/\n        --warm-white: #f8f8f8;\n        \/* Off-white background *\/\n        --crisp-white: #ffffff;\n        \/* Pure white for cards\/elements *\/\n        --text-dark: #1a1a1a;\n        \/* Black for main text *\/\n        --text-medium: #4a4a4a;\n        \/* Dark grey for secondary text *\/\n        --text-light: #6b7280;\n        \/* Medium grey for less important text *\/\n        --bg-primary: #fafafa;\n        \/* Very light grey *\/\n        --bg-secondary: #f0f0f0;\n        \/* Slightly darker light grey *\/\n        --border-color: #e5e7eb;\n        \/* Light grey border *\/\n        --gradient-primary: linear-gradient(135deg, #333333 0%, #111111 100%);\n        \/* Dark grey to black gradient *\/\n        --gradient-secondary: linear-gradient(135deg, #999999 0%, #666666 100%);\n        \/* Grey gradient *\/\n        --border-radius: 16px;\n        --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);\n        --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);\n        --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);\n        --star-yellow: #fbbf24;\n        \/* Keep yellow for stars *\/\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"tesery-product-description-container\"\u003e\n\u003csection class=\"tesery-hero-section\"\u003e\n\u003cp\u003eTESERY로 트렁크 공간을 밝히세요\u003c\/p\u003e\n\u003ch2\u003eTESERY LED 트렁크 라이트 바\u003c\/h2\u003e\n\u003cdiv class=\"hero-content-wrapper\"\u003e\n\u003cdiv style=\"text-align: center;\" class=\"hero-image-wrapper\"\u003e\u003cimg style=\"margin-right: 10.4119px; margin-left: 10.4119px; float: none;\" class=\"hero-image\" alt=\"TESERY LED 트렁크 라이트 바 for Model 3 \u0026 Model 3 Highland\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/TESERY_Trunk_Light_for_Model_3_Model_3_Highland_2.jpg?v=1742895765\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"hero-text-content\"\u003e\n\u003cdiv class=\"prop-grid\"\u003e\n\u003cdiv class=\"prop-item\"\u003e\n\u003cspan\u003e•\u003c\/span\u003e고휘도 LED\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\n\u003cspan\u003e•\u003c\/span\u003e내구성 디자인\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\n\u003cspan\u003e•\u003c\/span\u003e플러그 앤 플레이\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\n\u003cspan\u003e•\u003c\/span\u003e간섭 없음\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\n\u003cspan\u003e•\u003c\/span\u003e안전한 접착제\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\n\u003cspan\u003e•\u003c\/span\u003e완벽한 적합\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-feature-grid-section\"\u003e\n\u003ch3\u003e주요 특징 및 장점 공개\u003c\/h3\u003e\n\u003cdiv class=\"feature-grid\"\u003e\n\u003cdiv style=\"text-align: center;\" class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e•\u003c\/span\u003e\n\u003ch4\u003e고휘도 LED\u003c\/h4\u003e\n\u003cp\u003e이 라이트는 에너지 효율이 높고 고휘도 LED 칩을 사용하여 표준 공장 라이트보다 훨씬 밝고 오래 지속되는 조명을 제공합니다.\u003c\/p\u003e\n\u003cimg style=\"margin-bottom: 16px; float: none;\" alt=\"고휘도 LED 이미지\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-led-trunk-light-bar-for-model-3-model-3-highland-694530.jpg?v=1742929075\u0026amp;width=713\"\u003e\n\u003c\/div\u003e\n\u003cdiv style=\"text-align: center;\" class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e•\u003c\/span\u003e\n\u003ch4\u003e내구성 및 신뢰성\u003c\/h4\u003e\n\u003cp\u003e두꺼워진 프레임 디자인은 열에 강해 지속적인 사용에도 안전하고 신뢰할 수 있으며 오래 지속되는 성능을 보장합니다.\u003c\/p\u003e\n\u003cimg style=\"margin-bottom: 16px; float: none;\" alt=\"내구성 디자인 이미지\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-led-trunk-light-bar-for-model-3-model-3-highland-145843.jpg?v=1742929075\"\u003e\n\u003c\/div\u003e\n\u003cdiv style=\"text-align: center;\" class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e•\u003c\/span\u003e\n\u003ch4\u003e플러그 앤 플레이 설치\u003c\/h4\u003e\n\u003cp\u003e복잡한 도구나 배선이 필요 없습니다. 라이트는 전용 어댑터 플러그를 갖추어 설치가 빠르고 간편합니다.\u003c\/p\u003e\n\u003cimg style=\"margin-bottom: 16px; float: none;\" alt=\"플러그 앤 플레이 설치 이미지\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-led-trunk-light-bar-for-model-3-model-3-highland-406500.jpg?v=1742929074\u0026amp;width=713\"\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\" style=\"text-align: center;\"\u003e\n\u003cspan class=\"feature-icon\"\u003e•\u003c\/span\u003e\n\u003ch4\u003e간섭 없음\u003c\/h4\u003e\n\u003cp\u003e원래 트렁크 라이트와 원활하게 작동하도록 설계된 이 제품은 전기적 간섭이나 오류 없이 완전한 기능을 보장합니다.\u003c\/p\u003e\n\u003cimg alt=\"간섭 없는 이미지\" src=\"https:\/\/5ov23dyogt2vq6g7-58838253719.shopifypreview.com\/cdn\/shop\/files\/tesery-led-trunk-light-bar-for-model-3-model-3-highland-589232.jpg?v=1742929074\" style=\"margin-bottom: 16px; float: none;\"\u003e\n\u003c\/div\u003e\n\u003cdiv style=\"text-align: center;\" class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e•\u003c\/span\u003e\n\u003ch4\u003e완벽한 OEM 적합성\u003c\/h4\u003e\n\u003cp\u003eTesla Model 3 및 Model 3 Highland를 위해 맞춤 설계된 라이트 바는 트렁크 윤곽에 완벽하게 맞아 깔끔하고 공장 통합된 외관을 제공합니다.\u003c\/p\u003e\n\u003cimg style=\"margin-bottom: 16px; float: none;\" alt=\"완벽한 맞춤 이미지\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-led-trunk-light-bar-for-model-3-model-3-highland-342090.jpg?v=1742929075\"\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-video-section\"\u003e\n\u003ch3\u003e설치 가이드\u003c\/h3\u003e\n\u003cdiv class=\"video-container full-width\"\u003e\u003ciframe src=\"https:\/\/www.youtube.com\/embed\/8cJ5UrmOm9I?si=2E8mMh1sMS6V-9H1\"\u003e\u003c\/iframe\u003e\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-faq-section\"\u003e\n\u003ch3\u003e자주 묻는 질문\u003c\/h3\u003e\n\u003cdiv class=\"faq-section-content\"\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003eQ: 전문 설치가 필요한가요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e아니요, 이 조명은 전용 어댑터 플러그가 있는 플러그 앤 플레이 디자인으로 도구나 배선 없이 빠르고 쉽게 설치할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003eQ: 이 LED 트렁크 조명은 원래 조명에 비해 얼마나 밝나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e이 조명은 고휘도 LED 칩을 사용하여 표준 공장 조명보다 훨씬 밝은 조명을 제공하면서도 에너지 효율이 뛰어납니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003eQ: 접착제가 내 차 표면을 손상시키나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e아니요, 3mm 자동차 등급 접착제는 차량의 페인트와 차체에 안전하도록 설계되었습니다. 제거 시 잔여물이나 손상을 남기지 않습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003eQ: 이 제품을 설치한 후에도 원래 트렁크 조명을 계속 사용할 수 있나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e네, 이 제품은 공장 설치된 트렁크 조명과 함께 작동하도록 설계되어 기능에 영향을 주지 않습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003eQ: 이 조명에 사용된 소재가 친환경적인가요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e네, 이 조명은 친환경적이고 무취의 소재로 만들어져 장기간 사용해도 안전하고 효율적입니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-trust-section\"\u003e\n\u003ch3\u003e검증된 소유자들이 사랑합니다!\u003c\/h3\u003e\n\u003cdiv class=\"trust-section-content\"\u003e\n\u003cdiv class=\"review-container\"\u003e\n\u003cdiv class=\"review-box\"\u003e\n\u003cdiv class=\"review-header\"\u003e\n\u003cspan class=\"review-avatar\"\u003eAJ\u003c\/span\u003e\n\u003cdiv\u003e\n\u003cspan class=\"review-stars\"\u003e⭐⭐⭐⭐⭐\u003c\/span\u003e \u003cspan\u003eAiden J.\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp class=\"testimonial\"\u003e이 라이트 바는 게임 체인저입니다! 트렁크가 훨씬 밝아졌고 설치도 매우 쉬웠습니다. 강력 추천합니다!\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"review-box\"\u003e\n\u003cdiv class=\"review-header\"\u003e\n\u003cspan class=\"review-avatar\"\u003eKC\u003c\/span\u003e\n\u003cdiv\u003e\n\u003cspan class=\"review-stars\"\u003e⭐⭐⭐⭐⭐\u003c\/span\u003e \u003cspan\u003eKim C.\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp class=\"testimonial\"\u003e내 Model 3 Highland에 완벽하게 맞습니다. 접착력이 강하고, 조명 품질도 환상적입니다. 공장 제작품처럼 보입니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요","offer_id":47185265131752,"sku":"","price":25.9,"currency_code":"USD","in_stock":true},{"title":"1개","offer_id":47185265164520,"sku":"TSL6524","price":25.9,"currency_code":"USD","in_stock":true},{"title":"2개","offer_id":47185265197288,"sku":"TSL6524+TSL6524","price":45.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-led-trunk-light-bar-for-model-3-model-3-highland-462268.jpg?v=1742929074"},{"product_id":"model-3-highland-new-model-y-frunk-led-ambient-light","title":"TESERY 프렁크 트렁크 앰비언트 라이트 for 모델 3 하이랜드 \u0026 모델 Y 주니퍼","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        :root {\n            --primary-color: #000;\n            --dark-text: #000;\n            --medium-text: #444;\n            --light-border: #f3f3f3;\n            --light-bg: #f7f7f7;\n            --white-bg: #ffffff;\n            --accent-color: #0065b3; \n        }\n\n        * {\n            box-sizing: border-box;\n        }\n\n        body {\n            margin: 0;\n            padding: 0;\n            background-color: var(--white-bg);\n            font-family: 'Arial', sans-serif;\n        }\n\n        .tesery-product-description-container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 20px;\n            color: var(--dark-text);\n            line-height: 1.6;\n        }\n\n        \/* Header Section *\/\n        .tesery-product-description-container h2 {\n            color: var(--dark-text);\n            font-size: 32px;\n            margin-bottom: 5px;\n            text-align: center;\n        }\n        \n        .h2-divider {\n            width: 60px;\n            height: 4px;\n            background-color: var(--accent-color); \n            margin: 0 auto 15px;\n            border-radius: 2px;\n        }\n        \n        \/* Product Tags *\/\n        .product-tags {\n            text-align: center;\n            margin-bottom: 30px;\n            display: flex;\n            justify-content: center;\n            gap: 10px;\n            flex-wrap: wrap;\n        }\n\n        .product-tags .tag {\n            display: inline-block;\n            padding: 6px 14px;\n            background-color: var(--light-bg);\n            border: 1px solid var(--light-border);\n            border-radius: 50px;\n            font-size: 13px;\n            color: var(--dark-text);\n            font-weight: 600;\n        }\n\n        \/* Banner Image - Direct Rounded Corners *\/\n        .product-banner-img {\n            width: 100%;\n            height: auto;\n            display: block;\n            margin: 40px auto;\n            border-radius: 20px !important;\n            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);\n            border: none !important;\n        }\n\n        \/* Intro Box *\/\n        .product-intro-box {\n            background-color: var(--light-bg);\n            padding: 40px 25px;\n            border-radius: 12px;\n            margin: 30px 0;\n            text-align: center;\n        }\n\n        .product-intro-box h3 {\n            margin-top: 0;\n            font-size: 26px;\n        }\n\n        .product-intro-box p {\n            max-width: 850px;\n            margin: 10px auto 0;\n            font-size: 17px;\n            color: var(--medium-text);\n        }\n\n        \/* Feature Section with White Background Boxes *\/\n        .tesery-product-description-container h3.section-title {\n            color: var(--dark-text);\n            font-size: 30px; \n            margin-top: 60px;\n            margin-bottom: 30px;\n            text-align: center;\n        }\n\n        .feature-item {\n            display: flex;\n            margin-bottom: 30px;\n            gap: 50px;\n            align-items: center;\n            padding: 40px;\n            background-color: var(--white-bg); \/* The white bottom frame you requested *\/\n            border-radius: 24px;\n            box-shadow: 0 4px 20px rgba(0,0,0,0.05);\n            border: 1px solid var(--light-border);\n        }\n\n        .feature-image {\n            flex: 1;\n            aspect-ratio: 1 \/ 1; \n            background: none;\n            border: none;\n        }\n        \n        .feature-image img {\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n            border-radius: 20px !important; \/* Direct image rounded corner *\/\n            display: block;\n            border: none !important;\n        }\n        \n        .feature-content {\n            flex: 1.2;\n        }\n\n        .feature-content h4 {\n            font-size: 24px;\n            margin-bottom: 12px;\n            color: var(--primary-color);\n        }\n\n        .feature-divider {\n            width: 40px;\n            height: 3px;\n            background-color: var(--accent-color); \n            margin-bottom: 15px;\n        }\n\n        .feature-item.reverse {\n            flex-direction: row-reverse;\n        }\n\n        \/* Video Section *\/\n        .video-container {\n            position: relative;\n            width: 100%;\n            padding-bottom: 56.25%;\n            height: 0;\n            overflow: hidden;\n            margin: 30px 0 50px;\n            border-radius: 16px;\n            box-shadow: 0 10px 30px rgba(0,0,0,0.1);\n        }\n\n        .video-container iframe {\n            position: absolute;\n            top: 0; left: 0; width: 100%; height: 100%; border: 0;\n        }\n\n        \/* FAQ Styling - All 4 Items Restored *\/\n        .faq-item {\n            margin-bottom: 12px;\n            border: 1px solid var(--light-border); \n            border-radius: 12px; \n            overflow: hidden;\n            background: var(--white-bg);\n        }\n\n        .faq-toggle { display: none; }\n\n        .faq-question {\n            padding: 18px 24px;\n            cursor: pointer;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            font-weight: 600;\n        }\n\n        .faq-question::after {\n            content: '+';\n            font-size: 20px;\n            color: var(--accent-color);\n        }\n        \n        .faq-toggle:checked + .faq-question::after {\n            content: '-';\n        }\n\n        .faq-toggle:checked ~ .faq-answer {\n            max-height: 500px;\n            padding: 15px 24px 25px;\n            border-top: 1px solid var(--light-border);\n        }\n\n        .faq-answer {\n            max-height: 0;\n            overflow: hidden;\n            transition: all 0.4s ease;\n            color: var(--medium-text);\n        }\n\n        \/* Reviews *\/\n        .review-container {\n            display: flex;\n            gap: 20px;\n            margin-top: 30px;\n        }\n\n        .review-box {\n            flex: 1;\n            padding: 25px;\n            background: var(--light-bg);\n            border-radius: 12px;\n            text-align: center;\n        }\n\n        .review-avatar {\n            width: 50px; height: 50px;\n            background: var(--accent-color);\n            color: white;\n            border-radius: 50%;\n            display: flex; align-items: center; justify-content: center;\n            margin: 0 auto 10px;\n            font-weight: bold;\n        }\n\n        .review-stars { color: #FFD700; margin-bottom: 10px; }\n\n        \/* Optimized Button Styling *\/\n        .brand-button-container {\n            text-align: center;\n            margin: 60px 0;\n            width: 100%;\n        }\n\n        .brand-button {\n            background-color: var(--accent-color) !important;\n            color: #ffffff !important;\n            display: inline-block !important;\n            padding: 20px 60px !important;\n            border-radius: 50px !important;\n            font-weight: 700 !important;\n            font-size: 18px !important;\n            text-decoration: none !important;\n            min-width: 320px !important;\n            transition: all 0.3s ease !important;\n            box-shadow: 0 10px 20px rgba(0, 101, 179, 0.2) !important;\n            border: none !important;\n            line-height: 1.2 !important;\n        }\n\n        .brand-button:hover { \n            transform: translateY(-3px) !important; \n            box-shadow: 0 15px 30px rgba(0, 101, 179, 0.3) !important;\n            filter: brightness(1.1);\n        }\n\n        \/* Mobile Layout Adjustments *\/\n        @media (max-width: 768px) {\n            .feature-item, .feature-item.reverse {\n                flex-direction: column !important;\n                gap: 20px;\n                padding: 20px;\n            }\n            .feature-image { \n                width: 100%; \n                max-width: 100%;\n                order: 1;\n            }\n            .feature-content { \n                text-align: center; \n                order: 2;\n            }\n            .feature-divider { margin: 0 auto 15px; }\n            .review-container { flex-direction: column; }\n            .brand-button { width: 100% !important; min-width: unset !important; }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"tesery-product-description-container\"\u003e\n\u003ch2\u003eTESERY 프렁크 트렁크 앰비언트 라이트\u003c\/h2\u003e\n\u003cdiv class=\"h2-divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"product-tags\"\u003e\n\u003cspan class=\"tag\"\u003e프리미엄 실리콘\u003c\/span\u003e \u003cspan class=\"tag\"\u003e고출력 LED\u003c\/span\u003e \u003cspan class=\"tag\"\u003eOEM 수준의 핏\u003c\/span\u003e \u003cspan class=\"tag\"\u003e도구 없는 설치\u003c\/span\u003e \u003cspan class=\"tag\"\u003e독서등 동기화\u003c\/span\u003e\u003cbr\u003e\n\u003c\/div\u003e\n\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/Frunk_Trunk_Ambient_Light_for_Model_3_Highland_New_Model_Y_9.jpg?v=1754022316\u0026amp;width=713\" alt=\"TESERY 앰비언트 라이트 배너\" class=\"product-banner-img\"\u003e\n\u003cdiv class=\"product-intro-box\"\u003e\n\u003ch3\u003e당신의 드라이브를 밝히세요. 당신의 테슬라를 변신시키세요.\u003c\/h3\u003e\n\u003cp\u003eModel 3 Highland 또는 New Model Y의 프렁크 및 트렁크 윤곽에 완벽히 맞도록 정밀 설계되었습니다. 공장 출고 상태 같은 외관과 향상된 가시성, 현대적인 분위기를 즐기세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003ch3 class=\"section-title\"\u003e주요 특징 및 장점\u003c\/h3\u003e\n\u003cdiv class=\"features-section\"\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-image\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-frunk-trunk-ambient-light-for-model-3-highland-new-model-y-781505.png?v=1751512578\u0026amp;width=713\" alt=\"OEM 통합\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003ch4\u003e완벽한 OEM 통합\u003c\/h4\u003e\n\u003cdiv class=\"feature-divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cp\u003e2024년 이후 테슬라 차체 윤곽에 맞게 특별히 설계되었습니다. 애프터마켓 부품처럼 보이지 않고 테슬라의 세련된 디자인을 완벽하게 보완합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item reverse\"\u003e\n\u003cdiv class=\"feature-image\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-frunk-trunk-ambient-light-for-model-3-highland-new-model-y-880177.jpg?v=1751512578\u0026amp;width=713\" alt=\"듀얼 분위기\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003ch4\u003e듀얼 라이트 모드\u003c\/h4\u003e\n\u003cdiv class=\"feature-divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cp\u003e선명한 크리스프 화이트와 따뜻한 코지 화이트 사이를 전환하세요. 항공우주 등급 ABS와 고강도 LED로 제작되어 오래 지속됩니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-image\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-frunk-trunk-ambient-light-for-model-3-highland-new-model-y-489555.jpg?v=1744226667\" alt=\"자동 동기화\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003ch4\u003e스마트 자동 동기화 로직\u003c\/h4\u003e\n\u003cdiv class=\"feature-divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cp\u003e시스템이 차량의 독서등 및 트렁크 트리거와 자동으로 동기화됩니다. 조명이 즉시 켜지고 부드럽게 사라집니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item reverse\"\u003e\n\u003cdiv class=\"feature-image\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesery-frunk-trunk-ambient-light-for-model-3-highland-new-model-y-153135.jpg?v=1744181332\u0026amp;width=713\" alt=\"간편 설치\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003ch4\u003e100% 플러그 앤 플레이\u003c\/h4\u003e\n\u003cdiv class=\"feature-divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cp\u003e간편하고 도구가 필요 없는 설치를 즐기세요. 절단, 드릴링 없이 공장 보증에 영향을 주지 않습니다. 안정적인 연결을 위해 원래 인터페이스를 사용합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003ch3 class=\"section-title\"\u003e설치 가이드\u003c\/h3\u003e\n\u003cp style=\"text-align: center; color: #666; margin-bottom: 20px;\"\u003e단계별 설치 과정을 시청하세요\u003c\/p\u003e\n\u003cdiv class=\"video-container\"\u003e\u003ciframe src=\"https:\/\/www.youtube.com\/embed\/o6L8gJZJs4o\" title=\"Installation Video\"\u003e\u003c\/iframe\u003e\u003c\/div\u003e\n\u003ch3 class=\"section-title\"\u003e자주 묻는 질문\u003c\/h3\u003e\n\u003cdiv class=\"faq-section\"\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cinput type=\"checkbox\" id=\"faq1\" class=\"faq-toggle\"\u003e \u003clabel for=\"faq1\" class=\"faq-question\"\u003eQ1: 구형 테슬라 모델과 호환되나요?\u003c\/label\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003e아니요, 이 키트는 신형 모델 Y와 모델 3 하이랜드(2024년 이후)용으로 최적화되어 있습니다. 구형 모델은 트렁크 모양과 전원 커넥터가 다릅니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cinput type=\"checkbox\" id=\"faq2\" class=\"faq-toggle\"\u003e \u003clabel for=\"faq2\" class=\"faq-question\"\u003eQ2: 주차 시 배터리가 방전되나요?\u003c\/label\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003e전혀 아닙니다. 이 조명은 트렁크가 열릴 때만 전력을 사용하며 차량이 절전 모드에 들어가면 자동으로 꺼집니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cinput type=\"checkbox\" id=\"faq3\" class=\"faq-toggle\"\u003e \u003clabel for=\"faq3\" class=\"faq-question\"\u003eQ3: 전문 설치가 필요한가요?\u003c\/label\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003e아니요, 설치는 DIY용으로 설계되었습니다. 약 10-15분 정도 걸리며 특별한 도구나 영구적인 수정이 필요 없습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cinput type=\"checkbox\" id=\"faq4\" class=\"faq-toggle\"\u003e \u003clabel for=\"faq4\" class=\"faq-question\"\u003eQ4: 원래 상태로 쉽게 되돌릴 수 있나요?\u003c\/label\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003e네. 이 키트는 원래 플러그인 포인트를 사용하기 때문에 언제든지 흔적이나 손상 없이 제거할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003ch3 class=\"section-title\"\u003e오너들의 평가\u003c\/h3\u003e\n\u003cdiv class=\"review-container\"\u003e\n\u003cdiv class=\"review-box\"\u003e\n\u003cdiv class=\"review-avatar\"\u003eJT\u003c\/div\u003e\n\u003cdiv class=\"review-stars\"\u003e⭐⭐⭐⭐⭐\u003c\/div\u003e\n\u003cp\u003e\u003cstrong\u003e제임스 T.\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e\"놀라운 맞춤감! 마치 공장에서 나온 것처럼 보입니다. 야간 적재 시 밝기가 완벽해요.\"\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"review-box\"\u003e\n\u003cdiv class=\"review-avatar\"\u003eSJ\u003c\/div\u003e\n\u003cdiv class=\"review-stars\"\u003e⭐⭐⭐⭐⭐\u003c\/div\u003e\n\u003cp\u003e\u003cstrong\u003e사라 J.\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e\"인테리어 조명과 완벽하게 동기화되는 점이 정말 마음에 들어요. 모든 하이랜드 오너에게 꼭 필요한 업그레이드입니다.\"\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"brand-button-container\"\u003e\n\u003ch3 style=\"font-size: 28px; margin-bottom: 10px;\"\u003e오늘 당신의 분위기를 업그레이드하세요\u003c\/h3\u003e\n\u003cp style=\"margin-bottom: 30px;\"\u003e당신의 테슬라가 어둠 속에 남겨지지 않도록 하세요. 지금 프리미엄 차이를 경험해보세요.\u003c\/p\u003e\n\u003ca href=\"https:\/\/www.tesery.com\/collections\/tesla-ambient-lighting\" class=\"brand-button\"\u003e지금 바로 받으세요 ➔\u003c\/a\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 선명한 흰색 빛","offer_id":47226550157544,"sku":null,"price":42.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 아늑한 흰색 빛","offer_id":47226550190312,"sku":null,"price":42.99,"currency_code":"USD","in_stock":true},{"title":"모델 Y 주니퍼 2025+ \/ 선명한 흰색 빛","offer_id":47217472962792,"sku":"TSL6220-Y-white","price":42.99,"currency_code":"USD","in_stock":true},{"title":"모델 Y 주니퍼 2025+ \/ 아늑한 흰색 빛","offer_id":47217472995560,"sku":"TSL6220-Y-warm white","price":42.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 하이랜드 2024+ \/ 선명한 흰색 빛","offer_id":47217472897256,"sku":"TSL6220-3-white","price":42.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 하이랜드 2024+ \/ 아늑한 흰색 빛","offer_id":47217472930024,"sku":"TSL6220-3-warm white","price":42.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-frunk-trunk-ambient-light-for-model-3-highland-new-model-y-781505.png?v=1751512578"},{"product_id":"led-trunk-ambient-lighting-for-model-3-highland-new-model-y","title":"TESERY 트렁크 앰비언트 라이팅 for Model 3 Highland \u0026 Model Y Juniper","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n        \n        :root {\n            \/* Optimized Color Scheme - Reduced yellow for a more modern and clean look *\/\n            --primary-color: #1a1a1a;\n            --secondary-color: #2a2a2a;\n            --accent-color: #3b82f6; \/* Changed to primary blue tone *\/\n            --accent-light: #60a5fa;\n            --accent-secondary: #10b981; \/* Green as an auxiliary accent color *\/\n            --warm-white: #f8fafc;\n            --crisp-white: #ffffff;\n            --text-dark: #1a1a1a;\n            --text-medium: #4a4a4a;\n            --text-light: #6b7280;\n            --bg-primary: #fafafa;\n            --bg-secondary: #f3f4f6;\n            --border-color: #e5e7eb;\n            --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);\n            --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);\n            --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);\n            --border-radius: 16px;\n            --shadow-light: 0 4px 20px rgba(0,0,0,0.08);\n            --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);\n            --shadow-heavy: 0 20px 60px rgba(0,0,0,0.15);\n            --star-yellow: #fbbf24;\n        }\n        \n        body {\n            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;\n            line-height: 1.6;\n            color: var(--text-dark);\n            background: var(--bg-primary);\n        }\n        \n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 0 20px;\n        }\n        \n        .section-box {\n            background: white;\n            border-radius: var(--border-radius);\n            box-shadow: var(--shadow-light);\n            margin-bottom: 24px;\n            overflow: hidden;\n            border: 1px solid var(--border-color);\n        }\n        \n        \/* Hero Section *\/\n        .hero {\n            background: var(--gradient-dark);\n            color: white;\n            padding: 60px 0;\n            text-align: center;\n            position: relative;\n            overflow: hidden;\n            border-radius: var(--border-radius);\n            margin-bottom: 24px;\n        }\n        \n        .hero::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: radial-gradient(ellipse at center, rgba(59,130,246,0.1) 0%, transparent 70%);\n            pointer-events: none;\n        }\n        \n        .hero-content {\n            position: relative;\n            z-index: 2;\n        }\n        \n        .hero h1 {\n            font-size: 3.2rem;\n            font-weight: 800;\n            margin-bottom: 16px;\n            line-height: 1.2;\n            background: linear-gradient(45deg, #ffffff 0%, #60a5fa 100%);\n            -webkit-background-clip: text;\n            -webkit-text-fill-color: transparent;\n            background-clip: text;\n        }\n        \n        .tagline {\n            font-size: 1.5rem;\n            margin-bottom: 32px;\n            color: #d1d5db;\n            font-weight: 300;\n            font-style: italic;\n        }\n        \n        \/* Color Selection *\/\n        .color-selector {\n            background: rgba(255, 255, 255, 0.08);\n            backdrop-filter: blur(10px);\n            padding: 24px;\n            border-radius: var(--border-radius);\n            margin: 32px 0;\n            border: 1px solid rgba(255, 255, 255, 0.1);\n        }\n        \n        .color-options {\n            display: flex;\n            justify-content: center;\n            gap: 24px;\n            margin-top: 16px;\n            flex-wrap: wrap;\n        }\n        \n        .color-option {\n            display: flex;\n            flex-direction: column;\n            align-items: center;\n            cursor: pointer;\n            transition: all 0.3s ease;\n            padding: 16px;\n            border-radius: 12px;\n            border: 2px solid rgba(255, 255, 255, 0.2);\n        }\n        \n        .color-option:hover {\n            border-color: var(--accent-color);\n            background: rgba(59, 130, 246, 0.1);\n            transform: translateY(-2px);\n        }\n        \n        .color-circle {\n            width: 50px;\n            height: 50px;\n            border-radius: 50%;\n            margin-bottom: 8px;\n            border: 3px solid rgba(255, 255, 255, 0.2);\n            box-shadow: var(--shadow-medium);\n            transition: all 0.3s ease;\n        }\n        \n        .color-circle.crisp-white {\n            background: linear-gradient(45deg, #ffffff 0%, #f8fafc 100%);\n        }\n        \n        .color-circle.warm-white {\n            background: linear-gradient(45deg, #f8fafc 0%, #f1f5f9 100%);\n        }\n        \n        .color-option:hover .color-circle {\n            transform: scale(1.1);\n            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);\n        }\n        \n        \/* CTA Buttons *\/\n        .cta-primary {\n            background: var(--gradient-primary);\n            color: white;\n            padding: 16px 40px;\n            border: none;\n            border-radius: 50px;\n            font-size: 1.2rem;\n            font-weight: 700;\n            cursor: pointer;\n            transition: all 0.4s ease;\n            text-decoration: none;\n            display: inline-block;\n            margin: 16px 12px;\n            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);\n            position: relative;\n            overflow: hidden;\n        }\n        \n        .cta-primary::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: -100%;\n            width: 100%;\n            height: 100%;\n            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);\n            transition: left 0.5s;\n        }\n        \n        .cta-primary:hover::before {\n            left: 100%;\n        }\n        \n        .cta-primary:hover {\n            transform: translateY(-3px);\n            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);\n        }\n        \n        .cta-secondary {\n            background: transparent;\n            color: white;\n            border: 2px solid var(--accent-color);\n            padding: 14px 32px;\n            border-radius: 50px;\n            font-size: 1.1rem;\n            font-weight: 600;\n            cursor: pointer;\n            transition: all 0.3s ease;\n            text-decoration: none;\n            display: inline-block;\n            margin: 16px 12px;\n        }\n        \n        .cta-secondary:hover {\n            background: var(--accent-color);\n            color: white;\n            transform: translateY(-2px);\n        }\n        \n        \/* Optimized Product Introduction Area - Image on left, text on right *\/\n        .product-intro {\n            display: flex;\n            align-items: center;\n            gap: 48px;\n            padding: 60px 32px;\n        }\n        \n        .product-image-wrapper {\n            flex: 1;\n            max-width: 500px;\n        }\n        \n        .product-image {\n            width: 100%;\n            height: auto;\n            border-radius: var(--border-radius);\n            box-shadow: var(--shadow-medium);\n        }\n        \n        .product-content {\n            flex: 1;\n            max-width: 600px;\n        }\n        \n        .product-content h2 {\n            font-size: 2.4rem;\n            margin-bottom: 20px;\n            color: var(--text-dark);\n            font-weight: 700;\n        }\n        \n        .product-content p {\n            font-size: 1.1rem;\n            color: var(--text-medium);\n            line-height: 1.7;\n            margin-bottom: 24px;\n        }\n        \n        .product-highlights {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 16px;\n            margin-top: 24px;\n        }\n        \n        .highlight-item {\n            background: var(--bg-secondary);\n            padding: 16px;\n            border-radius: 12px;\n            border: 1px solid var(--border-color);\n        }\n        \n        .highlight-item h4 {\n            color: var(--accent-color);\n            font-weight: 600;\n            margin-bottom: 4px;\n            font-size: 0.9rem;\n        }\n        \n        .highlight-item p {\n            font-size: 0.85rem;\n            color: var(--text-light);\n            margin: 0;\n        }\n        \n        \/* Customer Reviews Section *\/\n        .reviews-section {\n            padding: 60px 32px;\n        }\n        \n        .reviews-section h2 {\n            text-align: center;\n            font-size: 2.6rem;\n            margin-bottom: 16px;\n            color: var(--text-dark);\n            font-weight: 700;\n        }\n        \n        .reviews-subtitle {\n            text-align: center;\n            font-size: 1.1rem;\n            color: var(--text-light);\n            margin-bottom: 48px;\n            max-width: 600px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n        \n        .reviews-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n            gap: 24px;\n            margin-top: 32px;\n        }\n        \n        .review-card {\n            background: white;\n            padding: 32px 24px;\n            border-radius: var(--border-radius);\n            box-shadow: var(--shadow-light);\n            border: 1px solid var(--border-color);\n            transition: all 0.3s ease;\n            position: relative;\n            overflow: hidden;\n        }\n        \n        .review-card::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 100%);\n            opacity: 0;\n            transition: opacity 0.3s ease;\n        }\n        \n        .review-card:hover::before {\n            opacity: 1;\n        }\n        \n        .review-card:hover {\n            transform: translateY(-5px);\n            box-shadow: var(--shadow-medium);\n            border-color: var(--accent-light);\n        }\n        \n        .review-header {\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            margin-bottom: 16px;\n        }\n        \n        .customer-info {\n            display: flex;\n            flex-direction: column;\n        }\n        \n        .customer-name {\n            font-weight: 700;\n            color: var(--text-dark);\n            font-size: 1.1rem;\n        }\n        \n        .customer-model {\n            font-size: 0.9rem;\n            color: var(--text-light);\n            margin-top: 2px;\n        }\n        \n        .star-rating {\n            display: flex;\n            gap: 2px;\n        }\n        \n        .star {\n            color: var(--star-yellow);\n            font-size: 1.2rem;\n        }\n        \n        .review-text {\n            color: var(--text-medium);\n            line-height: 1.7;\n            font-size: 1rem;\n            font-style: italic;\n        }\n        \n        .review-date {\n            font-size: 0.85rem;\n            color: var(--text-light);\n            margin-top: 16px;\n            text-align: right;\n        }\n        \n        \/* Compatibility Section *\/\n        .compatibility {\n            padding: 48px 32px;\n            text-align: center;\n        }\n        \n        .compatibility h2 {\n            font-size: 2.4rem;\n            margin-bottom: 16px;\n            color: var(--text-dark);\n            font-weight: 700;\n        }\n        \n        .model-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 20px;\n            margin-top: 32px;\n        }\n        \n        .model-card {\n            background: var(--bg-secondary);\n            padding: 32px 24px;\n            border-radius: var(--border-radius);\n            text-align: center;\n            transition: all 0.3s ease;\n            border: 2px solid transparent;\n            box-shadow: var(--shadow-light);\n        }\n        \n        .model-card:hover {\n            transform: translateY(-6px);\n            border-color: var(--accent-color);\n            box-shadow: var(--shadow-heavy);\n            background: white;\n        }\n        \n        .model-icon {\n            font-size: 3rem;\n            margin-bottom: 16px;\n            color: var(--accent-color);\n        }\n        \n        \/* Optimized Full-Screen Video Section *\/\n        .video-section {\n            padding: 60px 0;\n            background: var(--bg-primary);\n        }\n        \n        .video-section h2 {\n            text-align: center;\n            font-size: 2.6rem;\n            margin-bottom: 16px;\n            color: var(--text-dark);\n            font-weight: 700;\n        }\n        \n        .video-section p {\n            text-align: center;\n            font-size: 1.1rem;\n            margin-bottom: 48px;\n            color: var(--text-light);\n            max-width: 600px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n\n        .video-container {\n            width: 100%;\n            max-width: 1200px;\n            margin: 0 auto 24px auto; \/* Added margin-bottom to separate videos *\/\n            position: relative;\n            padding-bottom: 56.25%; \/* 16:9 Aspect Ratio *\/\n            height: 0;\n            border-radius: var(--border-radius);\n            overflow: hidden;\n            box-shadow: var(--shadow-heavy);\n        }\n        \n        .video-container iframe {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            border: none;\n        }\n        \n        \/* Features Section *\/\n        .features {\n            padding: 60px 32px;\n        }\n        \n        .features h2 {\n            text-align: center;\n            font-size: 2.6rem;\n            margin-bottom: 16px;\n            color: var(--text-dark);\n            font-weight: 700;\n        }\n        \n        .features-subtitle {\n            text-align: center;\n            font-size: 1.1rem;\n            color: var(--text-light);\n            margin-bottom: 48px;\n            max-width: 600px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n        \n        .features-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n            gap: 20px;\n            margin-top: 32px;\n        }\n        \n        .feature-card {\n            background: white;\n            padding: 32px 24px;\n            border-radius: var(--border-radius);\n            text-align: center;\n            transition: all 0.4s ease;\n            box-shadow: var(--shadow-light);\n            border: 1px solid var(--border-color);\n            position: relative;\n            overflow: hidden;\n        }\n        \n        .feature-card::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 100%);\n            opacity: 0;\n            transition: opacity 0.3s ease;\n        }\n        \n        .feature-card:hover::before {\n            opacity: 1;\n        }\n        \n        .feature-card:hover {\n            transform: translateY(-8px);\n            box-shadow: var(--shadow-heavy);\n            border-color: var(--accent-light);\n        }\n        \n        .feature-icon {\n            font-size: 3rem;\n            margin-bottom: 20px;\n            display: block;\n            background: var(--gradient-primary);\n            -webkit-background-clip: text;\n            -webkit-text-fill-color: transparent;\n            background-clip: text;\n        }\n        \n        .feature-card h3 {\n            font-size: 1.3rem;\n            margin-bottom: 12px;\n            color: var(--text-dark);\n            font-weight: 600;\n        }\n        \n        .feature-card p {\n            color: var(--text-medium);\n            line-height: 1.6;\n            font-size: 0.95rem;\n        }\n        \n        \/* Pure CSS FAQ Style *\/\n        .faq {\n            padding: 60px 32px;\n        }\n        \n        .faq h2 {\n            text-align: center;\n            font-size: 2.6rem;\n            margin-bottom: 48px;\n            color: var(--text-dark);\n            font-weight: 700;\n        }\n        \n        .faq-item {\n            background: white;\n            margin-bottom: 12px;\n            border-radius: var(--border-radius);\n            overflow: hidden;\n            box-shadow: var(--shadow-light);\n            border: 1px solid var(--border-color);\n            transition: all 0.3s ease;\n        }\n        \n        .faq-item:hover {\n            box-shadow: var(--shadow-medium);\n            border-color: var(--accent-light);\n        }\n        \n        .faq-item details {\n            border: none;\n        }\n        \n        .faq-item summary {\n            padding: 20px 56px 20px 24px;\n            font-weight: 600;\n            font-size: 1rem;\n            cursor: pointer;\n            color: var(--text-dark);\n            transition: all 0.3s ease;\n            position: relative;\n            list-style: none;\n            outline: none;\n            user-select: none;\n            background: transparent;\n        }\n        \n        .faq-item summary::-webkit-details-marker {\n            display: none;\n        }\n        \n        .faq-item summary::after {\n            content: '+';\n            position: absolute;\n            right: 24px;\n            top: 50%;\n            transform: translateY(-50%);\n            font-size: 20px;\n            color: var(--accent-color);\n            transition: all 0.3s ease;\n            font-weight: 300;\n            line-height: 1;\n        }\n        \n        .faq-item details[open] summary::after {\n            content: '−';\n            transform: translateY(-50%) rotate(0deg);\n        }\n        \n        .faq-item summary:hover {\n            background: rgba(59, 130, 246, 0.02);\n        }\n        \n        .faq-content {\n            padding: 0 24px 20px;\n            color: var(--text-medium);\n            line-height: 1.6;\n            animation: fadeIn 0.3s ease-in-out;\n        }\n        \n        @keyframes fadeIn {\n            from { opacity: 0;\n            transform: translateY(-10px); }\n            to { opacity: 1; transform: translateY(0);\n            }\n        }\n        \n        \/* Final CTA *\/\n        .final-cta {\n            background: var(--gradient-dark);\n            color: white;\n            padding: \n            60px 32px;\n            text-align: center;\n            border-radius: var(--border-radius);\n            margin-bottom: 24px;\n        }\n        \n        .final-cta h2 {\n            font-size: 2.8rem;\n            margin-bottom: 24px;\n        \n            background: linear-gradient(45deg, #ffffff 0%, #60a5fa 100%);\n            -webkit-background-clip: text;\n            -webkit-text-fill-color: transparent;\n            background-clip: text;\n            font-weight: 700;\n        }\n        \n        .price-highlight {\n            background: var(--gradient-secondary);\n            color: white;\n            padding: 16px 32px;\n            border-radius: 50px;\n            display: inline-block;\n            margin: 24px 0;\n            font-weight: 700;\n            font-size: 1.3rem;\n            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);\n            animation: pulse 2s infinite;\n        }\n        \n        @keyframes pulse {\n            0% { transform: scale(1);\n            }\n            50% { transform: scale(1.05);\n            }\n            100% { transform: scale(1);\n            }\n        }\n        \n        .trust-badges {\n            display: flex;\n            justify-content: center;\n            gap: 20px;\n            margin-top: 40px;\n            flex-wrap: wrap;\n        }\n        \n        .trust-badge {\n            background: rgba(255, 255, 255, 0.1);\n            padding: 10px 20px;\n            border-radius: 30px;\n            font-weight: 600;\n            border: 1px solid rgba(255, 255, 255, 0.2);\n            backdrop-filter: blur(10px);\n            font-size: 0.85rem;\n        }\n        \n        \/* Mobile Responsive - Optimized compact spacing *\/\n        @media (max-width: 768px) {\n            .container {\n                padding: 0 16px;\n            }\n            \n            .hero {\n                padding: 40px 0;\n            }\n            \n            .hero h1 {\n                font-size: 2.2rem;\n                margin-bottom: 12px;\n            }\n            \n            .tagline {\n                font-size: 1.2rem;\n                margin-bottom: 24px;\n            }\n            \n            .color-selector {\n                padding: 20px;\n                margin: 24px 0;\n            }\n            \n            .color-options {\n                gap: 16px;\n                margin-top: 12px;\n            }\n            \n            .color-option {\n                padding: 12px;\n            }\n            \n            .color-circle {\n                width: 40px;\n                height: 40px;\n                margin-bottom: 6px;\n            }\n            \n            \/* Mobile Product Introduction changed to a stacked layout *\/\n            .product-intro {\n                flex-direction: column;\n                gap: 24px;\n                padding: 40px 20px;\n                text-align: center;\n            }\n            \n            .product-content h2 {\n                font-size: 2rem;\n                margin-bottom: 16px;\n            }\n            \n            .product-highlights {\n                grid-template-columns: 1fr;\n                gap: 12px;\n            }\n            \n            .highlight-item {\n                padding: 12px;\n            }\n            \n            \/* Mobile Video Optimization *\/\n            .video-section {\n                padding: 40px 16px;\n            }\n            \n            .video-section h2 {\n                font-size: 2rem;\n                margin-bottom: 12px;\n            }\n            \n            .video-section p {\n                margin-bottom: 32px;\n                font-size: 1rem;\n            }\n            \n            \/* Reduced bottom margin for video container on mobile *\/\n            .video-container {\n                margin-bottom: 20px; \n            }\n            \n            .reviews-section {\n                padding: 40px 20px;\n            }\n            \n            .reviews-section h2 {\n                font-size: 2rem;\n                margin-bottom: 12px;\n            }\n            \n            .reviews-subtitle {\n                font-size: 1rem;\n                margin-bottom: 32px;\n            }\n            \n            .reviews-grid {\n                grid-template-columns: 1fr;\n                gap: 16px;\n                margin-top: 24px;\n            }\n            \n            .review-card {\n                padding: 24px 20px;\n            }\n            \n            .review-header {\n                margin-bottom: 12px;\n            }\n            \n            .customer-name {\n                font-size: 1rem;\n            }\n            \n            .customer-model {\n                font-size: 0.85rem;\n            }\n            \n            .star {\n                font-size: 1rem;\n            }\n            \n            .review-text {\n                font-size: 0.9rem;\n            }\n            \n            .review-date {\n                font-size: 0.8rem;\n                margin-top: 12px;\n            }\n            \n            .compatibility {\n                padding: 32px 20px;\n            }\n            \n            .compatibility h2 {\n                font-size: 2rem;\n                margin-bottom: 12px;\n            }\n            \n            .model-grid {\n                grid-template-columns: 1fr;\n                gap: 16px;\n                margin-top: 24px;\n            }\n            \n            .model-card {\n                padding: 24px 20px;\n            }\n            \n            .model-icon {\n                font-size: 2.5rem;\n                margin-bottom: 12px;\n            }\n            \n            .features {\n                padding: 40px 20px;\n            }\n            \n            .features h2 {\n                font-size: 2rem;\n                margin-bottom: 12px;\n            }\n            \n            .features-subtitle {\n                font-size: 1rem;\n                margin-bottom: 32px;\n            }\n            \n            .features-grid {\n                grid-template-columns: 1fr;\n                gap: 16px;\n                margin-top: 24px;\n            }\n            \n            .feature-card {\n                padding: 24px 20px;\n            }\n            \n            .feature-icon {\n                font-size: 2.5rem;\n                margin-bottom: 16px;\n            }\n            \n            .feature-card h3 {\n                font-size: 1.2rem;\n                margin-bottom: 10px;\n            }\n            \n            .feature-card p {\n                font-size: 0.95rem;\n            }\n            \n            .faq {\n                padding: 40px 20px;\n            }\n            \n            .faq h2 {\n                font-size: 2rem;\n                margin-bottom: 32px;\n            }\n            \n            .faq-item {\n                margin-bottom: 10px;\n            }\n            \n            .faq-item summary {\n                padding: 16px 44px 16px 20px;\n                font-size: 0.95rem;\n            }\n            \n            .faq-item summary::after {\n                right: 20px;\n                font-size: 18px;\n            }\n            \n            .faq-content {\n                padding: 0 20px 16px;\n                font-size: 0.9rem;\n            }\n            \n            .final-cta {\n                padding: 40px 20px;\n            }\n            \n            .final-cta h2 {\n                font-size: 2.2rem;\n                margin-bottom: 20px;\n            }\n            \n            .trust-badges {\n                gap: 12px;\n                margin-top: 32px;\n            }\n            \n            .trust-badge {\n                padding: 8px 16px;\n                font-size: 0.8rem;\n            }\n            \n            .price-highlight {\n                font-size: 1.1rem;\n                padding: 14px 28px;\n                margin: 20px 0;\n            }\n            \n            .section-box {\n                margin-bottom: 20px;\n            }\n            \n            .cta-primary {\n                padding: 14px 32px;\n                font-size: 1.1rem;\n                margin: 12px 8px;\n            }\n            \n            .cta-secondary {\n                padding: 12px 28px;\n                font-size: 1rem;\n                margin: 12px 8px;\n            }\n        }\n        \n        \/* Smaller Screen Optimization *\/\n        @media (max-width: 480px) {\n            .container {\n                padding: 0 12px;\n            }\n            \n            .hero h1 {\n                font-size: 1.8rem;\n                line-height: 1.1;\n            }\n            \n            .tagline {\n                font-size: 1rem;\n                margin-bottom: 20px;\n            }\n            \n            .product-intro {\n                padding: 32px 16px;\n            }\n            \n            .reviews-section {\n                padding: 32px 16px;\n            }\n            \n            .features, .faq, .compatibility {\n                padding: 32px 16px;\n            }\n            \n            .final-cta {\n                padding: 32px 16px;\n            }\n            \n            .final-cta h2 {\n                font-size: 1.8rem;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"container\"\u003e\n\u003csection class=\"hero\"\u003e\n\u003cdiv class=\"hero-content\"\u003e\n\u003ch2\u003e\u003cspan style=\"color: rgb(255, 255, 255);\"\u003eLED 트렁크 앰비언트 조명\u003c\/span\u003e\u003c\/h2\u003e\n\u003cp class=\"tagline\"\u003e\"분위기를 설정하고, 당신의 테슬라 경험을 향상시키세요\"\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"section-box\"\u003e\n\u003cdiv class=\"product-intro\"\u003e\n\u003cdiv class=\"product-image-wrapper\"\u003e\u003cimg class=\"product-image\" alt=\"TESERY LED 트렁크 앰비언트 조명\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/teser-trunk-ambient-lighting-for-model-3-highland-new-model-y-348749.jpg?v=1744344165\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"product-content\"\u003e\n\u003ch2\u003e당신의 테슬라 경험을 변화시키세요\u003c\/h2\u003e\n\u003cdiv class=\"product-highlights\"\u003e\n\u003cdiv class=\"highlight-item\"\u003e\n\u003cp\u003e\u003cstrong\u003e💡 프리미엄 LED\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e내구성 뛰어나고 에너지 효율적\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"highlight-item\"\u003e\n\u003cp\u003e\u003cstrong\u003e⚡ OEM 통합\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003eTesla 시스템과 완벽한 적합성\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"highlight-item\"\u003e\n\u003cp\u003e\u003cstrong\u003e🎯 완벽한 적합\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003eModel 3 \u0026 Y용으로 설계됨\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"highlight-item\"\u003e\n\u003cp\u003e\u003cstrong\u003e🔌 플러그 앤 플레이\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e도구나 수정 불필요\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"video-section\"\u003e\n\u003cdiv class=\"container\"\u003e\n\u003ch2\u003e파트너 후기 및 설치\u003c\/h2\u003e\n\u003cp\u003e직접 결과를 확인하세요! 신뢰받는 Tesla 커뮤니티 파트너들의 솔직한 리뷰와 단계별 설치 가이드를 시청하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"video-container\"\u003e\u003ciframe src=\"https:\/\/www.youtube.com\/embed\/e5cyVJdrG4c\" title=\"TESERY LED Trunk Ambient Lighting Installation \u0026amp; Demo\"\u003e\u003c\/iframe\u003e\u003c\/div\u003e\n\u003cdiv class=\"video-container\"\u003e\u003ciframe src=\"https:\/\/www.youtube.com\/embed\/AU4-yjVAbvQ?si=fh9VUcv5llp_1D7Q\" title=\"TESERY LED Trunk Ambient Lighting Alternative Installation\"\u003e\u003c\/iframe\u003e\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"section-box\"\u003e\n\u003cdiv id=\"compatibility\" class=\"compatibility\"\u003e\n\u003ch2\u003e당신의 Tesla에 완벽한 적합\u003c\/h2\u003e\n\u003cp style=\"font-size: 1.1rem; color: var(--text-light); margin-bottom: 32px;\"\u003e완벽한 통합을 위한 정밀 설계\u003c\/p\u003e\n\u003cdiv class=\"model-grid\"\u003e\n\u003cdiv class=\"model-card\"\u003e\n\u003cdiv class=\"model-icon\"\u003e🚗\u003c\/div\u003e\n\u003cp\u003e\u003cstrong\u003eModel 3 Highland 2023.10+\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eModel 3 2021-2023.10\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp style=\"margin-top: 12px; color: var(--text-light); font-size: 0.9rem;\"\u003e최신 Highland 리프레시를 포함한 모든 Model 3 변형과 완벽 호환\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"model-card\"\u003e\n\u003cdiv class=\"model-icon\"\u003e🚙\u003c\/div\u003e\n\u003cp\u003e\u003cstrong\u003eNew Model Y 2025.3+\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003eModel Y 2020-2025.3\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp style=\"margin-top: 12px; color: var(--text-light); font-size: 0.9rem;\"\u003e표준 및 새로운 Model Y 구성 모두에 완벽한 적합성\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"section-box\"\u003e\n\u003cdiv id=\"features\" class=\"features\"\u003e\n\u003ch2\u003e프리미엄 기능 및 혜택\u003c\/h2\u003e\n\u003cp class=\"features-subtitle\"\u003eOEM 등급 품질과 혁신적인 디자인이 만난 궁극의 Tesla 인테리어 업그레이드\u003c\/p\u003e\n\u003cdiv class=\"features-grid\"\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🎯\u003c\/span\u003e\n\u003ch3\u003e정밀한 맞춤형 설계\u003c\/h3\u003e\n\u003cp\u003eModel 3 Highland 및 New Model Y를 위해 특별히 설계되어 트렁크 윤곽에 완벽하게 맞고 Tesla의 원래 디자인 언어와 매끄럽게 통합됩니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e💡\u003c\/span\u003e\n\u003ch3\u003e기분 조명의 재정의\u003c\/h3\u003e\n\u003cp\u003e선명한 화이트와 아늑한 따뜻한 화이트 옵션 중에서 선택하여 개인 맞춤형 실내 분위기를 연출할 수 있어 매번 트렁크를 여는 경험이 우아해집니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e💪\u003c\/span\u003e\n\u003ch3\u003e내구성 있고 오래 지속됨\u003c\/h3\u003e\n\u003cp\u003e항공우주 등급 소재와 고성능 LED로 제작되어 내구성과 극한 조건에 견디도록 설계되어 장기간 안정적인 조명 성능을 보장합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e✨\u003c\/span\u003e\n\u003ch3\u003e미학과 기능의 만남\u003c\/h3\u003e\n\u003cp\u003e미니멀한 디자인이 Tesla의 인테리어 스타일과 완벽하게 어울립니다. 부드러운 조명이 아름다움과 가시성을 모두 향상시켜 실용성과 우아함을 결합합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🔧\u003c\/span\u003e\n\u003ch3\u003e도구 없는 설치\u003c\/h3\u003e\n\u003cp\u003e도구, 드릴링 또는 복잡한 작업이 필요 없습니다. OEM 전원 인터페이스에 간단히 꽂기만 하면 10분 이내에 설치가 완료됩니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🏆\u003c\/span\u003e\n\u003ch3\u003eOEM급 품질\u003c\/h3\u003e\n\u003cp\u003e엄격한 품질 관리가 적용된 OEM급 품질 인증으로 Tesla의 원래 부품과 동일한 신뢰성과 내구성 기준을 보장합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"section-box\"\u003e\n\u003cdiv class=\"reviews-section\"\u003e\n\u003ch2\u003e고객 리뷰\u003c\/h2\u003e\n\u003cp class=\"reviews-subtitle\"\u003e수천 명의 만족한 Tesla 오너들이 TESERY LED 트렁크 주변 조명에 대해 뭐라고 말하는지 확인해 보세요\u003c\/p\u003e\n\u003cdiv class=\"reviews-grid\"\u003e\n\u003cdiv class=\"review-card\"\u003e\n\u003cdiv class=\"review-header\"\u003e\n\u003cdiv class=\"customer-info\"\u003e\n\u003cdiv class=\"customer-name\"\u003eMichael Chen\u003c\/div\u003e\n\u003cdiv class=\"customer-model\"\u003eModel 3 Highland 2024\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"star-rating\"\u003e\n\u003cspan class=\"star\"\u003e★\u003c\/span\u003e \u003cspan class=\"star\"\u003e★\u003c\/span\u003e \u003cspan class=\"star\"\u003e★\u003c\/span\u003e \u003cspan class=\"star\"\u003e★\u003c\/span\u003e \u003cspan class=\"star\"\u003e★\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp class=\"review-text\"\u003e설치가 정말 쉬웠어요 - 실제로 8분밖에 걸리지 않았습니다. 트렁크를 열 때마다 주변 조명이 고급스러운 느낌을 줍니다. 품질도 최고 수준이며 Tesla의 원래 미학과 완벽하게 어울립니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"review-card\"\u003e\n\u003cdiv class=\"review-header\"\u003e\n\u003cdiv class=\"customer-info\"\u003e\n\u003cdiv class=\"customer-name\"\u003eSarah Johnson\u003c\/div\u003e\n\u003cdiv class=\"customer-model\"\u003eModel Y 2023\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"star-rating\"\u003e\n\u003cspan class=\"star\"\u003e★\u003c\/span\u003e \u003cspan class=\"star\"\u003e★\u003c\/span\u003e \u003cspan class=\"star\"\u003e★\u003c\/span\u003e \u003cspan class=\"star\"\u003e★\u003c\/span\u003e \u003cspan class=\"star\"\u003e★\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cp class=\"review-text\"\u003e따뜻한 화이트 옵션이 정말 마음에 들어요! 아늑한 분위기를 만들어주고 빌드 품질도 뛰어납니다. 도구가 필요 없고 그냥 꽂기만 하면 돼요. 지금까지 구매한 최고의 Tesla 액세서리입니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"section-box\"\u003e\n\u003cdiv class=\"faq\"\u003e\n\u003ch2\u003e자주 묻는 질문\u003c\/h2\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🚗 구형 Model 3 또는 Model Y 버전과 호환되나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp\u003e✅ 이 제품은 Model 3 (2021-2023.10) 및 Model Y (2020-2025.3), 최신 Highland 버전을 포함하여 특별히 설계되었습니다. 차량 연도에 따라 적합한 버전을 선택하여 완벽한 맞춤을 보장하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🎨 조명 색상을 커스터마이즈할 수 있나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp\u003e✅ 현재 두 가지 전문적으로 보정된 옵션을 제공합니다: 현대적 미니멀리즘 스타일의 Crisp White와 편안한 분위기를 연출하는 Cozy Warm White. 두 가지 모두 최적의 시각 효과를 보장하도록 전문적으로 최적화되어 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔋 조명이 Tesla 배터리 수명에 영향을 미치나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp\u003e✅ 조명 시스템은 Tesla의 에너지 관리 시스템과 완벽하게 동기화되는 첨단 LED 기술을 사용하여 매우 에너지 효율적입니다. 전력 소비가 극히 낮아 배터리 수명에 거의 영향을 주지 않아 장기간 안심하고 사용할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e⚡ 설치 과정은 얼마나 쉬운가요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp\u003e✅ 플러그 앤 플레이 디자인으로 설치가 매우 간단하며 도구가 필요 없고 10분 이내에 완료됩니다. 차량 개조나 드릴링 없이 OEM 전원 포트에 간단히 연결하세요 - 완전히 되돌릴 수 있는 설치입니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e🔄 나중에 제거하고 싶으면 어떻게 하나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp\u003e✅ 조명 장치를 언제든지 흔적이나 손상 없이 쉽게 분리할 수 있습니다. 완전히 되돌릴 수 있는 설치 설계로 차량을 원래 상태로 복원할 수 있어 보증과 재판매 가치를 보호합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection id=\"order\" class=\"final-cta\"\u003e\n\u003ch2\u003eTesla 경험을 한 단계 업그레이드하세요\u003c\/h2\u003e\n\u003cp style=\"font-size: 1.3rem; margin-bottom: 32px; color: #d1d5db;\"\u003e내부를 변신시킨 수천 명의 Tesla 오너들과 함께하세요\u003c\/p\u003e\n\u003cdiv class=\"trust-badges\"\u003e\n\u003cspan class=\"trust-badge\"\u003e✓ OEM급 품질\u003c\/span\u003e \u003cspan class=\"trust-badge\"\u003e✓ 10분 설치\u003c\/span\u003e \u003cspan class=\"trust-badge\"\u003e✓ 완벽한 Tesla 맞춤\u003c\/span\u003e \u003cspan class=\"trust-badge\"\u003e✓ 1년 보증\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cp style=\"margin-top: 32px; font-size: 0.9rem; color: #9ca3af;\"\u003e⚡ 무료 배송 | 🔄 30일 반품 | 🛡️ 평생 지원\u003c\/p\u003e\n\u003c\/section\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 선명한 흰색 빛","offer_id":47226630504680,"sku":"","price":49.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 아늑한 흰색 빛","offer_id":47226630537448,"sku":"","price":49.99,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020년-현재【자동 감지 있음】 \/ 선명한 흰색 빛","offer_id":47226630766824,"sku":"TSL6214-Y-white","price":49.99,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020년-현재【자동 감지 있음】 \/ 아늑한 흰색 빛","offer_id":47226630799592,"sku":"TSL6214-Y-warm white","price":49.99,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-현재【자동 감지 없음】 \/ 선명한 흰색 빛","offer_id":47226630701288,"sku":"TSL6214-3-white","price":40.99,"currency_code":"USD","in_stock":true},{"title":"모델 3 2021-현재【자동 감지 없음】 \/ 아늑한 흰색 빛","offer_id":47226630734056,"sku":"TSL6214-3-warm white","price":40.99,"currency_code":"USD","in_stock":true},{"title":"Model 3\/Y 2021-현재 RGB 앰비언트 라이트 \/ RGB 앰비언트 라이트","offer_id":47566778401000,"sku":"TLA001","price":49.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/teser-trunk-ambient-lighting-for-model-3-highland-new-model-y-355829.jpg?v=1750648873"},{"product_id":"model-y-pilot-light-turn-signal-upgrade","title":"TESERY 파일럿 라이트 방향 지시등 업그레이드 for Model Y","description":"\u003cstyle\u003e\n        \/* === Scoped CSS Rules Start === *\/\n        .tesery-product-description-container {\n            font-family: 'Inter', system-ui, sans-serif;\n            color: #333;\n            line-height: 1.6;\n            padding: 24px;\n            background-color: #f8f8f8;\n        }\n        .tesery-product-description-container h2 {\n            color: #2c5e8a;\n            text-align: center;\n            margin: 1.5em 0;\n            border-bottom: 2px solid #e5e7eb;\n            padding-bottom: 0.3em;\n            font-size: 2.2em;\n        }\n        .tesery-product-description-container h3 {\n            color: #2c5e8a;\n            margin: 3em 0 1.5em; \/* Increased spacing for section headings *\/\n            font-size: 1.4em;\n        }\n        .tesery-product-description-container .checklist {\n            background: #f0f4f8;\n            border-radius: 8px;\n            padding: 16px;\n            margin: 2em 0;\n        }\n        .tesery-product-description-container .checklist-item {\n            display: flex;\n            align-items: center;\n            margin-bottom: 8px;\n        }\n        .tesery-product-description-container .checkmark {\n            width: 20px;\n            height: 20px;\n            background: #2c5e8a;\n            color: white;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            border-radius: 4px;\n            margin-right: 8px;\n        }\n        .tesery-product-description-container .checklist-title {\n            font-weight: bold;\n            margin-right: 8px;\n        }\n        .tesery-product-description-container .feature-list {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n            gap: 30px; \/* Increased spacing between feature cards *\/\n            margin: 3em 0; \/* Increased top and bottom margins *\/\n        }\n        .tesery-product-description-container .feature-card {\n            background: white;\n            padding: 24px; \/* Increased padding for better spacing *\/\n            border-radius: 8px;\n            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); \/* Enhanced shadow for depth *\/\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n        }\n        .tesery-product-description-container .feature-card:hover {\n            transform: translateY(-4px);\n            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);\n        }\n        .tesery-product-description-container .feature-icon {\n            font-size: 2em;\n            color: #2c5e8a;\n            margin-right: 12px;\n        }\n        .tesery-product-description-container table {\n            width: 100%;\n            border-collapse: collapse;\n            margin: 2em 0;\n            box-shadow: 0 0 15px rgba(0,0,0,0.05);\n        }\n        .tesery-product-description-container th {\n            background-color: #2c5e8a;\n            color: white;\n            font-weight: bold;\n            padding: 14px 20px;\n            text-align: left;\n        }\n        .tesery-product-description-container td {\n            border-top: 1px solid #e5e7eb;\n            padding: 14px 20px;\n            color: #4a5568;\n        }\n        .tesery-product-description-container .faq-section {\n            margin: 3em 0; \/* Increased spacing for FAQ section *\/\n        }\n        .tesery-product-description-container .faq-item {\n            margin-bottom: 1em;\n            padding: 16px;\n            background: #ffffff;\n            border-bottom: 1px solid #e5e7eb;\n        }\n        .tesery-product-description-container .faq-question {\n            color: #2c5e8a;\n            font-weight: bold;\n            margin-bottom: 0.5em;\n        }\n        .tesery-product-description-container .faq-answer {\n            color: #4a5568;\n        }\n        .tesery-product-description-container .trust-section {\n            background-color: #f9f9f9;\n            padding: 24px;\n            border-radius: 8px;\n            margin: 3em 0; \/* Increased spacing for trust section *\/\n        }\n        .tesery-product-description-container .testimonial {\n            font-style: italic;\n            color: #666;\n            margin: 1em 0;\n            padding-left: 20px;\n            border-left: 3px solid #ccc;\n        }\n        .tesery-product-description-container .brand-button {\n            background: #2c5e8a;\n            color: white;\n            padding: 14px 30px;\n            border-radius: 8px;\n            font-weight: bold;\n            text-transform: uppercase;\n            transition: all 0.3s;\n            border: none;\n            cursor: pointer;\n            margin: 3em auto; \/* Increased spacing for button *\/\n            display: block;\n            max-width: 280px;\n        }\n        .tesery-product-description-container .brand-button:hover {\n            background: #2a4d69;\n        }\n        \/* === Scoped CSS Rules End === *\/\n    \u003c\/style\u003e\n\u003cdiv class=\"tesery-product-description-container\"\u003e\n\u003ch2\u003eTESERY Pilot Light 방향 지시등 업그레이드 - Model Y에서 도로 위에서 돋보이세요!\u003c\/h2\u003e\n\u003cdiv class=\"pain-point\"\u003e💥 Model Y의 기본 방향 지시등이 너무 어두우신가요? 60% 이상의 Tesla 오너들이 더 밝고 역동적인 표시등으로 가시성과 스타일을 향상시키길 원합니다.\u003c\/div\u003e\n\u003cdiv class=\"checklist\"\u003e\n\u003cdiv class=\"checklist-item\"\u003e\n\u003cspan class=\"checkmark\"\u003e✓\u003c\/span\u003e \u003cspan class=\"checklist-title\"\u003e적합 모델:\u003c\/span\u003e Tesla Model Y (2020-2022)\u003c\/div\u003e\n\u003cdiv class=\"checklist-item\"\u003e\n\u003cspan class=\"checkmark\"\u003e✓\u003c\/span\u003e \u003cspan class=\"checklist-title\"\u003e특징:\u003c\/span\u003e 순차 표시기, 밝은 LED 출력\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Featured Image --\u003e\n\u003ch3\u003e\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/PilotLightTurnSignalUpgradeforModel3_5.png?v=1745919143\"\u003e\u003c\/h3\u003e\n\u003ch3\u003e핵심 기능 및 혜택\u003c\/h3\u003e\n\u003cdiv class=\"feature-list\"\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e✨\u003c\/span\u003e\n\u003ch4\u003e정밀한 맞춤 설계\u003c\/h4\u003e\n\u003cp\u003eModel Y 전용으로 설계되어 공장 배선과 완벽하게 통합되며 수정이 필요 없습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e💡\u003c\/span\u003e\n\u003ch4\u003e순차 방향 지시등\u003c\/h4\u003e\n\u003cp\u003e동적 순차 점등으로 다른 운전자에게 명확하게 방향 전환 의도를 알려 안전성을 높입니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e⚡\u003c\/span\u003e\n\u003ch4\u003e밝은 LED 출력\u003c\/h4\u003e\n\u003cp\u003e고성능 LED가 낮이나 밤에도 선명하고 깨끗한 조명을 제공합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🛠️\u003c\/span\u003e\n\u003ch4\u003e플러그 앤 플레이 설치\u003c\/h4\u003e\n\u003cp\u003e도구나 드릴링이 필요 없으며, 기존 커넥터에 꽂기만 하면 즉시 업그레이드됩니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🛡️\u003c\/span\u003e\n\u003ch4\u003e내구성 있는 구조\u003c\/h4\u003e\n\u003cp\u003e군용 등급 소재로 혹독한 기상 조건과 진동에 강합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"brand-button\"\u003e\u003cspan style=\"color: rgb(255, 255, 255);\"\u003e\u003ca href=\"https:\/\/www.tesery.com\/collections\/tesla-light-accessories\" title=\"Pilot Light Turn Signal Upgrade for Model Y\" style=\"color: rgb(255, 255, 255);\" rel=\"noopener\" target=\"_blank\"\u003eModel Y의 방향 지시등을 업그레이드하세요 ➔\u003c\/a\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003ch3\u003e자주 묻는 질문\u003c\/h3\u003e\n\u003cdiv class=\"faq-section\"\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cp class=\"faq-question\"\u003e신형 Model Y와 호환되나요?\u003c\/p\u003e\n\u003cp class=\"faq-answer\"\u003e아니요, 2020-2022년형 Model Y에 적합합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cp class=\"faq-question\"\u003e이것을 설치하면 보증이 무효가 되나요?\u003c\/p\u003e\n\u003cp class=\"faq-answer\"\u003e아니요, 플러그 앤 플레이 디자인은 차량의 원래 부품에 영향을 주지 않습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cp class=\"faq-question\"\u003e설치 과정은 얼마나 어려운가요?\u003c\/p\u003e\n\u003cp class=\"faq-answer\"\u003e매우 간단합니다! 공장 배선 하니스에 꽂기만 하면 되며, 도구나 전문 지식이 필요 없습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cp class=\"faq-question\"\u003e나중에 제거하고 싶으면 어떻게 되나요?\u003c\/p\u003e\n\u003cp class=\"faq-answer\"\u003e업그레이드는 잔여물이나 손상 없이 쉽게 제거할 수 있어, Model Y를 원래 상태로 복원할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"모델 Y 2020-2022","offer_id":47299373138152,"sku":"TTL004","price":249.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesery-pilot-light-turn-signal-upgrade-for-model-y-888736.jpg?v=1745948354"},{"product_id":"model-3-highland-new-model-y-angel-wings-welcome-light","title":"Angel Wings 후사경 환영등 for Model 3 Highland \u0026 Model Y Juniper | TESERY","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        \/* === Premium Tesla Angel Wings Product Page Styling === *\/\n        :root {\n            --tesla-blue: #2c5e8a;\n            --tesla-light-blue: #3a7cb4;\n            --tesla-dark: #1c1c1c;\n            --tesla-light: #f8f9fa;\n            --tesla-accent: #e82127;\n            --angel-gold: #ffd700;\n            --angel-white: #ffffff;\n            --angel-silver: #c0c0c0;\n            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);\n            --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);\n            --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\n            --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\n        }\n        \n        \/* Base styling *\/\n        .tesla-product-container {\n            font-family: var(--body-font);\n            color: #333;\n            line-height: 1.6;\n            background-color: #ffffff;\n            max-width: 1200px;\n            margin: 0 auto; \n            padding: 0;\n        }\n        \n        \/* Hero section - simplified without animations *\/\n        .hero-section {\n            position: relative;\n            text-align: center;\n            padding: 100px 20px 80px;\n            margin-bottom: 40px;\n            background: linear-gradient(135deg, #0c0c0c, #1a1a2e, #16213e);\n            color: white;\n            border-radius: 15px;\n            overflow: hidden;\n        }\n        \n        .product-title {\n            color: white;\n            font-family: var(--heading-font);\n            font-weight: 800;\n            font-size: 3.2rem;\n            text-shadow: 0 3px 6px rgba(0,0,0,0.7);\n            margin-bottom: 20px;\n            position: relative;\n            z-index: 2;\n        }\n        \n        .product-subtitle {\n            font-weight: 600;\n            color: #f0f0f0;\n            font-size: 1.4rem;\n            margin-bottom: 20px;\n            text-shadow: 0 2px 4px rgba(0,0,0,0.6);\n            position: relative;\n            z-index: 2;\n        }\n        \n        .angel-wings-icon {\n            font-size: 4rem;\n            color: white;\n            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);\n            margin: 20px 0;\n            position: relative;\n            z-index: 2;\n        }\n        \n        \/* Product Gallery *\/\n        .product-gallery {\n            margin: 50px 0;\n            padding: 50px 20px;\n            background: linear-gradient(135deg, #f8fafc, #e2e8f0);\n            border-radius: 15px;\n            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);\n        }\n        \n        .gallery-title {\n            text-align: center;\n            color: var(--tesla-blue);\n            font-size: 2rem;\n            font-weight: 700;\n            margin-bottom: 40px;\n            position: relative;\n        }\n        \n        .gallery-title::after {\n            content: \"\";\n            position: absolute;\n            bottom: -10px;\n            left: 50%;\n            transform: translateX(-50%);\n            width: 100px;\n            height: 4px;\n            background: var(--gradient-primary);\n            border-radius: 2px;\n        }\n        \n        .image-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 30px;\n            padding: 0 20px;\n        }\n        \n        .product-image-container {\n            position: relative;\n            overflow: hidden;\n            border-radius: 20px;\n            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);\n            transition: all 0.4s ease;\n        }\n        \n        .product-image-container:hover {\n            transform: translateY(-8px) scale(1.02);\n            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);\n        }\n        \n        .product-image {\n            width: 100%;\n            height: 220px;\n            object-fit: cover;\n            transition: transform 0.4s ease;\n        }\n        \n        .product-image-container:hover .product-image {\n            transform: scale(1.1);\n        }\n        \n        .image-overlay {\n            position: absolute;\n            bottom: 0;\n            left: 0;\n            right: 0;\n            background: linear-gradient(transparent, rgba(0,0,0,0.8));\n            color: white;\n            padding: 20px;\n            transform: translateY(100%);\n            transition: transform 0.3s ease;\n        }\n        \n        .product-image-container:hover .image-overlay {\n            transform: translateY(0);\n        }\n        \n        .image-caption {\n            font-weight: 600;\n            margin-bottom: 5px;\n        }\n        \n        .image-description {\n            font-size: 0.9rem;\n            opacity: 0.9;\n        }\n        \n        \/* Content container *\/\n        .content-container {\n            padding: 0 30px;\n        }\n        \n        \/* Section styling *\/\n        .section-title {\n            color: var(--tesla-blue);\n            text-align: center;\n            margin: 3rem 0 2rem;\n            font-family: var(--heading-font);\n            font-weight: 700;\n            font-size: 2.2rem;\n            position: relative;\n            padding-bottom: 20px;\n        }\n        \n        .section-title::after {\n            content: \"\";\n            position: absolute;\n            bottom: 0;\n            left: 50%;\n            transform: translateX(-50%);\n            width: 120px;\n            height: 4px;\n            background: var(--gradient-secondary);\n            border-radius: 2px;\n        }\n        \n        \/* Key Features Section *\/\n        .features-section {\n            padding: 60px 40px;\n            background: white;\n            border-radius: 15px;\n            margin-bottom: 50px;\n            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);\n            border: 1px solid rgba(255, 255, 255, 0.1);\n        }\n        \n        .features-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n            gap: 35px;\n            margin: 3rem 0;\n        }\n        \n        .feature-card {\n            background: linear-gradient(135deg, #ffffff, #f8fafc);\n            border-radius: 15px;\n            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);\n            overflow: hidden;\n            transition: all 0.4s ease;\n            display: flex;\n            flex-direction: column;\n            height: 100%;\n            text-align: center;\n            padding: 40px 25px;\n            border: 2px solid transparent;\n            position: relative;\n        }\n        \n        .feature-card::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            height: 4px;\n            background: var(--gradient-primary);\n        }\n        \n        .feature-card:hover {\n            transform: translateY(-8px);\n            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);\n            border-color: var(--tesla-blue);\n        }\n        \n        .feature-icon {\n            font-size: 2.5rem;\n            margin-bottom: 25px;\n            display: inline-block;\n            background: var(--gradient-accent);\n            -webkit-background-clip: text;\n            -webkit-text-fill-color: transparent;\n            background-clip: text;\n        }\n        \n        .feature-title {\n            color: var(--tesla-dark);\n            font-weight: 700;\n            font-size: 1.3rem;\n            margin: 0 0 15px;\n            line-height: 1.3;\n        }\n        \n        .feature-description {\n            color: #555;\n            font-size: 1rem;\n            margin: 0;\n            line-height: 1.6;\n        }\n\n        \/* Version Comparison Section *\/\n        .version-comparison-section {\n            background: linear-gradient(135deg, #f8fafc, #ffffff);\n            border-radius: 15px;\n            padding: 50px 40px;\n            margin: 50px 0;\n            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);\n            border: 2px solid rgba(103, 126, 234, 0.1);\n        }\n\n        .version-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));\n            gap: 40px;\n            margin-top: 40px;\n        }\n\n        .version-card {\n            background: white;\n            border-radius: 15px;\n            padding: 40px 30px;\n            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);\n            position: relative;\n            overflow: hidden;\n            transition: all 0.4s ease;\n            border: 2px solid transparent;\n        }\n\n        .version-card:hover {\n            transform: translateY(-8px);\n            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);\n            border-color: var(--tesla-blue);\n        }\n\n        .version-card.basic::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            height: 4px;\n            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);\n        }\n\n        .version-card.enhanced::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            height: 4px;\n            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n        }\n\n        .version-title {\n            font-size: 1.8rem;\n            font-weight: 700;\n            color: var(--tesla-dark);\n            margin-bottom: 30px;\n            text-align: center;\n            position: relative;\n        }\n\n        .version-title.basic {\n            color: #0891b2;\n        }\n\n        .version-title.enhanced {\n            color: #6366f1;\n        }\n\n        .version-features {\n            list-style: none;\n            padding: 0;\n            margin: 0;\n        }\n\n        .version-feature {\n            display: flex;\n            align-items: flex-start;\n            padding: 15px 0;\n            border-bottom: 1px solid #f1f5f9;\n        }\n\n        .version-feature:last-child {\n            border-bottom: none;\n        }\n\n        .feature-label {\n            font-weight: 600;\n            color: var(--tesla-dark);\n            margin-right: 15px;\n            min-width: 120px;\n            display: flex;\n            align-items: center;\n        }\n\n        .feature-icon-small {\n            margin-right: 8px;\n            font-size: 1.1rem;\n        }\n\n        .feature-value {\n            flex: 1;\n            color: #475569;\n            font-weight: 500;\n        }\n\n        .feature-value.highlight {\n            color: #059669;\n            font-weight: 600;\n        }\n\n        .feature-value.duration {\n            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);\n            padding: 5px 12px;\n            border-radius: 20px;\n            font-weight: 600;\n            color: #0369a1;\n            display: inline-block;\n        }\n\n        .enhanced .feature-value.duration {\n            background: linear-gradient(135deg, #f8fafc, #e2e8f0);\n            color: #4338ca;\n        }\n        \n        \/* Technical Specifications *\/\n        .tech-specs-section {\n            background: linear-gradient(135deg, #1a1a2e, #16213e);\n            color: white;\n            border-radius: 15px;\n            padding: 50px 40px;\n            margin: 50px 0;\n            position: relative;\n            overflow: hidden;\n        }\n        \n        .specs-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n            gap: 30px;\n            margin-top: 40px;\n        }\n        \n        .spec-card {\n            background: rgba(255, 255, 255, 0.1);\n            backdrop-filter: blur(10px);\n            border-radius: 12px;\n            padding: 30px;\n            border: 1px solid rgba(255, 255, 255, 0.2);\n            transition: all 0.3s ease;\n        }\n        \n        .spec-card:hover {\n            background: rgba(255, 255, 255, 0.15);\n            transform: translateY(-5px);\n        }\n        \n        .spec-icon {\n            font-size: 2rem;\n            color: white;\n            margin-bottom: 15px;\n            display: block;\n        }\n        \n        .spec-name {\n            font-weight: 700;\n            font-size: 1.2rem;\n            margin-bottom: 10px;\n            color: white;\n        }\n        \n        .spec-value {\n            color: rgba(255, 255, 255, 0.9);\n            font-size: 1rem;\n            line-height: 1.5;\n        }\n        \n        \/* Installation Guide *\/\n        .installation-section {\n            margin: 50px 0;\n            padding: 50px 30px;\n            background: white;\n            border-radius: 15px;\n            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);\n        }\n        \n        .installation-steps {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n            gap: 30px;\n            margin-top: 40px;\n        }\n        \n        .installation-step {\n            text-align: center;\n            padding: 30px 20px;\n            background: linear-gradient(135deg, #f8fafc, #ffffff);\n            border-radius: 12px;\n            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);\n            transition: transform 0.3s ease;\n        }\n        \n        .installation-step:hover {\n            transform: translateY(-5px);\n        }\n        \n        .step-number {\n            width: 50px;\n            height: 50px;\n            background: var(--gradient-primary);\n            color: white;\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-weight: 700;\n            font-size: 1.2rem;\n            margin: 0 auto 20px;\n        }\n        \n        .step-image {\n            width: 100%;\n            height: 160px;\n            object-fit: cover;\n            border-radius: 12px;\n            margin-bottom: 20px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);\n        }\n        \n        .step-title {\n            font-weight: 700;\n            color: var(--tesla-dark);\n            margin-bottom: 10px;\n            font-size: 1.1rem;\n        }\n        \n        .step-description {\n            color: #666;\n            font-size: 0.95rem;\n            line-height: 1.5;\n        }\n        \n        \/* Compatibility section *\/\n        .compatibility-section {\n            padding: 50px 30px;\n            margin: 50px 0;\n            background: linear-gradient(135deg, #f1f8ff, #e6f3ff);\n            border-radius: 15px;\n            border-left: 6px solid var(--tesla-blue);\n        }\n        \n        .compatibility-warning {\n            text-align: center;\n            margin-bottom: 40px;\n            padding: 20px;\n            background: rgba(232, 33, 39, 0.1);\n            border-radius: 10px;\n            border-left: 4px solid var(--tesla-accent);\n        }\n        \n        .warning-text {\n            color: var(--tesla-accent);\n            font-weight: 700;\n            font-size: 1.1rem;\n            margin: 0;\n        }\n        \n        .compatibility-table {\n            width: 100%;\n            border-collapse: collapse;\n            border-radius: 12px;\n            overflow: hidden;\n            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);\n            background: white;\n        }\n        \n        .compatibility-table th,\n        .compatibility-table td {\n            padding: 18px 25px;\n            text-align: left;\n            border-bottom: 1px solid #eaeaea;\n        }\n        \n        .compatibility-table th {\n            background: var(--gradient-primary);\n            color: white;\n            font-weight: 700;\n            font-size: 1.1rem;\n        }\n        \n        .compatibility-table tr:nth-child(even) {\n            background-color: #f9f9f9;\n        }\n        \n        .compatibility-table tr:hover {\n            background-color: #f0f8ff;\n        }\n        \n        .compatible {\n            color: #10b981;\n            font-weight: 600;\n        }\n        \n        .not-compatible {\n            color: #ef4444;\n            font-weight: 600;\n        }\n        \n        \/* CTA Section *\/\n        .cta-section {\n            text-align: center;\n            margin: 4rem 0;\n            padding: 60px 30px;\n            background: var(--gradient-primary);\n            border-radius: 15px;\n            color: white;\n        }\n        \n        .cta-title {\n            font-size: 2.5rem;\n            font-weight: 800;\n            margin-bottom: 20px;\n            text-shadow: 0 2px 4px rgba(0,0,0,0.3);\n        }\n        \n        .cta-subtitle {\n            font-size: 1.2rem;\n            margin-bottom: 30px;\n            opacity: 0.9;\n        }\n        \n        .cta-button {\n            background: linear-gradient(135deg, #ffffff, #f0f0f0);\n            color: #1a1a2e !important;\n            padding: 18px 40px;\n            border-radius: 50px;\n            font-weight: 700;\n            text-transform: uppercase;\n            transition: all 0.4s;\n            border: none;\n            cursor: pointer;\n            display: inline-block;\n            text-decoration: none;\n            font-size: 1.1rem;\n            letter-spacing: 1px;\n            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);\n        }\n        \n        .cta-button:hover {\n            transform: translateY(-3px);\n            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.6);\n            background: linear-gradient(135deg, #f0f0f0, #ffffff);\n        }\n        \n        \/* Shipping section *\/\n        .shipping-section {\n            background: white;\n            border-radius: 15px;\n            padding: 50px 40px;\n            margin: 3rem 0;\n            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);\n            text-align: center;\n            border: 2px solid rgba(255, 255, 255, 0.2);\n        }\n        \n        .shipping-highlight {\n            background: var(--gradient-accent);\n            color: white;\n            padding: 25px;\n            border-radius: 12px;\n            margin: 30px 0;\n            font-weight: 700;\n            font-size: 1.2rem;\n            box-shadow: 0 5px 20px rgba(79, 172, 254, 0.3);\n        }\n        \n        \/* 基础移动端适配 *\/\n        @media (max-width: 768px) {\n            .product-title {\n                font-size: 2.2rem;\n                line-height: 1.2;\n            }\n            \n            .product-subtitle {\n                font-size: 1.2rem;\n            }\n            \n            .angel-wings-icon {\n                font-size: 3.5rem;\n            }\n            \n            .hero-section {\n                padding: 60px 20px 50px;\n                background-attachment: scroll;\n            }\n            \n            .features-grid {\n                grid-template-columns: 1fr;\n                gap: 25px;\n            }\n            \n            .features-section {\n                padding: 40px 25px;\n            }\n            \n            .feature-card {\n                padding: 30px 20px;\n            }\n            \n            .version-grid {\n                grid-template-columns: 1fr;\n                gap: 30px;\n            }\n            \n            .version-comparison-section {\n                padding: 40px 25px;\n            }\n            \n            .version-card {\n                padding: 30px 25px;\n            }\n            \n            .specs-grid {\n                grid-template-columns: 1fr;\n                gap: 20px;\n            }\n            \n            .tech-specs-section {\n                padding: 40px 25px;\n            }\n            \n            .image-grid {\n                display: flex;\n                overflow-x: auto;\n                scroll-snap-type: x mandatory;\n                gap: 20px;\n                padding: 0 20px 20px;\n            }\n            \n            .product-image-container {\n                min-width: 280px;\n                scroll-snap-align: center;\n            }\n            \n            .product-image {\n                height: 180px;\n            }\n            \n            .content-container {\n                padding: 0 20px;\n            }\n            \n            .installation-section,\n            .compatibility-section,\n            .shipping-section {\n                padding: 40px 25px;\n            }\n            \n            .installation-steps {\n                gap: 20px;\n            }\n            \n            .installation-step {\n                padding: 25px 20px;\n            }\n            \n            .cta-title {\n                font-size: 2rem;\n            }\n            \n            .cta-button {\n                padding: 15px 30px;\n                font-size: 1rem;\n            }\n            \n            .compatibility-table {\n                font-size: 0.9rem;\n                display: block;\n                overflow-x: auto;\n            }\n            \n            .compatibility-table th,\n            .compatibility-table td {\n                padding: 12px 15px;\n                white-space: nowrap;\n            }\n        }\n        \n        \/* 更小屏幕优化 *\/\n        @media (max-width: 480px) {\n            .product-title {\n                font-size: 1.8rem;\n                line-height: 1.1;\n            }\n            \n            .product-subtitle {\n                font-size: 1rem;\n            }\n            \n            .angel-wings-icon {\n                font-size: 3rem;\n            }\n            \n            .hero-section {\n                padding: 40px 15px 35px;\n                margin-bottom: 30px;\n            }\n            \n            .section-title {\n                font-size: 1.8rem;\n            }\n            \n            .version-card {\n                padding: 25px 20px;\n            }\n            \n            .feature-label {\n                min-width: 100px;\n                font-size: 0.9rem;\n            }\n            \n            .feature-value {\n                font-size: 0.9rem;\n            }\n            \n            .compatibility-table {\n                font-size: 0.85rem;\n            }\n            \n            .compatibility-table th,\n            .compatibility-table td {\n                padding: 10px 8px;\n            }\n            \n            .cta-section {\n                padding: 40px 20px;\n            }\n            \n            .cta-title {\n                font-size: 1.8rem;\n            }\n            \n            .cta-subtitle {\n                font-size: 1rem;\n            }\n            \n            .shipping-section,\n            .installation-section,\n            .compatibility-section,\n            .version-comparison-section,\n            .features-section,\n            .tech-specs-section {\n                padding: 30px 20px;\n            }\n            \n            .product-image-container {\n                min-width: 260px;\n            }\n        }\n        \n        \/* 触摸设备优化 *\/\n        @media (hover: none) and (pointer: coarse) {\n            .feature-card:hover,\n            .version-card:hover,\n            .installation-step:hover {\n                transform: none;\n            }\n            \n            .product-image-container:hover {\n                transform: none;\n            }\n            \n            .image-overlay {\n                transform: translateY(0);\n                background: rgba(0,0,0,0.6);\n            }\n            \n            .product-image-container:hover .image-overlay {\n                transform: translateY(0);\n            }\n        }\n        \n        \/* 横屏小设备优化 *\/\n        @media (max-width: 768px) and (orientation: landscape) {\n            .hero-section {\n                padding: 30px 20px;\n            }\n            \n            .product-title {\n                font-size: 2rem;\n            }\n            \n            .features-grid {\n                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"tesla-product-container\"\u003e\n\u003c!-- Hero Section --\u003e\n\u003cdiv class=\"hero-section\"\u003e\n\u003cdiv class=\"angel-wings-icon\"\u003e🪽\u003c\/div\u003e\n\u003ch2 class=\"product-title\"\u003e엔젤 윙 백미러 웰컴 라이트\u003c\/h2\u003e\n\u003cp class=\"product-subtitle\"\u003e테슬라 모델 3 하이랜드 \u0026amp; 뉴 모델 Y용\u003c\/p\u003e\n\u003cp data-pm-slice=\"1 1 []\"\u003e\u003cstrong\u003e\u003cspan style=\"color: rgb(255, 42, 0);\"\u003eEU 준수 경고: 후진등 기능\u003c\/span\u003e\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cstrong\u003e엄격한 유럽 (ECE R48) 규정\u003c\/strong\u003e으로 인해, 이 제품의 후진등 기능은 \u003cstrong\u003eEU\/유럽 지역\u003c\/strong\u003e에서 \u003cstrong\u003e승인되지 않았습니다\u003c\/strong\u003e.\u003c\/p\u003e\n\u003cp\u003e\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e\u003cspan style=\"color: rgb(255, 255, 255);\"\u003e\u003cstrong\u003e중대한 경고:\u003c\/strong\u003e\u003c\/span\u003e \u003c\/span\u003e\u003cstrong\u003e\u003cspan style=\"color: rgb(255, 42, 0);\"\u003e유럽 고객은 이 향상된 버전을 절대 구매해서는 안 됩니다.\u003c\/span\u003e \u003c\/strong\u003e완전한 법적 준수를 위해 \u003cstrong\u003e기본 버전\u003c\/strong\u003e을 선택해 주십시오.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- Product Gallery --\u003e\n\u003cdiv class=\"product-gallery\"\u003e\n\u003ch3 class=\"gallery-title\"\u003e엔젤 윙 디자인 쇼케이스\u003c\/h3\u003e\n\u003cdiv class=\"image-grid\"\u003e\n\u003cdiv style=\"text-align: start;\" class=\"product-image-container\"\u003e\n\u003cimg style=\"margin-bottom: 16px; float: none;\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/model-3-highland-new-model-y-angel-wings-rearview-mirror-welcome-light-945281.jpg?v=1749780718\" alt=\"테슬라 백미러 엔젤 윙\" class=\"product-image\"\u003e\n\u003cdiv class=\"image-overlay\"\u003e\n\u003cdiv class=\"image-caption\"\u003e프리미엄 엔젤 윙 디자인\u003c\/div\u003e\n\u003cdiv class=\"image-description\"\u003e테슬라를 위한 우아한 조명 효과\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"product-image-container\"\u003e\n\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/model-3-highland-new-model-y-angel-wings-rearview-mirror-welcome-light-941480.png?v=1749780718\" alt=\"엔젤 윙 웰컴 라이트 효과\" class=\"product-image\"\u003e\n\u003cdiv class=\"image-overlay\"\u003e\n\u003cdiv class=\"image-caption\"\u003e웰컴 라이트 효과\u003c\/div\u003e\n\u003cdiv class=\"image-description\"\u003e테슬라에 다가갈 때 아름다운 조명\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv style=\"text-align: start;\" class=\"product-image-container\"\u003e\n\u003cimg style=\"margin-bottom: 16px; float: none;\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/model-3-highland-new-model-y-angel-wings-rearview-mirror-welcome-light-127206.png?v=1749780718\" alt=\"테슬라 모델 3 인테리어 향상\" class=\"product-image\"\u003e\n\u003cdiv class=\"image-overlay\"\u003e\n\u003cdiv class=\"image-caption\"\u003e완벽한 인테리어 통합\u003c\/div\u003e\n\u003cdiv class=\"image-description\"\u003eTesla의 프리미엄 디자인과 완벽한 조화\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"content-container\"\u003e\n\u003c!-- Version Comparison Section --\u003e\n\u003cdiv class=\"version-comparison-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e엔젤 윙 버전 선택\u003c\/h3\u003e\n\u003cdiv class=\"version-grid\"\u003e\n\u003cdiv class=\"version-card basic\"\u003e\n\u003ch4 class=\"version-title basic\"\u003e기본 버전\u003c\/h4\u003e\n\u003cul class=\"version-features\"\u003e\n\u003cli class=\"version-feature\"\u003e\n\u003cspan class=\"feature-label\"\u003e \u003cspan class=\"feature-icon-small\"\u003e🔓\u003c\/span\u003e 잠금 해제 \u003c\/span\u003e \u003cspan class=\"feature-value duration\"\u003e30초 동안 점등\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli class=\"version-feature\"\u003e\n\u003cspan class=\"feature-label\"\u003e \u003cspan class=\"feature-icon-small\"\u003e🔒\u003c\/span\u003e 잠금 \u003c\/span\u003e \u003cspan class=\"feature-value duration\"\u003e3초 동안 점등\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli class=\"version-feature\"\u003e\n\u003cspan class=\"feature-label\"\u003e \u003cspan class=\"feature-icon-small\"\u003e⚙️\u003c\/span\u003e 후진 기어 \u003c\/span\u003e \u003cspan class=\"feature-value\"\u003e불 켜지 않음\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli class=\"version-feature\"\u003e\n\u003cspan class=\"feature-label\"\u003e \u003cspan class=\"feature-icon-small\"\u003e↩️\u003c\/span\u003e 후진 종료 \u003c\/span\u003e \u003cspan class=\"feature-value\"\u003e불 켜지 않음\u003c\/span\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"version-card enhanced\"\u003e\n\u003ch4 class=\"version-title enhanced\"\u003e향상된 버전\u003c\/h4\u003e\n\u003cul class=\"version-features\"\u003e\n\u003cli class=\"version-feature\"\u003e\n\u003cspan class=\"feature-label\"\u003e \u003cspan class=\"feature-icon-small\"\u003e🔓\u003c\/span\u003e 잠금 해제 \u003c\/span\u003e \u003cspan class=\"feature-value duration\"\u003e30초 동안 점등\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli class=\"version-feature\"\u003e\n\u003cspan class=\"feature-label\"\u003e \u003cspan class=\"feature-icon-small\"\u003e🔒\u003c\/span\u003e 잠금 \u003c\/span\u003e \u003cspan class=\"feature-value duration\"\u003e3초 동안 점등\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli class=\"version-feature\"\u003e\n\u003cspan class=\"feature-label\"\u003e \u003cspan class=\"feature-icon-small\"\u003e⚙️\u003c\/span\u003e 후진 기어 \u003c\/span\u003e \u003cspan class=\"feature-value duration\"\u003e20초 동안 점등\u003c\/span\u003e\n\u003c\/li\u003e\n\u003cli class=\"version-feature\"\u003e\n\u003cspan class=\"feature-label\"\u003e \u003cspan class=\"feature-icon-small\"\u003e↩️\u003c\/span\u003e 후진 종료 \u003c\/span\u003e \u003cspan class=\"feature-value duration\"\u003e20초 동안 점등\u003c\/span\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Key Features Section --\u003e\n\u003cdiv class=\"features-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e프리미엄 엔젤 윙 기능\u003c\/h3\u003e\n\u003cdiv class=\"features-grid\"\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🎯\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e1:1 OEM 데이터 복원\u003c\/h4\u003e\n\u003cp class=\"feature-description\"\u003e원본 차량 데이터를 정밀 설계하여 완벽한 맞춤과 Tesla 디자인 언어와의 매끄러운 통합.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e💧\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e공기역학적 물방울 디자인\u003c\/h4\u003e\n\u003cp class=\"feature-description\"\u003e첨단 물방울 모양으로 풍동 저항을 줄이면서 최적의 기능성과 고급스러운 미학 유지.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🔍\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e광학 등급 미러 코팅\u003c\/h4\u003e\n\u003cp class=\"feature-description\"\u003e고투명, 고휘도 광학 렌즈급 코팅으로 선명한 시야와 우수한 빛 투과율 제공.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e💡\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e수입 고휘도 LED\u003c\/h4\u003e\n\u003cp class=\"feature-description\"\u003e알루미늄 기판 열 방출이 적용된 프리미엄 수입 LED 칩으로 최대 밝기와 긴 수명 보장.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🎨\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e고채도 수입 필름\u003c\/h4\u003e\n\u003cp class=\"feature-description\"\u003e프리미엄 수입 필름 기술을 사용한 선명하고 정밀한 라인과 생생한 고채도 색상으로 놀라운 시각적 효과.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🔧\u003c\/span\u003e\n\u003ch4 class=\"feature-title\"\u003e완전한 설치 키트\u003c\/h4\u003e\n\u003cp class=\"feature-description\"\u003e전문가의 도움 없이도 손쉬운 DIY 설치를 위한 모든 필요한 설치 도구와 하드웨어 포함.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Technical Specifications --\u003e\n\u003cdiv class=\"tech-specs-section\"\u003e\n\u003ch3 class=\"section-title\" style=\"color: white;\"\u003e기술 사양\u003c\/h3\u003e\n\u003cdiv class=\"specs-grid\"\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cspan class=\"spec-icon\"\u003e⚖️\u003c\/span\u003e\n\u003cdiv class=\"spec-name\"\u003e제품 무게\u003c\/div\u003e\n\u003cdiv class=\"spec-value\"\u003e450g - 가볍지만 내구성 있는 구조\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cspan class=\"spec-icon\"\u003e🏗️\u003c\/span\u003e\n\u003cdiv class=\"spec-name\"\u003e구성 재료\u003c\/div\u003e\n\u003cdiv class=\"spec-value\"\u003e광학 등급 코팅이 된 프리미엄 알루미늄 기판\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cspan class=\"spec-icon\"\u003e💡\u003c\/span\u003e\n\u003cdiv class=\"spec-name\"\u003eLED 기술\u003c\/div\u003e\n\u003cdiv class=\"spec-value\"\u003e우수한 열 방출을 가진 수입 고휘도 LED 칩\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cspan class=\"spec-icon\"\u003e🌀\u003c\/span\u003e\n\u003cdiv class=\"spec-name\"\u003e공기역학적 디자인\u003c\/div\u003e\n\u003cdiv class=\"spec-value\"\u003e최소한의 풍압을 위한 물방울 모양 최적화\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cspan class=\"spec-icon\"\u003e🎯\u003c\/span\u003e\n\u003cdiv class=\"spec-name\"\u003e정밀한 맞춤\u003c\/div\u003e\n\u003cdiv class=\"spec-value\"\u003e완벽한 차량 통합을 위한 1:1 OEM 데이터 복원\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"spec-card\"\u003e\n\u003cspan class=\"spec-icon\"\u003e📦\u003c\/span\u003e\n\u003cdiv class=\"spec-name\"\u003e패키지 구성품\u003c\/div\u003e\n\u003cdiv class=\"spec-value\"\u003e엔젤 윙 미러 + 완전한 설치 도구 키트\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Installation Guide --\u003e\n\u003cdiv class=\"installation-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e쉬운 설치 과정\u003c\/h3\u003e\n\u003cdiv class=\"installation-steps\"\u003e\n\u003cdiv class=\"installation-step\"\u003e\n\u003cdiv class=\"step-number\"\u003e1\u003c\/div\u003e\n\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/Model3Highland_NewModelYAngelWingsRearviewMirrorWelcomeLight_8.jpg?v=1749462300\" alt=\"패키지 열기\" class=\"step-image\"\u003e\n\u003ch4 class=\"step-title\"\u003e패키지 열기\u003c\/h4\u003e\n\u003cp class=\"step-description\"\u003e간편한 설치를 위한 모든 것이 제공됩니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"installation-step\"\u003e\n\u003cdiv class=\"step-number\"\u003e2\u003c\/div\u003e\n\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/Model3Highland_NewModelYAngelWingsRearviewMirrorWelcomeLight_6.png?v=1749462300\" alt=\"플러그 앤 커넥트\" class=\"step-image\"\u003e\n\u003ch4 class=\"step-title\"\u003e플러그 앤 커넥트\u003c\/h4\u003e\n\u003cp class=\"step-description\"\u003e원래 차량 인터페이스를 찾아 제공된 커넥터로 장치를 간단히 연결하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"installation-step\"\u003e\n\u003cdiv class=\"step-number\"\u003e3\u003c\/div\u003e\n\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/Model3Highland_NewModelYAngelWingsRearviewMirrorWelcomeLight_7.png?v=1749462300\" alt=\"테스트 및 즐기기\" class=\"step-image\"\u003e\n\u003ch4 class=\"step-title\"\u003e테스트 및 즐기기\u003c\/h4\u003e\n\u003cp class=\"step-description\"\u003e차량의 전원을 켜고 장치가 정상 작동하는지 확인하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Compatibility Section --\u003e\n\u003cdiv class=\"compatibility-section\"\u003e\n\u003ch3 class=\"section-title\"\u003e차량 호환성\u003c\/h3\u003e\n\u003cdiv class=\"compatibility-warning\"\u003e\n\u003cp class=\"warning-text\"\u003e⚠️ 중요: 주문 전에 테슬라 모델과 생산 연도를 확인하세요\u003c\/p\u003e\n\u003c\/div\u003e\n\u003ctable class=\"compatibility-table\"\u003e\n\u003cthead\u003e\n\u003ctr\u003e\n\u003cth\u003e테슬라 모델\u003c\/th\u003e\n\u003cth\u003e생산 연도\u003c\/th\u003e\n\u003cth\u003e호환성 상태\u003c\/th\u003e\n\u003cth\u003e참고 사항\u003c\/th\u003e\n\u003c\/tr\u003e\n\u003c\/thead\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd data-label=\"Tesla Model\"\u003e\u003cstrong\u003eModel 3 Highland\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd data-label=\"Production Year\"\u003e2023.10+\u003c\/td\u003e\n\u003ctd data-label=\"Compatibility Status\" class=\"compatible\"\u003e✅ 완전 호환\u003c\/td\u003e\n\u003ctd data-label=\"Notes\"\u003e완벽한 OEM 맞춤\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd data-label=\"Tesla Model\"\u003e\u003cstrong\u003eNew Model Y\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd data-label=\"Production Year\"\u003e2025.3+\u003c\/td\u003e\n\u003ctd data-label=\"Compatibility Status\" class=\"compatible\"\u003e✅ 완전 호환\u003c\/td\u003e\n\u003ctd data-label=\"Notes\"\u003e완벽한 OEM 맞춤\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd data-label=\"Tesla Model\"\u003e\u003cstrong\u003eModel 3\/Y (2017-2023)\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd data-label=\"Production Year\"\u003e2017-2023\u003c\/td\u003e\n\u003ctd data-label=\"Compatibility Status\" class=\"compatible\"\u003e✅ 완전 호환\u003c\/td\u003e\n\u003ctd data-label=\"Notes\"\u003e완벽한 OEM 맞춤\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003c!-- CTA Section --\u003e\n\u003cdiv class=\"cta-section\"\u003e\n\u003ch2 class=\"cta-title\"\u003e\u003cspan style=\"text-decoration: underline; color: rgb(255, 255, 255);\"\u003e\u003ca href=\"#top\" title=\"Model 3 Highland \u0026amp; New Model Y Angel Wings Rearview Mirror Welcome Light\" style=\"color: rgb(255, 255, 255); text-decoration: underline;\"\u003e오늘 당신의 테슬라를 변신시키세요\u003c\/a\u003e\u003c\/span\u003e\u003c\/h2\u003e\n\u003cp class=\"cta-subtitle\"\u003e프리미엄 엔젤 윙 조명 효과를 경험하세요\u003c\/p\u003e\n\u003cbr\u003e\n\u003c\/div\u003e\n\u003c!-- Shipping Section --\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 향상된 버전 (EU에서 금지됨)","offer_id":47408773071080,"sku":null,"price":199.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 주니퍼 2025+ \/ 향상된 버전 (EU에서 금지됨)","offer_id":47413870002408,"sku":"T-AL003-newY-B","price":189.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 하이랜드 2024+ \/ 향상된 버전 (EU에서 금지됨)","offer_id":47413870067944,"sku":"T-AL003-new3-B","price":189.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 21-25.3 \/ 향상된 버전 (EU에서 금지됨)","offer_id":47408773136616,"sku":"T-AL003-Y-B","price":189.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 21-23.10 \/ 향상된 버전 (EU에서 금지됨)","offer_id":47408773103848,"sku":"T-AL003-3-B","price":189.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Model_3_Highland_New_Model_Y_Angel_Wings_Rearview_Mirror_Welcome_Light_9.gif?v=1749780718"},{"product_id":"dashboard-ambient-light-kits-for-model-3-highland-new-model-y","title":"모델 3 하이랜드 및 모델 Y 주니퍼용 대시보드 앰비언트 라이트 키트","description":"\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n        \/* === Optimized Tesla Accessory Page Styling === *\/\n        :root {\n            --primary-dark: #1a1a1a;\n            --primary-blue: #2c5f8b;\n            --accent-red: #e82127;\n            --neutral-light: #f8f9fa;\n            --neutral-medium: #e9ecef;\n            --neutral-dark: #495057;\n            --white: #ffffff;\n            --shadow-light: rgba(0, 0, 0, 0.08);\n            --shadow-medium: rgba(0, 0, 0, 0.12);\n            --shadow-dark: rgba(0, 0, 0, 0.2);\n            --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;\n        }\n        \n        \/* Base styling *\/\n        .tesery-product-description-container {\n            font-family: var(--body-font);\n            color: var(--neutral-dark);\n            line-height: 1.6;\n            background-color: var(--white);\n            max-width: 1200px;\n            margin: 0 auto; \n            padding: 0;\n        }\n        \n        \/* Hero section *\/\n        .hero-section {\n            position: relative;\n            text-align: center;\n            padding: 60px 0;\n            margin-bottom: 40px;\n            background: linear-gradient(135deg, var(--primary-dark) 0%, #2c2c2c 50%, var(--primary-blue) 100%);\n            border-radius: 20px;\n            overflow: hidden;\n        }\n        \n        .hero-content {\n            position: relative;\n            z-index: 2;\n            width: 90%;\n            margin: 0 auto;\n            text-align: center;\n        }\n        \n        .product-title {\n            color: var(--white) !important;\n            font-family: var(--body-font);\n            font-weight: 700;\n            font-size: 2.8rem;\n            text-shadow: 0 2px 4px var(--shadow-dark);\n            margin-bottom: 15px;\n        }\n        \n        .product-subtitle {\n            font-weight: 500;\n            color: var(--neutral-light);\n            font-size: 1.3rem;\n            margin-bottom: 0;\n            text-shadow: 0 2px 3px var(--shadow-dark);\n        }\n        \n        \/* Product images *\/\n        .product-images {\n            display: flex;\n            justify-content: center;\n            gap: 20px;\n            margin: 40px 0;\n            flex-wrap: wrap;\n        }\n        \n        .product-image {\n            width: 300px;\n            height: 200px;\n            border-radius: 16px;\n            box-shadow: 0 8px 32px var(--shadow-light);\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n            object-fit: cover;\n        }\n        \n        .product-image:hover {\n            transform: translateY(-4px);\n            box-shadow: 0 12px 40px var(--shadow-medium);\n        }\n        \n        \/* Content container *\/\n        .content-container {\n            padding: 0 24px;\n        }\n        \n        \/* Section styling *\/\n        .section-title {\n            color: var(--primary-dark);\n            text-align: center;\n            margin: 2.5rem 0 1.5rem;\n            font-family: var(--body-font);\n            font-weight: 600;\n            font-size: 1.8rem;\n            position: relative;\n            padding-bottom: 15px;\n        }\n        \n        .section-title::after {\n            content: \"\";\n            position: absolute;\n            bottom: 0;\n            left: 50%;\n            transform: translateX(-50%);\n            width: 60px;\n            height: 3px;\n            background: var(--primary-blue);\n            border-radius: 2px;\n        }\n        \n        \/* Feature grid styling *\/\n        .feature-section {\n            padding: 50px 40px;\n            background: var(--neutral-light);\n            border-radius: 20px;\n            margin-bottom: 40px;\n            box-shadow: 0 4px 20px var(--shadow-light);\n        }\n        \n        .feature-list {\n            display: grid;\n            grid-template-columns: repeat(2, 1fr);\n            gap: 30px;\n            margin: 2.5rem 0;\n        }\n        \n        .feature-card {\n            background: var(--white);\n            border-radius: 16px;\n            box-shadow: 0 4px 20px var(--shadow-light);\n            overflow: hidden;\n            transition: all 0.3s ease;\n            display: flex;\n            flex-direction: column;\n            height: 100%;\n            text-align: center;\n            padding: 35px 25px;\n            border: 1px solid var(--neutral-medium);\n        }\n        \n        .feature-card:hover {\n            transform: translateY(-4px);\n            box-shadow: 0 8px 32px var(--shadow-medium);\n            border-color: var(--primary-blue);\n        }\n        \n        .feature-icon {\n            font-size: 2.5rem;\n            margin-bottom: 20px;\n            display: inline-block;\n        }\n        \n        .feature-title {\n            color: var(--primary-dark);\n            font-weight: 600;\n            font-size: 1.3rem;\n            margin: 0 0 15px;\n        }\n        \n        .feature-description {\n            color: var(--neutral-dark);\n            font-size: 1rem;\n            margin: 0;\n            line-height: 1.6;\n        }\n        \n        \/* Benefits intro *\/\n        .benefits-section {\n            padding: 40px 0;\n            margin: 40px 0;\n            text-align: center;\n        }\n        \n        .benefits-intro {\n            max-width: 800px;\n            margin: 0 auto 30px;\n            color: var(--neutral-dark);\n            font-size: 1.2rem;\n            line-height: 1.7;\n        }\n        \n        \/* Model selection *\/\n        .model-selection {\n            background: var(--primary-blue);\n            border-radius: 20px;\n            padding: 50px 40px;\n            margin: 3rem 0;\n            color: var(--white);\n            text-align: center;\n            box-shadow: 0 8px 32px var(--shadow-light);\n        }\n        \n        .selection-grid {\n            display: grid;\n            grid-template-columns: repeat(2, 1fr);\n            gap: 30px;\n            margin-top: 30px;\n        }\n        \n        .selection-card {\n            background: rgba(255, 255, 255, 0.1);\n            border-radius: 16px;\n            padding: 30px 25px;\n            backdrop-filter: blur(10px);\n            border: 1px solid rgba(255, 255, 255, 0.2);\n            transition: all 0.3s ease;\n        }\n        \n        .selection-card:hover {\n            background: rgba(255, 255, 255, 0.15);\n            transform: translateY(-4px);\n        }\n        \n        .selection-title {\n            font-size: 1.3rem;\n            font-weight: 600;\n            margin-bottom: 15px;\n        }\n        \n        .selection-features {\n            font-size: 1rem;\n            opacity: 0.9;\n            line-height: 1.6;\n        }\n        \n        \/* Lighting modes *\/\n        .modes-section {\n            background: var(--white);\n            border-radius: 20px;\n            padding: 50px 40px;\n            margin: 3rem 0;\n            border: 1px solid var(--neutral-medium);\n            box-shadow: 0 4px 20px var(--shadow-light);\n        }\n        \n        .modes-grid {\n            display: grid;\n            grid-template-columns: repeat(3, 1fr);\n            gap: 25px;\n            margin-top: 30px;\n        }\n        \n        .mode-card {\n            background: var(--neutral-light);\n            border-radius: 16px;\n            padding: 30px 20px;\n            text-align: center;\n            transition: all 0.3s ease;\n            border: 1px solid var(--neutral-medium);\n        }\n        \n        .mode-card:hover {\n            transform: translateY(-4px);\n            background: var(--white);\n            box-shadow: 0 6px 24px var(--shadow-light);\n            border-color: var(--primary-blue);\n        }\n        \n        .mode-icon {\n            font-size: 2.5rem;\n            margin-bottom: 15px;\n            color: var(--primary-blue);\n        }\n        \n        .mode-title {\n            color: var(--primary-dark);\n            font-weight: 600;\n            margin-bottom: 10px;\n        }\n        \n        .mode-desc {\n            color: var(--neutral-dark);\n            font-size: 0.95rem;\n        }\n        \n        \/* Compatibility section *\/\n        .compatibility-section {\n            padding: 40px 0;\n            margin: 40px 0;\n        }\n        \n        .table-container {\n            margin-top: 30px;\n            overflow-x: auto;\n        }\n        \n        .compatibility-table {\n            width: 100%;\n            border-collapse: collapse;\n            border-radius: 16px;\n            overflow: hidden;\n            box-shadow: 0 4px 20px var(--shadow-light);\n            border: 1px solid var(--neutral-medium);\n        }\n        \n        .compatibility-table th,\n        .compatibility-table td {\n            padding: 18px 25px;\n            text-align: left;\n            border-bottom: 1px solid var(--neutral-medium);\n        }\n        \n        .compatibility-table th {\n            background: var(--primary-dark);\n            color: var(--white);\n            font-weight: 600;\n        }\n        \n        .compatibility-table tr:nth-child(even) {\n            background-color: var(--neutral-light);\n        }\n        \n        .compatibility-table tr:hover {\n            background: var(--neutral-medium);\n        }\n        \n        \/* Installation section *\/\n        .installation-section {\n            background: var(--neutral-light);\n            border-radius: 20px;\n            padding: 50px 40px;\n            margin: 3rem 0;\n            box-shadow: 0 4px 20px var(--shadow-light);\n        }\n        \n        .installation-content {\n            display: flex;\n            align-items: center;\n            gap: 40px;\n            margin-top: 30px;\n        }\n        \n        .installation-image {\n            flex: 1;\n            max-width: 400px;\n        }\n        \n        .installation-image img {\n            width: 100%;\n            height: 250px;\n            object-fit: cover;\n            border-radius: 16px;\n            box-shadow: 0 8px 32px var(--shadow-light);\n        }\n        \n        .installation-text {\n            flex: 1;\n        }\n        \n        .installation-highlight {\n            background: var(--primary-blue);\n            color: var(--white);\n            padding: 25px;\n            border-radius: 16px;\n            text-align: center;\n            font-size: 1.2rem;\n            font-weight: 600;\n            margin: 25px 0;\n            box-shadow: 0 4px 20px rgba(44, 95, 139, 0.3);\n        }\n        \n        .installation-features {\n            list-style: none;\n            padding: 0;\n            margin: 20px 0;\n        }\n        \n        .installation-features li {\n            padding: 10px 0;\n            color: var(--primary-blue);\n            font-weight: 500;\n            position: relative;\n            padding-left: 30px;\n        }\n        \n        .installation-features li::before {\n            content: \"✓\";\n            position: absolute;\n            left: 0;\n            color: var(--primary-blue);\n            font-weight: bold;\n            font-size: 1.2rem;\n        }\n        \n        \/* FAQ styling *\/\n        .faq-section {\n            margin: 3rem 0;\n            background: var(--white);\n            padding: 50px 40px;\n            border-radius: 20px;\n            box-shadow: 0 4px 20px var(--shadow-light);\n            border: 1px solid var(--neutral-medium);\n        }\n        \n        .faq-item {\n            margin-bottom: 20px;\n            border-radius: 16px;\n            background: var(--neutral-light);\n            overflow: hidden;\n            border: 1px solid var(--neutral-medium);\n            transition: all 0.3s ease;\n        }\n        \n        .faq-item:hover {\n            box-shadow: 0 4px 16px var(--shadow-light);\n        }\n        \n        .faq-question {\n            color: var(--primary-dark);\n            font-weight: 600;\n            padding: 25px;\n            margin: 0;\n            border-bottom: 1px solid var(--neutral-medium);\n            position: relative;\n            font-size: 1.1rem;\n        }\n        \n        .faq-question::before {\n            content: \"Q:\";\n            color: var(--primary-blue);\n            font-weight: 700;\n            margin-right: 10px;\n        }\n        \n        .faq-answer {\n            color: var(--neutral-dark);\n            padding: 20px 25px 25px;\n            margin: 0;\n            line-height: 1.6;\n            background: var(--white);\n        }\n        \n        .faq-answer::before { \n            content: \"A:\";\n            color: var(--accent-red);\n            font-weight: 700;\n            margin-right: 10px;\n        }\n        \n        \/* Responsive adjustments *\/\n        @media (max-width: 768px) {\n            .product-title {\n                font-size: 2.2rem;\n            }\n            \n            .product-images {\n                flex-direction: column;\n                align-items: center;\n            }\n            \n            .product-image {\n                width: 100%;\n                max-width: 350px;\n            }\n            \n            .feature-list,\n            .selection-grid {\n                grid-template-columns: 1fr;\n            }\n            \n            .modes-grid {\n                grid-template-columns: 1fr;\n            }\n            \n            .installation-content {\n                flex-direction: column;\n                gap: 20px;\n            }\n            \n            .installation-section, \n            .faq-section,\n            .model-selection,\n            .feature-section,\n            .modes-section {\n                padding: 30px 20px;\n            }\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"tesery-product-description-container\"\u003e\n\u003c!-- Hero Section --\u003e\n\u003cdiv class=\"hero-section\"\u003e\n\u003cdiv class=\"hero-content\"\u003e\n\u003ch1 class=\"product-title\"\u003e대시보드 앰비언트 라이트 키트\u003c\/h1\u003e\n\u003cp class=\"product-subtitle\"\u003eModel 3 Highland \u0026 New Model Y용\u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Product Images --\u003e\n\u003cdiv class=\"product-images\" style=\"text-align: start;\"\u003e\n\u003cimg class=\"product-image\" alt=\"Tesla Model 3 대시보드 앰비언트 조명\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/dashboard-ambient-light-kits-for-model-3-highland-new-model-y-138791.png?v=1749594584\u0026amp;width=713\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003cimg class=\"product-image\" alt=\"Tesla 실내 앰비언트 라이트 세부사항\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/dashboard-ambient-light-kits-for-model-3-highland-new-model-y-278112.png?v=1749594584\u0026amp;width=713\" style=\"margin-bottom: 16px; float: none;\"\u003e \u003cimg class=\"product-image\" alt=\"Tesla Model Y 실내 조명\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/dashboard-ambient-light-kits-for-model-3-highland-new-model-y-923968.png?v=1749594585\u0026amp;width=713\" style=\"margin-bottom: 16px; float: none;\"\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"content-container\"\u003e\n\u003c!-- Introduction --\u003e\n\u003cdiv class=\"benefits-section\"\u003e\n\u003cp class=\"benefits-intro\"\u003e \u003c\/p\u003e\n\u003c\/div\u003e\n\u003c!-- Core Features --\u003e\n\u003cdiv class=\"feature-section\"\u003e\n\u003ch2 class=\"section-title\"\u003e프리미엄 기능\u003c\/h2\u003e\n\u003cdiv class=\"feature-list\"\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e📱\u003c\/span\u003e\n\u003ch3 class=\"feature-title\"\u003e스마트폰 앱 제어\u003c\/h3\u003e\n\u003cp class=\"feature-description\"\u003e직관적인 스마트폰 앱으로 완벽한 제어가 가능합니다. 색상, 밝기, 모드를 즉시 조절하여 완벽한 분위기를 연출하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🌈\u003c\/span\u003e\n\u003ch3 class=\"feature-title\"\u003e다중 색상 모드\u003c\/h3\u003e\n\u003cp class=\"feature-description\"\u003e무수한 색상 조합과 프리셋 모드 중에서 선택하세요. 조절 가능한 단일 색상 또는 다채로운 다중 색상 패턴으로 나만의 분위기를 만드세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🎵\u003c\/span\u003e\n\u003ch3 class=\"feature-title\"\u003e음악 동기화\u003c\/h3\u003e\n\u003cp class=\"feature-description\"\u003e별이 빛나는 하늘 모드를 활성화하고 음악 모드 31-40을 선택하여 좋아하는 음악에 맞춰 춤추는 조명으로 몰입감 있는 시청각 경험을 만드세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e✨\u003c\/span\u003e\n\u003ch3 class=\"feature-title\"\u003e부드럽고 눈에 편안한\u003c\/h3\u003e\n\u003cp class=\"feature-description\"\u003e편안함을 위해 설계된 부드럽고 눈부심 없는 조명. 완벽한 가시성과 안전성을 유지하면서 Tesla 실내 분위기를 향상시킵니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e🔧\u003c\/span\u003e\n\u003ch3 class=\"feature-title\"\u003e플러그 앤 플레이 설치\u003c\/h3\u003e\n\u003cp class=\"feature-description\"\u003e글러브 박스 전원 공급 장치에 직접 연결하여 손쉬운 비파괴 설치. 수정 불필요 - Tesla 보증 유지.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-card\"\u003e\n\u003cspan class=\"feature-icon\"\u003e💡\u003c\/span\u003e\n\u003ch3 class=\"feature-title\"\u003e스마트 맞춤화\u003c\/h3\u003e\n\u003cp class=\"feature-description\"\u003e지능형 조정 기능으로 전통적 한계를 뛰어넘으세요. 스타일과 기분에 맞는 완전히 개인화된 분위기 조명을 만드세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Lighting Modes --\u003e\n\u003cdiv class=\"modes-section\"\u003e\n\u003ch2 class=\"section-title\"\u003e조명 모드\u003c\/h2\u003e\n\u003cdiv class=\"modes-grid\"\u003e\n\u003cdiv class=\"mode-card\"\u003e\n\u003cdiv class=\"mode-icon\"\u003e🎨\u003c\/div\u003e\n\u003ch3 class=\"mode-title\"\u003e다중 색상 모드\u003c\/h3\u003e\n\u003cp class=\"mode-desc\"\u003e사용자 지정 가능한 패턴과 전환이 있는 다이내믹 색상 변화\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"mode-card\"\u003e\n\u003cdiv class=\"mode-icon\"\u003e🎯\u003c\/div\u003e\n\u003ch3 class=\"mode-title\"\u003e단일 색상 모드\u003c\/h3\u003e\n\u003cp class=\"mode-desc\"\u003e부드럽고 조절 가능한 단일 색상 조명으로 집중된 분위기 연출\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"mode-card\"\u003e\n\u003cdiv class=\"mode-icon\"\u003e⚙️\u003c\/div\u003e\n\u003ch3 class=\"mode-title\"\u003e맞춤 모드\u003c\/h3\u003e\n\u003cp class=\"mode-desc\"\u003e무한한 맞춤 옵션으로 개인화된 설정\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Model Selection --\u003e\n\u003cdiv class=\"model-selection\"\u003e\n\u003ch2 style=\"color: white;\" class=\"section-title\"\u003e구성 선택\u003c\/h2\u003e\n\u003cdiv class=\"selection-grid\"\u003e\n\u003cdiv class=\"selection-card\"\u003e\n\u003ch3 class=\"selection-title\"\u003eModel 3 Highland 완전 키트\u003c\/h3\u003e\n\u003cp class=\"selection-features\"\u003e• 대시보드 조명\u003cbr\u003e• 무선 충전\u003cbr\u003e• 센터 콘솔 측면\u003cbr\u003e• 전체 실내 커버리지\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"selection-card\"\u003e\n\u003ch3 class=\"selection-title\"\u003eModel 3 Highland \u0026 New Model Y\u003c\/h3\u003e\n\u003cp class=\"selection-features\"\u003e• 대시보드 조명\u003cbr\u003e• 무선 충전\u003cbr\u003e• 필수 커버리지\u003cbr\u003e• 완벽한 균형\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Installation --\u003e\n\u003cdiv class=\"installation-section\"\u003e\n\u003ch2 class=\"section-title\"\u003e쉬운 설치\u003c\/h2\u003e\n\u003cdiv class=\"installation-content\"\u003e\n\u003cdiv class=\"installation-image\" style=\"text-align: start;\"\u003e\u003cimg alt=\"테슬라 설치 과정\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/DashboardAmbientLightKitsforModel3Highland_NewModelY_7.png?v=1749541318\u0026amp;width=600\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"installation-text\"\u003e\n\u003cdiv class=\"installation-highlight\"\u003e🔌 플러그 앤 플레이 디자인 - 글러브 박스 전원 공급 장치에 연결\u003c\/div\u003e\n\u003cul class=\"installation-features\"\u003e\n\u003cli style=\"text-align: left;\"\u003e\u003cspan style=\"font-size: 1.1rem; background-color: initial;\"\u003e테슬라 기존 전원 공급 장치에 간단히 연결하여 차량 보증을 무효화하지 않고 안전하고 신뢰할 수 있는 작동을 보장합니다.\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Compatibility Section --\u003e\n\u003cdiv class=\"compatibility-section\"\u003e\n\u003ch2 class=\"section-title\"\u003e호환성\u003c\/h2\u003e\n\u003cp style=\"text-align: center; margin-bottom: 30px; color: #e82127; font-weight: 600;\"\u003e⚠️ 중요: 구매 전에 차량 모델을 반드시 확인하세요\u003c\/p\u003e\n\u003cdiv class=\"table-container\"\u003e\n\u003ctable style=\"width: 99.9524%;\" class=\"compatibility-table\"\u003e\n\u003cthead\u003e\n\u003ctr\u003e\n\u003cth style=\"width: 23.7773%;\"\u003e테슬라 모델\u003c\/th\u003e\n\u003cth style=\"width: 22.9913%;\"\u003e연도\u003c\/th\u003e\n\u003cth style=\"width: 29.2795%;\"\u003e호환성\u003c\/th\u003e\n\u003cth style=\"width: 23.9738%;\"\u003e키트 사용 가능\u003c\/th\u003e\n\u003c\/tr\u003e\n\u003c\/thead\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd style=\"width: 23.7773%;\"\u003e\u003cstrong\u003eModel 3 하이랜드\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd style=\"width: 22.9913%;\"\u003e2023.10+\u003c\/td\u003e\n\u003ctd style=\"width: 29.2795%;\"\u003e✅ 완전 호환\u003c\/td\u003e\n\u003ctd style=\"width: 23.9738%;\"\u003eComplete Kit \u0026 Essential Kit\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"width: 23.7773%;\"\u003e\u003cstrong\u003e뉴 모델 Y\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd style=\"width: 22.9913%;\"\u003e2025.3+\u003c\/td\u003e\n\u003ctd style=\"width: 29.2795%;\"\u003e✅ 완전 호환\u003c\/td\u003e\n\u003ctd style=\"width: 23.9738%;\"\u003eEssential Kit 전용\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"width: 23.7773%;\"\u003e\u003cstrong\u003e모델 3 (2017-2023)\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd style=\"width: 22.9913%;\"\u003e2017-2023\u003c\/td\u003e\n\u003ctd style=\"width: 29.2795%;\"\u003e❌ 호환되지 않음\u003c\/td\u003e\n\u003ctd style=\"width: 23.9738%;\"\u003e-\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"width: 23.7773%;\"\u003e\u003cstrong\u003eModel Y (2021-2023)\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd style=\"width: 22.9913%;\"\u003e2020-2023\u003c\/td\u003e\n\u003ctd style=\"width: 29.2795%;\"\u003e❌ 호환되지 않음\u003c\/td\u003e\n\u003ctd style=\"width: 23.9738%;\"\u003e-\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd style=\"width: 23.7773%;\"\u003e\u003cstrong\u003eModel S \u0026 X\u003c\/strong\u003e\u003c\/td\u003e\n\u003ctd style=\"width: 22.9913%;\"\u003e모든 연식\u003c\/td\u003e\n\u003ctd style=\"width: 29.2795%;\"\u003e❌ 호환되지 않음\u003c\/td\u003e\n\u003ctd style=\"width: 23.9738%;\"\u003e-\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-section\"\u003e\n\u003ch2 class=\"section-title\"\u003e자주 묻는 질문\u003c\/h2\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch3 class=\"faq-question\"\u003e주변 조명은 어떻게 제어하나요?\u003c\/h3\u003e\n\u003cp class=\"faq-answer\"\u003e주변 조명은 블루투스를 통해 연결되는 전용 스마트폰 앱으로 제어됩니다. 앱을 통해 색상, 밝기, 모드 조정은 물론 음악과 동기화하여 역동적인 조명 효과를 설정할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch3 class=\"faq-question\"\u003e이 설치가 제 테슬라 보증을 무효화하나요?\u003c\/h3\u003e\n\u003cp class=\"faq-answer\"\u003e아니요, 플러그 앤 플레이 디자인은 테슬라 배선에 어떠한 수정도 없이 글러브 박스 전원 공급 장치에 직접 연결됩니다. 이 비파괴 설치 방식은 차량 보증을 유지합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch3 class=\"faq-question\"\u003eComplete Kit과 Essential Kit의 차이점은 무엇인가요?\u003c\/h3\u003e\n\u003cp class=\"faq-answer\"\u003eComplete Kit(모델 3 하이랜드 전용)에는 대시보드 조명, 무선 충전 구역, 센터 콘솔 측면이 포함되어 있습니다. Essential Kit에는 대시보드 및 무선 충전 구역 조명이 포함되어 있으며, 모델 3 하이랜드와 뉴 모델 Y 모두에 사용할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003ch3 class=\"faq-question\"\u003e음악 동기화는 어떻게 작동하나요?\u003c\/h3\u003e\n\u003cp class=\"faq-answer\"\u003e별이 빛나는 하늘 모드를 선택하고 앱에서 음악 모드 31-40을 선택하세요. 주변 조명이 음악의 리듬과 비트에 자동으로 동기화되어 좋아하는 노래에 반응하는 몰입감 있는 시청각 경험을 제공합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 대시보드 및 무선 충전","offer_id":47409721377000,"sku":"","price":97.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 대시보드 및 무선 충전 및 센터 콘솔 측면","offer_id":47409721409768,"sku":"","price":127.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 하이랜드 \/ 대시보드 및 무선 충전","offer_id":47409721442536,"sku":"T-AL001-A","price":97.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 하이랜드 \/ 대시보드 및 무선 충전 및 센터 콘솔 측면","offer_id":47409721475304,"sku":"T-AL001-B","price":127.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 주니퍼\/ Model YL \/ 대시보드 및 무선 충전","offer_id":47409721508072,"sku":"T-AL001-A","price":97.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/dashboard-ambient-light-kits-for-model-3-highland-new-model-y-138791.png?v=1763369357"},{"product_id":"tesla-model-3-y-venom-style-tail-lights","title":"Model 3\/Y 베놈 스타일 테일 라이트丨스타일리시 업그레이드 | TESERY","description":"\u003c!-- Google Fonts --\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n\u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=DM+Sans:wght@400;500;600\u0026amp;family=Montserrat:wght@700;800\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n\u003cstyle\u003e\n  \/* Strictly isolated scope to prevent affecting Shopify theme *\/\n  .tpd-wrapper {\n    --tpd-primary: #0065b3;\n    --tpd-text-main: #333333;\n    --tpd-text-light: #666666;\n    --tpd-bg-light: #f5f5f5;\n    --tpd-border: #e5e5e5;\n    --tpd-radius-card: 20px;\n    --tpd-radius-img: 18px;\n    --tpd-shadow: 0 8px 24px rgba(0,0,0,0.06);\n    \n    font-family: 'DM Sans', sans-serif;\n    color: var(--tpd-text-main);\n    line-height: 1.85;\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 20px;\n    box-sizing: border-box;\n  }\n  \n  \/* Exclusive media class *\/\n  .tpd-media-el {\n    max-width: 100%;\n    height: auto;\n    display: block;\n    border-radius: var(--tpd-radius-img) !important;\n    margin: 0;\n    padding: 0;\n  }\n\n  .tpd-section {\n    margin-bottom: 80px;\n    width: 100%;\n  }\n  \n  \/* Typography *\/\n  .tpd-hero-title {\n    font-family: 'Montserrat', sans-serif;\n    font-size: 42px;\n    font-weight: 800;\n    text-align: center;\n    margin: 0 0 25px 0;\n    color: var(--tpd-text-main);\n  }\n  .tpd-section-title {\n    font-family: 'Montserrat', sans-serif;\n    font-size: 34px;\n    font-weight: 700;\n    text-align: center;\n    margin: 0 0 15px 0;\n    color: var(--tpd-text-main);\n  }\n  .tpd-section-subtitle {\n    font-size: 16px;\n    color: var(--tpd-text-light);\n    text-align: center;\n    max-width: 640px;\n    margin: 0 auto 40px auto;\n  }\n\n  \/* Navigation (No background) *\/\n  .tpd-nav {\n    display: flex;\n    justify-content: center;\n    gap: 25px;\n    flex-wrap: wrap;\n    margin-bottom: 60px;\n  }\n  .tpd-nav-link {\n    text-decoration: none;\n    color: var(--tpd-text-light);\n    font-size: 14px;\n    font-weight: 600;\n    letter-spacing: 0.06em;\n    padding: 5px 0;\n    transition: color 0.3s ease;\n  }\n  .tpd-nav-link:hover {\n    color: var(--tpd-primary);\n  }\n\n  \/* Product Details Card (Badge \u0026 Tags) *\/\n  .tpd-details-card {\n    background: #ffffff;\n    border-radius: var(--tpd-radius-card);\n    box-shadow: var(--tpd-shadow);\n    border: 1px solid var(--tpd-border);\n    padding: 50px;\n    margin-bottom: 60px;\n  }\n  .tpd-badge {\n    display: inline-block;\n    background: var(--tpd-primary);\n    color: #ffffff;\n    padding: 8px 20px;\n    border-radius: 30px;\n    font-size: 13px;\n    font-weight: 700;\n    text-transform: uppercase;\n    letter-spacing: 0.05em;\n    margin-bottom: 25px;\n  }\n  .tpd-tags-wrap {\n    display: flex;\n    flex-wrap: wrap;\n    gap: 12px;\n    margin-bottom: 30px;\n  }\n  .tpd-tag {\n    background: #f0f4f8;\n    color: var(--tpd-text-main);\n    padding: 8px 18px;\n    border-radius: 20px;\n    font-size: 14px;\n    font-weight: 500;\n  }\n  .tpd-tag-blue {\n    background: #e3f2fd;\n    color: var(--tpd-primary);\n  }\n  .tpd-details-text {\n    font-size: 16px;\n    color: var(--tpd-text-light);\n    line-height: 1.8;\n    margin-bottom: 30px;\n  }\n  \n  \/* Fix for double bullets caused by Shopify themes *\/\n  .tpd-details-list {\n    list-style: none !important;\n    padding: 0 !important;\n    margin: 0;\n  }\n  .tpd-details-list li {\n    list-style: none !important;\n    position: relative;\n    padding-left: 24px;\n    margin-bottom: 15px;\n    font-size: 16px;\n    color: var(--tpd-text-light);\n    line-height: 1.6;\n  }\n  .tpd-details-list li::before {\n    content: '';\n    position: absolute;\n    left: 0;\n    top: 10px;\n    width: 8px;\n    height: 8px;\n    background: var(--tpd-primary);\n    border-radius: 50%;\n  }\n  .tpd-details-list strong {\n    color: var(--tpd-text-main);\n    font-weight: 700;\n  }\n\n  \/* Feature Rows (Staggered Layout) *\/\n  .tpd-features-container {\n    display: flex;\n    flex-direction: column;\n    gap: 40px;\n  }\n  .tpd-feature-row {\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    gap: 40px;\n    background: #ffffff;\n    border-radius: var(--tpd-radius-card);\n    box-shadow: var(--tpd-shadow);\n    padding: 40px;\n    width: 100%;\n    box-sizing: border-box;\n  }\n  .tpd-feature-row:nth-child(even) {\n    flex-direction: row-reverse;\n  }\n  .tpd-feature-img-wrap {\n    width: 50%;\n  }\n  .tpd-feature-text-wrap {\n    width: 50%;\n  }\n  .tpd-feature-title {\n    font-family: 'Montserrat', sans-serif;\n    font-size: 22px;\n    font-weight: 700;\n    margin: 0 0 15px 0;\n    color: var(--tpd-text-main);\n  }\n  .tpd-feature-desc {\n    margin: 0;\n    color: var(--tpd-text-light);\n  }\n\n  \/* Video Showcase *\/\n  .tpd-top-video-wrap {\n    width: 100%;\n    margin: 0 auto;\n    border-radius: var(--tpd-radius-img) !important;\n    box-shadow: var(--tpd-shadow);\n    overflow: hidden;\n    border: 1px solid #000000;\n  }\n  .tpd-top-video-wrap .tpd-media-el {\n    width: 100%;\n  }\n\n  \/* Before \u0026 After *\/\n  .tpd-ba-container {\n    width: 100%;\n    margin: 0 auto;\n    position: relative;\n    border-radius: var(--tpd-radius-img) !important;\n    overflow: hidden;\n    background: transparent;\n    box-shadow: none;\n    padding-top: 56.25%; \/* 16:9 aspect ratio *\/\n  }\n  .tpd-ba-img {\n    position: absolute;\n    top: 0; left: 0; width: 100%; height: 100%;\n    object-fit: cover;\n    border-radius: var(--tpd-radius-img) !important;\n  }\n  .tpd-ba-after {\n    opacity: 0;\n    transition: opacity 0.4s ease;\n    z-index: 2;\n  }\n  .tpd-ba-controls {\n    display: flex;\n    justify-content: center;\n    gap: 20px;\n    margin-top: 25px;\n  }\n  .tpd-ba-btn {\n    background: var(--tpd-bg-light);\n    border: none;\n    padding: 12px 30px;\n    border-radius: 30px;\n    font-family: 'DM Sans', sans-serif;\n    font-size: 15px;\n    font-weight: 600;\n    color: var(--tpd-text-main);\n    cursor: pointer;\n    transition: all 0.3s ease;\n  }\n  .tpd-ba-btn.tpd-active {\n    background: var(--tpd-primary);\n    color: #fff;\n  }\n\n  \/* Comparison Table *\/\n  .tpd-table-wrap {\n    width: 100%;\n    margin: 0 auto;\n    background: #fff;\n    border-radius: var(--tpd-radius-card);\n    box-shadow: var(--tpd-shadow);\n    overflow-x: auto;\n  }\n  .tpd-table {\n    width: 100%;\n    min-width: 600px;\n    border-collapse: collapse;\n    margin: 0;\n  }\n  .tpd-th {\n    background: var(--tpd-primary);\n    color: #fff;\n    padding: 20px;\n    text-align: left;\n    font-family: 'Montserrat', sans-serif;\n    font-weight: 700;\n    border: none;\n  }\n  .tpd-td {\n    padding: 18px 20px;\n    border-bottom: 1px solid var(--tpd-border);\n    color: var(--tpd-text-main);\n  }\n  .tpd-tr:last-child .tpd-td {\n    border-bottom: none;\n  }\n  .tpd-tr:nth-child(even) {\n    background-color: #fafafa;\n  }\n  .tpd-td-upgrade {\n    color: var(--tpd-primary);\n    font-weight: 600;\n  }\n\n  \/* FAQ *\/\n  .tpd-faq-list {\n    width: 100%;\n    margin: 0 auto;\n  }\n  .tpd-faq-item {\n    background: #fff;\n    border: none;\n    box-shadow: var(--tpd-shadow);\n    border-radius: 12px;\n    margin-bottom: 15px;\n    overflow: hidden;\n  }\n  .tpd-faq-summary {\n    padding: 20px;\n    font-size: 16px;\n    font-weight: 600;\n    cursor: pointer;\n    list-style: none;\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    color: var(--tpd-text-main);\n  }\n  .tpd-faq-summary::-webkit-details-marker {\n    display: none;\n  }\n  .tpd-faq-icon {\n    font-size: 24px;\n    line-height: 1;\n    transition: transform 0.3s ease;\n    color: var(--tpd-primary);\n  }\n  .tpd-faq-item[open] .tpd-faq-icon {\n    transform: rotate(45deg);\n  }\n  .tpd-faq-content {\n    padding: 0 20px 20px 20px;\n    color: var(--tpd-text-light);\n  }\n\n  \/* Responsive *\/\n  @media (max-width: 768px) {\n    .tpd-hero-title { font-size: 30px; }\n    .tpd-section-title { font-size: 26px; }\n    \n    .tpd-nav { gap: 15px; }\n    \n    .tpd-details-card {\n      padding: 30px 20px;\n    }\n    \n    \/* 移动端标签并排显示优化 *\/\n    .tpd-badge {\n      padding: 6px 14px;\n      font-size: 11px;\n      margin-bottom: 15px;\n    }\n    .tpd-tags-wrap {\n      gap: 8px; \n      margin-bottom: 20px;\n      display: flex;\n      flex-wrap: wrap; \/* 允许换行，但配合 nowrap 让它们在一行放多个 *\/\n    }\n    .tpd-tag {\n      padding: 6px 12px; \n      font-size: 12px;   \n      white-space: nowrap; \/* 强制文字不换行，实现一行两个 *\/\n      text-align: center;\n    }\n\n    .tpd-feature-row {\n      flex-direction: column !important;\n      padding: 25px;\n      gap: 20px;\n    }\n    .tpd-feature-img-wrap, .tpd-feature-text-wrap {\n      width: 100%;\n    }\n    \n    .tpd-ba-controls {\n      gap: 10px;\n      margin-top: 15px;\n    }\n    .tpd-ba-btn {\n      padding: 10px 15px;\n      font-size: 13px;\n      flex: 1;\n      text-align: center;\n      white-space: nowrap;\n    }\n  }\n\u003c\/style\u003e\n\n\u003cdiv class=\"tpd-wrapper\"\u003e\n  \n  \u003c!-- Title \u0026 Navigation --\u003e\n  \u003cdiv class=\"tpd-section\"\u003e\n    \u003cdiv class=\"tpd-hero-title\"\u003eTesla Model 3\/Y Venom Style 테일라이트\u003c\/div\u003e\n    \n    \u003cdiv class=\"tpd-nav\"\u003e\n      \u003ca class=\"tpd-nav-link\" href=\"#tpd-details\"\u003e상세 정보\u003c\/a\u003e\n      \u003ca class=\"tpd-nav-link\" href=\"#tpd-features\"\u003e특징\u003c\/a\u003e\n      \u003ca class=\"tpd-nav-link\" href=\"#tpd-video\"\u003e쇼케이스\u003c\/a\u003e\n      \u003ca class=\"tpd-nav-link\" href=\"#tpd-compare\"\u003e전후 비교\u003c\/a\u003e\n      \u003ca class=\"tpd-nav-link\" href=\"#tpd-faq\"\u003e자주 묻는 질문\u003c\/a\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Product Details Card --\u003e\n  \u003cdiv id=\"tpd-details\" class=\"tpd-details-card\"\u003e\n    \u003c!-- 精简了 Badge 文字 --\u003e\n    \u003cdiv class=\"tpd-badge\"\u003eVENOM STYLE 업그레이드\u003c\/div\u003e\n    \n    \u003c!-- 精简了 Tag 文字，确保手机上一行能放下两个 --\u003e\n    \u003cdiv class=\"tpd-tags-wrap\"\u003e\n      \u003cspan class=\"tpd-tag tpd-tag-blue\"\u003eModel 3 (21-23)\u003c\/span\u003e\n      \u003cspan class=\"tpd-tag tpd-tag-blue\"\u003eModel Y (21-25)\u003c\/span\u003e\n      \u003cspan class=\"tpd-tag\"\u003e완전 LED\u003c\/span\u003e\n      \u003cspan class=\"tpd-tag\"\u003e순차 신호\u003c\/span\u003e\n      \u003cspan class=\"tpd-tag\"\u003e플러그 앤 플레이\u003c\/span\u003e\n    \u003c\/div\u003e\n    \n    \u003cdiv class=\"tpd-details-text\"\u003e\n      이 Venom Style 업그레이드는 공장 순정 테일라이트를 완벽하게 대체하도록 제작되어 공장 장착 상태를 유지하면서 현대 슈퍼카 스타일에서 영감을 받은 인상적이고 공격적인 미학을 더합니다. 설치 시 기존 장착 지점과 배선을 재사용하며 절단이나 차량에 영구적인 변경이 없습니다.\n    \u003c\/div\u003e\n    \n    \u003cul class=\"tpd-details-list\"\u003e\n      \u003cli\u003e\n\u003cstrong\u003eOEM 등급 장착:\u003c\/strong\u003e 완벽한 패널 간격과 원래 등급의 밀봉으로 시간이 지나도 김서림 방지.\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e완전 LED 조명 시스템:\u003c\/strong\u003e 주행등, 방향지시등, 브레이크등, 후진등을 포함한 완전한 LED 업그레이드.\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e역동적 순차 방향지시등:\u003c\/strong\u003e 선명한 호박색 빛이 부드럽게 스윕되어 다른 운전자에게 명확한 방향 신호를 제공합니다.\u003c\/li\u003e\n      \u003cli\u003e\n\u003cstrong\u003e고강도 출력:\u003c\/strong\u003e 브레이크 및 악천후 시 최대 안전을 위한 즉각적인 고강도 빨간 조명.\u003c\/li\u003e\n    \u003c\/ul\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Feature Showcase (图文交错功能展示 - 原来3个 + 新加2个 = 5个) --\u003e\n  \u003cdiv id=\"tpd-features\" class=\"tpd-section\"\u003e\n    \u003cdiv class=\"tpd-section-title\" style=\"margin-bottom: 40px;\"\u003e주요 특징\u003c\/div\u003e\n    \n    \u003cdiv class=\"tpd-features-container\"\u003e\n      \n      \u003c!-- 卖点 1: 原来的 (左图右文) --\u003e\n      \u003cdiv class=\"tpd-feature-row\"\u003e\n        \u003cdiv class=\"tpd-feature-img-wrap\"\u003e\n          \u003cimg class=\"tpd-media-el\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/Tesla_Model_3Y_Venom_Style_Tail_Lights_17.jpg?v=1757558197\u0026amp;width=713\" alt=\"첨단 LED 기술\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-feature-text-wrap\"\u003e\n          \u003cdiv class=\"tpd-feature-title\"\u003e완전 LED 조명 시스템\u003c\/div\u003e\n          \u003cdiv class=\"tpd-feature-desc\"\u003e주행등, 방향지시등, 브레이크등, 후진등을 포함한 완전한 LED 업그레이드입니다. 우수한 가시성과 현대적인 미학을 제공하면서도 우아한 테슬라 디자인 언어를 유지하도록 설계되었습니다.\u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003c!-- 卖点 2: 原来的 (右图左文) --\u003e\n      \u003cdiv class=\"tpd-feature-row\"\u003e\n        \u003cdiv class=\"tpd-feature-img-wrap\"\u003e\n          \u003cimg class=\"tpd-media-el\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesla-model-3y-venom-style-tail-lights-stylish-upgrade-3133510.jpg?v=1757608047\u0026amp;width=600\" alt=\"주행등\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-feature-text-wrap\"\u003e\n          \u003cdiv class=\"tpd-feature-title\"\u003e우아한 주행등\u003c\/div\u003e\n          \u003cdiv class=\"tpd-feature-desc\"\u003e슬림한 LED 스트립 디자인이 일관되고 밝은 조명을 제공하여 주간 가시성을 높입니다. 즉시 테슬라에 더 공격적이고 고급스러운 외관을 부여합니다.\u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003c!-- 卖点 3: 原来的 (左图右文) --\u003e\n      \u003cdiv class=\"tpd-feature-row\"\u003e\n        \u003cdiv class=\"tpd-feature-img-wrap\"\u003e\n          \u003cimg class=\"tpd-media-el\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesla-model-3y-venom-style-tail-lights-stylish-upgrade-4587510.jpg?v=1757608047\u0026amp;width=600\" alt=\"방향지시등\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-feature-text-wrap\"\u003e\n          \u003cdiv class=\"tpd-feature-title\"\u003e역동적 순차 방향지시등\u003c\/div\u003e\n          \u003cdiv class=\"tpd-feature-desc\"\u003e역동적인 순차 LED 방향지시등으로 돋보이세요. 선명한 호박색 빛이 부드럽게 스윕되어 다른 운전자에게 명확한 방향 신호를 제공하며 안전성을 크게 향상시킵니다.\u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003c!-- 卖点 4: 新加的刹车灯 (右图左文) --\u003e\n      \u003cdiv class=\"tpd-feature-row\"\u003e\n        \u003cdiv class=\"tpd-feature-img-wrap\"\u003e\n          \u003cimg class=\"tpd-media-el\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesla-model-3y-venom-style-tail-lights-stylish-upgrade-7649029.jpg?v=1757608047\u0026amp;width=713\" alt=\"고강도 브레이크등\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-feature-text-wrap\"\u003e\n          \u003cdiv class=\"tpd-feature-title\"\u003e고강도 브레이크등\u003c\/div\u003e\n          \u003cdiv class=\"tpd-feature-desc\"\u003e브레이크를 밟을 때 즉시 고강도 빨간 불빛이 점등됩니다. 이 빠른 반응 시간과 뛰어난 밝기는 뒤따르는 차량에 즉각적으로 경고를 전달하여 운전 안전성을 극대화합니다.\u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n      \u003c!-- 卖点 5: 新加的雾灯\/倒车灯 (左图右文) --\u003e\n      \u003cdiv class=\"tpd-feature-row\"\u003e\n        \u003cdiv class=\"tpd-feature-img-wrap\"\u003e\n          \u003cimg class=\"tpd-media-el\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/tesla-model-3y-venom-style-tail-lights-stylish-upgrade-6795525.jpg?v=1757608048\u0026amp;width=713\" alt=\"후진등 및 안개등\"\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"tpd-feature-text-wrap\"\u003e\n          \u003cdiv class=\"tpd-feature-title\"\u003e초고휘도 후진 및 안개등\u003c\/div\u003e\n          \u003cdiv class=\"tpd-feature-desc\"\u003e업그레이드된 고강도 LED 후진 및 안개등은 가시성이 낮은 조건에서 탁월한 조명을 제공합니다. 짙은 안개 속을 주행하거나 야간 후진 시에도 최대 안전과 선명한 시야를 보장합니다.\u003c\/div\u003e\n        \u003c\/div\u003e\n      \u003c\/div\u003e\n\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Video Showcase --\u003e\n  \u003cdiv id=\"tpd-video\" class=\"tpd-section\"\u003e\n    \u003cdiv class=\"tpd-section-title\"\u003e비디오 쇼케이스\u003c\/div\u003e\n    \u003cdiv class=\"tpd-section-subtitle\"\u003e다이내믹 조명 효과를 직접 경험해 보세요.\u003c\/div\u003e\n    \u003cdiv class=\"tpd-top-video-wrap\"\u003e\n      \u003cvideo class=\"tpd-media-el\" playsinline loop muted autoplay controls\u003e\n        \u003csource type=\"video\/mp4\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/videos\/c\/vp\/94cead184f154af097258f0210a0f7f7\/94cead184f154af097258f0210a0f7f7.SD-480p-1.5Mbps-50882873.mp4?v=0\"\u003e\u003c\/video\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Before \u0026 After --\u003e\n  \u003cdiv id=\"tpd-compare\" class=\"tpd-section\"\u003e\n    \u003cdiv class=\"tpd-section-title\"\u003e설치 전후\u003c\/div\u003e\n    \u003cdiv class=\"tpd-section-subtitle\"\u003e베놈 스타일 업그레이드가 만드는 극적인 변화를 확인하세요.\u003c\/div\u003e\n    \n    \u003cdiv class=\"tpd-ba-container\"\u003e\n      \u003cimg class=\"tpd-ba-img\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/Tesla_Model_3Y_Venom_Style_Tail_Lights_20.jpg?v=1757398332\u0026amp;width=713\" alt=\"업그레이드 전 - 기존 테일라이트\"\u003e\n      \u003cimg class=\"tpd-ba-img tpd-ba-after\" id=\"tpd-ba-after-img\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/Tesla_Model_3Y_Venom_Style_Tail_Lights_21.jpg?v=1757398332\u0026amp;width=713\" alt=\"업그레이드 후 - 베놈 스타일\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"tpd-ba-controls\"\u003e\n      \u003cbutton class=\"tpd-ba-btn tpd-active\" id=\"tpd-btn-before\"\u003e기존 (업그레이드 전)\u003c\/button\u003e\n      \u003cbutton class=\"tpd-ba-btn\" id=\"tpd-btn-after\"\u003e베놈 스타일 (업그레이드 후)\u003c\/button\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- Comparison Table --\u003e\n  \u003cdiv class=\"tpd-section\"\u003e\n    \u003cdiv class=\"tpd-section-title\"\u003e제품 비교\u003c\/div\u003e\n    \u003cdiv class=\"tpd-table-wrap\"\u003e\n      \u003ctable class=\"tpd-table\"\u003e\n        \u003cthead\u003e\n          \u003ctr class=\"tpd-tr\"\u003e\n            \u003cth class=\"tpd-th\"\u003e특징\u003c\/th\u003e\n            \u003cth class=\"tpd-th\"\u003e베놈 스타일 업그레이드\u003c\/th\u003e\n            \u003cth class=\"tpd-th\"\u003e기존 구형 스타일\u003c\/th\u003e\n          \u003c\/tr\u003e\n        \u003c\/thead\u003e\n        \u003ctbody\u003e\n          \u003ctr class=\"tpd-tr\"\u003e\n            \u003ctd class=\"tpd-td\"\u003e\u003cstrong\u003e외관\u003c\/strong\u003e\u003c\/td\u003e\n            \u003ctd class=\"tpd-td tpd-td-upgrade\"\u003e고휘도 \u0026 우아한 LED 광원\u003c\/td\u003e\n            \u003ctd class=\"tpd-td\"\u003e저사양 할로겐 라이트는 너무 평범함\u003c\/td\u003e\n          \u003c\/tr\u003e\n          \u003ctr class=\"tpd-tr\"\u003e\n            \u003ctd class=\"tpd-td\"\u003e\u003cstrong\u003e주행등\u003c\/strong\u003e\u003c\/td\u003e\n            \u003ctd class=\"tpd-td tpd-td-upgrade\"\u003eLED 주간 주행등\u003c\/td\u003e\n            \u003ctd class=\"tpd-td\"\u003e저사양 할로겐 라이트\u003c\/td\u003e\n          \u003c\/tr\u003e\n          \u003ctr class=\"tpd-tr\"\u003e\n            \u003ctd class=\"tpd-td\"\u003e\u003cstrong\u003e방향지시등\u003c\/strong\u003e\u003c\/td\u003e\n            \u003ctd class=\"tpd-td tpd-td-upgrade\"\u003e다이내믹 LED 방향지시등\u003c\/td\u003e\n            \u003ctd class=\"tpd-td\"\u003e저사양 할로겐 라이트\u003c\/td\u003e\n          \u003c\/tr\u003e\n          \u003ctr class=\"tpd-tr\"\u003e\n            \u003ctd class=\"tpd-td\"\u003e\u003cstrong\u003e브레이크등\u003c\/strong\u003e\u003c\/td\u003e\n            \u003ctd class=\"tpd-td tpd-td-upgrade\"\u003e고강도 LED 브레이크등\u003c\/td\u003e\n            \u003ctd class=\"tpd-td\"\u003e저사양 할로겐 라이트\u003c\/td\u003e\n          \u003c\/tr\u003e\n          \u003ctr class=\"tpd-tr\"\u003e\n            \u003ctd class=\"tpd-td\"\u003e\u003cstrong\u003e후진\/안개등\u003c\/strong\u003e\u003c\/td\u003e\n            \u003ctd class=\"tpd-td tpd-td-upgrade\"\u003e밝은 LED 후진등\u003c\/td\u003e\n            \u003ctd class=\"tpd-td\"\u003e저사양 할로겐 라이트\u003c\/td\u003e\n          \u003c\/tr\u003e\n        \u003c\/tbody\u003e\n      \u003c\/table\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003c!-- FAQ --\u003e\n  \u003cdiv id=\"tpd-faq\" class=\"tpd-section\"\u003e\n    \u003cdiv class=\"tpd-section-title\"\u003e자주 묻는 질문\u003c\/div\u003e\n    \u003cdiv class=\"tpd-faq-list\"\u003e\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003e어떤 Tesla 모델이 이 테일라이트와 호환되나요? \u003cspan class=\"tpd-faq-icon\"\u003e+\u003c\/span\u003e\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e이 베놈 스타일 테일라이트는 Tesla Model 3 (2021-2023년) 및 Tesla Model Y (2021-2025.3년)와 완벽하게 호환됩니다.\u003c\/div\u003e\n      \u003c\/details\u003e\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003e설치가 차량 보증을 무효화하나요? \u003cspan class=\"tpd-faq-icon\"\u003e+\u003c\/span\u003e\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e아니요, 그렇지 않습니다. 이 업그레이드는 비파괴적입니다. 플러그 앤 플레이 설치는 배선 절단이 필요 없으며 직접 연결기를 사용하여 원래 기능과 보증을 유지합니다.\u003c\/div\u003e\n      \u003c\/details\u003e\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003e이 업그레이드에는 어떤 조명 기능이 포함되어 있나요? \u003cspan class=\"tpd-faq-icon\"\u003e+\u003c\/span\u003e\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e이 제품은 완전한 풀 LED 조명 시스템 업그레이드입니다. 우아한 주간 주행등, 다이내믹 시퀀셜 방향지시등, 고강도 브레이크등, 밝은 후진\/안개등이 포함되어 있습니다.\u003c\/div\u003e\n      \u003c\/details\u003e\n      \u003cdetails class=\"tpd-faq-item\"\u003e\n        \u003csummary class=\"tpd-faq-summary\"\u003e설치를 위해 전문가를 고용해야 하나요? \u003cspan class=\"tpd-faq-icon\"\u003e+\u003c\/span\u003e\u003c\/summary\u003e\n        \u003cdiv class=\"tpd-faq-content\"\u003e이 조명은 기본 도구와 경험이 있는 분들이 직접 설치할 수 있도록 플러그 앤 플레이 디자인을 특징으로 하지만, 완벽한 정렬과 안전한 연결을 위해 항상 전문가의 설치를 권장합니다.\u003c\/div\u003e\n      \u003c\/details\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003c!-- Interactive Scripts --\u003e\n\u003cscript\u003e\n  (function() {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      \n      \/\/ Before \u0026 After Toggle Logic\n      var btnBefore = document.getElementById(\"tpd-btn-before\");\n      var btnAfter = document.getElementById(\"tpd-btn-after\");\n      var imgAfter = document.getElementById(\"tpd-ba-after-img\");\n\n      if(btnBefore \u0026\u0026 btnAfter \u0026\u0026 imgAfter) {\n        btnBefore.addEventListener(\"click\", function() {\n          imgAfter.style.opacity = \"0\";\n          btnBefore.classList.add(\"tpd-active\");\n          btnAfter.classList.remove(\"tpd-active\");\n        });\n\n        btnAfter.addEventListener(\"click\", function() {\n          imgAfter.style.opacity = \"1\";\n          btnAfter.classList.add(\"tpd-active\");\n          btnBefore.classList.remove(\"tpd-active\");\n        });\n      }\n\n    });\n  })();\n\u003c\/script\u003e\n\n\u003c!-- FAQ Schema JSON-LD --\u003e\n\u003cscript type=\"application\/ld+json\"\u003e\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"FAQPage\",\n  \"mainEntity\": [\n    {\n      \"@type\": \"Question\",\n      \"name\": \"Which Tesla models are compatible with these tail lights?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"These Venom Style Tail Lights are perfectly compatible with Tesla Model 3 (years 2021-2023) and Tesla Model Y (years 2021-2025.3).\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"Will the installation void my vehicle's warranty?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"No, it will not. This is a non-destructive upgrade. The plug-and-play installation requires no wire cutting and utilizes direct connectors, preserving your original functionality and warranty.\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"What lighting functions are included in this upgrade?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"This is a complete full LED lighting system upgrade. It includes elegant running lights, dynamic sequential turn signals, high-intensity brake lights, and bright reverse\/fog lights.\"\n      }\n    },\n    {\n      \"@type\": \"Question\",\n      \"name\": \"Do I need to hire a professional for installation?\",\n      \"acceptedAnswer\": {\n        \"@type\": \"Answer\",\n        \"text\": \"While the lights feature a plug-and-play design that makes DIY installation possible for those with basic tools and experience, we always recommend professional installation to ensure perfect alignment and secure connections.\"\n      }\n    }\n  ]\n}\n\u003c\/script\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 프리몬트\/텍사스 기가","offer_id":47417540018408,"sku":"","price":559.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 베를린 기가","offer_id":47529500737768,"sku":null,"price":559.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 상하이 기가","offer_id":47529500770536,"sku":null,"price":559.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2020-2023.10 \/ 프리몬트\/텍사스 기가","offer_id":47417540051176,"sku":"TTL002-US","price":559.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2020-2023.10 \/ 베를린 기가","offer_id":47529500803304,"sku":"TTL002-EU","price":559.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 2020-2023.10 \/ 상하이 기가","offer_id":47529500836072,"sku":"TTL002-CN","price":559.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2021-2025.3 \/ 프리몬트\/텍사스 기가","offer_id":47417540083944,"sku":"TTL002-US","price":559.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2021-2025.3 \/ 베를린 기가","offer_id":47529500868840,"sku":"TTL002-EU","price":559.0,"currency_code":"USD","in_stock":true},{"title":"Model Y 2021-2025.3 \/ 상하이 기가","offer_id":47529500901608,"sku":"TTL002-CN","price":559.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/tesla-model-3y-venom-style-tail-lights-stylish-upgrade-3744869.jpg?v=1757455965"},{"product_id":"model-3-y-bsd-blind-spot-monitor-ambient-lighting","title":"TESERY 뉴로라이트丨모델 3\/Y 대시보드 RGB 조명 통합 BSD 시스템 포함","description":"TESERY NeuroLight - 모델 3\/Y 대시보드 RGB 라이트=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eTESERY NeuroLight - Model 3\/Y Dashboard RGB Lights\u003c\/title\u003e\n    \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n    \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic\" crossorigin\u003e\n    \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Orbitron:wght@700;900\u0026amp;family=Exo+2:wght@700;800\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n    \u003cstyle\u003e\n        :root {\n            --primary-color: #000;\n            --dark-text: #333;\n            --light-text: #666;\n            --light-border: #e0e0e0; \n            --hover-border: #000;\n            --hover-text: #000; \n            --light-bg: #f7f7f7;\n            --white-bg: #ffffff;\n            --accent-color: #04d8cd;\n        }\n\n        * {\n            box-sizing: border-box;\n        }\n\n        body {\n            margin: 0;\n            padding: 0;\n            font-family: 'Arial', sans-serif;\n        }\n\n        .hero-section-interactive {\n            display: flex;\n            align-items: center;\n            margin: 20px 0 60px;\n        }\n\n        .hero-video-column {\n            flex: 1 1 58%;\n            min-width: 0;\n            position: relative;\n            z-index: 5;\n        }\n        \n        .hero-video-wrapper {\n            position: relative;\n            width: 100%;\n            aspect-ratio: 1 \/ 1;\n            border-radius: 16px;\n            overflow: hidden;\n            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);\n        }\n\n        .hero-video-wrapper iframe {\n            position: absolute;\n            top: 50%;\n            left: 50%;\n            width: 177.78%; \n            height: 100%;\n            transform: translate(-50%, -50%);\n            pointer-events: none;\n        }\n\n        .hero-text-column {\n            flex: 1 1 42%;\n            min-width: 0;\n            position: relative;\n            z-index: 10;\n            margin-left: -80px; \n        }\n\n        .hero-text-card {\n            background-color: rgba(255, 255, 255, 0.85);\n            backdrop-filter: blur(12px);\n            -webkit-backdrop-filter: blur(12px);\n            border-radius: 12px;\n            padding: 25px;\n            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);\n            border: 1px solid rgba(255, 255, 255, 0.2);\n            transform: translateY(-10px) rotate(-2deg); \n            transform-origin: bottom left;\n        }\n        \n        .brand-logo {\n            font-family: 'Exo 2', sans-serif;\n            font-size: 36px;\n            font-weight: 800;\n            text-align: left;\n            margin: 0 0 10px;\n            background: linear-gradient(135deg, #c2185b 0%, #d32f2f 15%, #f57c00 30%, #fbc02d 45%, #388e3c 60%, #1976d2 75%, #512da8 90%, #c2185b 100%);\n            background-size: 200% auto;\n            -webkit-background-clip: text;\n            -webkit-text-fill-color: transparent;\n            background-clip: text;\n            animation: gradientShift 5s ease-in-out infinite;\n            letter-spacing: 1px;\n        }\n        \n        .hero-text-card h2 {\n            text-align: left;\n            margin-top: 0;\n            margin-bottom: 15px;\n            font-size: 22px;\n            line-height: 1.3;\n            color: var(--dark-text);\n        }\n        \n        .hero-text-card .product-subtitle-wrapper { text-align: left; margin-bottom: 15px; }\n        .hero-text-card .product-tags { justify-content: flex-start; margin-bottom: 20px; }\n\n        .product-highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 15px; }\n        .highlight-item { \n            background-color: rgba(0, 0, 0, 0.04); \n            padding: 12px; \n            display: flex; \n            align-items: center; \n            gap: 12px; \n            border-radius: 8px;\n            min-height: 85px;\n        }\n        .highlight-item .icon { width: 28px; height: 28px; color: var(--dark-text); flex-shrink: 0; }\n        .highlight-item .text-content { display: flex; flex-direction: column; gap: 2px; text-align: left; }\n        .highlight-item .text-content strong { font-size: 14px; font-weight: 700; color: var(--dark-text); line-height: 1.2; }\n        .highlight-item .text-content span { font-size: 12px; color: var(--light-text); line-height: 1.2; }\n        .highlight-item .support-icons { display: flex; gap: 8px; flex-shrink: 0; }\n        .highlight-item .icon-shape { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }\n        .highlight-item .icon-shape svg { width: 18px; height: 18px; fill: white; }\n        .icon-video { background: linear-gradient(135deg, #ff0080, #ff4466); }\n        .icon-manual { background: linear-gradient(135deg, #00bfff, #0099ff); }\n\n\n        @keyframes gradientShift {\n            0%, 100% { background-position: 0% center; }\n            50% { background-position: 100% center; }\n        }\n\n        .tesery-product-description-container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 20px;\n            color: var(--dark-text);\n            line-height: 1.6;\n        }\n        \n        .product-subtitle-wrapper { text-align: center; margin-bottom: 25px; }\n        .product-tags { text-align: center; margin-bottom: 30px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }\n        .product-tags .tag { padding: 5px 10px; background-color: var(--light-bg); border: 1px solid var(--light-border); border-radius: 6px; font-size: 14px; }\n        .tesery-product-description-container h3 { font-size: 36px; margin-top: 60px; margin-bottom: 15px; text-align: center; }\n        .section-intro {\n            text-align: center;\n            font-size: 17px;\n            line-height: 1.8;\n            margin-bottom: 50px;\n            padding: 0px 50px 30px;\n            color: #555;\n            max-width: 900px;\n            margin-left: auto;\n            margin-right: auto;\n            position: relative;\n        }\n        .section-intro::after {\n            content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px;\n            background: linear-gradient(90deg, #c2185b 0%, #f57c00 25%, #fbc02d 50%, #1976d2 75%, #512da8 100%);\n            background-size: 200% auto; animation: gradientShift 5s ease-in-out infinite; border-radius: 2px;\n        }\n\n        .tesery-product-description-container h4 { font-size: 20px; margin-bottom: 10px; }\n        .tesery-product-description-container p { font-size: 16px; line-height: 1.6; margin-bottom: 15px; }\n        .youtube-video-container-bottom { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; border-radius: 12px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); margin-top: 25px; margin-bottom: 25px; }\n        .youtube-video-container-bottom iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }\n        .features-section { margin-top: 60px; margin-bottom: 40px; }\n        .features-list { margin-top: 40px; }\n        .feature-item { display: flex; margin-bottom: 40px; gap: 40px; align-items: center; padding: 30px; border-radius: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease; background-color: var(--white-bg); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }\n        .feature-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); }\n        .feature-item.reverse { flex-direction: row-reverse; }\n        .feature-image { flex: 1; aspect-ratio: 1\/1; border-radius: 12px; overflow: hidden; max-width: 50%; transform: translateZ(0); }\n        .feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; border-radius: 12px; }\n        .feature-item:hover .feature-image img { transform: scale(1.05); }\n        .feature-content { flex: 1; padding: 0 15px; max-width: 50%; }\n        .feature-divider { width: 60px; height: 3px; background-color: var(--primary-color); margin-bottom: 15px; }\n        .feature-tags-container { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }\n        .feature-tag { \n            padding: 4px 12px; \n            border-radius: 15px; \n            font-size: 12px; \n            font-weight: 600; \n            color: white; \n            box-shadow: 0 2px 6px rgba(0,0,0,0.15);\n            background-color: #0065b3;\n        }\n        .specs-container { margin: 0 auto 40px; padding: 30px; background-color: var(--white-bg); border-radius: 12px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }\n        .spec-item { padding: 15px 0; border-bottom: 1px solid var(--light-border); }\n        .spec-item:last-child { border-bottom: none; }\n        .spec-item strong { color: var(--primary-color); }\n        .package-image-container { margin: 30px auto 40px; border-radius: 12px; overflow: hidden; transform: translateZ(0); }\n        .package-image-container img { width: 100%; display: block; border-radius: 12px; }\n        .product-showcase { display: flex; justify-content: center; gap: 30px; margin: 40px auto; }\n        .showcase-item { flex: 1; max-width: 500px; transition: transform 0.3s ease, box-shadow 0.3s ease; }\n        .showcase-item:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12); border-radius: 12px; }\n        .showcase-image { width: 100%; line-height: 0; }\n        .showcase-image img { width: 100%; height: auto; display: block; border: 1px dashed #000000; border-radius: 12px; }\n        .faq-section { margin-top: 50px; margin-bottom: 40px; padding: 0 20px; }\n        .faq-item { margin-bottom: 10px; border: 1px solid var(--light-border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.3s ease, border-color 0.2s ease; }\n        .faq-item:hover { box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05); border-color: var(--hover-border); }\n        .faq-toggle { display: none; }\n        .faq-question { padding: 15px 20px; cursor: pointer; font-size: 17px; display: flex; justify-content: space-between; align-items: center; user-select: none; }\n        .faq-question::after { content: '+'; font-size: 20px; transition: transform 0.3s ease; }\n        .faq-toggle:checked + .faq-question::after { content: '−'; }\n        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out; }\n        .faq-toggle:checked ~ .faq-answer { max-height: 1000px; padding: 15px 20px; border-top: 1px solid var(--light-border); }\n        .faq-answer p { font-size: 15px; color: #555; margin-bottom: 0; }\n        .product-badge { display: inline-block; padding: 8px 20px; background: linear-gradient(135deg, #c2185b, #d32f2f, #f57c00, #1976d2, #512da8); background-size: 200% auto; animation: gradientShift 5s ease-in-out infinite; color: white; font-weight: 700; font-size: 14px; border-radius: 25px; text-transform: uppercase; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }\n        .section-title-wrapper { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 25px; }\n        .icon-base-style { width: 55px; height: 55px; background: linear-gradient(135deg, #1a1a1a, #000000); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); position: relative; }\n        .icon-base-style::before { content: ''; position: absolute; inset: -2px; background: linear-gradient(135deg, #c2185b, #f57c00, #1976d2, #512da8); border-radius: 16px; z-index: -1; opacity: 0.5; filter: blur(10px); }\n        .neuro-icon { color: white; font-weight: 800; font-size: 28px; }\n        .installation-section-dark { background: linear-gradient(135deg, #1a1a1a, #000000); border-radius: 16px; padding: 50px 40px; margin: 60px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }\n        .installation-section-dark h3 { color: #ffffff; margin-top: 0; }\n        .install-icon { color: white; }\n        .install-icon svg { width: 30px; height: 30px; fill: currentColor; }\n        .installation-gallery-section { margin-top: 30px; margin-bottom: 0; }\n        .gallery-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }\n        .gallery-item { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }\n        .gallery-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }\n        .gallery-item a { display: block; line-height: 0; cursor: pointer; } \n        .gallery-item img { width: 100%; display: block; aspect-ratio: 1 \/ 1.25; object-fit: cover; border-radius: 12px; transition: transform 0.3s ease; }\n        .gallery-item:hover img { transform: scale(1.05); }\n        .page-number { position: absolute; bottom: 10px; right: 10px; background-color: rgba(0, 0, 0, 0.6); color: white; padding: 4px 10px; border-radius: 15px; font-size: 12px; backdrop-filter: blur(5px); pointer-events: none; }\n        .brand-footer { margin-top: 80px; padding: 50px 20px 30px; background: linear-gradient(135deg, #fafafa, #ffffff); border-top: 3px solid transparent; border-image: linear-gradient(90deg, #c2185b, #f57c00, #fbc02d, #1976d2, #512da8); border-image-slice: 1; text-align: center; }\n        .brand-footer-logo { font-family: 'Orbitron', sans-serif; font-size: 36px; background: linear-gradient(135deg, #c2185b, #d32f2f, #f57c00, #fbc02d, #388e3c, #1976d2, #512da8); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: gradientShift 5s ease-in-out infinite; margin-bottom: 10px; }\n        .brand-tagline { font-size: 16px; color: #666; margin-bottom: 30px; font-style: italic; }\n        .social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }\n        .social-icon { width: 45px; height: 45px; border-radius: 50%; background: #000; display: inline-flex; align-items: center; justify-content: center; transition: transform 0.3s ease, background 0.3s ease; }\n        .social-icon:hover { transform: translateY(-3px); background: linear-gradient(135deg, #ff0080, #8a2be2); }\n        .social-icon svg { width: 22px; height: 22px; fill: white; }\n        .copyright { font-size: 13px; color: #999; margin-top: 20px; padding-top: 20px; border-top: 1px solid #e0e0e0; }\n        .tesery-dynamic-lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); display: flex; justify-content: center; align-items: center; z-index: 99999; cursor: pointer; }\n        .tesery-dynamic-lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; cursor: default; }\n        .tesery-dynamic-lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; font-family: 'Arial', sans-serif; line-height: 1; }\n        \n        @media (max-width: 992px) {\n            .hero-section-interactive { flex-direction: column; margin-bottom: 40px; }\n            .hero-video-column, .hero-text-column { width: 100%; flex-basis: auto; }\n            .hero-text-column { margin-left: 0; margin-top: -60px; width: 90%; }\n            .hero-text-card { transform: translateY(0) rotate(0deg); }\n        }\n\n        @media (max-width: 768px) {\n            .brand-logo { font-size: 32px; }\n            .hero-text-card h2 { font-size: 20px; }\n            .tesery-product-description-container { padding: 10px; overflow-x: hidden; }\n            .section-intro { padding: 0 25px 25px; font-size: 15px; }\n            .tesery-product-description-container h3 { font-size: 26px; }\n            .feature-item, .feature-item.reverse { flex-direction: column; align-items: stretch; }\n            .feature-image, .feature-content { max-width: 100%; padding: 0; }\n            .product-showcase { flex-direction: column; }\n            .product-highlights-grid { grid-template-columns: 1fr; }\n            .installation-section-dark { padding: 40px 20px; }\n            .gallery-container { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 15px; padding: 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }\n            .gallery-container::-webkit-scrollbar { display: none; }\n            .gallery-item { flex: 0 0 85%; scroll-snap-align: center; }\n        }\n    \u003c\/style\u003e\n\n\n\n    \u003cdiv class=\"tesery-product-description-container\"\u003e\n\n        \u003cdiv class=\"hero-section-interactive\"\u003e\n            \n            \u003cdiv class=\"hero-video-column\"\u003e\n                \u003cdiv class=\"hero-video-wrapper\"\u003e\n                    \u003ciframe src=\"https:\/\/www.youtube.com\/embed\/QUk6DfZR20Q?autoplay=1\u0026amp;mute=1\u0026amp;loop=1\u0026amp;playlist=QUk6DfZR20Q\u0026amp;controls=0\u0026amp;showinfo=0\u0026amp;rel=0\" title=\"TESERY NeuroLight Product Showcase\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen\u003e\n                    \u003c\/iframe\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n\n            \u003cdiv class=\"hero-text-column\"\u003e\n                \u003cdiv class=\"hero-text-card\"\u003e\n                    \u003cdiv class=\"brand-logo\"\u003eTESERY NeuroLight\u003c\/div\u003e\n                    \u003ch2\u003e모델 3\/Y 대시보드 RGB 라이트 및 통합 BSD 시스템\u003c\/h2\u003e\n                    \u003cdiv class=\"product-subtitle-wrapper\"\u003e\u003cspan class=\"product-badge\"\u003eNeuroLight 시리즈 • 공식 TESERY 제품\u003c\/span\u003e\u003c\/div\u003e\n                    \u003cdiv class=\"product-tags\"\u003e\n                        \u003cspan class=\"tag\"\u003e모델 3\/Y\u003c\/span\u003e\u003cspan class=\"tag\"\u003eOEM 화면 제어\u003c\/span\u003e\u003cspan class=\"tag\"\u003e플러그 앤 플레이\u003c\/span\u003e\u003cspan class=\"tag\"\u003eRGB 사용자 설정 가능\u003c\/span\u003e\n                    \u003c\/div\u003e\n                    \n                    \u003cdiv class=\"product-highlights-grid\"\u003e\n                        \u003cdiv class=\"highlight-item\"\u003e\n                            \u003cdiv class=\"icon\"\u003e\u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"\u003e\u003cpath d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\u003c\/div\u003e\n                            \u003cdiv class=\"text-content\"\u003e\n                                \u003cstrong\u003e1년 보증\u003c\/strong\u003e\n                                \u003cspan\u003e포함된 보장\u003c\/span\u003e\n                            \u003c\/div\u003e\n                        \u003c\/div\u003e\n                        \u003cdiv class=\"highlight-item\"\u003e\n                            \u003cdiv class=\"icon\"\u003e\u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" fill=\"currentColor\"\u003e\u003cpolygon points=\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\"\u003e\u003c\/polygon\u003e\u003c\/svg\u003e\u003c\/div\u003e\n                            \u003cdiv class=\"text-content\"\u003e\n                                \u003cstrong\u003e4.9\/5 별점\u003c\/strong\u003e\u003cspan\u003e고객 평가\u003c\/span\u003e\n                            \u003c\/div\u003e\n                        \u003c\/div\u003e\n                        \u003cdiv class=\"highlight-item\"\u003e\n                            \u003cdiv class=\"icon\"\u003e\n                                \u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\u003e\n                                    \u003cpath d=\"M18 8V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v4\"\u003e\u003c\/path\u003e\n                                    \u003cpath d=\"M6 8h12v12a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V8z\"\u003e\u003c\/path\u003e\n                                    \u003cline x1=\"12\" y1=\"12\" x2=\"12\" y2=\"18\"\u003e\u003c\/line\u003e\n                                \u003c\/svg\u003e\n                            \u003c\/div\u003e\n                            \u003cdiv class=\"text-content\"\u003e\n                                \u003cstrong\u003e플러그 앤 플레이\u003c\/strong\u003e\u003cspan\u003e간편 설치\u003c\/span\u003e\n                            \u003c\/div\u003e\n                        \u003c\/div\u003e\n                        \u003cdiv class=\"highlight-item\"\u003e\n                            \u003cdiv class=\"support-icons\"\u003e\n                                \u003cdiv class=\"icon-shape icon-video\"\u003e\u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M8 5v14l11-7z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\u003c\/div\u003e\n                                \u003cdiv class=\"icon-shape icon-manual\"\u003e\u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\u003c\/div\u003e\n                            \u003c\/div\u003e\n                            \u003cdiv class=\"text-content\"\u003e\n                                \u003cstrong\u003e가이드 설치\u003c\/strong\u003e\u003cspan\u003e비디오 및 매뉴얼 무료\u003c\/span\u003e\n                            \u003c\/div\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n\n        \u003c\/div\u003e\n        \n        \u003cdiv class=\"features-section\"\u003e\n            \u003cdiv class=\"section-title-wrapper\"\u003e\n                \u003cspan class=\"icon-base-style neuro-icon\"\u003eN\u003c\/span\u003e\u003ch3 style=\"margin: 0;\"\u003eNeuroLight 기능\u003c\/h3\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"section-intro\"\u003e운전에 반응하고 안전을 지키며 모든 여정에 프리미엄 감각을 더하는 지능형 앰비언트 조명으로 당신의 테슬라를 변신시키세요.\u003c\/div\u003e\n            \u003cdiv class=\"features-list\"\u003e\n                \u003cdiv class=\"feature-item\"\u003e\n                    \u003cdiv class=\"feature-image\"\u003e\u003cimg alt=\"통합 사각지대 가디언\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/bsd-blind-spot-monitor-rgb-ambient-lighting-for-model-3y-oem-screen-control-8822328.jpg?v=1762163690\"\u003e\u003c\/div\u003e\n                    \u003cdiv class=\"feature-content\"\u003e\n                        \u003ch4\u003e통합 사각지대 가디언\u003c\/h4\u003e\n                        \u003cdiv class=\"feature-divider\"\u003e\u003c\/div\u003e\n                        \u003cp\u003e사각지대 불안 해소. 작은 거울 아이콘 대신, 라이트 스트립이 주변 시야에 크고 눈에 띄는 호박색\/빨간색 경고를 제공하여 더 빠르고 직관적인 안전 반응을 돕습니다.\u003c\/p\u003e\n                        \u003cdiv class=\"feature-tags-container\"\u003e\n                            \u003cspan class=\"feature-tag\"\u003e주변 시야 경고\u003c\/span\u003e\u003cspan class=\"feature-tag\"\u003e향상된 안전성\u003c\/span\u003e\u003cspan class=\"feature-tag\"\u003e빠른 반응\u003c\/span\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"feature-item reverse\"\u003e\n                    \u003cdiv class=\"feature-image\"\u003e\u003cimg alt=\"반응형 퍼포먼스 조명\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/bsd-blind-spot-monitor-rgb-ambient-lighting-for-model-3y-oem-screen-control-6194699.jpg?v=1762163647\"\u003e\u003c\/div\u003e\n                    \u003cdiv class=\"feature-content\"\u003e\n                        \u003ch4\u003e반응형 퍼포먼스 조명\u003c\/h4\u003e\n                        \u003cdiv class=\"feature-divider\"\u003e\u003c\/div\u003e\n                        \u003cp\u003e정적인 대시보드를 다이내믹한 조종석으로 변신시키세요. 라이트가 운전에 시각적으로 반응합니다: 오토파일럿에서는 매혹적인 무지개 흐름을 즐기고, 가속 페달을 누를 때마다 빛이 확장되고 강해지는 모습을 보세요.\u003c\/p\u003e\n                        \u003cdiv class=\"feature-tags-container\"\u003e\n                            \u003cspan class=\"feature-tag\"\u003e다이내믹 드라이빙 FX\u003c\/span\u003e\u003cspan class=\"feature-tag\"\u003eAP 무지개 모드\u003c\/span\u003e\u003cspan class=\"feature-tag\"\u003e스로틀 반응형\u003c\/span\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"feature-item\"\u003e\n                    \u003cdiv class=\"feature-image\"\u003e\u003cimg alt=\"중요 상태 신호\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/BSD_Blind_Spot_Monitor_RGB_Ambient_Lighting_for_Model_3Y_15.jpg?v=1762226639\"\u003e\u003c\/div\u003e\n                    \u003cdiv class=\"feature-content\"\u003e\n                        \u003ch4\u003e중요 상태 신호\u003c\/h4\u003e\n                        \u003cdiv class=\"feature-divider\"\u003e\u003c\/div\u003e\n                        \u003cp\u003e도로에서 눈을 떼지 않고도 중요한 차량 경고를 받으세요. 과속, 문 열림 경고, 배터리 과열 시 라이트 스트립이 즉시 깜빡여 항상 상황을 인지할 수 있습니다.\u003c\/p\u003e\n                        \u003cdiv class=\"feature-tags-container\"\u003e\n                            \u003cspan class=\"feature-tag\"\u003e과속 경고\u003c\/span\u003e\u003cspan class=\"feature-tag\"\u003e문 열림 경고\u003c\/span\u003e\u003cspan class=\"feature-tag\"\u003e상태 신호\u003c\/span\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"feature-item reverse\"\u003e\n                    \u003cdiv class=\"feature-image\"\u003e\u003cimg alt=\"진정한 OEM 동기화\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/bsd-blind-spot-monitor-rgb-ambient-lighting-for-model-3y-oem-screen-control-7403652.jpg?v=1762163647\u0026amp;width=713\"\u003e\u003c\/div\u003e\n                    \u003cdiv class=\"feature-content\"\u003e\n                        \u003ch4\u003e진정한 OEM 동기화\u003c\/h4\u003e\n                        \u003cdiv class=\"feature-divider\"\u003e\u003c\/div\u003e\n                        \u003cp\u003e완벽한 통합을 경험하세요. Model 3 Highland \u0026amp; Y Juniper의 경우, 조명이 차량 고유 색상 설정과 완벽하게 동기화되며, 공장 기본 앰비언트 라이트처럼 중앙 터치스크린에서 모두 제어할 수 있습니다.\u003c\/p\u003e\n                        \u003cdiv class=\"feature-tags-container\"\u003e\n                            \u003cspan class=\"feature-tag\"\u003eOEM 화면 제어\u003c\/span\u003e\u003cspan class=\"feature-tag\"\u003e완벽한 동기화\u003c\/span\u003e\u003cspan class=\"feature-tag\"\u003e통합된 경험\u003c\/span\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"feature-item\"\u003e\n                    \u003cdiv class=\"feature-image\"\u003e\u003cimg alt=\"완전 맞춤형 RGB\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/BSD_Blind_Spot_Monitor_RGB_Ambient_Lighting_for_Model_3Y_14_59fc53d8-d739-4cf9-b69c-4d9e53074a37.jpg?v=1762227727\"\u003e\u003c\/div\u003e\n                    \u003cdiv class=\"feature-content\"\u003e\n                        \u003ch4\u003e완전 맞춤형 RGB\u003c\/h4\u003e\n                        \u003cdiv class=\"feature-divider\"\u003e\u003c\/div\u003e\n                        \u003cp\u003e완벽한 실내 분위기를 연출하세요. 수백 개의 개별 제어 RGB LED로 간단한 오른쪽 스티어링 휠 스크롤 버튼을 사용해 원하는 색상이나 다이내믹 모드를 선택할 수 있습니다.\u003c\/p\u003e\n                        \u003cdiv class=\"feature-tags-container\"\u003e\n                            \u003cspan class=\"feature-tag\"\u003e풀 스펙트럼 RGB\u003c\/span\u003e\u003cspan class=\"feature-tag\"\u003e스티어링 휠 제어\u003c\/span\u003e\u003cspan class=\"feature-tag\"\u003e개인화된 분위기\u003c\/span\u003e\n                        \u003c\/div\u003e\n                    \u003c\/div\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \n        \u003ch3\u003e제품 사양\u003c\/h3\u003e\n        \u003cdiv class=\"specs-container\"\u003e\n            \u003cdiv class=\"spec-item\"\u003e\n            \u003cstrong\u003e◾ 호환성:\u003c\/strong\u003e Tesla Model 3 (모든 버전) \/ Model Y (모든 버전)\u003c\/div\u003e\n            \u003cdiv class=\"spec-item\"\u003e\n            \u003cstrong\u003e◾ 설치:\u003c\/strong\u003e 비파괴 플러그 앤 플레이\u003c\/div\u003e\n            \u003cdiv class=\"spec-item\"\u003e\n            \u003cstrong\u003e◾ 조명 유형:\u003c\/strong\u003e RGB LED 스트립 (개별 제어)\u003c\/div\u003e\n            \u003cdiv class=\"spec-item\"\u003e\n            \u003cstrong\u003e◾ 제어:\u003c\/strong\u003e OEM 터치스크린 (Model 3 Highland \u0026amp; Y Juniper) ; 스티어링 휠 스크롤 버튼 (Model 3\/Y 2021-2024)\u003c\/div\u003e\n            \u003cdiv class=\"spec-item\"\u003e\n            \u003cstrong\u003e◾ 특징:\u003c\/strong\u003e 사각지대 경고, 다이내믹 FX, 상태 알림\u003c\/div\u003e\n        \u003c\/div\u003e\n        \n        \u003ch3\u003e제품 액세서리 포함\u003c\/h3\u003e\n        \u003cdiv class=\"package-image-container\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/BSD_Blind_Spot_Monitor_RGB_Ambient_Lighting_for_Model_3Y_25.jpg?v=1769496985\u0026amp;width=1946\" alt=\"패키지 구성품\"\u003e\u003c\/div\u003e\n        \u003ch3\u003e제품 기능 시연\u003c\/h3\u003e\n        \u003cdiv class=\"product-showcase\"\u003e\n            \u003cdiv class=\"showcase-item\"\u003e\n                \u003cdiv class=\"showcase-image\"\u003e\u003cimg alt=\"사용자 맞춤형 RGB 조명\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/bsd-blind-spot-monitor-rgb-ambient-lighting-for-model-3y-oem-screen-control-4093768.jpg?v=1762180625\"\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"showcase-item\"\u003e\n                \u003cdiv class=\"showcase-image\"\u003e\u003cimg alt=\"사각지대 감지\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/bsd-blind-spot-monitor-rgb-ambient-lighting-for-model-3y-oem-screen-control-7454479.jpg?v=1762180625\"\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"installation-section-dark\"\u003e\n            \u003cdiv class=\"section-title-wrapper\"\u003e\n                \u003cspan class=\"icon-base-style install-icon\"\u003e\u003csvg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M19.4 12.9a8 8 0 0 0-1.8-3.3l-1-.7c-.8-.5-1.7-.8-2.6-.8H10c-1.5 0-2.8.8-3.5 2.1l-.3.5c-.3.5-.3 1.1 0 1.6.2.3.4.6.7.8l.8.6c.4.3.8.5 1.3.5h1.8c.4 0 .8-.2 1.1-.5l1.6-1.6c.3-.3.8-.3 1.1 0 .3.3.3.8 0 1.1l-1.6 1.6c-.6.6-1.5.9-2.3.9H9.2c-.9 0-1.8-.3-2.6-.9l-.8-.6c-.6-.5-1.1-1.1-1.4-1.9-.3-.8-.3-1.7 0-2.5l.3-.5C5.4 6.8 7 5.9 8.6 5.9H14c1.3 0 2.6.4 3.6 1.2l1 .7c1.3 1 2.2 2.5 2.4 4.1.1.8-.2 1.6-.8 2.1l-1.3 1.3c-.3.3-.8.3-1.1 0-.3-.3-.3-.8 0-1.1l1.3-1.3c.2-.2.3-.5.3-.8z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\u003c\/span\u003e\n                \u003ch3 style=\"margin: 0;\"\u003e설치 지원\u003c\/h3\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"youtube-video-container-bottom\"\u003e\u003ciframe src=\"https:\/\/www.youtube.com\/embed\/BncCy18SZEU\" title=\"Installation Guide\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen\" allowfullscreen\u003e\u003c\/iframe\u003e\u003c\/div\u003e\n            \u003cdiv class=\"installation-gallery-section\"\u003e\n                \u003cdiv class=\"gallery-container\"\u003e\n                    \u003c!-- === MODIFICATION START: Links fixed for robust JS functionality === --\u003e\n                    \u003cdiv class=\"gallery-item\"\u003e\n                        \u003ca href=\"javascript:void(0);\" class=\"tesery-gallery-trigger\" data-src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Model_3Y_Dashboard_RGB_Lights_with_Integrated_BSD_System_1.jpg?v=1768382361\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Model_3Y_Dashboard_RGB_Lights_with_Integrated_BSD_System_1.jpg?v=1768382361\" alt=\"1단계\"\u003e\u003c\/a\u003e\u003cdiv class=\"page-number\"\u003e1단계\u003c\/div\u003e\n                    \u003c\/div\u003e\n                    \u003cdiv class=\"gallery-item\"\u003e\n                        \u003ca href=\"javascript:void(0);\" class=\"tesery-gallery-trigger\" data-src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Model_3Y_Dashboard_RGB_Lights_with_Integrated_BSD_System_2.jpg?v=1768382360\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Model_3Y_Dashboard_RGB_Lights_with_Integrated_BSD_System_2.jpg?v=1768382360\" alt=\"2단계\"\u003e\u003c\/a\u003e\u003cdiv class=\"page-number\"\u003e2단계\u003c\/div\u003e\n                    \u003c\/div\u003e\n                    \u003cdiv class=\"gallery-item\"\u003e\n                        \u003ca href=\"javascript:void(0);\" class=\"tesery-gallery-trigger\" data-src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Model_3Y_Dashboard_RGB_Lights_with_Integrated_BSD_System_3.jpg?v=1768382360\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Model_3Y_Dashboard_RGB_Lights_with_Integrated_BSD_System_3.jpg?v=1768382360\" alt=\"3단계\"\u003e\u003c\/a\u003e\u003cdiv class=\"page-number\"\u003e3단계\u003c\/div\u003e\n                    \u003c\/div\u003e\n                    \u003cdiv class=\"gallery-item\"\u003e\n                        \u003ca href=\"javascript:void(0);\" class=\"tesery-gallery-trigger\" data-src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Model_3Y_Dashboard_RGB_Lights_with_Integrated_BSD_System_4.jpg?v=1768382360\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/Model_3Y_Dashboard_RGB_Lights_with_Integrated_BSD_System_4.jpg?v=1768382360\" alt=\"4단계\"\u003e\u003c\/a\u003e\u003cdiv class=\"page-number\"\u003e4단계\u003c\/div\u003e\n                    \u003c\/div\u003e\n                    \u003c!-- === MODIFICATION END === --\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"faq-section\"\u003e\n            \u003ch3\u003e자주 묻는 질문\u003c\/h3\u003e\n            \u003cdiv class=\"faq-item\"\u003e\n                \u003cinput class=\"faq-toggle\" id=\"faq1\" type=\"checkbox\"\u003e\u003clabel class=\"faq-question\" for=\"faq1\"\u003eQ1: 모든 Model 3\/Y 버전과 호환되나요?\u003c\/label\u003e\u003cdiv class=\"faq-answer\"\u003e\u003cp\u003eA1: 네, \u003cb\u003e모든 Tesla Model 3 및 Model Y 버전\u003c\/b\u003e에 맞게 설계되었습니다. Model 3 Highland\/Y Juniper의 경우 완전한 OEM 터치스크린 통합을 제공합니다. 모든 버전은 스티어링 휠 스크롤 버튼 제어도 지원합니다.\u003c\/p\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq-item\"\u003e\n                \u003cinput class=\"faq-toggle\" id=\"faq2\" type=\"checkbox\"\u003e\u003clabel class=\"faq-question\" for=\"faq2\"\u003eQ2: 조명과 색상은 어떻게 제어하나요?\u003c\/label\u003e\u003cdiv class=\"faq-answer\"\u003e\u003cp\u003eA2: 제어는 \u003cstrong\u003eTesla OEM 터치스크린\u003c\/strong\u003e (Highland\/Juniper) 또는 \u003cstrong\u003e오른쪽 스티어링 휠 스크롤 버튼\u003c\/strong\u003e (모든 버전)을 통해 이루어집니다. 전체 RGB 스펙트럼, 밝기 및 동적 모드를 사용할 수 있습니다.\u003c\/p\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq-item\"\u003e\n                \u003cinput class=\"faq-toggle\" id=\"faq3\" type=\"checkbox\"\u003e\u003clabel class=\"faq-question\" for=\"faq3\"\u003eQ3: 이 설치가 Tesla 보증을 무효화하나요?\u003c\/label\u003e\u003cdiv class=\"faq-answer\"\u003e\u003cp\u003eA3: 아닙니다. 설치는 \u003cb\u003e100% 비파괴적\u003c\/b\u003e이며 플러그 앤 플레이 방식입니다. 원래 배선 하네스를 사용하며 흔적 없이 완전히 제거할 수 있어 보증을 유지할 수 있습니다.\u003c\/p\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq-item\"\u003e\n                \u003cinput class=\"faq-toggle\" id=\"faq4\" type=\"checkbox\"\u003e\u003clabel class=\"faq-question\" for=\"faq4\"\u003eQ4: 사각지대 경고가 작동하지 않으면 어떻게 하나요?\u003c\/label\u003e\u003cdiv class=\"faq-answer\"\u003e\u003cp\u003eA4: 모든 배선 연결이 안전한지 확인해 주세요. 시스템은 Tesla의 기본 센서와 동기화되며 완전한 보정을 위해 짧은 주행이 필요할 수 있습니다. 문제가 계속되면 지원팀이 도와드릴 준비가 되어 있습니다.\u003c\/p\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"faq-item\"\u003e\n                \u003cinput class=\"faq-toggle\" id=\"faq5\" type=\"checkbox\"\u003e\u003clabel class=\"faq-question\" for=\"faq5\"\u003eQ5: 사각지대 감지 감도를 조절할 수 있나요?\u003c\/label\u003e\u003cdiv class=\"faq-answer\"\u003e\u003cp\u003eA5: 이 라이트 스트립은 Tesla의 자체 사각지대 모니터링 시스템의 경고를 반영합니다. 감도는 차량의 기본 설정에 연동되어 일관되고 신뢰할 수 있는 성능을 보장합니다.\u003c\/p\u003e\u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n        \u003cdiv class=\"brand-footer\"\u003e\n            \u003cdiv class=\"brand-footer-logo\"\u003eTESERY NeuroLight\u003c\/div\u003e\n            \u003cdiv class=\"brand-tagline\"\u003e당신의 드라이브를 밝히세요\u003c\/div\u003e\n            \u003cdiv class=\"social-links\"\u003e\n                \u003ca href=\"#\" class=\"social-icon\"\u003e\u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669.948 0 1.94.07 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\u003c\/a\u003e\n                \u003ca href=\"#\" class=\"social-icon\"\u003e\u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-7.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\u003c\/a\u003e\n                \u003ca href=\"#\" class=\"social-icon\"\u003e\u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\u003c\/a\u003e\n                \u003ca href=\"#\" class=\"social-icon\"\u003e\u003csvg viewbox=\"0 0 24 24\"\u003e\u003cpath d=\"M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z\"\u003e\u003c\/path\u003e\u003c\/svg\u003e\u003c\/a\u003e\n            \u003c\/div\u003e\n            \u003cdiv class=\"copyright\"\u003e© 2025 TESERY. 판권 소유. | NeuroLight™ 시리즈\u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003c!-- This script is ESSENTIAL for the image lightbox to work. --\u003e\n    \u003cscript\u003e\n    document.addEventListener('DOMContentLoaded', function() {\n        const container = document.querySelector('.tesery-product-description-container');\n        if (!container) return; \n\n        function createAndShowLightbox(src) {\n            const existingLightbox = document.querySelector('.tesery-dynamic-lightbox');\n            if (existingLightbox) {\n                existingLightbox.remove();\n            }\n            const lightbox = document.createElement('div');\n            lightbox.className = 'tesery-dynamic-lightbox';\n            const closeButton = document.createElement('div');\n            closeButton.className = 'tesery-dynamic-lightbox-close';\n            closeButton.innerHTML = '\u0026times;';\n            const image = document.createElement('img');\n            image.src = src;\n            image.addEventListener('click', function(e) {\n                e.stopPropagation();\n            });\n            lightbox.appendChild(closeButton);\n            lightbox.appendChild(image);\n            document.body.appendChild(lightbox);\n            lightbox.addEventListener('click', function() {\n                lightbox.remove();\n            });\n        }\n        container.addEventListener('click', function(event) {\n            const trigger = event.target.closest('a.tesery-gallery-trigger');\n            if (trigger) {\n                event.preventDefault();\n                const imageSrc = trigger.getAttribute('data-src');\n                if (imageSrc) {\n                    createAndShowLightbox(imageSrc);\n                }\n            }\n        });\n    });\n    \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 좌핸들 (LHD)","offer_id":47630173241576,"sku":null,"price":119.0,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 우핸들 (RHD)","offer_id":47640649924840,"sku":null,"price":119.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 (2021-2023.10) \u0026 모델 Y (2021-2025.03) AMD \/ 좌핸들 (LHD)","offer_id":47630173274344,"sku":"TCU005","price":119.0,"currency_code":"USD","in_stock":true},{"title":"모델 3 (2021-2023.10) \u0026 모델 Y (2021-2025.03) AMD \/ 우핸들 (RHD)","offer_id":47640650121448,"sku":"TCU005","price":119.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 (2017-2020.10) 및 Model Y 2020 인텔 \/ 좌핸들 (LHD)","offer_id":47883057660136,"sku":"TCU005-oldL","price":115.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 (2017-2020.10) 및 Model Y 2020 인텔 \/ 우핸들 (RHD)","offer_id":47883057692904,"sku":"TCU005-oldR","price":115.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 주니퍼 (2025+) \u0026 모델 3 하이랜드 (2024+) \/ 좌핸들 (LHD)","offer_id":47630173307112,"sku":"TCU005","price":119.0,"currency_code":"USD","in_stock":true},{"title":"모델 Y 주니퍼 (2025+) \u0026 모델 3 하이랜드 (2024+) \/ 우핸들 (RHD)","offer_id":47640649990376,"sku":"TCU005","price":119.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/bsd-blind-spot-monitor-rgb-ambient-lighting-for-model-3y-oem-screen-control-7403652.jpg?v=1772447814"},{"product_id":"model-3-highland-new-model-y-under-screen-storage-box","title":"모델 3 하이랜드 \/ 뉴 모델 Y 언더 스크린 수납함 센터 콘솔 정리함 앰비언트 조명 포함","description":"\u003cstyle\u003e\n    \/* === Scoped CSS Rules Start === *\/\n    .tesery-product-description-container {\n        font-family: 'Inter', system-ui, sans-serif;\n        color: var(--text-dark, #333333);\n        line-height: 1.6;\n        padding: 0;\n        \/* Main background is now a very subtle white-to-light-grey gradient *\/\n        background: var(--gradient-light-glass);\n    }\n\n    .tesery-product-description-container section {\n        padding: 40px 24px;\n        max-width: 100%;\n        margin: 0 auto;\n        box-sizing: border-box;\n        background: transparent;\n        box-shadow: none;\n        border-radius: 0;\n    }\n\n    \/* Applying Glassmorphism to content containers *\/\n    .tesery-product-description-container .content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n        margin-bottom: 2em;\n    }\n\n    .tesery-hero-section {\n        background: transparent;\n        box-shadow: none;\n        border-radius: 0;\n    }\n    \n    .tesery-product-description-container h2 {\n        color: var(--accent-color, #B5838D);\n        text-align: center;\n        margin: 0 0 1.5em;\n        font-size: 2.8em;\n        line-height: 1.2;\n    }\n\n    .tesery-product-description-container h3 {\n        color: var(--text-dark, #333333);\n        margin: 2.5em 0 1em;\n        font-size: 2.2em;\n        text-align: center;\n        font-weight: 700;\n        padding-bottom: 0.5em;\n        position: relative;\n    }\n\n    .tesery-product-description-container h3.section-header {\n        color: var(--text-dark-on-light);\n        padding: 20px 50px;\n        display: block;\n        max-width: fit-content;\n        margin: 3em auto 1.5em;\n        font-size: 2.2em;\n        font-weight: 700;\n        text-align: center;\n        position: relative;\n        z-index: 1;\n    }\n    \n    .tesery-product-description-container h3.section-header::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        z-index: -1;\n        border-radius: 16px;\n        box-shadow: 0 4px 15px rgba(0,0,0,0.05);\n        transition: all 0.3s ease;\n    }\n    .tesery-product-description-container h3.section-header:hover::before {\n        transform: scale(1.05);\n        box-shadow: 0 8px 30px rgba(0,0,0,0.1);\n    }\n    \n    \/* Reassigning gradients to be more cohesive with the main background *\/\n    .tesery-product-description-container .tesery-feature-grid-section h3.section-header::before {\n        background: var(--gradient-subtle-pink);\n    }\n    .tesery-product-description-container .tesery-specs-section h3.section-header::before {\n        background: var(--gradient-yellow-orange);\n    }\n    .tesery-product-description-container .tesery-package-section h3.section-header::before {\n        background: var(--gradient-subtle-pink);\n    }\n    .tesery-product-description-container .tesery-faq-section h3.section-header::before {\n        background: var(--gradient-yellow-orange);\n    }\n    .tesery-product-description-container .tesery-trust-section h3.section-header::before {\n        background: var(--gradient-subtle-pink);\n    }\n\n    .tesery-product-description-container p {\n        color: var(--text-dark, #333333);\n        max-width: 800px;\n        margin: 1em auto;\n        text-align: center;\n    }\n\n    \/* Hero section *\/\n    .tesery-hero-section {\n        padding: 60px 24px;\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        align-items: center;\n        text-align: center;\n    }\n\n    .tesery-hero-content-wrapper {\n        display: flex;\n        flex-direction: row;\n        align-items: center;\n        max-width: 1200px;\n        width: 100%;\n        gap: 50px;\n    }\n    \n    .tesery-hero-image-banner {\n        flex: 1;\n        max-width: 600px;\n        box-shadow: var(--shadow-heavy, 0 20px 60px rgba(0,0,0,0.15));\n        border-radius: var(--border-radius, 16px);\n    }\n    .tesery-hero-image-banner .hero-image {\n        width: 100%;\n        height: auto;\n        display: block;\n        border-radius: var(--border-radius, 16px);\n        object-fit: cover;\n    }\n\n    .tesery-hero-text-content-wrapper {\n        flex: 1;\n        max-width: 600px;\n        text-align: left;\n    }\n\n    .tesery-hero-text-content-wrapper h1 {\n        font-size: 3.5em;\n        color: var(--text-dark, #333333);\n        margin-bottom: 0.2em;\n        line-height: 1.1;\n        text-align: left;\n    }\n    .tesery-hero-text-content-wrapper .hero-description {\n        font-size: 1.1em;\n        color: var(--text-medium);\n        margin: 0.5em 0 1em 0;\n        max-width: 700px;\n        text-align: left;\n    }\n    .tesery-hero-text-content-wrapper .subtitle {\n        font-size: 1.5em;\n        color: var(--text-medium);\n        margin-bottom: 1.5em;\n        font-style: italic;\n        text-align: left;\n    }\n    .tesery-hero-text-content-wrapper .prop-grid {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: flex-start;\n        gap: 12px;\n        max-width: 100%;\n        margin-bottom: 0;\n    }\n\n    .tesery-hero-section .prop-item {\n        display: flex;\n        align-items: center;\n        background: rgba(255, 255, 255, 0.7);\n        backdrop-filter: blur(10px);\n        border-radius: 50px;\n        padding: 8px 16px;\n        font-weight: 600;\n        color: var(--text-dark, #333333);\n        font-size: 1em;\n        white-space: nowrap;\n        box-shadow: var(--shadow-light-glass);\n        border: 1px solid var(--border-color-light-glass);\n        flex-grow: 0;\n        flex-basis: auto;\n        justify-content: center;\n    }\n    \n    .tesery-feature-grid-section .feature-container {\n        padding: 40px 24px;\n        max-width: 100%;\n        margin: 0 auto;\n        box-sizing: border-box;\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n    .tesery-product-description-container .feature-item {\n        display: flex;\n        align-items: center;\n        gap: 40px;\n        max-width: 1200px;\n        margin: 40px auto;\n    }\n    .tesery-product-description-container .feature-item-content {\n        flex: 1;\n        text-align: center;\n    }\n    .tesery-product-description-container .feature-item-image-wrapper {\n        flex: 1;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .feature-item img {\n        max-width: 100%;\n        height: auto;\n        border-radius: var(--border-radius, 16px);\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0,0,0,0.12));\n    }\n    .tesery-product-description-container .feature-item:nth-child(even) {\n        flex-direction: row-reverse;\n    }\n    .tesery-product-description-container .feature-item:nth-child(even) .feature-item-content {\n        text-align: center;\n    }\n    .tesery-product-description-container .feature-item h4 {\n        font-size: 2em;\n        color: var(--accent-color, #B5838D);\n        margin-bottom: 0.5em;\n        text-align: center;\n    }\n    .tesery-product-description-container .feature-item p {\n        text-align: center;\n        color: var(--text-medium);\n        font-size: 1.1em;\n        line-height: 1.7;\n    }\n    .tesery-product-description-container .feature-item:nth-child(even) p {\n        text-align: center;\n    }\n\n    .tesery-specs-section.content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n    .tesery-product-description-container .specs-section-content {\n        margin: 2em auto;\n        max-width: 900px;\n        text-align: left;\n    }\n    .tesery-product-description-container .specs-list {\n        list-style-type: none;\n        padding: 0;\n        margin: 1em 0;\n    }\n    .tesery-product-description-container .specs-list li {\n        padding: 12px 20px;\n        background: rgba(255, 255, 255, 0.5);\n        border: 1px solid var(--border-color-light-glass);\n        border-radius: 8px;\n        margin-bottom: 8px;\n        font-weight: 400;\n        color: var(--text-medium);\n    }\n    .tesery-product-description-container .specs-list li strong {\n        color: var(--accent-color, #B5838D);\n        font-weight: 600;\n    }\n    .tesery-product-description-container .specs-list ul {\n        list-style-type: disc;\n        padding-left: 20px;\n        margin-top: 8px;\n    }\n    .tesery-product-description-container .specs-list ul li {\n        background: transparent;\n        border: none;\n        padding: 4px 0;\n        margin-bottom: 0;\n        color: var(--text-medium);\n    }\n\n    .tesery-package-section.content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n\n    .tesery-product-description-container .package-section-content {\n        margin: 2em auto;\n        max-width: 900px;\n        text-align: center;\n    }\n    .tesery-product-description-container .package-section-content p {\n        color: var(--text-medium);\n    }\n    .tesery-product-description-container .package-section-content ul {\n        list-style-type: none;\n        padding: 0;\n        margin: 1em 0;\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1em;\n    }\n    .tesery-product-description-container .package-section-content li {\n        background: rgba(255, 255, 255, 0.5);\n        border: 1px solid var(--border-color-light-glass);\n        border-radius: 8px;\n        padding: 12px 20px;\n        font-weight: 600;\n        color: var(--text-dark);\n        box-shadow: 0 4px 15px rgba(0,0,0,0.05);\n        transition: transform 0.2s;\n    }\n    .tesery-product-description-container .package-section-content li:hover {\n        transform: translateY(-2px);\n    }\n\n    .tesery-faq-section.content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n    .tesery-product-description-container .faq-section-content {\n        margin: 2em auto;\n        max-width: 900px;\n        text-align: left;\n    }\n\n    .tesery-product-description-container .faq-item {\n        margin-bottom: 12px;\n        background: rgba(255, 255, 255, 0.5);\n        border-radius: var(--border-radius, 16px);\n        border: 1px solid var(--border-color-light-glass);\n        transition: all 0.3s ease;\n        overflow: hidden;\n    }\n\n    .tesery-product-description-container .faq-item:hover {\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0,0,0,0.12));\n        border-color: var(--accent-light, #B5838D);\n    }\n\n    .tesery-product-description-container .faq-item details {\n        border: none;\n    }\n\n    .tesery-product-description-container .faq-item summary {\n        padding: 20px 56px 20px 24px;\n        font-weight: 600;\n        font-size: 1.05rem;\n        cursor: pointer;\n        color: var(--text-dark, #333333);\n        transition: all 0.3s ease;\n        position: relative;\n        list-style: none;\n        outline: none;\n        user-select: none;\n        background: transparent;\n        text-align: left;\n    }\n\n    .tesery-product-description-container .faq-item summary::-webkit-details-marker {\n        display: none;\n    }\n\n    .tesery-product-description-container .faq-item summary::after {\n        content: '+';\n        position: absolute;\n        right: 24px;\n        top: 50%;\n        transform: translateY(-50%);\n        font-size: 20px;\n        color: var(--accent-color, #B5838D);\n        transition: all 0.3s ease;\n        font-weight: 300;\n        line-height: 1;\n    }\n\n    .tesery-product-description-container .faq-item details[open] summary::after {\n        content: '−';\n        transform: translateY(-50%) rotate(0deg);\n    }\n\n    .tesery-product-description-container .faq-item summary:hover {\n        background: rgba(0, 0, 0, 0.02);\n    }\n\n    .tesery-product-description-container .faq-content {\n        padding: 0 24px 20px;\n        color: var(--text-medium, #666666);\n        line-height: 1.6;\n        animation: fadeIn 0.3s ease-in-out;\n        text-align: left;\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; transform: translateY(-10px); }\n        to { opacity: 1; transform: translateY(0); }\n    }\n\n    .tesery-trust-section.content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n    .tesery-product-description-container .trust-section-content {\n        max-width: 1000px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .review-container {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 24px;\n        margin: 2em 0;\n    }\n\n    .tesery-product-description-container .review-box {\n        flex: 1;\n        min-width: 300px;\n        max-width: 45%;\n        border: 1px solid var(--border-color-light-glass);\n        border-radius: var(--border-radius, 8px);\n        padding: 20px;\n        background: rgba(255, 255, 255, 0.5);\n        box-shadow: var(--shadow-light-glass);\n        transition: all 0.3s ease;\n        display: flex;\n        flex-direction: column;\n        justify-content: space-between;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .review-box:hover {\n        transform: translateY(-5px);\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0,0,0,0.12));\n    }\n\n    .tesery-product-description-container .review-header {\n        display: flex;\n        flex-direction: column;\n        align-items: center;\n        margin-bottom: 12px;\n    }\n\n    .tesery-product-description-container .review-avatar {\n        width: 48px;\n        height: 48px;\n        border-radius: 50%;\n        background: var(--border-color-light);\n        color: var(--star-yellow, #d4af37);\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        font-weight: bold;\n        margin-bottom: 8px;\n        font-size: 1.2em;\n        flex-shrink: 0;\n    }\n\n    .tesery-product-description-container .review-stars {\n        color: var(--star-yellow, #ffd700);\n        margin-right: 4px;\n        font-size: 1.1em;\n    }\n    .tesery-product-description-container .review-stars + span {\n        font-weight: 600;\n        color: var(--text-dark, #333333);\n        display: block;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .testimonial {\n        font-style: italic;\n        color: var(--text-medium, #666666);\n        margin: 1em 0 0;\n        padding-left: 0;\n        border-left: none;\n        font-size: 1em;\n        text-align: center;\n    }\n\n    .tesery-cta-section.content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n    .tesery-cta-section h2 {\n        color: var(--text-dark);\n        font-size: 2.5em;\n        margin-bottom: 0.5em;\n    }\n    .tesery-cta-section p {\n        color: var(--text-medium);\n        margin-bottom: 2em;\n        font-size: 1.2em;\n    }\n    .tesery-product-description-container .brand-button {\n        background: var(--bg-cta-button);\n        color: var(--accent-color, #B5838D);\n        padding: 16px 40px;\n        border-radius: 50px;\n        font-weight: 700;\n        text-transform: none;\n        font-size: 1.2em;\n        transition: all 0.4s ease;\n        border: none;\n        cursor: pointer;\n        margin: 0 auto;\n        display: block;\n        max-width: 320px;\n        box-shadow: 0 10px 30px rgba(0,0,0,0.2);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .tesery-product-description-container .brand-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);\n        transition: left 0.5s;\n    }\n\n    .tesery-product-description-container .brand-button:hover::before {\n        left: 100%;\n    }\n\n    .tesery-product-description-container .brand-button:hover {\n        transform: translateY(-3px);\n        box-shadow: 0 15px 40px rgba(0,0,0,0.3);\n        color: var(--accent-color);\n    }\n\n    .tesery-product-description-container .brand-button a {\n        text-decoration: none;\n        color: inherit;\n        display: block;\n    }\n\n\n    \/* Responsive adjustments *\/\n    @media (max-width: 1024px) {\n        .tesery-hero-content-wrapper {\n            flex-direction: column;\n            gap: 20px;\n        }\n        .tesery-hero-image-banner, .tesery-hero-text-content-wrapper {\n            max-width: 100%;\n            text-align: center;\n        }\n        .tesery-hero-text-content-wrapper h1,\n        .tesery-hero-text-content-wrapper .hero-description,\n        .tesery-hero-text-content-wrapper .subtitle {\n            text-align: center;\n        }\n        .tesery-hero-text-content-wrapper .prop-grid {\n            justify-content: center;\n        }\n        .tesery-product-description-container .feature-grid {\n            max-width: 90%;\n        }\n        .tesery-product-description-container .specs-section-content {\n            max-width: 90%;\n        }\n        .tesery-product-description-container .faq-section-content {\n            max-width: 90%;\n        }\n        .tesery-product-description-container .trust-section-content {\n            max-width: 90%;\n        }\n\n        .tesery-product-description-container .feature-item {\n            flex-direction: column;\n            text-align: center;\n        }\n        .tesery-product-description-container .feature-item:nth-child(even) {\n            flex-direction: column;\n        }\n        .tesery-product-description-container .feature-item .feature-item-content,\n        .tesery-product-description-container .feature-item:nth-child(even) .feature-item-content {\n            text-align: center;\n        }\n    }\n\n    @media (max-width: 768px) {\n        .tesery-product-description-container section {\n            padding: 30px 16px;\n        }\n\n        .tesery-product-description-container h2 {\n            font-size: 2.2em;\n        }\n\n        .tesery-product-description-container h3 {\n            font-size: 1.8em;\n            margin: 2em 0 0.8em;\n        }\n        .tesery-product-description-container h3.section-header {\n             font-size: 1.8em;\n             padding: 12px 30px;\n             margin: 2.5em auto 1em;\n             color: var(--text-dark-on-light);\n        }\n\n        .tesery-hero-text-content-wrapper h1 {\n            font-size: 2.8em;\n        }\n        .tesery-hero-text-content-wrapper .subtitle {\n            font-size: 1.2em;\n        }\n        .tesery-hero-image-banner {\n            margin-bottom: 20px;\n        }\n        .tesery-hero-image-banner .hero-image {\n            border-radius: 12px;\n        }\n\n        .tesery-hero-text-content-wrapper .prop-grid {\n            justify-content: space-evenly;\n            gap: 8px;\n            margin-bottom: 20px;\n        }\n        .tesery-product-description-container .prop-item {\n            font-size: 1em;\n            padding: 8px 15px;\n            color: var(--text-dark, #333333);\n        }\n        .tesery-product-description-container .prop-item span {\n            font-size: 1em;\n        }\n\n        .tesery-faq-item summary {\n            padding: 16px 44px 16px 20px;\n            font-size: 0.95rem;\n            color: var(--text-dark, #333333);\n        }\n\n        .tesery-faq-item summary::after {\n            right: 20px;\n            font-size: 18px;\n        }\n\n        .tesery-faq-content {\n            padding: 0 20px 16px;\n            font-size: 0.9rem;\n        }\n\n        .tesery-product-description-container .review-container {\n            flex-direction: column;\n            align-items: center;\n            gap: 16px;\n        }\n\n        .tesery-product-description-container .review-box {\n            max-width: 90%;\n            margin: 0;\n            padding: 16px;\n        }\n\n        .tesery-product-description-container .review-avatar {\n            width: 40px;\n            height: 40px;\n            margin-right: 10px;\n            font-size: 1em;\n        }\n        .tesery-cta-section h2 {\n            font-size: 2em;\n        }\n        .tesery-cta-section p {\n            font-size: 1.1em;\n        }\n        .tesery-product-description-container .brand-button {\n            padding: 14px 30px;\n            font-size: 1em;\n            max-width: 280px;\n        }\n    }\n\n    @media (max-width: 480px) {\n        .tesery-product-description-container section {\n            padding: 20px 12px;\n        }\n\n        .tesery-product-description-container h2 {\n            font-size: 1.8em;\n        }\n        .tesery-product-description-container h3 {\n            font-size: 1.6em;\n        }\n        .tesery-product-description-container h3.section-header {\n             font-size: 1.6em;\n             padding: 10px 20px;\n             margin: 2em auto 0.8em;\n        }\n\n        .tesery-hero-text-content-wrapper h1 {\n            font-size: 2.2em;\n        }\n        .tesery-hero-text-content-wrapper .subtitle {\n            font-size: 1.1em;\n        }\n        .tesery-hero-text-content-wrapper .prop-grid {\n            justify-content: space-evenly;\n            gap: 8px;\n            margin-bottom: 20px;\n        }\n        .tesery-product-description-container .prop-item {\n            font-size: 0.9em;\n            padding: 6px 12px;\n            flex-grow: 0;\n            flex-basis: 45%;\n        }\n        .tesery-product-description-container .feature-item {\n            gap: 20px;\n            margin: 30px auto;\n        }\n        .tesery-product-description-container .feature-item h4 {\n            font-size: 1.6em;\n        }\n        .tesery-product-description-container .feature-item p {\n            font-size: 1em;\n        }\n        .tesery-cta-section h2 {\n            font-size: 1.8em;\n        }\n        .tesery-cta-section p {\n            font-size: 1em;\n        }\n        .tesery-product-description-container .brand-button {\n            padding: 12px 25px;\n            font-size: 0.9em;\n            max-width: 250px;\n        }\n    }\n    \/* === Scoped CSS Rules End === *\/\n\u003c\/style\u003e\n\u003cstyle\u003e\n        :root {\n            --primary-color: #ffffff;\n            --secondary-color: #B5838D;\n            --accent-color: #B5838D;\n            --accent-light: #C79F9C;\n            --accent-secondary: #E0B195;\n            --warm-white: #f8f8f8;\n            --crisp-white: #ffffff;\n            --text-dark: #333333;\n            --text-medium: #666666;\n            --text-light: #999999;\n            \/* Light Glassmorphism variables with warm tones *\/\n            --gradient-light-glass: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);\n            --bg-card-light-glass: rgba(255, 255, 255, 0.7);\n            --bg-light-accent: #e9e9eb;\n            --border-color-light-glass: rgba(255, 255, 255, 0.2);\n            --shadow-light-glass: 0 4px 20px rgba(0,0,0,0.08);\n            --text-dark-on-light: #333333;\n            --bg-cta-button: #ffffff;\n            --gradient-primary: linear-gradient(135deg, #B5838D 0%, #7C5E6A 100%);\n            --gradient-secondary: linear-gradient(135deg, #E0B195 0%, #B5838D 100%);\n            --border-radius: 16px;\n            --shadow-light: 0 4px 20px rgba(0,0,0,0.08);\n            --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);\n            --shadow-heavy: 0 20px 60px rgba(0,0,0,0.15);\n            --star-yellow: #fbbf24;\n            --gradient-yellow-orange: linear-gradient(135deg, #FFEF96 0%, #FFB670 100%);\n            \/* New, more subtle pink gradient *\/\n            --gradient-subtle-pink: linear-gradient(135deg, #FDE6E4 0%, #F8D3C8 100%);\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"tesery-product-description-container\"\u003e\n\u003csection class=\"tesery-hero-section\"\u003e\n\u003cdiv class=\"tesery-hero-content-wrapper\"\u003e\n\u003cdiv style=\"text-align: center;\" class=\"tesery-hero-image-banner\"\u003e\u003cimg style=\"margin-bottom: 16px; float: none;\" class=\"hero-image\" alt=\"앰비언트 조명이 있는 화면 아래 저장 상자\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/model-3-highland-new-model-y-under-screen-storage-box-center-console-organizer-with-ambient-lighting-1120302.jpg?v=1754648555\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"tesery-hero-text-content-wrapper\"\u003e\n\u003ch2\u003e\u003cstrong\u003e화면 아래 저장 상자 센터 콘솔 정리함 (좌핸들)\u003c\/strong\u003e\u003c\/h2\u003e\n\u003cp class=\"hero-description\"\u003eModel 3 Highland 또는 New Model Y에 완벽하게 맞도록 매끄럽게 설계된 이 화면 아래 저장 상자는 앰비언트 조명을 더해 완벽하게 통합됩니다.\u003c\/p\u003e\n\u003cp class=\"subtitle\"\u003e공간을 정리하고, 당신의 라이드를 밝히세요.\u003c\/p\u003e\n\u003cdiv class=\"prop-grid\"\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #ff6b6b;\"\u003e완벽한 맞춤\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #4ecdc4;\"\u003e앰비언트 조명\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #ffd93d;\"\u003e숨겨진 배터리\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #45b7d1;\"\u003e쉬운 설치\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #b5838d;\"\u003e대용량\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #9a64b2;\"\u003eType-C 전원\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-feature-grid-section content-card\"\u003e\n\u003ch3 class=\"section-header\"\u003e주요 특징 및 장점\u003c\/h3\u003e\n\u003cdiv class=\"feature-container\"\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg alt=\"정밀 OEM 맞춤\" src=\"https:\/\/3rmd2xqpy90a5g5k-58838253719.shopifypreview.com\/cdn\/shop\/files\/model-3-highland-new-model-y-under-screen-storage-box-center-console-organizer-with-ambient-lighting-8115126.jpg?v=1754648555\u0026amp;width=713\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e정밀 OEM 맞춤\u003c\/h4\u003e\n\u003cp\u003e원본 차량 치수와 완벽한 1:1 맞춤을 위해 3D 스캔 데이터를 사용하여 맞춤 제작되었습니다. 화면 아래에 틈새 없이 매끄럽게 통합되어 차량의 세련된 미관을 유지합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg alt=\"로맨틱 분위기 조명\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/DashboardAmbientLightKitsforModel3Highland_NewModelY_1.jpg?v=1754560662\u0026amp;width=600\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e로맨틱 분위기 조명\u003c\/h4\u003e\n\u003cp\u003e호흡하는 그라데이션 조명 효과가 있어 차량 내부에 로맨틱한 분위기를 더해 운전 경험을 향상시킵니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv style=\"text-align: center;\" class=\"feature-item-image-wrapper\"\u003e\u003cimg style=\"margin-bottom: 16px; float: none;\" alt=\"대용량 정리함\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/model-3-highland-new-model-y-under-screen-storage-box-center-console-organizer-with-ambient-lighting-9853279.jpg?v=1754648555\u0026amp;width=713\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e대용량 정리함\u003c\/h4\u003e\n\u003cp\u003e휴대폰, 아이패드, 시계, 안경 및 기타 필수품을 보관할 수 있는 대용량으로 설계되어 운전 안전에 영향을 주지 않고 정리할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg alt=\"숨겨진 배터리 박스\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/DashboardAmbientLightKitsforModel3Highland_NewModelY_8.jpg?v=1754559365\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e숨겨진 배터리 박스\u003c\/h4\u003e\n\u003cp\u003e표준 플랫탑 18650 배터리 1개가 들어가는 숨겨진 수납 공간이 있어 조명에 깔끔하고 무선 전원 공급을 제공합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg alt=\"손쉬운 도구 없는 설치\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/DashboardAmbientLightKitsforModel3Highland_NewModelY_2.jpg?v=1754560662\u0026amp;width=600\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e손쉬운 도구 없는 설치\u003c\/h4\u003e\n\u003cp\u003e간단한 플러그 앤 플레이 설치를 즐기세요. 배선 절단이나 수정이 필요 없으며, 디스플레이 빔에 삽입하기만 하면 매끄럽고 안전하게 맞습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-specs-section content-card\"\u003e\n\u003ch3 class=\"section-header\"\u003e제품 사양\u003c\/h3\u003e\n\u003cdiv class=\"specs-section-content\"\u003e\n\u003cul class=\"specs-list\"\u003e\n\u003cli\u003e\n\u003cstrong\u003e호환성:\u003c\/strong\u003e\n\u003cul\u003e\n\u003cli\u003eModel 3 2017-2023.10\u003c\/li\u003e\n\u003cli\u003eModel Y 2020-2025.3\u003c\/li\u003e\n\u003cli\u003eModel 3 Highland (New Model 3)\u003c\/li\u003e\n\u003cli\u003eNew Model Y\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e전원 및 크기:\u003c\/strong\u003e\n\u003cul\u003e\n\u003cli\u003e전원 인터페이스: Type-C\u003c\/li\u003e\n\u003cli\u003e입력: 5V1A\u003c\/li\u003e\n\u003cli\u003e배터리 모델: 표준 플랫탑 18650 배터리 1개\u003c\/li\u003e\n\u003cli\u003e제품 크기: 307mm x 175mm x 240mm\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e재료 및 설치:\u003c\/strong\u003e\n\u003cul\u003e\n\u003cli\u003e재질: ABS+PC+TPE+하드웨어\u003c\/li\u003e\n\u003cli\u003e설치 방법: 디스플레이 빔 삽입형\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-package-section content-card\"\u003e\n\u003ch3 class=\"section-header\"\u003e박스 구성품\u003c\/h3\u003e\n\u003cdiv class=\"package-section-content\"\u003e\n\u003cp\u003e표준 패키지에는 다음이 포함됩니다:\u003c\/p\u003e\n\u003cul\u003e\n\u003cli\u003e수납 박스 x 1\u003c\/li\u003e\n\u003cli\u003e설명서 x 1\u003c\/li\u003e\n\u003cli\u003e실리콘 패드 x 1\u003c\/li\u003e\n\u003cli\u003eETC 자석 시트 x 1\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-faq-section content-card\"\u003e\n\u003ch3 class=\"section-header\"\u003e자주 묻는 질문\u003c\/h3\u003e\n\u003cdiv class=\"faq-section-content\"\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e앰비언트 조명은 어떻게 전원을 공급하나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e앰비언트 조명은 숨겨진 공간에 삽입되는 표준 플랫탑 18650 배터리로 작동합니다. 이로 인해 깔끔하고 선이 없는 솔루션을 제공합니다. 배터리는 패키지에 포함되어 있지 않습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e설치가 어렵나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e전혀 그렇지 않습니다! 수납 박스는 간단하고 도구 없이 플러그 앤 플레이 방식으로 설치되도록 설계되었습니다. 디스플레이 빔에 직접 삽입하기만 하면 안전하게 고정됩니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e이 제품이 내 화면이나 에어벤트를 가리나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e수납 박스는 3D 스캔 데이터를 기반으로 맞춤 제작되어 화면 시야, 에어벤트, 기타 차량 제어장치를 방해하지 않고 완벽하게 맞습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e다른 Tesla 모델에도 사용할 수 있나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e이 제품은 Tesla Model 3 2017-2023.10, Model Y 2020-2025.3, Model 3 Highland, 그리고 New Model Y를 위해 특별히 설계되었습니다. 다른 모델에 완벽하게 맞는다는 보장은 없습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-cta-section content-card\"\u003e\n\u003ch2\u003e정리하고 조명을 켤 준비가 되셨나요?\u003c\/h2\u003e\n\u003cp\u003e이 세련되고 실용적인 수납 솔루션으로 Tesla 내부를 업그레이드하세요.\u003c\/p\u003e\n\u003cbutton class=\"brand-button\"\u003e \u003ca href=\"https:\/\/www.tesery.com\/collections\/tesla-storage-box\" title=\"Tesla Storage box\" rel=\"noopener\" target=\"_blank\"\u003e\u003cspan\u003e지금 쇼핑하기 ➔\u003c\/span\u003e\u003c\/a\u003e\u003ca href=\"https:\/\/www.tesery.com\/collections\/telsa-accessories\" rel=\"noopener\" target=\"_blank\"\u003e\u003cspan\u003e\u003c\/span\u003e\u003c\/a\u003e \u003c\/button\u003e\u003c\/section\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요","offer_id":47568123494632,"sku":null,"price":55.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 Highland\/신형 Model Y (좌핸들)","offer_id":47568123560168,"sku":"TUH004-new","price":55.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 2017-2023.10 \/ Model Y 2020-2025.3 (좌핸들)","offer_id":47568123527400,"sku":"TUH004","price":55.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/model-3-highland-new-model-y-under-screen-storage-box-center-console-organizer-with-ambient-lighting-8115126.jpg?v=1754648555"},{"product_id":"model-3-y-license-plate-projection-lights","title":"모델 3 하이랜드\/모델 Y용 번호판 투사등","description":"\u003cstyle\u003e\n    \/* === Scoped CSS Rules Start === *\/\n    .tesery-product-description-container {\n        font-family: 'Inter', system-ui, sans-serif;\n        color: var(--text-dark, #333333);\n        line-height: 1.6;\n        padding: 0;\n        background: var(--gradient-light-glass);\n    }\n\n    .tesery-product-description-container section {\n        padding: 40px 24px;\n        max-width: 100%;\n        margin: 0 auto;\n        box-sizing: border-box;\n        background: transparent;\n        box-shadow: none;\n        border-radius: 0;\n    }\n\n    \/* Applying Glassmorphism to content containers *\/\n    .tesery-product-description-container .content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n        margin-bottom: 2em;\n    }\n\n    .tesery-hero-section {\n        background: transparent;\n        box-shadow: none;\n        border-radius: 0;\n    }\n    \n    .tesery-product-description-container h2 {\n        color: var(--accent-color, #B5838D);\n        text-align: center;\n        margin: 0 0 1.5em;\n        font-size: 2.8em;\n        line-height: 1.2;\n    }\n\n    .tesery-product-description-container h3 {\n        color: var(--text-dark, #333333);\n        margin: 2.5em 0 1em;\n        font-size: 2.2em;\n        text-align: center;\n        font-weight: 700;\n        padding-bottom: 0.5em;\n        position: relative;\n    }\n\n    .tesery-product-description-container h3.section-header {\n        color: var(--text-dark-on-light);\n        padding: 20px 50px;\n        display: block;\n        max-width: fit-content;\n        margin: 3em auto 1.5em;\n        font-size: 2.2em;\n        font-weight: 700;\n        text-align: center;\n        position: relative;\n        z-index: 1;\n    }\n    \n    .tesery-product-description-container h3.section-header::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        z-index: -1;\n        border-radius: 16px;\n        box-shadow: 0 4px 15px rgba(0,0,0,0.05);\n        transition: all 0.3s ease;\n    }\n    .tesery-product-description-container h3.section-header:hover::before {\n        transform: scale(1.05);\n        box-shadow: 0 8px 30px rgba(0,0,0,0.1);\n    }\n    \n    \/* Reassigning gradients to be more cohesive with the main background *\/\n    .tesery-product-description-container .tesery-feature-grid-section h3.section-header::before {\n        background: var(--gradient-subtle-pink);\n    }\n    .tesery-product-description-container .tesery-specs-section h3.section-header::before {\n        background: var(--gradient-yellow-orange);\n    }\n    .tesery-product-description-container .tesery-package-section h3.section-header::before {\n        background: var(--gradient-subtle-pink);\n    }\n    .tesery-product-description-container .tesery-faq-section h3.section-header::before {\n        background: var(--gradient-yellow-orange);\n    }\n    .tesery-product-description-container .tesery-trust-section h3.section-header::before {\n        background: var(--gradient-subtle-pink);\n    }\n\n    .tesery-product-description-container p {\n        color: var(--text-dark, #333333);\n        max-width: 800px;\n        margin: 1em auto;\n        text-align: center;\n    }\n\n    \/* Hero section *\/\n    .tesery-hero-section {\n        padding: 60px 24px;\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        align-items: center;\n        text-align: center;\n    }\n\n    .tesery-hero-content-wrapper {\n        display: flex;\n        flex-direction: row;\n        align-items: center;\n        max-width: 1200px;\n        width: 100%;\n        gap: 50px;\n    }\n    \n    .tesery-hero-image-banner {\n        flex: 1;\n        max-width: 600px;\n        box-shadow: var(--shadow-heavy, 0 20px 60px rgba(0,0,0,0.15));\n        border-radius: var(--border-radius, 16px);\n    }\n    .tesery-hero-image-banner .hero-image {\n        width: 100%;\n        height: auto;\n        display: block;\n        border-radius: var(--border-radius, 16px);\n        object-fit: cover;\n    }\n\n    .tesery-hero-text-content-wrapper {\n        flex: 1;\n        max-width: 600px;\n        text-align: left;\n    }\n\n    .tesery-hero-text-content-wrapper h1 {\n        font-size: 3.5em;\n        color: var(--text-dark, #333333);\n        margin-bottom: 0.2em;\n        line-height: 1.1;\n        text-align: left;\n    }\n    .tesery-hero-text-content-wrapper .hero-description {\n        font-size: 1.1em;\n        color: var(--text-medium);\n        margin: 0.5em 0 1em 0;\n        max-width: 700px;\n        text-align: left;\n    }\n    .tesery-hero-text-content-wrapper .subtitle {\n        font-size: 1.5em;\n        color: var(--text-medium);\n        margin-bottom: 1.5em;\n        font-style: italic;\n        text-align: left;\n    }\n    .tesery-hero-text-content-wrapper .prop-grid {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: flex-start;\n        gap: 12px;\n        max-width: 100%;\n        margin-bottom: 0;\n    }\n\n    .tesery-hero-section .prop-item {\n        display: flex;\n        align-items: center;\n        background: rgba(255, 255, 255, 0.7);\n        backdrop-filter: blur(10px);\n        border-radius: 50px;\n        padding: 8px 16px;\n        font-weight: 600;\n        color: var(--text-dark, #333333);\n        font-size: 1em;\n        white-space: nowrap;\n        box-shadow: var(--shadow-light-glass);\n        border: 1px solid var(--border-color-light-glass);\n        flex-grow: 0;\n        flex-basis: auto;\n        justify-content: center;\n    }\n    \n    .tesery-feature-grid-section .feature-container {\n        padding: 40px 24px;\n        max-width: 100%;\n        margin: 0 auto;\n        box-sizing: border-box;\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n    .tesery-product-description-container .feature-item {\n        display: flex;\n        align-items: center;\n        gap: 40px;\n        max-width: 1200px;\n        margin: 40px auto;\n    }\n    .tesery-product-description-container .feature-item-content {\n        flex: 1;\n        text-align: center;\n    }\n    .tesery-product-description-container .feature-item-image-wrapper {\n        flex: 1;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .feature-item img {\n        max-width: 100%;\n        height: auto;\n        border-radius: var(--border-radius, 16px);\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0,0,0,0.12));\n    }\n    .tesery-product-description-container .feature-item:nth-child(even) {\n        flex-direction: row-reverse;\n    }\n    .tesery-product-description-container .feature-item:nth-child(even) .feature-item-content {\n        text-align: center;\n    }\n    .tesery-product-description-container .feature-item h4 {\n        font-size: 2em;\n        color: var(--accent-color, #B5838D);\n        margin-bottom: 0.5em;\n        text-align: center;\n    }\n    .tesery-product-description-container .feature-item p {\n        text-align: center;\n        color: var(--text-medium);\n        font-size: 1.1em;\n        line-height: 1.7;\n    }\n    .tesery-product-description-container .feature-item:nth-child(even) p {\n        text-align: center;\n    }\n\n    .tesery-specs-section.content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n    .tesery-product-description-container .specs-section-content {\n        margin: 2em auto;\n        max-width: 900px;\n        text-align: left;\n    }\n    .tesery-product-description-container .specs-list {\n        list-style-type: none;\n        padding: 0;\n        margin: 1em 0;\n    }\n    .tesery-product-description-container .specs-list li {\n        padding: 12px 20px;\n        background: rgba(255, 255, 255, 0.5);\n        border: 1px solid var(--border-color-light-glass);\n        border-radius: 8px;\n        margin-bottom: 8px;\n        font-weight: 400;\n        color: var(--text-medium);\n    }\n    .tesery-product-description-container .specs-list li strong {\n        color: var(--accent-color, #B5838D);\n        font-weight: 600;\n    }\n    .tesery-product-description-container .specs-list ul {\n        list-style-type: disc;\n        padding-left: 20px;\n        margin-top: 8px;\n    }\n    .tesery-product-description-container .specs-list ul li {\n        background: transparent;\n        border: none;\n        padding: 4px 0;\n        margin-bottom: 0;\n        color: var(--text-medium);\n    }\n\n    .tesery-package-section.content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n\n    .tesery-product-description-container .package-section-content {\n        margin: 2em auto;\n        max-width: 900px;\n        text-align: center;\n    }\n    .tesery-product-description-container .package-section-content p {\n        color: var(--text-medium);\n    }\n    .tesery-product-description-container .package-section-content ul {\n        list-style-type: none;\n        padding: 0;\n        margin: 1em 0;\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 1em;\n    }\n    .tesery-product-description-container .package-section-content li {\n        background: rgba(255, 255, 255, 0.5);\n        border: 1px solid var(--border-color-light-glass);\n        border-radius: 8px;\n        padding: 12px 20px;\n        font-weight: 600;\n        color: var(--text-dark);\n        box-shadow: 0 4px 15px rgba(0,0,0,0.05);\n        transition: transform 0.2s;\n    }\n    .tesery-product-description-container .package-section-content li:hover {\n        transform: translateY(-2px);\n    }\n\n    .tesery-faq-section.content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n    .tesery-product-description-container .faq-section-content {\n        margin: 2em auto;\n        max-width: 900px;\n        text-align: left;\n    }\n\n    .tesery-product-description-container .faq-item {\n        margin-bottom: 12px;\n        background: rgba(255, 255, 255, 0.5);\n        border-radius: var(--border-radius, 16px);\n        border: 1px solid var(--border-color-light-glass);\n        transition: all 0.3s ease;\n        overflow: hidden;\n    }\n\n    .tesery-product-description-container .faq-item:hover {\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0,0,0,0.12));\n        border-color: var(--accent-light, #B5838D);\n    }\n\n    .tesery-product-description-container .faq-item details {\n        border: none;\n    }\n\n    .tesery-product-description-container .faq-item summary {\n        padding: 20px 56px 20px 24px;\n        font-weight: 600;\n        font-size: 1.05rem;\n        cursor: pointer;\n        color: var(--text-dark, #333333);\n        transition: all 0.3s ease;\n        position: relative;\n        list-style: none;\n        outline: none;\n        user-select: none;\n        background: transparent;\n        text-align: left;\n    }\n\n    .tesery-product-description-container .faq-item summary::-webkit-details-marker {\n        display: none;\n    }\n\n    .tesery-product-description-container .faq-item summary::after {\n        content: '+';\n        position: absolute;\n        right: 24px;\n        top: 50%;\n        transform: translateY(-50%);\n        font-size: 20px;\n        color: var(--accent-color, #B5838D);\n        transition: all 0.3s ease;\n        font-weight: 300;\n        line-height: 1;\n    }\n\n    .tesery-product-description-container .faq-item details[open] summary::after {\n        content: '−';\n        transform: translateY(-50%) rotate(0deg);\n    }\n\n    .tesery-product-description-container .faq-item summary:hover {\n        background: rgba(0, 0, 0, 0.02);\n    }\n\n    .tesery-product-description-container .faq-content {\n        padding: 0 24px 20px;\n        color: var(--text-medium, #666666);\n        line-height: 1.6;\n        animation: fadeIn 0.3s ease-in-out;\n        text-align: left;\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0; transform: translateY(-10px); }\n        to { opacity: 1; transform: translateY(0); }\n    }\n\n    .tesery-trust-section.content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n    .tesery-product-description-container .trust-section-content {\n        max-width: 1000px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .review-container {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 24px;\n        margin: 2em 0;\n    }\n\n    .tesery-product-description-container .review-box {\n        flex: 1;\n        min-width: 300px;\n        max-width: 45%;\n        border: 1px solid var(--border-color-light-glass);\n        border-radius: var(--border-radius, 8px);\n        padding: 20px;\n        background: rgba(255, 255, 255, 0.5);\n        box-shadow: var(--shadow-light-glass);\n        transition: all 0.3s ease;\n        display: flex;\n        flex-direction: column;\n        justify-content: space-between;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .review-box:hover {\n        transform: translateY(-5px);\n        box-shadow: var(--shadow-medium, 0 8px 40px rgba(0,0,0,0.12));\n    }\n\n    .tesery-product-description-container .review-header {\n        display: flex;\n        flex-direction: column;\n        align-items: center;\n        margin-bottom: 12px;\n    }\n\n    .tesery-product-description-container .review-avatar {\n        width: 48px;\n        height: 48px;\n        border-radius: 50%;\n        background: var(--border-color-light);\n        color: var(--star-yellow, #d4af37);\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        font-weight: bold;\n        margin-bottom: 8px;\n        font-size: 1.2em;\n        flex-shrink: 0;\n    }\n\n    .tesery-product-description-container .review-stars {\n        color: var(--star-yellow, #ffd700);\n        margin-right: 4px;\n        font-size: 1.1em;\n    }\n    .tesery-product-description-container .review-stars + span {\n        font-weight: 600;\n        color: var(--text-dark, #333333);\n        display: block;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .testimonial {\n        font-style: italic;\n        color: var(--text-medium, #666666);\n        margin: 1em 0 0;\n        padding-left: 0;\n        border-left: none;\n        font-size: 1em;\n        text-align: center;\n    }\n\n    .tesery-cta-section.content-card {\n        background: var(--bg-card-light-glass);\n        backdrop-filter: blur(10px);\n        box-shadow: var(--shadow-light-glass);\n        border-radius: 24px;\n        border: 1px solid var(--border-color-light-glass);\n    }\n    .tesery-cta-section h2 {\n        color: var(--text-dark);\n        font-size: 2.5em;\n        margin-bottom: 0.5em;\n    }\n    .tesery-cta-section p {\n        color: var(--text-medium);\n        margin-bottom: 2em;\n        font-size: 1.2em;\n    }\n    .tesery-product-description-container .brand-button {\n        background: var(--bg-cta-button);\n        color: var(--accent-color, #B5838D);\n        padding: 16px 40px;\n        border-radius: 50px;\n        font-weight: 700;\n        text-transform: none;\n        font-size: 1.2em;\n        transition: all 0.4s ease;\n        border: none;\n        cursor: pointer;\n        margin: 0 auto;\n        display: block;\n        max-width: 320px;\n        box-shadow: 0 10px 30px rgba(0,0,0,0.2);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .tesery-product-description-container .brand-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);\n        transition: left 0.5s;\n    }\n\n    .tesery-product-description-container .brand-button:hover::before {\n        left: 100%;\n    }\n\n    .tesery-product-description-container .brand-button:hover {\n        transform: translateY(-3px);\n        box-shadow: 0 15px 40px rgba(0,0,0,0.3);\n        color: var(--accent-color);\n    }\n\n    .tesery-product-description-container .brand-button a {\n        text-decoration: none;\n        color: inherit;\n        display: block;\n    }\n\n\n    \/* Responsive adjustments *\/\n    @media (max-width: 1024px) {\n        .tesery-hero-content-wrapper {\n            flex-direction: column;\n            gap: 20px;\n        }\n        .tesery-hero-image-banner, .tesery-hero-text-content-wrapper {\n            max-width: 100%;\n            text-align: center;\n        }\n        .tesery-hero-text-content-wrapper h1,\n        .tesery-hero-text-content-wrapper .hero-description,\n        .tesery-hero-text-content-wrapper .subtitle {\n            text-align: center;\n        }\n        .tesery-hero-text-content-wrapper .prop-grid {\n            justify-content: center;\n        }\n        .tesery-product-description-container .feature-grid {\n            max-width: 90%;\n        }\n        .tesery-product-description-container .specs-section-content {\n            max-width: 90%;\n        }\n        .tesery-product-description-container .faq-section-content {\n            max-width: 90%;\n        }\n        .tesery-product-description-container .trust-section-content {\n            max-width: 90%;\n        }\n\n        .tesery-product-description-container .feature-item {\n            flex-direction: column;\n            text-align: center;\n        }\n        .tesery-product-description-container .feature-item:nth-child(even) {\n            flex-direction: column;\n        }\n        .tesery-product-description-container .feature-item .feature-item-content,\n        .tesery-product-description-container .feature-item:nth-child(even) .feature-item-content {\n            text-align: center;\n        }\n    }\n\n    @media (max-width: 768px) {\n        .tesery-product-description-container section {\n            padding: 30px 16px;\n        }\n\n        .tesery-product-description-container h2 {\n            font-size: 2.2em;\n        }\n\n        .tesery-product-description-container h3 {\n            font-size: 1.8em;\n            margin: 2em 0 0.8em;\n        }\n        .tesery-product-description-container h3.section-header {\n             font-size: 1.8em;\n             padding: 12px 30px;\n             margin: 2.5em auto 1em;\n             color: var(--text-dark-on-light);\n        }\n\n        .tesery-hero-text-content-wrapper h1 {\n            font-size: 2.8em;\n        }\n        .tesery-hero-text-content-wrapper .subtitle {\n            font-size: 1.2em;\n        }\n        .tesery-hero-image-banner {\n            margin-bottom: 20px;\n        }\n        .tesery-hero-image-banner .hero-image {\n            border-radius: 12px;\n        }\n\n        .tesery-hero-text-content-wrapper .prop-grid {\n            justify-content: space-evenly;\n            gap: 8px;\n            margin-bottom: 20px;\n        }\n        .tesery-product-description-container .prop-item {\n            font-size: 1em;\n            padding: 8px 15px;\n            color: var(--text-dark, #333333);\n        }\n        .tesery-product-description-container .prop-item span {\n            font-size: 1em;\n        }\n\n        .tesery-faq-item summary {\n            padding: 16px 44px 16px 20px;\n            font-size: 0.95rem;\n            color: var(--text-dark, #333333);\n        }\n\n        .tesery-faq-item summary::after {\n            right: 20px;\n            font-size: 18px;\n        }\n\n        .tesery-faq-content {\n            padding: 0 20px 16px;\n            font-size: 0.9rem;\n        }\n\n        .tesery-product-description-container .review-container {\n            flex-direction: column;\n            align-items: center;\n            gap: 16px;\n        }\n\n        .tesery-product-description-container .review-box {\n            max-width: 90%;\n            margin: 0;\n            padding: 16px;\n        }\n\n        .tesery-product-description-container .review-avatar {\n            width: 40px;\n            height: 40px;\n            margin-right: 10px;\n            font-size: 1em;\n        }\n        .tesery-cta-section h2 {\n            font-size: 2em;\n        }\n        .tesery-cta-section p {\n            font-size: 1.1em;\n        }\n        .tesery-product-description-container .brand-button {\n            padding: 14px 30px;\n            font-size: 1em;\n            max-width: 280px;\n        }\n    }\n\n    @media (max-width: 480px) {\n        .tesery-product-description-container section {\n            padding: 20px 12px;\n        }\n\n        .tesery-product-description-container h2 {\n            font-size: 1.8em;\n        }\n        .tesery-product-description-container h3 {\n            font-size: 1.6em;\n        }\n        .tesery-product-description-container h3.section-header {\n             font-size: 1.6em;\n             padding: 10px 20px;\n             margin: 2em auto 0.8em;\n        }\n\n        .tesery-hero-text-content-wrapper h1 {\n            font-size: 2.2em;\n        }\n        .tesery-hero-text-content-wrapper .subtitle {\n            font-size: 1.1em;\n        }\n        .tesery-hero-text-content-wrapper .prop-grid {\n            justify-content: space-evenly;\n            gap: 8px;\n            margin-bottom: 20px;\n        }\n        .tesery-product-description-container .prop-item {\n            font-size: 0.9em;\n            padding: 6px 12px;\n            flex-grow: 0;\n            flex-basis: 45%;\n        }\n        .tesery-product-description-container .feature-item {\n            gap: 20px;\n            margin: 30px auto;\n        }\n        .tesery-product-description-container .feature-item h4 {\n            font-size: 1.6em;\n        }\n        .tesery-product-description-container .feature-item p {\n            font-size: 1em;\n        }\n        .tesery-cta-section h2 {\n            font-size: 1.8em;\n        }\n        .tesery-cta-section p {\n            font-size: 1em;\n        }\n        .tesery-product-description-container .brand-button {\n            padding: 12px 25px;\n            font-size: 0.9em;\n            max-width: 250px;\n        }\n    }\n    \/* === Scoped CSS Rules End === *\/\n\u003c\/style\u003e\n\u003cstyle\u003e\n        :root {\n            --primary-color: #ffffff;\n            --secondary-color: #B5838D;\n            --accent-color: #B5838D;\n            --accent-light: #C79F9C;\n            --accent-secondary: #E0B195;\n            --warm-white: #f8f8f8;\n            --crisp-white: #ffffff;\n            --text-dark: #333333;\n            --text-medium: #666666;\n            --text-light: #999999;\n            \/* Light Glassmorphism variables with warm tones *\/\n            --gradient-light-glass: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);\n            --bg-card-light-glass: rgba(255, 255, 255, 0.7);\n            --bg-light-accent: #e9e9eb;\n            --border-color-light-glass: rgba(255, 255, 255, 0.2);\n            --shadow-light-glass: 0 4px 20px rgba(0,0,0,0.08);\n            --text-dark-on-light: #333333;\n            --bg-cta-button: #ffffff;\n            --gradient-primary: linear-gradient(135deg, #B5838D 0%, #7C5E6A 100%);\n            --gradient-secondary: linear-gradient(135deg, #E0B195 0%, #B5838D 100%);\n            --border-radius: 16px;\n            --shadow-light: 0 4px 20px rgba(0,0,0,0.08);\n            --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);\n            --shadow-heavy: 0 20px 60px rgba(0,0,0,0.15);\n            --star-yellow: #fbbf24;\n            --gradient-yellow-orange: linear-gradient(135deg, #FFEF96 0%, #FFB670 100%);\n            \/* New, more subtle pink gradient *\/\n            --gradient-subtle-pink: linear-gradient(135deg, #FDE6E4 0%, #F8D3C8 100%);\n        }\n    \u003c\/style\u003e\n\u003cdiv class=\"tesery-product-description-container\"\u003e\n\u003csection class=\"tesery-hero-section\"\u003e\n\u003cdiv class=\"tesery-hero-content-wrapper\"\u003e\n\u003cdiv class=\"tesery-hero-image-banner\" style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/license-plate-projection-lights-for-model-3-highlandmodel-y-5987876.jpg?v=1754648477\u0026amp;width=713\" alt=\"Tesla 번호판 프로젝션 라이트\" class=\"hero-image\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"tesery-hero-text-content-wrapper\"\u003e\n\u003ch2\u003eModel 3\/Y용 번호판 프로젝션 라이트\u003c\/h2\u003e\n\u003cp class=\"hero-description\"\u003eModel 3\/Y를 위한 맞춤형 프로젝션 라이트로, 선명한 바닥 프로젝션으로 차량의 개성과 인지도를 즉시 높여주어 당신의 차량을 돋보이게 합니다.\u003c\/p\u003e\n\u003cp class=\"subtitle\"\u003e개인 맞춤 프로젝션, 당신의 스타일을 밝혀보세요.\u003c\/p\u003e\n\u003cdiv class=\"prop-grid\"\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #ff6b6b;\"\u003e향상된 냉각\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #4ecdc4;\"\u003e다양한 스타일\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #ffd93d;\"\u003e비파괴\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #45b7d1;\"\u003e오래 지속됨\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #b5838d;\"\u003e향상된 스타일\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #9a64b2;\"\u003eHD 프로젝션\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-feature-grid-section content-card\"\u003e\n\u003ch3 class=\"section-header\"\u003e주요 특징 및 장점\u003c\/h3\u003e\n\u003cdiv class=\"feature-container\"\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/license-plate-projection-lights-for-model-3-highlandmodel-y-6836781.jpg?v=1754648476\u0026amp;width=713\" alt=\"업그레이드된 열 방출\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e내구성을 위한 설계: 200% 향상된 열 방출\u003c\/h4\u003e\n\u003cp\u003e비할 데 없는 성능과 내구성을 경험하세요. 완전히 업그레이드된 디자인은 200% 향상된 열 방출을 위해 대형 알루미늄 히트싱크를 특징으로 합니다. 이 첨단 냉각 시스템은 LED 프로젝터가 밝고 안정적으로 수년간 지속되도록 보장합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/license-plate-projection-lights-for-model-3-highlandmodel-y-3119279.jpg?v=1754648476\u0026amp;width=713\" alt=\"선택 가능한 다양한 스타일\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e다양한 디자인으로 나만의 스타일 발산\u003c\/h4\u003e\n\u003cp\u003e다이내믹한 'Time Tunnel', 우아한 'Commemorative Badge', 그리고 상징적인 'Moon Landing Badge'를 포함한 엄선된 프로젝션 패턴 중에서 선택하세요. 당신의 개성을 표현하고 강렬한 인상을 남길 완벽한 디자인을 찾으세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/license-plate-projection-lights-for-model-3-highlandmodel-y-6700505.jpg?v=1754648478\u0026amp;width=713\" alt=\"전후 비교\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e즉시 차량 변신\u003c\/h4\u003e\n\u003cp\u003e밋밋한 순정 라이트는 버리고 개성을 표현하세요. 우리의 프로젝션 라이트는 차량의 존재감을 높이는 놀라운 시각 효과를 만듭니다. 선명하고 고화질의 프로젝션은 단순한 차량 출입을 기억에 남는 이벤트로 바꾸어 세심한 디테일과 개인적인 스타일을 보여줍니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/license-plate-projection-lights-for-model-3-highlandmodel-y-8759065.png?v=1754648477\u0026amp;width=713\" alt=\"비파괴 설치\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e손쉬운 설치, 수정 제로\u003c\/h4\u003e\n\u003cp\u003e진정한 플러그 앤 플레이 디자인으로 원활한 업그레이드를 즐기세요. 이 비파괴 교체 부품은 드릴링, 절단 또는 복잡한 배선 없이 원래 라이트 하우징에 완벽하게 맞습니다. 15분 이내에 원하는 프리미엄 룩을 얻으세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-specs-section content-card\"\u003e\n\u003ch3 class=\"section-header\"\u003e제품 사양\u003c\/h3\u003e\n\u003cdiv class=\"specs-section-content\"\u003e\n\u003cul class=\"specs-list\"\u003e\n\u003cli\u003e\n\u003cstrong\u003e호환성:\u003c\/strong\u003e\n\u003cul\u003e\n\u003cli\u003eTesla Model 3 2017-Present\u003c\/li\u003e\n\u003cli\u003eTesla Model Y 2020-2025.3\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/li\u003e\n\u003cli\u003e\n\u003cstrong\u003e설치:\u003c\/strong\u003e\n\u003cul\u003e\n\u003cli\u003e방법: 원래 라이트를 손상 없이 교체\u003c\/li\u003e\n\u003cli\u003e설치 시간: 약 15분\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-package-section content-card\"\u003e\n\u003ch3 class=\"section-header\"\u003e박스 구성품\u003c\/h3\u003e\n\u003cdiv class=\"package-section-content\"\u003e\n\u003cp\u003e표준 패키지에는 다음이 포함됩니다:\u003c\/p\u003e\n\u003cul\u003e\n\u003cli\u003e번호판 프로젝션 라이트 x 1\u003c\/li\u003e\n\u003cli\u003e설치 도구 x 1\u003c\/li\u003e\n\u003cli\u003e사용 설명서 x 1\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-faq-section content-card\"\u003e\n\u003ch3 class=\"section-header\"\u003e자주 묻는 질문\u003c\/h3\u003e\n\u003cdiv class=\"faq-section-content\"\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e이 프로젝션 라이트가 원래 번호판 조명에 영향을 미치나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e아니요. 우리의 프로젝션 라이트는 원래 번호판 조명을 손상시키지 않고 추가적인 바닥 프로젝션 효과를 제공합니다. 광원은 밝고 규제 요구 사항을 충족합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e설치가 어렵나요? 전문가가 필요합니까?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e설치는 매우 쉽고 도구나 배선 수정이 필요 없습니다. 원래 번호판 라이트를 제거하고 새 라이트를 끼우기만 하면 됩니다. 자세한 설치 가이드를 제공하므로 대부분의 사용자가 쉽게 직접 설치할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e프로젝션 패턴은 얼마나 선명한가요? 흐릿해지나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e우리는 고정밀 광학 렌즈와 맞춤형 고휘도 LED 비드를 사용하여 프로젝션 패턴이 선명하고 뚜렷하게 나타나도록 합니다. 특별한 방열 설계로 인해 고온으로 인해 패턴이 흐려지거나 왜곡되는 것을 방지합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003e이 프로젝션 라이트가 제 Model Y와 호환되나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e네, 이 제품은 Model 3 및 Model Y의 모든 버전과 완벽하게 호환됩니다. 여기에는 Model 3 2017-현재 및 Model Y 2020-2025.3이 포함됩니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-cta-section content-card\"\u003e\n\u003ch2\u003e업그레이드할 준비가 되셨나요? 당신만의 스타일을 밝혀보세요.\u003c\/h2\u003e\n\u003cp\u003e설치가 쉬워 밤에 차량에 독특한 매력을 더해줍니다.\u003c\/p\u003e\n\u003cbutton class=\"brand-button\"\u003e \u003ca rel=\"noopener\" title=\"tesla light accessories\" href=\"https:\/\/www.tesery.com\/collections\/tesla-light-accessories\" target=\"_blank\"\u003e더 많은 라이트 액세서리 탐색 ➔ \u003c\/a\u003e\u003c\/button\u003e\u003c\/section\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요 \/ 타임 터널","offer_id":47571576226024,"sku":null,"price":39.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 기념 배지","offer_id":47571576258792,"sku":null,"price":39.99,"currency_code":"USD","in_stock":true},{"title":"선택해 주세요 \/ 문 랜딩 배지","offer_id":47571576291560,"sku":null,"price":39.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 2017-현재 \/ 타임 터널","offer_id":47571576324328,"sku":"TLA002-TT","price":39.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 2017-현재 \/ 기념 배지","offer_id":47571576357096,"sku":"TLA002-CE","price":39.99,"currency_code":"USD","in_stock":true},{"title":"Model 3 2017-현재 \/ 문 랜딩 배지","offer_id":47571576389864,"sku":"TLA002-LM","price":39.99,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025.3 \/ 타임 터널","offer_id":47571576422632,"sku":"TLA002-TT","price":39.99,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025.3 \/ 기념 배지","offer_id":47571576455400,"sku":"TLA002-CE","price":39.99,"currency_code":"USD","in_stock":true},{"title":"Model Y 2020-2025.3 \/ 문 랜딩 배지","offer_id":47571576488168,"sku":"TLA002-LM","price":39.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/license-plate-projection-lights-for-model-3-highlandmodel-y-3119279.jpg?v=1754648476"},{"product_id":"tesla-starry-sky-sunroof-ambient-lighting","title":"테슬라용 별이 빛나는 하늘 선루프 프로젝터 앰비언트 조명丨은하 조명 효과","description":"\u003cstyle\u003e\n    \/* Define Colors for Black and White Theme *\/\n    :root {\n        --primary-color: #000; \/* Main text and accents (Pure Black) *\/\n        --dark-text: #000; \/* Text color set to pure black *\/\n        --light-border: #f3f3f3; \/* Very light border color *\/\n        --hover-border: #000; \/* Black border on hover *\/\n        --hover-text: #000; \n        --light-bg: #f7f7f7;\n        --white-bg: #ffffff;\n        --accent-color: #04d8cd; \/* Used for dividers or small accents *\/\n        --ultra-light-bg: #fcfcfc; \/* Ultra light, nearly white background for features *\/\n    }\n\n    .tesery-product-description-container {\n        font-family: 'Arial', sans-serif;\n        max-width: 1200px;\n        margin: 0 auto;\n        padding: 20px;\n        color: var(--dark-text);\n        line-height: 1.6;\n        background-color: var(--white-bg); \/* Ensure main background is white *\/\n    }\n\n    \/* *** MODIFIED: Main Title H2 and Tags *** *\/\n    .tesery-product-description-container h2 {\n        color: var(--dark-text);\n        font-size: 32px;\n        margin-bottom: 5px; \n        text-align: center;\n        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);\n    }\n    \n    \/* *** NEW: H2 Divider Style *** *\/\n    .h2-divider {\n        width: 50px; \n        height: 3px;\n        background-color: var(--primary-color); \n        margin: 0px auto 10px; \n        border-radius: 2px;\n    }\n\n    .product-tags {\n        text-align: center;\n        margin-bottom: 30px;\n        display: flex;\n        justify-content: center;\n        gap: 10px;\n        flex-wrap: wrap;\n    }\n\n    .product-tags .tag {\n        display: inline-block;\n        padding: 5px 10px;\n        background-color: var(--light-bg);\n        border: 1px solid var(--light-border);\n        border-radius: 6px;\n        font-size: 14px;\n        color: var(--dark-text);\n        font-weight: 500;\n    }\n\n    \/* *** MODIFIED: Section Title H3 font size *** *\/\n    .tesery-product-description-container h3 {\n        color: var(--dark-text);\n        font-size: 28px; \n        margin-top: 30px;\n        margin-bottom: 15px;\n        text-align: center;\n    }\n\n    .tesery-product-description-container h4 {\n        font-size: 20px;\n        margin-bottom: 10px;\n        color: var(--primary-color); \n    }\n\n    .tesery-product-description-container p {\n        font-size: 16px;\n        line-height: 1.6;\n        margin-bottom: 15px;\n        text-align: justify;\n    }\n    \n    \/* Main Visual (Image Placeholder) *\/\n    .main-visual-item {\n        border-radius: 12px;\n        overflow: hidden;\n        margin-bottom: 40px;\n        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);\n        text-align: center;\n        position: relative; \n        width: 100%;\n        max-height: 600px;\n        background: var(--light-bg);\n    }\n    .main-visual-item img {\n        width: 100%;\n        height: auto;\n        display: block;\n        object-fit: contain;\n    }\n    \n    \/* Features Section *\/\n    .features-section {\n        margin-bottom: 40px;\n        background: var(--white-bg);\n        padding: 30px 0;\n        border-radius: 12px;\n    }\n\n    .feature-item {\n        display: flex;\n        margin-bottom: 40px;\n        gap: 40px;\n        align-items: center;\n        padding: 20px;\n        border-radius: 12px;\n        transition: transform 0.3s ease, box-shadow 0.3s ease;\n        background-color: var(--ultra-light-bg); \/* Ultra light, nearly white background *\/\n    }\n\n    .feature-item:hover {\n        transform: translateY(-5px);\n        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);\n    }\n\n    .feature-image {\n        flex: 1;\n        aspect-ratio: 1\/1; \/* 1:1 Aspect Ratio *\/\n        border-radius: 12px;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        overflow: hidden;\n        max-width: 40%; \n        position: relative;\n    }\n    \n    .feature-image img {\n        width: 100%;\n        height: 100%;\n        object-fit: cover;\n        border-radius: 12px;\n        transition: transform 0.5s ease;\n    }\n    \n    .feature-item:hover .feature-image img {\n        transform: scale(1.05);\n    }\n\n    .feature-content {\n        flex: 1;\n        padding: 0 15px;\n        max-width: 60%;\n    }\n\n    .feature-divider {\n        width: 60px;\n        height: 3px;\n        background-color: var(--primary-color);\n        margin-bottom: 15px;\n    }\n\n    .feature-item.reverse {\n        flex-direction: row-reverse;\n    }\n    \n    \/* Product Breakdown (Specs \u0026 Accessories) *\/\n    .product-breakdown {\n        display: flex;\n        justify-content: space-between; \n        gap: 20px;\n        margin-bottom: 40px;\n    }\n    \n    .breakdown-section {\n        flex: 0 1 calc(50% - 10px);\n        padding: 30px;\n        background-color: var(--white-bg);\n        border: 1px dashed var(--primary-color); \n        border-radius: 12px;\n        text-align: center;\n    }\n    \n    .breakdown-section h4 {\n        margin-top: 0;\n        color: var(--primary-color); \n        text-align: center;\n    }\n\n    .breakdown-section ul {\n        list-style: none;\n        padding: 0;\n        text-align: left;\n        max-width: 450px;\n        margin: 0 auto;\n        margin-bottom: 20px;\n    }\n    \n    .breakdown-section li {\n        margin-bottom: 10px;\n        font-size: 16px;\n        color: var(--dark-text);\n        position: relative;\n        padding-left: 20px;\n    }\n    \n    .breakdown-section li::before {\n        content: '•';\n        color: var(--primary-color); \n        font-weight: bold;\n        position: absolute;\n        left: 0;\n        font-size: 20px;\n        line-height: 1;\n    }\n    \n    \/* *** FAQ Section Styles (Pure CSS Accordion) *** *\/\n    .faq-section {\n        margin-top: 50px;\n        margin-bottom: 40px;\n        padding: 0 20px; \n    }\n\n    .faq-item {\n        margin-bottom: 10px;\n        border: 1px solid var(--light-border); \n        border-radius: 12px; \n        overflow: hidden;\n        background-color: var(--white-bg);\n        transition: box-shadow 0.3s ease, border-color 0.2s ease; \n        width: 100%;\n    }\n\n    .faq-item:hover {\n        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);\n        border-color: var(--hover-border); \n    }\n\n    \/* Hidden Checkbox for Pure CSS Toggle *\/\n    .faq-toggle {\n        display: none;\n    }\n\n    .faq-question {\n        background-color: var(--white-bg);\n        padding: 15px 20px;\n        cursor: pointer;\n        font-weight: normal; \n        font-size: 17px;\n        display: flex;\n        justify-content: space-between;\n        align-items: center;\n        transition: color 0.2s ease;\n        color: var(--dark-text); \n        white-space: normal;\n        word-break: break-word;\n    }\n    \n    .faq-question:hover {\n        color: var(--hover-text);\n    }\n\n    \/* Expand\/Collapse Indicator *\/\n    .faq-question::after {\n        content: '+';\n        font-size: 20px;\n        color: var(--primary-color);\n        transition: transform 0.3s ease;\n        flex-shrink: 0; \n    }\n\n    \/* When checkbox is checked, change the indicator to '-' *\/\n    .faq-toggle:checked + .faq-question::after {\n        content: '-';\n        transform: rotate(0deg);\n    }\n\n    .faq-answer {\n        padding: 0 20px;\n        max-height: 0;\n        overflow: hidden;\n        \/* Increase transition time for smoother reveal of large max-height *\/\n        transition: max-height 0.7s ease-in-out, padding 0.5s ease-in-out; \n        background-color: var(--white-bg);\n        border-top: 1px solid var(--light-border);\n    }\n    \n    \/* When checkbox is checked, expand the answer *\/\n    .faq-toggle:checked + .faq-question + .faq-answer {\n        padding: 15px 20px;\n        \/* Use a large fixed max-height to ensure all content fits *\/\n        max-height: 500px; \n        border-top-color: var(--hover-border);\n    }\n\n    .faq-answer p {\n        font-size: 15px;\n        color: #555; \n        margin-bottom: 0;\n        text-align: left;\n    }\n\n    \/* Responsive Design *\/\n    @media (max-width: 768px) {\n        .tesery-product-description-container {\n            padding: 10px;\n        }\n        .feature-item, .feature-item.reverse {\n            flex-direction: column;\n            align-items: center;\n            margin-bottom: 20px;\n        }\n        .feature-image {\n            max-width: 80%;\n        }\n        .feature-content {\n            max-width: 100%;\n            padding: 0;\n            text-align: center;\n        }\n        .feature-content h4 {\n            text-align: center;\n        }\n        .feature-content p {\n            text-align: left;\n        }\n        .product-breakdown {\n            flex-direction: column;\n        }\n        .breakdown-section {\n            flex: 1;\n            margin-bottom: 20px;\n        }\n        .breakdown-section ul {\n            max-width: 100%;\n        }\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"tesery-product-description-container\"\u003e\n\u003cdiv style=\"text-align: center;\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003ch2\u003eTesla용 별이 빛나는 하늘 선루프 프로젝션 라이트\u003c\/h2\u003e\n\u003cdiv class=\"h2-divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cdiv class=\"product-tags\"\u003e\n\u003cspan class=\"tag\"\u003e은하 분위기 조명\u003c\/span\u003e \u003cspan class=\"tag\"\u003e360° 초점 조절\u003c\/span\u003e \u003cspan class=\"tag\"\u003eUSB 전원 안전 설계\u003c\/span\u003e \u003cspan class=\"tag\"\u003e플러그 앤 플레이\u003c\/span\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"features-section\"\u003e\n\u003ch3\u003e주요 장점\u003c\/h3\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-image\" style=\"text-align: start;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/starry-sky-sunroof-projector-ambient-lighting-for-tesla-galaxy-lighting-effect-7029616.jpg?v=1764139151\u0026amp;width=713\" alt=\"플러그 앤 플레이 USB 설치\" loading=\"lazy\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003ch4\u003e간편한 설치 및 최대 안전성\u003c\/h4\u003e\n\u003cdiv class=\"feature-divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cp\u003e즉시 켜지며, 별도의 설치나 배선이 필요 없는 진정한 플러그 앤 플레이입니다. 특히 내부 배터리가 없어 저가 충전식 기기에서 흔히 발생하는 과열 및 화재 위험을 제거하여 안전하고 안정적인 USB 전원 공급을 보장합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item reverse\"\u003e\n\u003cdiv style=\"text-align: start;\" class=\"feature-image\"\u003e\u003cimg style=\"margin-bottom: 16px; float: none;\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/starry-sky-sunroof-projector-ambient-lighting-for-tesla-galaxy-lighting-effect-3315383.jpg?v=1762992977\u0026amp;width=600\" alt=\"초고화질 광각 투사\" loading=\"lazy\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003ch4\u003e초고화질 광각 투사\u003c\/h4\u003e\n\u003cdiv class=\"feature-divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cp\u003e초고화질 광각 렌즈가 탑재되어 선명하고 사실적인 별이 빛나는 하늘을 투사합니다. 360° 수동 초점 링으로 선명도, 크기, 각도를 미세 조정하여 선루프 전체에 완벽한 엣지 투 엣지 커버리지를 제공합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-image\" style=\"text-align: start;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/starry-sky-sunroof-projector-ambient-lighting-for-tesla-galaxy-lighting-effect-8305245.jpg?v=1764139151\u0026amp;width=713\" alt=\"다양한 투사 스타일 옵션\" loading=\"lazy\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003ch4\u003e당신의 우주를 선택하세요: 스타일 옵션\u003c\/h4\u003e\n\u003cdiv class=\"feature-divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cp\u003e두 가지 독특하고 교체 가능한 스타일 옵션으로 우주를 맞춤 설정하세요:\u003c\/p\u003e\n\u003cul\u003e\n\u003cli\u003e은하\u003c\/li\u003e\n\u003cli\u003e토성의 고리\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item reverse\"\u003e\n\u003cdiv class=\"feature-image\" style=\"text-align: start;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/starry-sky-sunroof-projector-ambient-lighting-for-tesla-galaxy-lighting-effect-4591426.jpg?v=1762992979\u0026amp;width=600\" alt=\"세련된 알루미늄 합금 바디\" loading=\"lazy\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-content\"\u003e\n\u003ch4\u003e프리미엄 빌드 및 극한 내구성\u003c\/h4\u003e\n\u003cdiv class=\"feature-divider\"\u003e\u003cbr\u003e\u003c\/div\u003e\n\u003cp\u003e세련된 알루미늄 + ABS 바디는 Tesla의 미니멀한 인테리어와 완벽하게 어울립니다. 미끄럼 방지 디자인으로 주행 중 흔들림이나 간섭 없이 안정적으로 고정됩니다. -20°C에서 50°C까지 넓은 온도 범위에서 안정적으로 작동합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"product-breakdown\"\u003e\n\u003cdiv class=\"breakdown-section\"\u003e\n\u003ch4\u003e📊 기술 사양\u003c\/h4\u003e\n\u003cul\u003e\n\u003cli\u003e호환성: Tesla Model 3 \/ Y \/ S \/ X\u003c\/li\u003e\n\u003cli\u003e전력: 3.5W, 5V (USB 전원)\u003c\/li\u003e\n\u003cli\u003e밝기: 300 루멘\u003c\/li\u003e\n\u003cli\u003e투사 거리: 0.8 – 2 미터\u003c\/li\u003e\n\u003cli\u003e초점 조절: 360° 수동 초점 링\u003c\/li\u003e\n\u003cli\u003e재질: 알루미늄 합금 + ABS\u003c\/li\u003e\n\u003cli\u003e크기: Φ35mm × 140mm\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"breakdown-section\"\u003e\n\u003ch4\u003e📦 패키지 및 안전 정보\u003c\/h4\u003e\n\u003cul\u003e\n\u003cli\u003e안전 기능: 과열 및 화재 위험 방지를 위한 내부 배터리 없음.\u003c\/li\u003e\n\u003cli\u003e발열: 사용 중 정상 범위인 40–55°C 유지.\u003c\/li\u003e\n\u003cli\u003e설치 방법: 미끄럼 방지 디자인으로 단단히 고정 (원본) 또는 접착식 마운트 버전 (수정본).\u003c\/li\u003e\n\u003cli\u003e구성품: 별이 빛나는 하늘 프로젝션 라이트 (1개), 사용자 설명서, 품질 인증서, 프리미엄 선물 상자.\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-section\"\u003e\n\u003ch3 style=\"margin-bottom: 25px;\"\u003e자주 묻는 질문 (FAQ)\u003c\/h3\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cinput type=\"checkbox\" id=\"faq1\" class=\"faq-toggle\" hidden=\"\"\u003e \u003clabel for=\"faq1\" class=\"faq-question\"\u003eQ1: 이 프로젝터에 내부 배터리가 필요한가요?\u003c\/label\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003eA1: 아니요, 필요하지 않습니다. USB 전원으로 작동하여 내부 배터리로 인한 과열 및 화재 위험이 없으며 안전하고 안정적인 작동을 보장합니다. 이것이 저희 제품의 주요 안전 기능입니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cinput type=\"checkbox\" id=\"faq2\" class=\"faq-toggle\" hidden=\"\"\u003e \u003clabel for=\"faq2\" class=\"faq-question\"\u003eQ2: 이 조명과 호환되는 Tesla 모델은 무엇인가요?\u003c\/label\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003eA2: 이 제품은 모든 Tesla 모델과 호환됩니다: Tesla Model 3 \/ Y \/ S \/ X. USB 인터페이스로 전원이 공급되며 차량 내 사용 가능한 USB 포트 어디서나 사용할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cinput type=\"checkbox\" id=\"faq3\" class=\"faq-toggle\" hidden=\"\"\u003e \u003clabel for=\"faq3\" class=\"faq-question\"\u003eQ3: 투사 이미지의 선명도와 크기는 어떻게 조절하나요?\u003c\/label\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003eA3: 프로젝터 본체에 있는 360° 수동 초점 링을 사용하여 투사 이미지의 선명도(명확성)와 투사 범위를 쉽게 조절할 수 있어 완벽한 시각 효과를 얻을 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cinput type=\"checkbox\" id=\"faq4\" class=\"faq-toggle\" hidden=\"\"\u003e \u003clabel for=\"faq4\" class=\"faq-question\"\u003eQ4: 설치가 어렵나요? 배선을 자를 필요가 있나요?\u003c\/label\u003e\n\u003cdiv class=\"faq-answer\"\u003e\n\u003cp\u003eA4: 설치가 매우 간단하며, 진정한 플러그 앤 플레이입니다. USB 포트에 꽂고 미끄럼 방지 위치에 놓기만 하면 됩니다. 차량의 원래 배선을 자르거나 수정할 필요가 없습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"Model 3\/Y\/S\/X용 \/ 갤럭시","offer_id":47612240855272,"sku":"TLA003-ZD","price":99.0,"currency_code":"USD","in_stock":true},{"title":"Model 3\/Y\/S\/X용 \/ 토성의 고리","offer_id":47612240920808,"sku":"TLA003-SR","price":99.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/starry-sky-sunroof-projector-ambient-lighting-for-tesla-galaxy-lighting-effect-7973303.jpg?v=1764144366"},{"product_id":"model-3-highland-new-model-y-door-handle-bowl-lights","title":"모델 3 하이랜드 및 모델 Y 주니퍼용 도어 핸들 볼 조명 주변 조명","description":"\u003cstyle\u003e\n    \/* === Scoped CSS Rules Start === *\/\n    .tesery-product-description-container {\n        font-family: 'Inter', system-ui, sans-serif;\n        color: var(--text-light, #cccccc); \/* Changed to light text color *\/\n        line-height: 1.6;\n        padding: 0;\n        background-color: var(--bg-dark); \/* Main container background color *\/\n    }\n\n    .tesery-product-description-container section {\n        padding: 40px 24px;\n        max-width: 100%;\n        margin: 0 auto;\n        box-sizing: border-box;\n    }\n\n    \/* Keep h2 styles for CTA section, as it's a specific use case *\/\n    .tesery-product-description-container h2 {\n        color: var(--accent-color, #4682B4);\n        text-align: center;\n        margin: 0 0 1.5em;\n        font-size: 2.8em;\n        line-height: 1.2;\n    }\n\n    \/* Main h3 style for the hero section, keeping its size *\/\n    .tesery-product-description-container h3 {\n        color: var(--text-light, #ffffff);\n        margin: 2.5em 0 1em;\n        font-size: 2.2em;\n        text-align: center;\n        font-weight: 700;\n        padding-bottom: 0.5em;\n        position: relative;\n    }\n\n    \/* New style for section titles with colored, irregular background *\/\n    .tesery-product-description-container h3.section-header {\n        color: var(--text-dark-on-light);\n        padding: 20px 50px;\n        display: block;\n        max-width: fit-content;\n        margin: 3em auto 1.5em;\n        font-size: 2.2em;\n        font-weight: 700;\n        text-align: center;\n        position: relative;\n        z-index: 1;\n    }\n    \n    \/* Create the irregular, cloud-like shape with a pseudo-element *\/\n    .tesery-product-description-container h3.section-header::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        z-index: -1;\n        background: transparent;\n        border-radius: 16px;\n        border: 2px solid;\n        box-shadow: none;\n        transition: all 0.3s ease;\n    }\n\n    .tesery-product-description-container h3.section-header:hover::before {\n        transform: scale(1.05);\n        box-shadow: none;\n    }\n    \n    \/* Assign a different light, dopamine color to each section header *\/\n    .tesery-product-description-container .tesery-feature-grid-section h3.section-header::before {\n        border-color: #A8E6CF;\n    }\n\n    .tesery-product-description-container .tesery-faq-section h3.section-header::before {\n        border-color: #A9C9E4;\n    }\n\n    .tesery-product-description-container .tesery-trust-section h3.section-header::before {\n        border-color: #FFEF96;\n    }\n\n    .tesery-product-description-container p {\n        color: var(--text-light, #cccccc);\n        max-width: 800px;\n        margin: 1em auto;\n        text-align: center;\n    }\n\n    \/* Hero Section Specifics *\/\n    .tesery-hero-section {\n        background: var(--bg-dark);\n        padding: 60px 24px;\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        align-items: center;\n        text-align: center;\n    }\n    \n    .tesery-hero-text-content-wrapper {\n        max-width: 1000px;\n        text-align: center;\n        margin-bottom: 40px; \/* Add margin below title and tags *\/\n    }\n\n    .tesery-hero-section h1 {\n        font-size: 3.5em;\n        color: var(--text-light, #ffffff); \/* Changed to white text *\/\n        margin-bottom: 0.2em;\n        line-height: 1.1;\n        text-align: center;\n    }\n\n    .tesery-hero-section .hero-description {\n        font-size: 1.1em;\n        color: var(--text-light-medium);\n        margin: 0.5em auto 1em;\n        max-width: 700px;\n        text-align: center;\n    }\n\n    .tesery-hero-section .subtitle {\n        font-size: 1.5em;\n        color: var(--text-light-medium);\n        margin-bottom: 1.5em;\n        font-style: italic;\n        text-align: center;\n    }\n\n    .tesery-hero-section .brand-button {\n        margin: 0 auto;\n        display: inline-block;\n    }\n\n    .tesery-hero-section .prop-grid {\n        display: flex;\n        justify-content: center;\n        flex-wrap: wrap;\n        gap: 12px;\n        max-width: 1200px;\n        margin-bottom: 40px;\n        text-align: center;\n    }\n\n    .tesery-hero-section .prop-item {\n        display: flex;\n        align-items: center;\n        background: var(--bg-card-dark); \/* Changed to dark background *\/\n        border-radius: 50px;\n        padding: 8px 16px;\n        font-weight: 600;\n        color: var(--text-light, #ffffff); \/* Changed to light text color *\/\n        font-size: 1em;\n        white-space: nowrap;\n        box-shadow: 0 2px 10px rgba(255,255,255,0.05); \/* Adjusted for dark mode *\/\n        border: 1px solid var(--border-color-dark);\n        flex-grow: 0;\n        flex-basis: auto;\n        justify-content: center;\n    }\n\n    \/* Hero Banner Image *\/\n    .tesery-hero-image-banner {\n        width: 100%;\n        max-width: 1000px; \/* Reduced banner width *\/\n        margin: 0 auto 40px auto;\n        box-shadow: var(--shadow-heavy-dark, 0 20px 60px rgba(255,255,255,0.15)); \/* Adjusted for dark mode *\/\n        border-radius: var(--border-radius, 16px);\n    }\n\n    .tesery-hero-image-banner .hero-image {\n        width: 100%;\n        height: auto;\n        display: block;\n        border-radius: var(--border-radius, 16px);\n        object-fit: cover;\n    }\n    \n    \/* Feature Section with Alternating Layout *\/\n    .tesery-feature-grid-section {\n        background: var(--bg-dark);\n    }\n\n    .tesery-product-description-container .feature-item {\n        display: flex;\n        align-items: center;\n        gap: 40px;\n        max-width: 1200px;\n        margin: 40px auto;\n    }\n\n    .tesery-product-description-container .feature-item-content {\n        flex: 1;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .feature-item-image-wrapper {\n        flex: 1;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .feature-item img {\n        max-width: 100%;\n        height: auto;\n        border-radius: var(--border-radius, 16px);\n        box-shadow: var(--shadow-medium-dark, 0 8px 40px rgba(255,255,255,0.12));\n    }\n\n    .tesery-product-description-container .feature-item:nth-child(even) {\n        flex-direction: row-reverse;\n    }\n\n    .tesery-product-description-container .feature-item:nth-child(even) .feature-item-content {\n        text-align: center;\n    }\n\n    .tesery-product-description-container .feature-item h4 {\n        font-size: 2em;\n        color: var(--accent-color, #4682B4);\n        margin-bottom: 0.5em;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .feature-item p {\n        text-align: center;\n        color: var(--text-light-medium);\n        font-size: 1.1em;\n        line-height: 1.7;\n    }\n\n    .tesery-product-description-container .feature-item:nth-child(even) p {\n        text-align: center;\n    }\n\n    \/* What's in the Box section *\/\n    .tesery-box-section {\n        background: var(--bg-dark);\n    }\n    .tesery-box-section ul {\n        list-style-type: none;\n        padding: 0;\n        max-width: 500px;\n        margin: 2em auto;\n        text-align: left;\n    }\n    .tesery-box-section li {\n        background: var(--bg-card-dark);\n        border: none;\n        border-radius: var(--border-radius, 8px);\n        padding: 16px 24px;\n        margin-bottom: 12px;\n        color: var(--text-light, #ffffff);\n        font-size: 1.1em;\n        font-weight: 500;\n        transition: all 0.3s ease;\n    }\n    .tesery-box-section li:hover {\n        transform: translateY(-2px);\n        box-shadow: var(--shadow-light-dark, 0 4px 20px rgba(255,255,255,0.08));\n    }\n\n    \/* FAQ Section *\/\n    .tesery-faq-section {\n        background: var(--bg-dark);\n        box-shadow: var(--shadow-light-dark, 0 4px 20px rgba(255,255,255,0.08));\n    }\n\n    .tesery-product-description-container .faq-section-content {\n        margin: 2em auto;\n        max-width: 900px;\n        text-align: left;\n    }\n\n    .tesery-product-description-container .faq-item {\n        margin-bottom: 12px;\n        background: var(--bg-card-dark); \/* Changed to dark background *\/\n        border-radius: var(--border-radius, 16px);\n        border: 1px solid var(--border-color-dark);\n        transition: all 0.3s ease;\n        overflow: hidden;\n    }\n\n    .tesery-product-description-container .faq-item:hover {\n        box-shadow: var(--shadow-medium-dark, 0 8px 40px rgba(255,255,255,0.12));\n        border-color: var(--accent-light, #73A2C8);\n    }\n\n    .tesery-product-description-container .faq-item details {\n        border: none;\n    }\n\n    .tesery-product-description-container .faq-item summary {\n        padding: 20px 56px 20px 24px;\n        font-weight: 600;\n        font-size: 1.05rem;\n        cursor: pointer;\n        color: var(--text-light, #ffffff); \/* Changed to light text color *\/\n        transition: all 0.3s ease;\n        position: relative;\n        list-style: none;\n        outline: none;\n        user-select: none;\n        background: transparent;\n        text-align: left;\n    }\n\n    .tesery-product-description-container .faq-item summary::-webkit-details-marker {\n        display: none;\n    }\n\n    .tesery-product-description-container .faq-item summary::after {\n        content: '+';\n        position: absolute;\n        right: 24px;\n        top: 50%;\n        transform: translateY(-50%);\n        font-size: 20px;\n        color: var(--accent-color, #4682B4);\n        transition: all 0.3s ease;\n        font-weight: 300;\n        line-height: 1;\n    }\n\n    .tesery-product-description-container .faq-item details[open] summary::after {\n        content: '−';\n        transform: translateY(-50%) rotate(0deg);\n    }\n\n    .tesery-product-description-container .faq-item summary:hover {\n        background: rgba(255, 255, 255, 0.02);\n    }\n\n    .tesery-product-description-container .faq-content {\n        padding: 0 24px 20px;\n        color: var(--text-light-medium, #cccccc); \/* Changed to light text color *\/\n        line-height: 1.6;\n        animation: fadeIn 0.3s ease-in-out;\n        text-align: left;\n    }\n\n    @keyframes fadeIn {\n        from { opacity: 0;\n        transform: translateY(-10px); }\n        to { opacity: 1; transform: translateY(0);\n        }\n    }\n\n    \/* Trust Section *\/\n    .tesery-trust-section {\n        background: var(--bg-dark);\n    }\n\n    .tesery-product-description-container .trust-section-content {\n        max-width: 1000px;\n        margin: 0 auto;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .review-container {\n        display: flex;\n        flex-wrap: wrap;\n        justify-content: center;\n        gap: 24px;\n        margin: 2em 0;\n    }\n\n    .tesery-product-description-container .review-box {\n        flex: 1;\n        min-width: 300px;\n        max-width: 45%;\n        border: 1px solid var(--border-color-dark);\n        border-radius: var(--border-radius, 8px);\n        padding: 20px;\n        background: var(--bg-card-dark);\n        box-shadow: var(--shadow-light-dark, 0 4px 20px rgba(255,255,255,0.08));\n        transition: all 0.3s ease;\n        display: flex;\n        flex-direction: column;\n        justify-content: space-between;\n        text-align: center;\n    }\n\n    .tesery-product-description-container .review-box:hover {\n        transform: translateY(-5px);\n        box-shadow: var(--shadow-medium-dark, 0 8px 40px rgba(255,255,255,0.12));\n    }\n\n    .tesery-product-description-container .review-header {\n        display: flex;\n        flex-direction: column; \/* Centered layout *\/\n        align-items: center;\n        margin-bottom: 12px;\n    }\n\n    .tesery-product-description-container .review-avatar {\n        width: 48px;\n        height: 48px;\n        border-radius: 50%;\n        background: var(--border-color-dark);\n        color: var(--star-yellow, #d4af37);\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        font-weight: bold;\n        margin-bottom: 8px;\n        font-size: 1.2em;\n        flex-shrink: 0;\n    }\n\n    .tesery-product-description-container .review-stars {\n        color: var(--star-yellow, #ffd700);\n        margin-right: 4px;\n        font-size: 1.1em;\n    }\n\n    .tesery-product-description-container .review-stars + span {\n        font-weight: 600;\n        color: var(--text-light, #ffffff);\n        display: block; \/* Make the name a block element to center it below stars *\/\n        text-align: center;\n    }\n\n    .tesery-product-description-container .testimonial {\n        font-style: italic;\n        color: var(--text-light-medium, #cccccc);\n        margin: 1em 0 0;\n        padding-left: 0;\n        border-left: none;\n        font-size: 1em;\n        text-align: center;\n    }\n\n    \/* Call to Action *\/\n    .tesery-cta-section {\n        background: var(--bg-dark-accent);\n        color: var(--crisp-white);\n        padding: 60px 24px;\n        text-align: center;\n    }\n\n    .tesery-cta-section h2 {\n        color: var(--crisp-white);\n        font-size: 2.5em;\n        margin-bottom: 0.5em;\n    }\n\n    .tesery-cta-section p {\n        color: var(--warm-white);\n        margin-bottom: 2em;\n        font-size: 1.2em;\n    }\n\n    .tesery-product-description-container .brand-button {\n        background: var(--bg-cta-button);\n        color: var(--accent-color, #4682B4);\n        padding: 16px 40px;\n        border-radius: 50px;\n        font-weight: 700;\n        text-transform: none;\n        font-size: 1.2em;\n        transition: all 0.4s ease;\n        border: none;\n        cursor: pointer;\n        margin: 0 auto;\n        display: block;\n        max-width: 320px;\n        box-shadow: 0 10px 30px rgba(255,255,255,0.2);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .tesery-product-description-container .brand-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);\n        transition: left 0.5s;\n    }\n\n    .tesery-product-description-container .brand-button:hover::before {\n        left: 100%;\n    }\n\n    .tesery-product-description-container .brand-button:hover {\n        transform: translateY(-3px);\n        box-shadow: 0 15px 40px rgba(255,255,255,0.3);\n        color: var(--accent-color);\n    }\n\n    .tesery-product-description-container .brand-button a {\n        text-decoration: none;\n        color: inherit;\n        display: block;\n    }\n\n\n    \/* Responsive adjustments *\/\n    @media (max-width: 1024px) {\n        .tesery-hero-image-banner {\n            max-width: 100%;\n        }\n        .tesery-product-description-container .feature-grid {\n            max-width: 90%;\n        }\n        .tesery-product-description-container .faq-section-content {\n            max-width: 90%;\n        }\n        .tesery-product-description-container .trust-section-content {\n            max-width: 90%;\n        }\n\n        .tesery-product-description-container .feature-item {\n            flex-direction: column;\n            text-align: center;\n        }\n\n        .tesery-product-description-container .feature-item:nth-child(even) {\n            flex-direction: column;\n        }\n\n        .tesery-product-description-container .feature-item .feature-item-content,\n        .tesery-product-description-container .feature-item:nth-child(even) .feature-item-content {\n            text-align: center;\n        }\n    }\n\n    @media (max-width: 768px) {\n        .tesery-product-description-container section {\n            padding: 30px 16px;\n        }\n\n        .tesery-product-description-container h2 {\n            font-size: 2.2em;\n        }\n\n        .tesery-product-description-container h3 {\n            font-size: 1.8em;\n            margin: 2em 0 0.8em;\n        }\n\n        .tesery-product-description-container h3.section-header {\n             font-size: 1.8em;\n             padding: 12px 30px;\n             margin: 2.5em auto 1em;\n             color: var(--text-dark-on-light);\n        }\n\n        \/* Hero Section Responsive *\/\n        .tesery-hero-section h1 {\n            font-size: 2.8em;\n        }\n\n        .tesery-hero-section .subtitle {\n            font-size: 1.2em;\n        }\n\n        .tesery-hero-image-banner {\n            margin-bottom: 20px;\n        }\n\n        .tesery-hero-section .hero-image {\n            border-radius: 12px;\n        }\n\n        .tesery-hero-section .prop-grid {\n            margin-bottom: 20px;\n        }\n\n        .tesery-product-description-container .prop-item {\n            font-size: 1em;\n            padding: 8px 15px;\n            color: var(--text-light, #ffffff);\n        }\n\n        .tesery-product-description-container .prop-item span {\n            font-size: 1em;\n        }\n\n        .tesery-product-description-container .faq-item summary {\n            padding: 16px 44px 16px 20px;\n            font-size: 0.95rem;\n            color: var(--text-light, #ffffff);\n        }\n\n        .tesery-product-description-container .faq-item summary::after {\n            right: 20px;\n            font-size: 18px;\n        }\n\n        .tesery-product-description-container .faq-content {\n            padding: 0 20px 16px;\n            font-size: 0.9rem;\n        }\n\n        .tesery-product-description-container .review-container {\n            flex-direction: column;\n            align-items: center;\n            gap: 16px;\n        }\n\n        .tesery-product-description-container .review-box {\n            max-width: 90%;\n            margin: 0;\n            padding: 16px;\n        }\n\n        .tesery-product-description-container .review-avatar {\n            width: 40px;\n            height: 40px;\n            margin-right: 10px;\n            font-size: 1em;\n        }\n\n        .tesery-cta-section h2 {\n            font-size: 2em;\n        }\n\n        .tesery-cta-section p {\n            font-size: 1.1em;\n        }\n\n        .tesery-product-description-container .brand-button {\n            padding: 14px 30px;\n            font-size: 1em;\n            max-width: 280px;\n        }\n    }\n\n    @media (max-width: 480px) {\n        .tesery-product-description-container section {\n            padding: 20px 12px;\n        }\n\n        .tesery-product-description-container h2 {\n            font-size: 1.8em;\n        }\n\n        .tesery-product-description-container h3 {\n            font-size: 1.6em;\n        }\n\n        .tesery-product-description-container h3.section-header {\n             font-size: 1.6em;\n             padding: 10px 20px;\n             margin: 2em auto 0.8em;\n        }\n\n        .tesery-hero-section h1 {\n            font-size: 2.2em;\n        }\n\n        .tesery-hero-section .subtitle {\n            font-size: 1.1em;\n        }\n\n        .tesery-product-description-container .prop-grid {\n            justify-content: space-evenly;\n            gap: 8px;\n            margin-bottom: 20px;\n        }\n\n        .tesery-product-description-container .prop-item {\n            font-size: 0.9em;\n            padding: 6px 12px;\n            flex-grow: 0;\n            flex-basis: 45%;\n        }\n\n        .tesery-product-description-container .feature-item {\n            gap: 20px;\n            margin: 30px auto;\n        }\n\n        .tesery-product-description-container .feature-item h4 {\n            font-size: 1.6em;\n        }\n\n        .tesery-product-description-container .feature-item p {\n            font-size: 1em;\n        }\n\n        .tesery-product-description-container .faq-item summary {\n            padding: 12px 40px 12px 16px;\n            font-size: 0.9rem;\n        }\n\n        .tesery-product-description-container .faq-item summary::after {\n            right: 16px;\n            font-size: 16px;\n        }\n\n        .tesery-product-description-container .faq-content {\n            padding: 0 16px 12px;\n            font-size: 0.85rem;\n        }\n\n        .tesery-cta-section h2 {\n            font-size: 1.8em;\n        }\n\n        .tesery-cta-section p {\n            font-size: 1.1em;\n        }\n\n        .tesery-product-description-container .brand-button {\n            padding: 12px 25px;\n            font-size: 0.9em;\n            max-width: 250px;\n        }\n    }\n    \/* === Scoped CSS Rules End === *\/\n\u003c\/style\u003e\n\u003cstyle\u003e\n    :root {\n        --primary-color: #ffffff;\n        --secondary-color: #4682B4;\n        --accent-color: #4682B4;\n        --accent-light: #73A2C8;\n        --accent-secondary: #E0B195;\n        --warm-white: #f8f8f8;\n        --crisp-white: #ffffff;\n        --text-dark: #333333;\n        --text-medium: #666666;\n        --text-light: #999999;\n        \/* Dark mode variables *\/\n        --bg-dark: #121212;\n        --bg-card-dark: #1e1e1e;\n        --bg-dark-accent: #2c2c2c;\n        --bg-cta-button: #ffffff;\n        --border-color-dark: #333333;\n        --text-light: #ffffff;\n        --text-light-medium: #cccccc;\n        --text-dark-on-light: #333333;\n        --gradient-primary: linear-gradient(135deg, #4682B4 0%, #305A7B 100%);\n        --gradient-secondary: linear-gradient(135deg, #73A2C8 0%, #4682B4 100%);\n        --border-radius: 16px;\n        --shadow-light: 0 4px 20px rgba(0,0,0,0.08);\n        --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);\n        --shadow-heavy: 0 20px 60px rgba(0,0,0,0.15);\n        --star-yellow: #fbbf24;\n        \/* Lighter, dopamine-inspired gradients for titles *\/\n        --gradient-blue-green: linear-gradient(135deg, #A8E6CF 0%, #DCE35B 100%);\n        --gradient-pink-purple: linear-gradient(135deg, #FFC7D8 0%, #C8B6F3 100%);\n        --gradient-yellow-orange: linear-gradient(135deg, #FFEF96 0%, #FFB670 100%);\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"tesery-product-description-container\"\u003e\n\u003csection class=\"tesery-hero-section\"\u003e\n\u003cdiv class=\"tesery-hero-text-content-wrapper\"\u003e\n\u003ch2\u003eModel 3 Highland \u0026 New Model Y용 도어 핸들 볼 라이트 앰비언트 조명\u003c\/h2\u003e\n\u003cp class=\"hero-description\"\u003e맞춤형 지능형 앰비언트 조명으로 차량 내부를 변신시키세요. 이 LED 조명은 Model 3 Highland 또는 New Model Y 도어 핸들 볼에 완벽하게 어울려 현대적이고 고급스러운 분위기를 만듭니다.\u003c\/p\u003e\n\u003cp class=\"subtitle\"\u003e당신의 모든 움직임을 예측하는 빛을 경험하세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"prop-grid\"\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #4ecdc4;\"\u003e스마트 전원 관리\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #ffd93d;\"\u003e앱 제어\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #4682b4;\"\u003e1600만 가지 색상\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #9a64b2;\"\u003e음악 리듬 모드\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003cdiv class=\"prop-item\"\u003e\u003cspan\u003e\u003cspan style=\"color: #ff6b6b;\"\u003e프리미엄 품질\u003c\/span\u003e\u003c\/span\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv style=\"text-align: center;\" class=\"tesery-hero-image-banner\"\u003e\u003cimg style=\"margin-bottom: 16px; float: none;\" src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/Door_Handle_Bowl_Lights_Ambient_Lighting_for_Model_3_Highland_New_Model_Y_6.jpg?v=1756117288\u0026amp;width=713\" alt=\"도어 핸들 볼 라이트 앰비언트 조명 - 히어로 샷\" class=\"hero-image\"\u003e\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-feature-grid-section\"\u003e\n\u003ch3 class=\"section-header\"\u003e\u003cspan style=\"color: rgb(255, 255, 255);\"\u003e주요 특징 및 장점\u003c\/span\u003e\u003c\/h3\u003e\n\u003cdiv class=\"feature-container\"\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/door-handle-bowl-lights-ambient-lighting-for-model-3-highland-new-model-y-9608812.jpg?v=1756143884\u0026amp;width=713\" alt=\"스마트 전원 관리\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e스마트 전원 관리\u003c\/h4\u003e\n\u003cp\u003e사용자가 차량에서 약 3미터 떨어졌을 때를 감지하는 지능형 전원 차단 메커니즘이 장착되어, 30초간 비활성 상태가 지속되면 조명을 꺼 에너지 효율을 보장합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/door-handle-bowl-lights-ambient-lighting-for-model-3-highland-new-model-y-3544151.jpg?v=1756143884\u0026amp;width=713\" alt=\"앱 제어를 통한 고급 맞춤 설정\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e앱 제어를 통한 고급 맞춤 설정\u003c\/h4\u003e\n\u003cp\u003e모바일 앱으로 조명 경험을 완벽하게 제어하세요. 색상, 밝기, 채도 및 다이내믹 효과를 기분이나 상황에 맞게 조절할 수 있습니다. 무한한 맞춤 설정 옵션으로 개인화된 조명 구성을 만드세요.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/door-handle-bowl-lights-ambient-lighting-for-model-3-highland-new-model-y-7637752.jpg?v=1756143885\" alt=\"1600만 가지 색상 + 다이내믹 효과\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e1600만 가지 색상 + 다이내믹 효과\u003c\/h4\u003e\n\u003cp\u003e부드러운 색상 전환부터 생동감 있는 다이내믹 패턴까지, 이 시스템은 무한한 가능성을 제공합니다. 146개의 사전 설정된 다이내믹 모드와 맞춤형 음악 리듬 효과로 모두가 만족할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"feature-item\"\u003e\n\u003cdiv class=\"feature-item-image-wrapper\" style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/www.tesery.com\/cdn\/shop\/files\/door-handle-bowl-lights-ambient-lighting-for-model-3-highland-new-model-y-8077358.jpg?v=1756143885\u0026amp;width=713\" alt=\"차량의 미적 감각을 향상시키세요\" style=\"margin-bottom: 16px; float: none;\"\u003e\u003c\/div\u003e\n\u003cdiv class=\"feature-item-content\"\u003e\n\u003ch4\u003e차량의 미적 감각을 향상시키세요\u003c\/h4\u003e\n\u003cp\u003e차량 내부를 고급스럽고 현대적인 모습으로 향상시키세요. 이 조명은 스타일을 더할 뿐만 아니라 밤에 차량에 타고 내릴 때 가시성과 편의성을 높여줍니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-box-section\"\u003e\n\u003ch3 class=\"section-header\"\u003e\u003cspan style=\"color: rgb(255, 255, 255);\"\u003e박스 구성품\u003c\/span\u003e\u003c\/h3\u003e\n\u003cul\u003e\n\u003cli\u003e조명×4\u003c\/li\u003e\n\u003cli\u003e배선 하니스×1\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-feature-grid-section\"\u003e\n\u003ch3 class=\"section-header\"\u003e\u003cspan style=\"color: rgb(255, 255, 255);\"\u003e설치 가이드\u003c\/span\u003e\u003c\/h3\u003e\n\u003cp\u003e아래 PDF 아이콘을 클릭하여 전체 설치 가이드를 다운로드하고 확인하세요.\u003c\/p\u003e\n\u003cdiv style=\"text-align: center; font-size: 8em;\"\u003e\u003ca href=\"https:\/\/drive.google.com\/file\/d\/1KXyGwbykPAd2RsPO9AeYCc3jRYYiLyNL\/view?usp=sharing\" style=\"text-decoration: none;\" target=\"_blank\"\u003e 📄 \u003c\/a\u003e\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-faq-section\"\u003e\n\u003ch3 class=\"section-header\"\u003e\u003cspan style=\"color: rgb(255, 255, 255);\"\u003e자주 묻는 질문\u003c\/span\u003e\u003c\/h3\u003e\n\u003cdiv class=\"faq-section-content\"\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003eQ: 전원 공급 옵션은 무엇인가요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e기본 전원 공급원은 시가잭 소켓이며, 차량에서 약 3미터 떨어지면 작동하는 스마트 전원 차단 메커니즘이 있어 30초 후에 꺼집니다. 대안으로는 차량 후방 에어컨 밸브가 있으며, 차량을 떠날 때 즉시 전원이 차단됩니다. 이 대안은 추가로 60위안이 필요합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003eQ: 앱은 어떤 기능을 제공하나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e모바일 앱을 통해 색상, 밝기, 채도를 조절할 수 있으며 단색 및 다이내믹 모드를 제공합니다. 다이내믹 모드에는 146개의 고정 효과와 무제한 맞춤 효과가 포함되어 있고, 음악 리듬 모드는 소리에 반응하는 18개의 동기화된 조명 효과를 제공합니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003eQ: 어떤 재료가 사용되며 어떻게 설치하나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e조명은 고품질 LED 라이트 스트립으로 제작되었습니다. 설치는 나무 쐐기 틈새와 자국 없는 나노 접착제를 사용하여 드릴링이나 강한 접착제를 사용하지 않습니다. 설치는 도구 없이 가능하며 잔여물이 남지 않아 쉽게 제거할 수 있고 차량의 원래 상태를 완전히 복원할 수 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdetails\u003e\n\u003csummary\u003eQ: 박스 안에 무엇이 포함되어 있나요?\u003c\/summary\u003e\n\u003cdiv class=\"faq-content\"\u003e\n\u003cp style=\"text-align: left;\"\u003e패키지에는 4개의 라이트 스트립과 1개의 배선 하니스가 포함되어 있습니다.\u003c\/p\u003e\n\u003c\/div\u003e\n\u003c\/details\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003csection class=\"tesery-cta-section\"\u003e\n\u003ch3\u003e테슬라를 변신시킬 준비가 되셨나요?\u003c\/h3\u003e\n\u003cp\u003e오늘 차량의 분위기를 업그레이드하고 새로운 스타일 감각으로 운전하세요.\u003c\/p\u003e\n\u003cbutton class=\"brand-button\"\u003e \u003ca href=\"#top\" title=\"upgrade your tesla\"\u003e테슬라의 분위기를 업그레이드하세요 ➔ \u003c\/a\u003e\u003c\/button\u003e\u003c\/section\u003e\n\u003c\/div\u003e","brand":"Tesery Official Store","offers":[{"title":"선택해 주세요","offer_id":47626152607976,"sku":null,"price":125.0,"currency_code":"USD","in_stock":true},{"title":"뉴 모델 Y","offer_id":47626152640744,"sku":"TLA006-Y","price":125.0,"currency_code":"USD","in_stock":true},{"title":"Model 3 하이랜드","offer_id":47626152673512,"sku":"TLA006-3","price":125.0,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/files\/door-handle-bowl-lights-ambient-lighting-for-model-3-highland-new-model-y-9608812.jpg?v=1756143884"}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0588\/3825\/3719\/collections\/tesla-light-accessories-419253.webp?v=1704510570","url":"https:\/\/kr.tesery.com\/collections\/tesla-light-accessories\/exterior.oembed?page=2","provider":"Tesery Official Store","version":"1.0","type":"link"}