/* Video Modal Overlay */
		.video-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-in-out;
        }

        .video-modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Video Modal Container */
        .video-modal {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.4s ease-out;
        }

        @keyframes slideUp {
            from { 
                transform: translateY(50px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Video Element */
        .modal-video {
            width: 100%;
            height: auto;
            max-width: 1200px;
            max-height: 80vh;
            display: block;
        }

        /* Close Button */
        .video-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .video-close-btn:hover {
            background: #fff;
            transform: scale(1.1);
        }

/* Video Button Styles */
        .video-demo-btn {
			background: linear-gradient(-45deg, #6b7280, #9ca3af, #6b7280, #9ca3af);
			background-size: 400% 400%;
			animation: gradientShift 3s ease infinite;
			color: #f9fafb;
			border: none;
			padding: 16px 32px;
			border-radius: 50px;
			font-size: 16px;
			font-weight: 700;
			cursor: pointer;
			transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
			letter-spacing: 0.5px;
			position: relative;
			overflow: hidden;
			text-shadow: 0 1px 2px rgba(0,0,0,0.3);
			box-shadow: 0 8px 25px rgba(55, 65, 81, 0.3);
			display: flex;
			align-items: center;
			gap: 10px;
			margin: 20px auto;
			width: fit-content;
		}
<!--
		/* Dark theme pentru video button */
		body.dark-theme .video-demo-btn {
			background: linear-gradient(-45deg, #374151, #4b5563, #374151, #4b5563);
			background-size: 400% 400%;
			animation: gradientShift 3s ease infinite;
			color: #10b981;
			border: none;
			padding: 16px 32px;
			border-radius: 50px;
			font-size: 16px;
			font-weight: 700;
			cursor: pointer;
			transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
			letter-spacing: 0.5px;
			position: relative;
			overflow: hidden;
			text-shadow: 0 1px 2px rgba(0,0,0,0.3);
			box-shadow: 0 8px 25px rgba(55, 65, 81, 0.3);
			display: flex;
			align-items: center;
			gap: 10px;
			margin: 20px auto;
			width: fit-content;
		}
-->		
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
		
        .video-demo-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .video-demo-btn:hover::before {
            left: 100%;
        }

/* Hover effects - corectați pentru ambele teme */
		.video-demo-btn:hover {
			transform: scale(1.05) translateY(-3px);
			animation-duration: 1s;
			box-shadow: 0 15px 35px rgba(55, 65, 81, 0.5); /* Pentru tema light */
		}

		body.dark-theme .video-demo-btn:hover {
			box-shadow: 0 15px 35px rgba(107, 114, 128, 0.5); /* Pentru tema dark */
		}

        .video-demo-btn:active {
            transform: scale(0.98) translateY(-1px);
        }

        .play-icon {
            font-size: 18px;
            filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
        }

        /* Video Loading State */
        .video-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 18px;
            display: none;
        }

        .video-loading.active {
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .video-modal {
                max-width: 95%;
                max-height: 85%;
                margin: 20px;
            }

            .modal-video {
                max-height: 70vh;
            }

            .video-demo-btn {
                font-size: 14px;
                padding: 14px 28px;
            }

            .play-icon {
                font-size: 16px;
            }
        }

        /* Dark theme compatibility */
        body.dark-theme .video-close-btn {
            background: rgba(31, 41, 55, 0.9);
            color: #f9fafb;
        }

        body.dark-theme .video-close-btn:hover {
            background: #1f2937;
        }
<!--                                                      -->
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f8fafc;
            line-height: 1.6;
            transition: all 0.3s ease;
            color: #1f2937;
        }

        /* Dark Theme */
        body.dark-theme {
            background: #111827;
            color: #f9fafb;
        }

        .header {
            background: #1f2937;
            color: white;
            padding: 30px 20px;
            text-align: center;
            position: relative;
        }

        .theme-toggle {
            position: absolute;
            top: 15px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .header h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .header p {
            font-size: 16px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .products-section {
            padding: 50px 0;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            color: #1f2937;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #6b7280;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .product-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            max-width: 600px;
            width: 100%;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
            border-color: #667eea;
        }

        .product-badge {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .product-title {
            font-size: 28px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
            text-align: center;
        }

        .product-description {
            font-size: 16px;
            color: #6b7280;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* Product Preview Section */
        .product-preview {
            text-align: center;
            margin: 25px 0;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            border: 2px solid #e5e7eb;
        }

        body.dark-theme .product-preview {
            background: #374151;
            border-color: #4b5563;
        }

        /* Image Slider */
        .image-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .slider-container {
            display: flex;
            transition: transform 0.8s ease-in-out;
        }

        .interface-image {
            min-width: 100%;
            max-width: 100%;
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: contain;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .interface-image.active {
            opacity: 1;
        }

        /* Slider Dots */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
            margin-bottom: 10px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot:hover {
            background: #9ca3af;
            transform: scale(1.2);
        }

        .dot.active {
            background: #667eea;
            width: 24px;
            border-radius: 5px;
        }

        body.dark-theme .dot {
            background: #4b5563;
        }

        body.dark-theme .dot:hover {
            background: #6b7280;
        }

        body.dark-theme .dot.active {
            background: #a5b4fc;
        }

        .preview-caption {
            margin-top: 12px;
            font-size: 14px;
            color: #667eea;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        body.dark-theme .preview-caption {
            color: #a5b4fc;
        }

        .product-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .product-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            color: #4b5563;
            font-size: 14px;
        }

        .product-features li::before {
            content: "✓";
            background: #10b981;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-weight: bold;
            font-size: 12px;
            flex-shrink: 0;
        }

        .product-price {
            font-size: 32px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 20px;
            text-align: center;
        }

        /* Product Actions Container */
        .product-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            justify-content: space-between;
        }

        /* Product Details Button */
        .details-toggle-btn {
            background: #f8fafc;
			color: #10b981;
            border: 2px solid #e5e7eb;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: calc(50% - 5px);
            min-height: 36px;
            white-space: nowrap;
        }

        .details-toggle-btn:hover {
            background: #e5e7eb;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .details-toggle-btn.active {
            background: #fee2e2;
            color: #dc2626;
            border-color: #fca5a5;
        }

        .details-toggle-btn.active:hover {
            background: #fecaca;
        }

        body.dark-theme .details-toggle-btn {
            background: #374151;
            color: #10b981;
            border-color: #4b5563;
        }

        body.dark-theme .details-toggle-btn:hover {
            background: #4b5563;
        }

        body.dark-theme .details-toggle-btn.active {
            background: #7f1d1d;
            color: #fca5a5;
            border-color: #dc2626;
        }

        body.dark-theme .details-toggle-btn.active:hover {
            background: #991b1b;
        }
		
		.details-toggle-btn:hover {
            background: #e5e7eb;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
		
        .details-icon {
            font-size: 14px;
        }

        .button-icon {
            margin-right: 10px;
            font-size: 20px;
            filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
        }

        /* Butoane principale cu animații și optimizări cross-browser */
        .product-button {
            margin-bottom: 20px;
            width: 100%;
            background: linear-gradient(-45deg, #50C878, #2E8B57, #228B22, #006400);
            background-size: 400% 400%;
            animation: emeraldGradientShift 3s ease infinite;
            -webkit-animation: emeraldGradientShift 3s ease infinite;
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
            box-shadow: 0 8px 25px rgba(80, 200, 120, 0.3);
        }

        @keyframes emeraldGradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @-webkit-keyframes emeraldGradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .product-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
            -webkit-transition: left 0.6s ease;
        }

        .product-button:hover::before {
            left: 100%;
        }

        .product-button:hover {
            transform: scale(1.05) translateY(-3px);
            -webkit-transform: scale(1.05) translateY(-3px);
            animation-duration: 1s;
            -webkit-animation-duration: 1s;
            box-shadow: 0 15px 35px rgba(80, 200, 120, 0.5);
        }

        .product-button:active {
            transform: scale(0.98) translateY(-1px);
            -webkit-transform: scale(0.98) translateY(-1px);
        }

        /* Portocaliu Vibrant */
        .product-button-orange {
            margin-bottom: 20px;
            width: 100%;
            background: linear-gradient(-45deg, #FF6B35, #F7931E, #FF8C00, #FF4500);
            background-size: 400% 400%;
            animation: orangeGradientShift 3s ease infinite;
            -webkit-animation: orangeGradientShift 3s ease infinite;
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        @keyframes orangeGradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @-webkit-keyframes orangeGradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .product-button-orange::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
            -webkit-transition: left 0.6s ease;
        }

        .product-button-orange:hover::before {
            left: 100%;
        }

        .product-button-orange:hover {
            transform: scale(1.05) translateY(-3px);
            -webkit-transform: scale(1.05) translateY(-3px);
            animation-duration: 1s;
            -webkit-animation-duration: 1s;
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
        }

        .product-button-orange:active {
            transform: scale(0.98) translateY(-1px);
            -webkit-transform: scale(0.98) translateY(-1px);
        }
		
        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .product-button:active::before,
            .product-button-orange:active::before,
            .product-button-gold:active::before {
                left: 100%;
            }
            
            .product-button:active,
            .product-button-orange:active,
            .product-button-gold:active {
                transform: scale(1.02) translateY(-1px);
                -webkit-transform: scale(1.02) translateY(-1px);
                animation-duration: 0.5s;
                -webkit-animation-duration: 0.5s;
            }
        }

        /* Product Details Section */
        .product-details-section {
            background: white;
            border-radius: 16px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid #e5e7eb;
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(-20px);
        }

        .product-details-section.active {
            max-height: 3500px;
            opacity: 1;
            transform: translateY(0);
            border-color: #667eea;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }

        body.dark-theme .product-details-section {
            background: #1f2937;
            border-color: #4b5563;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        body.dark-theme .product-details-section.active {
            border-color: #a5b4fc;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        }

        .product-details-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px 30px;
            text-align: center;
        }

        .product-details-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .product-details-subtitle {
            font-size: 16px;
            opacity: 0.9;
        }

        .product-details-content {
            padding: 40px 30px;
        }

        .details-feature {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e5e7eb;
        }

        .details-feature:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        body.dark-theme .details-feature {
            border-bottom-color: #4b5563;
        }

        .details-feature-title {
            font-size: 20px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        body.dark-theme .details-feature-title {
            color: #f9fafb;
        }

        .feature-icon {
            font-size: 24px;
        }

        .details-feature-description {
            font-size: 16px;
            line-height: 1.7;
            color: #4b5563;
        }

        body.dark-theme .details-feature-description {
            color: #d1d5db;
        }

        /* Trust Section */
        .trust-section {
            text-align: center;
            margin-bottom: 50px;
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        body.dark-theme .stat-label {
            color: #d1d5db;
        }

        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .trust-badge {
            background: #f0f9ff;
            color: #0369a1;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid #bae6fd;
        }

        body.dark-theme .trust-badge {
            background: #1e3a8a;
            color: #bfdbfe;
            border-color: #3b82f6;
        }

        /* Product Navigation */
        .product-navigation {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0 60px 0;
            flex-wrap: wrap;
        }

        .product-nav-btn {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            padding: 20px 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            min-width: 200px;
            max-width: 200px;
            min-height: 120px;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        body.dark-theme .product-nav-btn {
            background: #1f2937;
            border-color: #4b5563;
            color: #f9fafb;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .product-nav-btn:hover:not(.disabled) {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
            border-color: #667eea;
        }

        .product-nav-btn.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: #667eea;
            transform: translateY(-2px);
        }

        .product-nav-btn.disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .product-nav-btn.disabled:hover {
            transform: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        body.dark-theme .product-nav-btn.disabled:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .nav-icon {
            font-size: 24px;
            margin-bottom: 4px;
        }

        .nav-text {
            font-weight: 600;
            font-size: 16px;
            text-align: center;
        }

        .nav-badge {
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-nav-btn:not(.active) .nav-badge {
            background: #f0f9ff;
            color: #0369a1;
        }

        .product-nav-btn.active .nav-badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .product-nav-btn.disabled .nav-badge {
            background: #fef3c7;
            color: #92400e;
        }

        body.dark-theme .product-nav-btn:not(.active) .nav-badge {
            background: #1e3a8a;
            color: #bfdbfe;
        }

        body.dark-theme .product-nav-btn.disabled .nav-badge {
            background: #451a03;
            color: #fed7aa;
        }

        /* Coming Soon Styles */
        .coming-soon-container {
            text-align: center;
            padding: 80px 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: 40px auto;
            max-width: 500px;
        }

        body.dark-theme .coming-soon-container {
            background: #1f2937;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .coming-soon-icon {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .coming-soon-container h4 {
            font-size: 24px;
            color: #1f2937;
            margin-bottom: 16px;
        }

        body.dark-theme .coming-soon-container h4 {
            color: #f9fafb;
        }

        .coming-soon-container p {
            color: #6b7280;
            margin-bottom: 30px;
            font-size: 16px;
        }

        body.dark-theme .coming-soon-container p {
            color: #d1d5db;
        }

        .notify-btn {
            background: #f3f4f6;
            color: #374151;
            border: 2px solid #e5e7eb;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .notify-btn:hover {
            background: #e5e7eb;
            transform: translateY(-1px);
        }

        body.dark-theme .notify-btn {
            background: #374151;
            color: #f9fafb;
            border-color: #4b5563;
        }

        body.dark-theme .notify-btn:hover {
            background: #4b5563;
        }

        /* Coming Soon Badge */
        .coming-soon-badge {
            background: #fbbf24 !important;
            color: #92400e !important;
        }

        /* Disabled Button */
        .disabled-button {
            background: #9ca3af !important;
            color: #6b7280 !important;
            cursor: not-allowed !important;
            opacity: 0.6;
        }

        .disabled-button:hover {
            transform: none !important;
            box-shadow: none !important;
        }

        /* Development Status */
        .development-status {
            text-align: center;
            padding: 50px 40px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: 40px auto;
            max-width: 600px;
            border: 2px dashed #fbbf24;
        }

        body.dark-theme .development-status {
            background: #1f2937;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border-color: #f59e0b;
        }

        .status-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .development-status h4 {
            font-size: 24px;
            color: #f59e0b;
            margin-bottom: 16px;
            font-weight: 700;
        }

        body.dark-theme .development-status h4 {
            color: #fbbf24;
        }

        .development-status p {
            color: #6b7280;
            margin-bottom: 30px;
            font-size: 16px;
            line-height: 1.6;
        }

        body.dark-theme .development-status p {
            color: #d1d5db;
        }

        .product-section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .product-section-title {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
        }

        body.dark-theme .product-section-title {
            color: #f9fafb;
        }

        .product-section-subtitle {
            font-size: 18px;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        body.dark-theme .product-section-subtitle {
            color: #d1d5db;
        }

        .product-card-container {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }

        .testimonials-title {
            font-size: 24px;
            text-align: center;
            color: #1f2937;
            margin-bottom: 40px;
            font-weight: 700;
        }

        body.dark-theme .testimonials-title {
            color: #f9fafb;
        }

        /* Testimonials Section */
        .testimonials-section {
            margin-top: 40px;
            padding: 40px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        body.dark-theme .testimonials-section {
            background: #1f2937;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .testimonial:hover {
            transform: translateY(-5px);
        }

        body.dark-theme .testimonial {
            background: #1f2937;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .testimonial-content {
            font-size: 16px;
            line-height: 1.6;
            color: #4b5563;
            margin-bottom: 20px;
            font-style: italic;
        }

        body.dark-theme .testimonial-content {
            color: #d1d5db;
        }

        .testimonial-content::before {
            content: '"';
            font-size: 24px;
            color: #667eea;
            font-weight: bold;
        }

        .testimonial-content::after {
            content: '"';
            font-size: 24px;
            color: #667eea;
            font-weight: bold;
        }

        .testimonial-author strong {
            color: #1f2937;
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
        }

        body.dark-theme .testimonial-author strong {
            color: #f9fafb;
        }

        .testimonial-author span {
            color: #6b7280;
            font-size: 14px;
        }

        body.dark-theme .testimonial-author span {
            color: #9ca3af;
        }

        /* Testimonials Dots */
        .testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot:hover {
            background: #9ca3af;
            transform: scale(1.2);
        }

        .testimonial-dot.active {
            background: #667eea;
            width: 24px;
            border-radius: 5px;
        }

        body.dark-theme .testimonial-dot {
            background: #4b5563;
        }

        body.dark-theme .testimonial-dot:hover {
            background: #6b7280;
        }

        body.dark-theme .testimonial-dot.active {
            background: #a5b4fc;
        }

        .footer {
            background: #1f2937;
            color: #9ca3af;
            text-align: center;
            padding: 40px 20px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h4 {
            color: #f9fafb;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-email {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
        }

        .email-icon {
            font-size: 18px;
        }

        .contact-email a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }
		
		.terms-and-conditions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
        }
		
		.terms-and-conditions a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }
		
		.terms-and-conditions a:hover {
            color: #a5b4fc;
            text-decoration: underline;
        }

        .contact-email a:hover {
            color: #a5b4fc;
            text-decoration: underline;
        }

        .footer p {
            margin-bottom: 8px;
        }

        /* Dark Theme Styles */
        body.dark-theme .section-title {
            color: #f9fafb;
        }

        body.dark-theme .section-subtitle {
            color: #d1d5db;
        }

        body.dark-theme .product-card {
            background: #1f2937;
            color: #f9fafb;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }

        body.dark-theme .product-card:hover {
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        }

        body.dark-theme .product-title {
            color: #f9fafb;
        }

        body.dark-theme .product-description {
            color: #d1d5db;
        }

        body.dark-theme .product-features li {
            color: #e5e7eb;
        }

        body.dark-theme .footer {
            background: #030712;
        }

        @media (max-width: 768px) {
            .header {
                padding: 25px 20px;
            }

            .header h1 {
                font-size: 28px;
            }

            .header p {
                font-size: 14px;
            }

            .section-title {
                font-size: 28px;
            }

            .product-navigation {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .product-nav-btn {
                min-width: 160px;
                max-width: 160px;
                min-height: 100px;
                padding: 16px 20px;
            }

            .nav-text {
                font-size: 14px;
            }

            .nav-icon {
                font-size: 20px;
            }

            .product-section {
                margin-bottom: 50px;
                padding: 30px 20px;
            }

            .product-section-title {
                font-size: 26px;
            }

            .product-section-subtitle {
                font-size: 16px;
            }

            .trust-stats {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 20px;
            }

            .stat-number {
                font-size: 28px;
            }

            .trust-badges {
                gap: 10px;
            }

            .trust-badge {
                font-size: 12px;
                padding: 6px 12px;
            }

            .product-card {
                padding: 30px;
                max-width: 100%;
            }

            .product-preview {
                padding: 15px;
                margin: 20px 0;
            }

            .interface-image {
                max-height: 200px;
            }

            .slider-dots {
                margin-top: 12px;
                gap: 8px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }

            .dot.active {
                width: 20px;
            }

            .preview-caption {
                font-size: 12px;
            }

            .details-toggle-btn {
                font-size: 12px;
                padding: 10px 20px;
            }

            .details-icon {
                font-size: 14px;
            }

            .product-details-content {
                padding: 30px 20px;
            }

            .details-feature-title {
                font-size: 18px;
            }

            .details-feature-description {
                font-size: 15px;
            }

            .testimonials-section {
                padding: 30px 20px;
            }

            .testimonials-container {
                min-height: 250px;
            }

            .testimonial {
                padding: 25px;
            }

            .testimonials-dots {
                margin-top: 20px;
                gap: 8px;
            }

            .testimonial-dot {
                width: 8px;
                height: 8px;
            }

            .testimonial-dot.active {
                width: 20px;
            }

            .coming-soon-container {
                padding: 60px 30px;
                margin: 30px 20px;
            }

            .coming-soon-icon {
                font-size: 50px;
            }

            .coming-soon-container h4 {
                font-size: 20px;
            }

            .theme-toggle {
                top: 12px;
                right: 15px;
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .products-section {
                padding: 30px 0;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
            }

            .footer-section {
                min-width: 100%;
            }

            .contact-email {
                font-size: 14px;
                flex-wrap: wrap;
            }
			
			.terms-and-conditions {
                font-size: 14px;
                flex-wrap: wrap;
            }

            /* Mobile optimization pentru butoane */
            .product-button, .product-button-orange, .product-button-gold {
                font-size: 14px;
                padding: 16px 32px;
                min-height: 50px;
            }
            
            .button-icon {
                font-size: 18px;
            }
        }
