Ultimate Auto Scratch Remover
/* 0) Base & Reset */ .product-detail-container { box-sizing: border-box; max-width: 1200px; margin: 0 auto; padding: 0 5%; font-family: -apple-system, BlinkMacSystemFont, "Segoe U I", Roboto, Helvetica, Arial, sans-serif; overflow-wrap: break-word; word-break: break-word; /* 1) Design System Variables */ --primary: #0056D2; --primary-hover: #0044A8; --text-main: #111111; --text-sub: #555555; --bg-body: #FFFFFF; --bg-card: #F4F5F7; --bg-alt: #FAFAFA; --border-color: #E5E7EB; --radius-md: 8px; --radius-lg: 12px; --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05); --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.08); color: var(--text-main); background-color: var(--bg-body); } .product-detail-container *, .product-detail-container *::before, .product-detail-container *::after { box-sizing: inherit; } /* Typography System */ .product-detail-container h1, .product-detail-container h2, .product-detail-container h3, .product-detail-container p { margin-top: 0; } .product-detail-container h1 { font-size: clamp(32px, 5vw, 44px); line-height: 1.2; font-weight: 800; margin-bottom: clamp(16px, 3vw, 24px); letter-spacing: -0.02em; } .product-detail-container h2 { font-size: clamp(24px, 4vw, 32px); line-height: 1.3; font-weight: 700; margin-bottom: clamp(12px, 2vw, 16px); color: var(--text-main); } .product-detail-container h3 { font-size: clamp(20px, 3vw, 24px); line-height: 1.4; font-weight: 600; margin-bottom: 12px; } .product-detail-container p { font-size: clamp(18px, 2.5vw, 20px); line-height: 1.7; color: var(--text-sub); margin-bottom: 16px; } .product-detail-container .sub-text { font-size: clamp(16px, 2vw, 18px); } /* Common Media Blocks */ .pd-media-wrapper { width: 100%; background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; display: flex; align-items: center; justify-content: center; margin-bottom: clamp(24px, 4vw, 32px); border: 1px solid var(--border-color); } .pd-media-wrapper img, .pd-image-placeholder { width: 100%; height: auto; display: block; } .pd-image-placeholder { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; background: #EAEAEA; color: var(--text-sub); font-weight: bold; font-size: 20px; border: 2px dashed #CCCCCC; } /* Non-Clickable Badges & Social Proof */ .pd-badge { display: inline-block; background: var(--primary); color: #FFF; padding: 8px 16px; border-radius: 50px; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 24px; } .pd-social-proof { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-card); padding: 12px 24px; border-radius: var(--radius-md); font-weight: 600; font-size: 16px; margin-bottom: clamp(32px, 5vw, 48px); } .pd-stars { color: #FFB800; font-size: 20px; letter-spacing: 2px; } /* Section Spacing */ .pd-section { padding: clamp(32px, 5vw, 64px) 0; border-bottom: 1px solid var(--border-color); } .pd-section:last-child { border-bottom: none; } /* Hero Section */ .pd-hero { text-align: center; padding-top: clamp(24px, 4vw, 40px); } /* Mobile Ordering Lock System (Z-Pattern for Desktop, Column for Mobile) */ .feature-item { display: flex; flex-direction: column; gap: clamp(24px, 4vw, 48px); margin-bottom: clamp(48px, 6vw, 80px); align-items: center; } .feature-media, .feature-copy { width: 100%; } @media (min-width: 768px) { .feature-item { flex-direction: row; justify-content: space-between; } .feature-item:nth-child(even) { flex-direction: row-reverse; } .feature-media, .feature-copy { width: 48%; /* Leaves breathable gap */ } .feature-item { margin-bottom: 96px; } } /* Features List Detail */ .pd-feature-list { list-style: none; padding: 0; margin: 24px 0 0 0; } .pd-feature-list li { position: relative; padding-left: 32px; margin-bottom: 16px; font-size: clamp(18px, 2.5vw, 20px); color: var(--text-sub); line-height: 1.5; } .pd-feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 800; font-size: 22px; } /* Specifications Table (Strict Mobile Cards) */ .pd-specs-table-wrapper { width: 100%; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); background: var(--bg-body); } .pd-specs-table { width: 100%; border-collapse: collapse; text-align: left; } .pd-specs-table th, .pd-specs-table td { padding: 20px 24px; font-size: 18px; border-bottom: 1px solid var(--border-color); } .pd-specs-table th { background: var(--bg-card); font-weight: 700; width: 40%; color: var(--text-main); } .pd-specs-table td { color: var(--text-sub); } .pd-specs-table tr:last-child th, .pd-specs-table tr:last-child td { border-bottom: none; } /* Mobile Specs Table Card Layout */ @media (max-width: 767px) { .pd-specs-table-wrapper { border: none; background: transparent; } .pd-specs-table, .pd-specs-table thead, .pd-specs-table tbody, .pd-specs-table tr, .pd-specs-table th, .pd-specs-table td { display: block; width: 100%; } .pd-specs-table thead { display: none; } .pd-specs-table tr { margin-bottom: 16px; background: var(--bg-body); border: 1px solid var(--border-color); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 8px 0; } .pd-specs-table tr:last-child { margin-bottom: 0; } .pd-specs-table td { display: flex; flex-direction: column; padding: 12px 20px; border-bottom: 1px solid var(--bg-card); } .pd-specs-table td:last-child { border-bottom: none; } .pd-specs-table td::before { content: attr(data-label); font-weight: 700; margin-bottom: 8px; color: var(--text-main); font-size: 16px; text-transform: uppercase; letter-spacing: 0.05em; } } /* FAQ Section */ .pd-faq-item { background: var(--bg-alt); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: clamp(20px, 4vw, 32px); margin-bottom: 16px; } .pd-faq-item h3 { color: var(--text-main); display: flex; gap: 12px; align-items: flex-start; } .pd-faq-item h3::before { content: "Q."; color: var(--primary); font-weight: 900; } .pd-faq-item p { margin-bottom: 0; padding-left: clamp(28px, 4vw, 36px); color: var(--text-sub); } Complete Pro Kit Showroom Shine, Restored in Minutes. The ultimate premium wax kit effectively removes minor scratches, stains, and paint defects while adding a brilliant protective layer to your vehicle. ★★★★★ Trusted by 10,000+ Car Owners Deep Scratch Repair & Protection Don't let unsightly scratches ruin your vehicle's aesthetic. Our advanced polishing compound formula penetrates deeply to fill imperfections. Restores Gloss: Brings back the factory-fresh shine. Protective Layer: Shields treated areas from future wear. Removes Stains: Cuts through stubborn marks and paint defects. 100% Safe For All Glossy Paints Engineered for peace of mind. Specially formulated to be safely applied on all glossy paints and delicate clear coat finishes without causing hazing or exterior damage. Whether your car is pearl white, metallic black, or cherry red, this universal compound blends seamlessly without altering your original color match. Easy 3-Step Application Achieve professional body shop results directly in your driveway. The complete kit includes everything you need: a 4 fl oz (120 ML) wax tube, a custom sponge applicator, and a premium wiping cloth. Step 1: Apply the compound to the included sponge pad. Step 2: Work the wax into the scratched area using firm circular motions. Step 3: Wipe away excess residue with the microfiber cloth to reveal a flawless finish. Product Specifications Specification Details Volume 120 ml / 4.0 fl oz Kit Contents 1x Repair Wax, 1x Sponge Applicator, 1x Wiping Cloth Compatibility Universal (Safe for all glossy paints and clear coats) Package Weight (Approx.) 150 g / 5.3 oz Storage Temperature 0°C to 40°C / 32°F to 104°F (Keep in cool, dry place) Frequently Asked Questions Will this damage my car's clear coat? Absolutely not. Our universal premium wax is specially formulated to be completely safe on all glossy paints and clear coat finishes. It removes defects without aggressively stripping away the protective layers of your paint. Can it fix deep scratches that show metal or primer? This compound is designed for minor to moderate scratches, scuffs, and paint transfers that sit in the clear coat. If a scratch is deep enough to catch your fingernail or expose bare metal/primer, a dedicated touch-up paint is required before applying this protective wax. Do I need any special tools or buffers to use this? No machinery is required. This is a complete kit that includes a specialized sponge applicator and a wiping cloth. You can easily achieve professional-grade paint restoration by hand following our simple 3-step circular motion process.
More you might like
Related
Ultimate Auto Scratch Remover
Related
Ultimate Scratch Remover
Related
Ultimate Scratch Remover
Related