{"product_id":"portable-mini-electric-shaver","title":"Portable Mini Electric Shaver","description":"\u003cbody\u003e\n\n\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003ePortable Mini Electric Shaver - Premium Grooming\u003c\/title\u003e\n    \u003cstyle\u003e\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        :root {\n            --primary: #1a1a1a;\n            --accent: #d4af37;\n            --secondary: #f5f5f5;\n            --text: #2c2c2c;\n            --light-text: #ffffff;\n            --border: #e0e0e0;\n        }\n\n        body {\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n            color: var(--text);\n            line-height: 1.6;\n            overflow-x: hidden;\n        }\n\n        \/* Header Styles *\/\n        header {\n            background: linear-gradient(135deg, var(--primary) 0%, #2d2d2d 100%);\n            color: var(--light-text);\n            padding: 2rem 2rem;\n            position: sticky;\n            top: 0;\n            z-index: 100;\n            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);\n            animation: slideDown 0.6s ease-out;\n        }\n\n        @keyframes slideDown {\n            from {\n                transform: translateY(-100%);\n                opacity: 0;\n            }\n            to {\n                transform: translateY(0);\n                opacity: 1;\n            }\n        }\n\n        header .container {\n            max-width: 1200px;\n            margin: 0 auto;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n        }\n\n        .logo {\n            font-size: 1.8rem;\n            font-weight: 700;\n            letter-spacing: 2px;\n            color: var(--accent);\n            display: flex;\n            align-items: center;\n            gap: 0.8rem;\n        }\n\n        .nav-links {\n            display: flex;\n            gap: 2rem;\n            list-style: none;\n        }\n\n        .nav-links a {\n            color: var(--light-text);\n            text-decoration: none;\n            font-size: 0.95rem;\n            transition: color 0.3s ease;\n            position: relative;\n        }\n\n        .nav-links a:hover {\n            color: var(--accent);\n        }\n\n        .nav-links a::after {\n            content: '';\n            position: absolute;\n            bottom: -5px;\n            left: 0;\n            width: 0;\n            height: 2px;\n            background: var(--accent);\n            transition: width 0.3s ease;\n        }\n\n        .nav-links a:hover::after {\n            width: 100%;\n        }\n\n        \/* Hero Section *\/\n        .hero {\n            background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);\n            color: var(--light-text);\n            padding: 5rem 2rem;\n            text-align: center;\n            position: relative;\n            overflow: hidden;\n        }\n\n        .hero::before {\n            content: '';\n            position: absolute;\n            width: 500px;\n            height: 500px;\n            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);\n            border-radius: 50%;\n            top: -200px;\n            right: -100px;\n            animation: float 6s ease-in-out infinite;\n        }\n\n        @keyframes float {\n            0%, 100% { transform: translateY(0px); }\n            50% { transform: translateY(30px); }\n        }\n\n        .hero .container {\n            max-width: 900px;\n            margin: 0 auto;\n            position: relative;\n            z-index: 2;\n        }\n\n        .hero h1 {\n            font-size: 3.5rem;\n            font-weight: 700;\n            margin-bottom: 1rem;\n            letter-spacing: -1px;\n            animation: fadeInUp 0.8s ease-out 0.2s both;\n        }\n\n        .hero-subtitle {\n            font-size: 1.3rem;\n            color: #d0d0d0;\n            margin-bottom: 2rem;\n            animation: fadeInUp 0.8s ease-out 0.4s both;\n        }\n\n        @keyframes fadeInUp {\n            from {\n                opacity: 0;\n                transform: translateY(30px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n\n        .cta-button {\n            display: inline-block;\n            background: var(--accent);\n            color: var(--primary);\n            padding: 1rem 2.5rem;\n            border: none;\n            border-radius: 50px;\n            font-size: 1rem;\n            font-weight: 600;\n            cursor: pointer;\n            transition: all 0.3s ease;\n            text-decoration: none;\n            animation: fadeInUp 0.8s ease-out 0.6s both;\n        }\n\n        .cta-button:hover {\n            background: #e8c547;\n            transform: translateY(-3px);\n            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);\n        }\n\n        \/* Main Container *\/\n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 0 2rem;\n        }\n\n        \/* Features Section *\/\n        .features-section {\n            padding: 5rem 2rem;\n            background: var(--secondary);\n        }\n\n        .section-title {\n            text-align: center;\n            font-size: 2.5rem;\n            margin-bottom: 3rem;\n            color: var(--primary);\n            position: relative;\n            animation: fadeInUp 0.8s ease-out;\n        }\n\n        .section-title::after {\n            content: '';\n            display: block;\n            width: 60px;\n            height: 4px;\n            background: var(--accent);\n            margin: 1rem auto 0;\n        }\n\n        .features-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n            gap: 2rem;\n            animation: fadeInUp 0.8s ease-out 0.2s both;\n        }\n\n        .feature-card {\n            background: white;\n            padding: 2rem;\n            border-radius: 12px;\n            text-align: center;\n            transition: all 0.3s ease;\n            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);\n            border-top: 4px solid transparent;\n        }\n\n        .feature-card:hover {\n            transform: translateY(-10px);\n            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);\n            border-top-color: var(--accent);\n        }\n\n        .feature-icon {\n            font-size: 2.5rem;\n            margin-bottom: 1rem;\n            display: inline-block;\n        }\n\n        .feature-card h3 {\n            font-size: 1.3rem;\n            margin-bottom: 0.8rem;\n            color: var(--primary);\n        }\n\n        .feature-card p {\n            font-size: 0.95rem;\n            color: #666;\n            line-height: 1.6;\n        }\n\n        \/* Product Details Section *\/\n        .details-section {\n            padding: 5rem 2rem;\n            background: white;\n        }\n\n        .details-content {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 3rem;\n            align-items: center;\n        }\n\n        .details-image {\n            text-align: center;\n            font-size: 8rem;\n            animation: fadeInLeft 0.8s ease-out;\n        }\n\n        @keyframes fadeInLeft {\n            from {\n                opacity: 0;\n                transform: translateX(-30px);\n            }\n            to {\n                opacity: 1;\n                transform: translateX(0);\n            }\n        }\n\n        .details-text h2 {\n            font-size: 2.2rem;\n            margin-bottom: 1.5rem;\n            color: var(--primary);\n            animation: fadeInRight 0.8s ease-out;\n        }\n\n        @keyframes fadeInRight {\n            from {\n                opacity: 0;\n                transform: translateX(30px);\n            }\n            to {\n                opacity: 1;\n                transform: translateX(0);\n            }\n        }\n\n        .details-text p {\n            font-size: 1rem;\n            color: #555;\n            margin-bottom: 1.5rem;\n            line-height: 1.8;\n            animation: fadeInRight 0.8s ease-out 0.1s both;\n        }\n\n        .highlight-list {\n            list-style: none;\n            margin: 2rem 0;\n        }\n\n        .highlight-list li {\n            padding: 0.8rem 0;\n            border-bottom: 1px solid var(--border);\n            display: flex;\n            align-items: center;\n            animation: fadeInRight 0.8s ease-out 0.2s both;\n        }\n\n        .highlight-list li:before {\n            content: '✓';\n            color: var(--accent);\n            font-weight: bold;\n            margin-right: 1rem;\n            font-size: 1.2rem;\n        }\n\n        \/* Benefits Section *\/\n        .benefits-section {\n            padding: 5rem 2rem;\n            background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);\n        }\n\n        .benefits-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n            gap: 2rem;\n        }\n\n        .benefit-item {\n            background: white;\n            padding: 2rem;\n            border-radius: 8px;\n            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);\n            transition: all 0.3s ease;\n            animation: fadeInUp 0.8s ease-out;\n        }\n\n        .benefit-item:hover {\n            background: var(--accent);\n            color: white;\n            transform: scale(1.05);\n        }\n\n        .benefit-item h4 {\n            font-size: 1.15rem;\n            margin-bottom: 0.8rem;\n            color: var(--primary);\n        }\n\n        .benefit-item:hover h4 {\n            color: white;\n        }\n\n        .benefit-item p {\n            font-size: 0.9rem;\n            color: #666;\n        }\n\n        .benefit-item:hover p {\n            color: white;\n        }\n\n        \/* Call to Action Section *\/\n        .cta-section {\n            background: linear-gradient(135deg, var(--primary) 0%, #2d2d2d 100%);\n            color: white;\n            padding: 4rem 2rem;\n            text-align: center;\n        }\n\n        .cta-section h2 {\n            font-size: 2rem;\n            margin-bottom: 1.5rem;\n            animation: fadeInUp 0.8s ease-out;\n        }\n\n        .cta-section p {\n            font-size: 1.1rem;\n            margin-bottom: 2rem;\n            opacity: 0.95;\n            animation: fadeInUp 0.8s ease-out 0.1s both;\n        }\n\n        \/* Footer *\/\n        footer {\n            background: var(--primary);\n            color: var(--light-text);\n            text-align: center;\n            padding: 2rem;\n            border-top: 1px solid rgba(212, 175, 55, 0.2);\n        }\n\n        \/* Responsive *\/\n        @media (max-width: 768px) {\n            .hero h1 {\n                font-size: 2.5rem;\n            }\n\n            .hero-subtitle {\n                font-size: 1rem;\n            }\n\n            .nav-links {\n                gap: 1rem;\n                font-size: 0.85rem;\n            }\n\n            .details-content {\n                grid-template-columns: 1fr;\n            }\n\n            .section-title {\n                font-size: 2rem;\n            }\n\n            .details-image {\n                font-size: 5rem;\n            }\n\n            header .container {\n                flex-direction: column;\n                gap: 1rem;\n            }\n        }\n    \u003c\/style\u003e\n\n\n    \u003c!-- Header --\u003e\n    \u003cheader\u003e\n        \u003cdiv class=\"container\"\u003e\n            \u003cdiv class=\"logo\"\u003e\n                ⚡ SHARPCUT\n            \u003c\/div\u003e\n            \u003cnav\u003e\n                \u003cul class=\"nav-links\"\u003e\n                    \u003cli\u003e\u003ca href=\"#features\"\u003eFeatures\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#details\"\u003eDetails\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#benefits\"\u003eBenefits\u003c\/a\u003e\u003c\/li\u003e\n                    \u003cli\u003e\u003ca href=\"#contact\"\u003eContact\u003c\/a\u003e\u003c\/li\u003e\n                \u003c\/ul\u003e\n            \u003c\/nav\u003e\n        \u003c\/div\u003e\n    \u003c\/header\u003e\n\n    \u003c!-- Hero Section --\u003e\n    \u003csection class=\"hero\"\u003e\n        \u003cdiv class=\"container\"\u003e\n            \u003ch1\u003e⚡ Portable Mini Electric Shaver\u003c\/h1\u003e\n            \u003cp class=\"hero-subtitle\"\u003eSmooth Grooming Anytime, Anywhere\u003c\/p\u003e\n            \u003cp style=\"color: #d0d0d0; margin-bottom: 2rem; font-size: 1.05rem;\"\u003e\n                Stay sharp and well-groomed wherever you go with the Portable Mini Electric Shaver. \n                Designed for convenience and performance, this compact shaver delivers a clean, smooth shave in seconds.\n            \u003c\/p\u003e\n            \u003cbutton class=\"cta-button\"\u003eShop Now\u003c\/button\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Features Section --\u003e\n    \u003csection class=\"features-section\" id=\"features\"\u003e\n        \u003cdiv class=\"container\"\u003e\n            \u003ch2 class=\"section-title\"\u003e🌟 Key Features\u003c\/h2\u003e\n            \u003cdiv class=\"features-grid\"\u003e\n                \u003cdiv class=\"feature-card\"\u003e\n                    \u003cdiv class=\"feature-icon\"\u003e🪒\u003c\/div\u003e\n                    \u003ch3\u003ePrecision Cutting Blades\u003c\/h3\u003e\n                    \u003cp\u003eSmooth and clean shave every time with advanced blade technology\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"feature-card\"\u003e\n                    \u003cdiv class=\"feature-icon\"\u003e⚡\u003c\/div\u003e\n                    \u003ch3\u003ePowerful Motor\u003c\/h3\u003e\n                    \u003cp\u003eFast and efficient grooming for quick and effective results\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"feature-card\"\u003e\n                    \u003cdiv class=\"feature-icon\"\u003e🔋\u003c\/div\u003e\n                    \u003ch3\u003eRechargeable \u0026amp; Portable\u003c\/h3\u003e\n                    \u003cp\u003eEasy to carry anywhere - perfect for travel and on-the-go grooming\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"feature-card\"\u003e\n                    \u003cdiv class=\"feature-icon\"\u003e💼\u003c\/div\u003e\n                    \u003ch3\u003eCompact Design\u003c\/h3\u003e\n                    \u003cp\u003eLightweight and pocket-friendly, fits perfectly in your bag\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"feature-card\"\u003e\n                    \u003cdiv class=\"feature-icon\"\u003e🌿\u003c\/div\u003e\n                    \u003ch3\u003eSkin-Friendly Shaving\u003c\/h3\u003e\n                    \u003cp\u003eGentle on skin with minimal irritation and maximum comfort\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"feature-card\"\u003e\n                    \u003cdiv class=\"feature-icon\"\u003e🧼\u003c\/div\u003e\n                    \u003ch3\u003eEasy to Clean\u003c\/h3\u003e\n                    \u003cp\u003eHassle-free maintenance with simple cleaning and storage\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Details Section --\u003e\n    \u003csection class=\"details-section\" id=\"details\"\u003e\n        \u003cdiv class=\"container\"\u003e\n            \u003cdiv class=\"details-content\"\u003e\n                \u003cdiv class=\"details-image\"\u003e\n                    🪒✨\n                \u003c\/div\u003e\n                \u003cdiv class=\"details-text\"\u003e\n                    \u003ch2\u003eYour Perfect Grooming Companion\u003c\/h2\u003e\n                    \u003cp\u003e\n                        Compact size with powerful performance - designed for the modern man who values \n                        quality grooming on his own terms. Whether you're at home, in the office, or traveling, \n                        this electric shaver has you covered.\n                    \u003c\/p\u003e\n                    \u003cul class=\"highlight-list\"\u003e\n                        \u003cli\u003ePerfect for daily grooming routines\u003c\/li\u003e\n                        \u003cli\u003eIdeal for business travel and office touch-ups\u003c\/li\u003e\n                        \u003cli\u003eAirport-friendly compact design\u003c\/li\u003e\n                        \u003cli\u003eStay fresh and confident anywhere, anytime\u003c\/li\u003e\n                        \u003cli\u003eReliable battery life for week-long trips\u003c\/li\u003e\n                        \u003cli\u003eProfessional results every single time\u003c\/li\u003e\n                    \u003c\/ul\u003e\n                    \u003cbutton class=\"cta-button\"\u003eGet Yours Today\u003c\/button\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Benefits Section --\u003e\n    \u003csection class=\"benefits-section\" id=\"benefits\"\u003e\n        \u003cdiv class=\"container\"\u003e\n            \u003ch2 class=\"section-title\"\u003e💯 Why Choose Us\u003c\/h2\u003e\n            \u003cdiv class=\"benefits-grid\"\u003e\n                \u003cdiv class=\"benefit-item\"\u003e\n                    \u003ch4\u003e✈️ Travel-Ready\u003c\/h4\u003e\n                    \u003cp\u003eLightweight and compact design perfect for your adventures\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"benefit-item\"\u003e\n                    \u003ch4\u003e💪 Powerful Performance\u003c\/h4\u003e\n                    \u003cp\u003eConsistent shaving quality with precision-engineered blades\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"benefit-item\"\u003e\n                    \u003ch4\u003e🔋 Long Battery Life\u003c\/h4\u003e\n                    \u003cp\u003eStay groomed throughout your busy week\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"benefit-item\"\u003e\n                    \u003ch4\u003e🎯 Professional Results\u003c\/h4\u003e\n                    \u003cp\u003eAchieve salon-quality shaves at home\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"benefit-item\"\u003e\n                    \u003ch4\u003e😌 Comfort Guaranteed\u003c\/h4\u003e\n                    \u003cp\u003eGentle technology reduces skin irritation\u003c\/p\u003e\n                \u003c\/div\u003e\n                \u003cdiv class=\"benefit-item\"\u003e\n                    \u003ch4\u003e🛠️ Easy Maintenance\u003c\/h4\u003e\n                    \u003cp\u003eQuick clean-up with simple maintenance routine\u003c\/p\u003e\n                \u003c\/div\u003e\n            \u003c\/div\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Call to Action Section --\u003e\n    \u003csection class=\"cta-section\" id=\"contact\"\u003e\n        \u003cdiv class=\"container\"\u003e\n            \u003ch2\u003eReady to Experience Premium Grooming?\u003c\/h2\u003e\n            \u003cp\u003eJoin thousands of satisfied customers who trust our portable electric shaver\u003c\/p\u003e\n            \u003cbutton class=\"cta-button\"\u003eOrder Now\u003c\/button\u003e\n        \u003c\/div\u003e\n    \u003c\/section\u003e\n\n    \u003c!-- Footer --\u003e\n    \u003cfooter\u003e\n        \u003cp\u003e© 2024 Portable Mini Electric Shaver Co. All rights reserved.\u003c\/p\u003e\n        \u003cp\u003ePremium Grooming Solutions | Travel Friendly | Professional Quality\u003c\/p\u003e\n    \u003c\/footer\u003e\n\n\u003c\/body\u003e","brand":"Salvea","offers":[{"title":"Default Title","offer_id":44646743638102,"sku":null,"price":0.0,"currency_code":"AED","in_stock":false}],"url":"https:\/\/salvea.store\/products\/portable-mini-electric-shaver","provider":"Salvea","version":"1.0","type":"link"}