/* Smart Protect - Styles Results */

.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

/* Loader Section */
.loader-section {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.lottie-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.lottie-loader #lottie-loader-animation {
    width: 200px;
    height: 200px;
}

.loader-message {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2rem;
}

.progress-bar {
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s ease;
}

.loader-percent {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Error Section */
.error-section {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-section h2 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.error-section p {
    color: var(--gray);
    margin-bottom: 2rem;
}

/* ========================================
   Lead Capture Section
   ======================================== */
.lead-capture-section {
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.lead-capture-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.lead-capture-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

.lead-capture-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lead-capture-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.lead-capture-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.lead-capture-header p {
    color: var(--gray);
    font-size: 1rem;
}

/* Lead Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lead-form .form-group {
    margin-bottom: 0;
}

.lead-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.lead-form .label-icon {
    font-size: 1rem;
}

.lead-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.lead-form .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.lead-form .form-group input::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.lead-form .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.lead-form .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.lead-form .form-group select option {
    padding: 0.5rem;
}

/* Lead Form Checkbox */
.lead-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.lead-form .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}

.lead-form .form-checkbox label {
    flex: 1;
    font-size: 0.875rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1.5;
}

.lead-form .form-checkbox label a {
    color: var(--primary);
    text-decoration: none;
}

.lead-form .form-checkbox label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.lead-form .btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.lead-form .btn-icon {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.lead-form .btn:hover .btn-icon {
    transform: translateX(4px);
}

.lead-form .btn-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Trust Items */
.lead-capture-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
}

.trust-icon {
    font-size: 1rem;
}

/* Results Section */
.results-section {
    animation: fadeInUp 0.5s ease;
}

.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
}

/* Top Product Card */
.top-product-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    margin-bottom: 4rem;
    position: relative;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.top-product-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.top-product-image {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-product-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.top-product-details h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-text {
    color: var(--gray);
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--dark);
}

.product-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.old-price {
    font-size: 1.25rem;
    color: var(--gray);
    text-decoration: line-through;
}

.discount {
    background: var(--danger);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.product-meta {
    display: flex;
    gap: 2rem;
}

.meta-item {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Other Products */
.other-products-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Sonnette / Visiophone highlight */
.product-card.sonnette-highlight {
    border: 2px solid var(--primary);
    position: relative;
}

.sonnette-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    z-index: 10;
}

.product-card.sonnette-highlight .product-image {
    padding-top: 2.5rem;
}

.product-image {
    background: white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Dual Recommendation */
.dual-recommendation {
    margin-bottom: 4rem;
}

.dual-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dual-product-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.dual-product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

/* Comparison Table */
.comparison-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    background: var(--light-gray);
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

/* Comparison Product Links */
.comparison-product-link {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius);
    background: rgba(37, 99, 235, 0.08);
    border-bottom: 2px solid transparent;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.comparison-product-link::after {
    content: "Voir sur Amazon";
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
}

.comparison-product-link:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -32px;
}

.comparison-product-link:hover {
    color: var(--secondary);
    background: rgba(37, 99, 235, 0.15);
    border-bottom-color: var(--secondary);
}

.external-link-icon {
    font-size: 0.85em;
    opacity: 1;
    transition: all 0.2s ease;
    background: var(--primary);
    color: white;
    padding: 0.15rem 0.25rem;
    border-radius: 3px;
}

.comparison-product-link:hover .external-link-icon {
    background: var(--secondary);
    transform: translate(2px, -2px);
}

/* Professional CTA */
.professional-cta {
    margin-bottom: 4rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: white;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.cta-icon {
    font-size: 3.5rem;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.cta-features li {
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.final-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.final-cta p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--gray);
}

.devis-form {
    max-width: 100%;
}

.btn-block {
    width: 100%;
}

/* ========================================
   RESPONSIVE - Mobile First Optimizations
   ======================================== */

/* Tablet */
@media (max-width: 968px) {
    .main-content {
        padding: 1.5rem 0;
    }

    .top-product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .top-product-image {
        padding: 1.5rem;
    }

    .top-product-image img {
        max-width: 250px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .dual-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .cta-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }

    .cta-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .hero-section {
        margin-bottom: 2rem;
    }

    .top-product-card {
        margin-bottom: 3rem;
    }

    .other-products-section,
    .dual-recommendation,
    .comparison-section,
    .professional-cta {
        margin-bottom: 3rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem 0;
    }

    .loader-section,
    .error-section {
        padding: 2.5rem 1.5rem;
        margin: 0 0.5rem;
    }

    /* Lead Capture Mobile */
    .lead-capture-section {
        margin: 0 0.5rem;
    }

    .lead-capture-card {
        padding: 1.75rem 1.5rem;
    }

    .lead-capture-icon {
        font-size: 3rem;
    }

    .lead-capture-header h2 {
        font-size: 1.5rem;
    }

    .lead-capture-trust {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.8125rem;
    }

    .loader-message {
        font-size: 1.125rem;
    }

    .error-icon {
        font-size: 3rem;
    }

    .error-section h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .top-product-card {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .recommended-badge {
        padding: 0.4rem 1.5rem;
        font-size: 0.875rem;
        top: -12px;
    }

    .top-product-details h2 {
        font-size: 1.5rem;
    }

    .product-subtitle {
        font-size: 0.9375rem;
    }

    .product-rating {
        margin-bottom: 1rem;
    }

    .stars {
        font-size: 1.125rem;
    }

    .product-features {
        margin-bottom: 1.5rem;
    }

    .product-features li {
        padding: 0.375rem 0;
        font-size: 0.9375rem;
    }

    .product-price-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        align-items: center;
        text-align: center;
    }

    .price {
        font-size: 1.75rem;
    }

    .old-price {
        font-size: 1.125rem;
    }

    .product-meta {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Centrage contenu produit - 640px */
    .top-product-details {
        text-align: center;
    }

    .product-subtitle {
        text-align: center;
    }

    .product-rating {
        justify-content: center;
    }

    .product-features {
        text-align: left;
        max-width: 320px;
        margin: 0 auto 1.5rem auto;
    }

    .product-features h4 {
        text-align: center;
    }

    .product-card {
        border-radius: var(--radius);
        text-align: center;
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 1.25rem;
        text-align: center;
    }

    .product-content h3 {
        font-size: 1rem;
        text-align: center;
    }

    .product-card .product-features {
        text-align: left;
        display: inline-block;
    }

    .product-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .product-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .dual-product-card {
        padding: 1.5rem;
        text-align: center;
    }

    .dual-product-card .product-content {
        text-align: center;
    }

    .dual-product-card .product-features {
        text-align: left;
        display: inline-block;
    }

    .dual-product-card .product-footer {
        align-items: center;
    }

    .dual-product-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.75rem;
    }

    .comparison-section {
        padding: 1.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.625rem 0.375rem;
        font-size: 0.8125rem;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.375rem;
    }

    .cta-content p {
        font-size: 0.9375rem;
    }

    .final-cta {
        padding: 2rem 1.5rem;
    }

    .final-cta h3 {
        font-size: 1.375rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Modal Mobile */
    .modal-content {
        padding: 1.5rem;
        width: 95%;
        max-height: 95vh;
        border-radius: var(--radius);
    }

    .modal-close {
        font-size: 1.75rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .modal-header {
        margin-bottom: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.375rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-content {
        padding: 0.75rem 0;
    }

    .loader-section,
    .error-section {
        padding: 2rem 1rem;
        border-radius: var(--radius);
    }

    .loader-message {
        font-size: 1rem;
    }

    /* Lead Capture Small Mobile */
    .lead-capture-card {
        padding: 1.5rem 1rem;
    }

    .lead-capture-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .lead-capture-header h2 {
        font-size: 1.375rem;
    }

    .lead-capture-header p {
        font-size: 0.9375rem;
    }

    .lead-form {
        gap: 1rem;
    }

    .lead-form .form-group input {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .lead-form .form-group select {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .lead-form .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .lead-capture-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-section {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .top-product-card {
        padding: 1.25rem;
        padding-top: 1.75rem;
        margin-bottom: 2rem;
    }

    .recommended-badge {
        padding: 0.35rem 1rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .top-product-grid {
        gap: 1.5rem;
    }

    .top-product-image {
        padding: 1rem;
        margin: 0 auto;
    }

    .top-product-image img {
        max-width: 200px;
        display: block;
        margin: 0 auto;
    }

    /* Centrage du contenu produit sur mobile */
    .top-product-details {
        text-align: center;
    }

    .top-product-details h2 {
        font-size: 1.25rem;
        text-align: center;
    }

    .product-subtitle {
        text-align: center;
    }

    .product-rating {
        justify-content: center;
    }

    .product-features {
        text-align: left;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-features h4 {
        font-size: 0.9375rem;
        text-align: center;
    }

    .product-features li {
        font-size: 0.875rem;
    }

    .product-price-box {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .price-container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .price {
        font-size: 1.5rem;
    }

    .old-price {
        font-size: 1rem;
    }

    .discount {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }

    .product-meta {
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .meta-item {
        font-size: 0.8125rem;
    }

    /* Centrage des autres produits */
    .product-card {
        text-align: center;
    }

    .product-card .product-content {
        text-align: center;
    }

    .product-card .product-content h3 {
        text-align: center;
    }

    .product-card .product-rating {
        justify-content: center;
    }

    .product-card .product-features {
        text-align: left;
        display: inline-block;
    }

    .product-card .product-footer {
        align-items: center;
    }

    .product-card .product-price {
        text-align: center;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.375rem;
    }

    .section-header p {
        font-size: 0.875rem;
    }

    .product-image {
        height: 160px;
    }

    .product-content {
        padding: 1rem;
    }

    .btn-small {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

    .dual-product-card {
        padding: 1.25rem;
        padding-top: 2.5rem;
        text-align: center;
    }

    .dual-product-card .product-image {
        margin: 0 auto;
    }

    .dual-product-card .product-content {
        text-align: center;
    }

    .dual-product-card .product-content h3 {
        text-align: center;
    }

    .dual-product-card .product-rating {
        justify-content: center;
    }

    .dual-product-card .product-features {
        text-align: left;
        display: inline-block;
    }

    .dual-product-card .product-footer {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .dual-product-card .product-price {
        text-align: center;
    }

    .dual-product-card .btn {
        width: 100%;
    }

    .cta-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .cta-content h3 {
        font-size: 1.25rem;
    }

    .cta-features li {
        font-size: 0.875rem;
    }

    .final-cta {
        padding: 1.5rem 1rem;
    }

    .final-cta h3 {
        font-size: 1.25rem;
    }

    .final-cta p {
        font-size: 0.875rem;
    }

    /* Modal Small Mobile */
    .modal-content {
        padding: 1.25rem;
        width: 100%;
        border-radius: 0;
        max-height: 100vh;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-header p {
        font-size: 0.875rem;
    }

    .other-products-section,
    .dual-recommendation,
    .comparison-section,
    .professional-cta {
        margin-bottom: 2rem;
    }
}

/* Very Small Mobile */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.375rem;
    }

    .recommended-badge {
        font-size: 0.6875rem;
        padding: 0.3rem 0.75rem;
    }

    .top-product-details h2 {
        font-size: 1.125rem;
    }

    .price {
        font-size: 1.375rem;
    }

    .section-header h2 {
        font-size: 1.25rem;
    }

    .cta-content h3 {
        font-size: 1.125rem;
    }

    .final-cta h3 {
        font-size: 1.125rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .product-card {
        /* Disable hover effect on touch */
        transform: none !important;
    }

    .product-card:active {
        transform: scale(0.98) !important;
        box-shadow: var(--shadow-lg);
    }

    .btn {
        min-height: 44px; /* iOS touch target minimum */
    }

    .btn-small {
        min-height: 40px;
        padding: 0.625rem 1rem;
    }

    .modal-close {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-content {
        max-height: 90vh;
        padding: 1rem 1.5rem;
    }

    .loader-section,
    .error-section {
        padding: 1.5rem;
    }

    .top-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .dual-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Modal Callback Styles
   ======================================== */
.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.callback-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.callback-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    cursor: pointer;
}

.callback-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* ========================================
   Toast Notifications
   ======================================== */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.toast-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-text {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Toast */
@media (max-width: 640px) {
    .toast {
        left: 1rem;
        right: 1rem;
        max-width: none;
        transform: translateY(-100px);
    }

    .toast.show {
        transform: translateY(0);
    }

    .callback-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Skip Button & Incentive Text
   ======================================== */
.skip-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #e5e7eb;
}

.btn-skip {
    margin-top: 0.75rem;
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-skip:hover {
    background: #f3f4f6;
    color: #1f2937;
    border-color: #9ca3af;
}

.form-incentive-text {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 0.5rem;
    border-left: 3px solid #2563eb;
}

.form-incentive-text strong {
    color: #2563eb;
}

/* ========================================
   Save Recommendation Section
   ======================================== */
.save-recommendation-section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.4s ease;
}

.save-recommendation-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px dashed var(--primary);
    text-align: center;
}

.save-recommendation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.save-icon {
    font-size: 1.5rem;
}

.save-recommendation-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.save-recommendation-card > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Save Form */
.save-form {
    max-width: 500px;
    margin: 0 auto;
}

.save-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.save-form .form-group {
    margin-bottom: 0;
}

.save-form .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.save-form .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.save-form .form-group input::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

/* Trust badges in save section */
.save-recommendation-card .trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.8125rem;
}

/* Save Success State */
.save-recommendation-card.save-success {
    border-style: solid;
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.save-success .success-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.save-success h3 {
    color: var(--success);
}

.save-success p {
    margin-bottom: 0;
}

/* Spinner for save form button */
.save-form .btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Save Recommendation */
@media (max-width: 640px) {
    .save-recommendation-card {
        padding: 1.5rem;
    }

    .save-recommendation-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .save-form .form-row {
        grid-template-columns: 1fr;
    }

    .save-recommendation-card .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   Save Recommendation Section V2 (Sobre)
   ======================================== */
.save-recommendation-section-v2 {
    margin-bottom: 2rem;
    animation: fadeInUp 0.4s ease;
}

.save-card-v2 {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.save-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.save-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.25rem 0;
}

.save-text p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

/* Formulaire inline */
.save-inline-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.save-inline-form input {
    padding: 0.625rem 0.875rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    background: white;
    transition: all 0.2s ease;
    width: 150px;
}

.save-inline-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.save-inline-form input::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.btn-save {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.btn-save .btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
}

/* Trust badges v2 */
.save-trust-v2 {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.75rem;
    color: var(--gray);
}

/* État de succès v2 */
.save-success-v2 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.save-success-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.success-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
}

.success-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--success);
}

/* Responsive Save V2 */
@media (max-width: 768px) {
    .save-card-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .save-text {
        text-align: center;
    }

    .save-inline-form {
        justify-content: center;
    }

    .save-inline-form input {
        width: 100%;
        max-width: 200px;
    }

    .save-trust-v2 {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .save-card-v2 {
        padding: 1rem;
    }

    .save-inline-form {
        flex-direction: column;
        width: 100%;
    }

    .save-inline-form input {
        max-width: none;
        width: 100%;
    }

    .btn-save {
        width: 100%;
    }

    .save-trust-v2 {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* ========================================
   Product Links - Amazon Clickable Areas
   ======================================== */
.product-link,
.product-title-link,
.product-subtitle-link,
.product-rating-link,
.product-price-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.product-link:hover,
.product-title-link:hover,
.product-subtitle-link:hover,
.product-rating-link:hover,
.product-price-link:hover {
    opacity: 0.85;
}

/* Image links */
.product-image.product-link {
    display: block;
}

.top-product-image.product-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title links */
.product-title-link h2,
.product-title-link h3 {
    margin: 0;
    transition: color 0.2s ease;
}

.product-title-link:hover h2,
.product-title-link:hover h3 {
    color: var(--primary);
}

/* Subtitle links */
.product-subtitle-link p {
    margin: 0;
}

/* Rating links */
.product-rating-link .product-rating {
    margin: 0;
}

/* Price links */
.product-price-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price-link .product-price {
    margin: 0;
}

/* Comparison table product links */
.comparison-product-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.comparison-product-link:hover {
    color: var(--primary);
}

.comparison-product-link .external-link-icon {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ========================================
   Blog Callout Section
   ======================================== */

.blog-callout {
    margin-top: 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
}

.blog-callout .blog-callout-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-callout .blog-callout-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.blog-callout h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.blog-callout p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin: 0;
}

.blog-callout .btn-outline {
    margin-left: auto;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.blog-callout .btn-outline:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .blog-callout {
        padding: 1.25rem;
    }

    .blog-callout .blog-callout-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .blog-callout .btn-outline {
        margin-left: 0;
        width: 100%;
    }
}