.elementor-6740 .elementor-element.elementor-element-d4797d7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-b45bf97 *//* Stiluri generale */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            background-color: #faf7f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Container fix pentru secțiunile specificate */
        .fixed-container {
            width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Media query pentru responsivitate */
        @media (max-width: 1020px) {
            .fixed-container {
                width: 100%;
            }
        }
        
        /* Header */
        .hero {
            background-color: #f8c4d4;
            background-image: linear-gradient(135deg, #f8c4d4 0%, #fdf8f8 100%);
            padding: 60px 0 40px;
            text-align: center;
            margin-bottom: 60px;
        }
        
        .hero h1 {
            font-size: 3rem;
            color: #333;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #f8c4d4;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(248, 196, 212, 0.4);
        }
        
        .btn:hover {
            background-color: #f0b5c5;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(248, 196, 212, 0.6);
        }
        
        /* Secțiuni */
        .section {
            padding: 30px 0;
            border-bottom: 1px solid #eee;
        }
        
        .section:last-child {
            border-bottom: none;
        }
        
        .section-title {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            color: #ff5589;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 500;
        }
        
        .divider {
            width: 80px;
            height: 4px;
            background-color: #f8c4d4;
            margin: 0 auto 40px;
        }
        
        /* Conținut */
        .content {
            margin-bottom: 30px;
        }
        
        .content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #555;
        }
        
        .content ul {
            margin: 0 0 30px 20px;
        }
        
        .content li {
            margin-bottom: 10px;
            font-size: 1.1rem;
            color: #555;
        }
        
        /* Card-uri */
        .cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 40px 0;
        }
        
        .card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            padding: 30px;
            flex: 1 1 300px;
            max-width: 400px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(248, 196, 212, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .card-icon svg {
            width: 30px;
            height: 30px;
            fill: #f8c4d4;
        }
        
        .card h3 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .card p {
            font-size: 1rem;
            color: #666;
            text-align: center;
        }
        
        /* Highlight box */
        .highlight {
            background-color: rgb(193 88 239 / 26%);
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
        }
        
        .highlight h3 {
            font-size: 1.4rem;
            color: #333;
            margin-bottom: 15px;
        }
        
        .highlight p {
            font-size: 1.1rem;
            color: #555;
        }
        
        /* Warning box */
        .warning {
            background-color: rgb(255 208 208 / 70%);
            border-left: 5px solid #f8c4d4;
            padding: 20px 30px;
            margin: 30px 0;
        }
        
        .warning p {
            font-size: 1.1rem;
            color: #555;
        }
        
        /* Two columns */
        .two-columns {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin: 40px 0;
        }
        
        .column {
            flex: 1 1 400px;
        }
        
        /* CTA Section */
        .cta {
            background-color: #f8c4d4;
            background-image: linear-gradient(135deg, #f8c4d4 0%, #fdf8f8 100%);
            padding: 40px 0;
            text-align: center;
            margin-top: 60px;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn-white {
            background-color: white;
            color: #f8c4d4;
        }
        
        .btn-white:hover {
            background-color: #f0f0f0;
        }
        
        /* Footer */
        .footer {
            padding: 40px 0;
            text-align: center;
        }
        
        .footer p {
            color: #888;
        }
        
        /* Imagini */
        .image-container {
            border-radius: 10px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .image-container:hover img {
            transform: scale(1.02);
        }
        
        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #777;
            margin-top: 10px;
        }
        
        /* Animații */
        .fade-in {
            opacity: 0;
            animation: fadeIn 0.8s ease-in-out forwards;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
            
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .card {
                flex: 1 1 100%;
            }
        }
        
        /* Beneficii */
        .benefits-list {
            margin: 30px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .benefit-icon {
            color: #f8c4d4;
            font-size: 1.2rem;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        .benefit-text {
            font-size: 1.1rem;
            color: #555;
        }
        
        /* Statistici */
        .stat-box {
            background-color: #f8c4d4;
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(248, 196, 212, 0.4);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1.1rem;
        }
        
        /* Timeline */
        .timeline {
            margin: 40px 0;
            position: relative;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20px;
            height: 100%;
            width: 4px;
            background: rgba(248, 196, 212, 0.3);
        }
        
        .timeline-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 30px;
        }
        
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        
        .timeline-dot {
            position: absolute;
            left: 10px;
            top: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #f8c4d4;
            box-shadow: 0 0 0 4px rgba(248, 196, 212, 0.2);
        }
        
        .timeline-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        
        .timeline-content {
            font-size: 1.1rem;
            color: #555;
        }
        
        /* Prețuri */
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
            table-layout: fixed;
        }

        .price-table th, 
        .price-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }

        .price-table th:first-child, 
        .price-table td:first-child {
            width: 60%;
            text-align: left;
        }

        .price-table th:last-child, 
        .price-table td:last-child {
            width: 40%;
            text-align: center;
            padding-right: 0;
            font-weight: 600;
            color: #e05f86;
            background-color: rgba(248, 196, 212, 0.1);
        }

        .price-table th {
            background-color: #f8c4d4;
            color: white;
            font-weight: 500;
            text-align: center;
        }

        .price-table th:last-child {
            background-color: #ffdae6c4;
        }

        .price-table tr:nth-child(even) {
            background-color: rgba(248, 196, 212, 0.05);
        }

        .price-table tr:last-child td {
            border-bottom: none;
        }
        
        .price-section {
            margin-top: 60px;
        }
        
        .price-section h3 {
            font-size: 1.6rem;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .price-note {
            font-size: 0.9rem;
            color: #777;
            font-style: italic;
            text-align: center;
            margin-top: 20px;
        }
        
        /* Disclaimer Box */
        .disclaimer-box {
            background-color: rgb(255 161 190 / 20%);
            border: 2px solid #f8c4d4;
            border-radius: 10px;
            padding: 20px;
            margin: 40px 0;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .disclaimer-box p {
            font-size: 1.2rem;
            color: #333;
            font-weight: 500;
            margin: 0;
        }

        .disclaimer-icon {
            font-size: 1.5rem;
            margin-right: 10px;
            color: #f8c4d4;
        }
        
        /* Grid pentru carduri mici */
        .small-cards-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        @media (min-width: 640px) {
            .small-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .small-cards-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .small-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .small-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .small-card-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(248, 196, 212, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }
        
        .small-card-icon svg {
            width: 24px;
            height: 24px;
            fill: #f8c4d4;
        }
        
        .small-card p {
            font-size: 1rem;
            color: #666;
            text-align: center;
        }
        
        /* Checkbox style */
        .check-list {
            list-style: none;
            margin: 20px 0;
        }
        
        .check-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }
        
        .check-icon {
            color: #f8c4d4;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        .check-text {
            font-size: 1.1rem;
            color: #555;
        }

        /* FAQ Section */
        .faq-container {
            margin: 40px 0;
        }

        .faq-item {
            background-color: #ffd4ea6e;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            font-size: 1.1rem;
            font-weight: 500;
            color: #333;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgb(248 196 212 / 38%);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.active {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .faq-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-toggle.active {
            transform: rotate(180deg);
        }

        /* Steps */
        .steps {
            margin: 40px 0;
        }

        .step {
            display: flex;
            margin-bottom: 30px;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background-color: #f8c4d4;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
            margin-right: 20px;
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            font-size: 1.2rem;
            font-weight: 500;
            color: #333;
            margin-bottom: 10px;
        }

        .step-description {
            font-size: 1.1rem;
            color: #555;
        }

        /* Before/After */
        .before-after {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .before-after-item {
            flex: 1 1 300px;
            text-align: center;
        }

        .before-after-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 10px;
        }

        .before-after-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .before-after-label {
            font-size: 1rem;
            color: #666;
            margin-bottom: 5px;
        }

        .before-after-description {
            font-size: 0.9rem;
            color: #888;
        }

        /* Stiluri pentru conversia de monedă */
        .currency-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .currency-btn {
            padding: 8px 20px;
            background-color: #f0f0f0;
            border: 1px solid #ddd;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .currency-btn:first-child {
            border-radius: 5px 0 0 5px;
        }

        .currency-btn:last-child {
            border-radius: 0 5px 5px 0;
        }

        .currency-btn.active {
            background-color: #f8c4d4;
            color: white;
            border-color: #f8c4d4;
        }

        .exchange-rate-info {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            padding: 10px;
            background-color: rgba(248, 196, 212, 0.1);
            border-radius: 8px;
            flex-wrap: wrap;
        }

        .exchange-rate-info p {
            margin: 0 10px;
            font-size: 0.95rem;
            color: #666;
        }

        .exchange-rate-value {
            font-weight: 600;
            color: #ff5589;
            margin: 0 5px;
        }

        .exchange-rate-date {
            font-style: italic;
            margin-left: 5px;
        }

        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(248, 196, 212, 0.3);
            border-radius: 50%;
            border-top-color: #f8c4d4;
            animation: spin 1s ease-in-out infinite;
            margin-left: 10px;
            vertical-align: middle;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Optimizări pentru tablete */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .two-columns {
                gap: 20px;
            }
            
            .card {
                flex: 1 1 100%;
                padding: 20px;
            }
            
            .step {
                flex-direction: column;
            }
            
            .step-number {
                margin-bottom: 10px;
            }
            
            .before-after {
                gap: 30px;
            }
            
            .before-after-item {
                flex: 1 1 100%;
            }
            
            .faq-question {
                padding: 15px;
                font-size: 1rem;
            }
        }

        /* Optimizări pentru telefoane mobile */
        @media (max-width: 480px) {
            .hero {
                padding: 60px 0 40px;
                margin-bottom: 40px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }
            
            .hero p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .btn {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .divider {
                margin-bottom: 20px;
            }
            
            .content p, .content li, .step-description, .highlight p {
                font-size: 1rem;
            }
            
            .small-cards-grid {
                grid-template-columns: 1fr;
            }
            
            .currency-toggle {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .currency-btn {
                width: 100%;
                max-width: 200px;
            }
            
            .exchange-rate-info {
                flex-direction: column;
                text-align: center;
            }
            
            .exchange-rate-info p {
                margin: 5px 0;
            }
            
            .price-table th, .price-table td {
                padding: 10px;
                font-size: 0.9rem;
            }
            
            .disclaimer-box p {
                font-size: 1rem;
            }
            
            .cta h2 {
                font-size: 1.8rem;
            }
            
            .cta p {
                font-size: 1rem;
            }
        }

        /* Optimizări pentru viteză pe mobile */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Lazy loading pentru imagini */
        img.lazy {
            opacity: 1;
            transition: opacity 0.3s;
        }

        img.lazy.loaded {
            opacity: 1;
        }

        /* Optimizări pentru fonturi */
        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hjp-Ek-_EeA.woff2') format('woff2');
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
        }

        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 500;
            font-display: swap;
            src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fAZ9hjp-Ek-_EeA.woff2') format('woff2');
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
        }

        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYAZ9hjp-Ek-_EeA.woff2') format('woff2');
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
        }

        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 700;
            font-display: swap;
            src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYAZ9hjp-Ek-_EeA.woff2') format('woff2');
            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
        }
        
        /* Stiluri pentru comparație produse - Design Nou */
.product-comparison {
    margin: 40px 0;
    perspective: 1000px;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 35px;
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Efect de lumină în mișcare */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

/* Efect 3D la hover */
.product-card:hover {
    transform: rotateY(5deg) rotateX(-5deg) translateZ(20px);
    box-shadow: 
        -20px 20px 40px 0 rgba(31, 38, 135, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Nume produs cu efect neon */
.product-name {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s ease;
}

/* Efect de strălucire pe text */
.product-name::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(3px);
    transition: all 0.4s ease;
    z-index: -1;
}

.product-card:hover .product-name::before {
    opacity: 1;
    transform: translateY(0);
    filter: blur(10px);
}

.product-card:hover .product-name {
    transform: scale(1.05);
}

/* Badge cu animație pulsantă */
.product-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Separator cu gradient animat */
.product-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #667eea 20%, 
        #764ba2 50%, 
        #667eea 80%, 
        transparent
    );
    margin: 25px auto;
    position: relative;
    overflow: hidden;
    opacity: 0.6;
}

.product-separator::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Descriere cu efect de fade */
.product-description {
    font-size: 1.05rem;
    color: #4a5568;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.product-card:hover .product-description {
    opacity: 1;
    color: #2d3748;
}

/* Container pro/contra cu design modern */
.product-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

/* Carduri pro și contra cu efect glassmorphism */
.product-pros, .product-cons {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-pros {
    border: 1px solid rgba(72, 187, 120, 0.3);
    box-shadow: inset 0 0 20px rgba(72, 187, 120, 0.1);
}

.product-cons {
    border: 1px solid rgba(245, 101, 101, 0.3);
    box-shadow: inset 0 0 20px rgba(245, 101, 101, 0.1);
}

/* Efect de hover pentru pro/contra */
.product-pros::before, .product-cons::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    transition: all 0.6s;
    opacity: 0;
}

.product-pros::before {
    background: radial-gradient(circle, rgba(72, 187, 120, 0.1) 0%, transparent 70%);
}

.product-cons::before {
    background: radial-gradient(circle, rgba(245, 101, 101, 0.1) 0%, transparent 70%);
}

.product-card:hover .product-pros::before,
.product-card:hover .product-cons::before {
    opacity: 1;
    transform: rotate(180deg);
}

.product-card:hover .product-pros {
    transform: translateX(-10px) scale(1.02);
    border-color: rgba(72, 187, 120, 0.5);
    box-shadow: 
        inset 0 0 30px rgba(72, 187, 120, 0.15),
        -5px 5px 20px rgba(72, 187, 120, 0.1);
}

.product-card:hover .product-cons {
    transform: translateX(10px) scale(1.02);
    border-color: rgba(245, 101, 101, 0.5);
    box-shadow: 
        inset 0 0 30px rgba(245, 101, 101, 0.15),
        5px 5px 20px rgba(245, 101, 101, 0.1);
}

/* Titluri pro/contra cu design modern */
.pros-title, .cons-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.pros-title {
    color: #48bb78;
}

.cons-title {
    color: #f56565;
}

/* Linie decorativă sub titluri */
.pros-title::after, .cons-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.pros-title::after {
    background: linear-gradient(90deg, #48bb78, #38a169);
}

.cons-title::after {
    background: linear-gradient(90deg, #f56565, #e53e3e);
}

.product-card:hover .pros-title::after,
.product-card:hover .cons-title::after {
    width: 80px;
}

/* Liste cu design modern */
.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-item, .cons-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.pros-item:nth-child(1), .cons-item:nth-child(1) { animation-delay: 0.1s; }
.pros-item:nth-child(2), .cons-item:nth-child(2) { animation-delay: 0.2s; }
.pros-item:nth-child(3), .cons-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Iconițe cu animație */
.pros-icon, .cons-icon {
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.pros-icon {
    color: #48bb78;
    background: rgba(72, 187, 120, 0.1);
}

.cons-icon {
    color: #f56565;
    background: rgba(245, 101, 101, 0.1);
}

.product-card:hover .pros-icon {
    transform: scale(1.2) rotate(360deg);
    background: rgba(72, 187, 120, 0.2);
}

.product-card:hover .cons-icon {
    transform: scale(1.2) rotate(-360deg);
    background: rgba(245, 101, 101, 0.2);
}

/* Text în liste */
.pros-text, .cons-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.product-card:hover .pros-text,
.product-card:hover .cons-text {
    color: #2d3748;
}

/* Efect de apariție pentru carduri */
.product-card {
    opacity: 0;
    transform: translateY(50px);
    animation: cardAppear 0.8s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .product-card {
        padding: 30px 20px;
    }
    
    .product-name {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .product-pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .product-card:hover .product-pros,
    .product-card:hover .product-cons {
        transform: none;
    }
}

/* Suport pentru dispozitive care nu suportă backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .product-card {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .product-pros, .product-cons {
        background: rgba(255, 255, 255, 0.9);
    }
}

/* Stiluri pentru imaginile din cardurile de produse */
.product-image-container {
    margin: 20px auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.4s ease;
    max-width: 100%;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.product-image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Efect de strălucire pentru imaginile din carduri */
.product-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.7s ease;
}

.product-card:hover .product-image-container::after {
    left: 150%;
}

@media (max-width: 768px) {
    .product-image-container {
        margin: 15px auto 20px;
    }
}/* End custom CSS */