/* ============================================
   PRODUCT PAGE STYLES
   Styles additionnels pour pages produits
   ============================================ */

/* Product Hero Section */
.product-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0 4rem;
}

.breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.product-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    font-size: 1.25rem;
}

.rating-score {
    font-weight: 700;
    font-size: 1.125rem;
}

.meta-item {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Quick Verdict */
.quick-verdict {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.quick-verdict h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.verdict-item ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    font-size: 0.95rem;
}

.verdict-item li {
    margin-bottom: 0.25rem;
}

.verdict-final {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
}

.product-cta-main {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Product Image */
.product-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: top 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.sticky-cta.visible {
    top: 0;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.sticky-text {
    font-weight: 600;
    color: var(--text-dark);
}

/* Content Layout */
.product-content {
    padding: 4rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar TOC */
.content-sidebar {
    position: sticky;
    top: 100px;
}

.toc-sticky {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.toc-sticky h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.toc-list a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Main Content */
.content-main {
    max-width: 800px;
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.content-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.content-section ul,
.content-section ol {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Info Boxes */
.info-box,
.guarantee-box,
.results-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.info-box h4,
.guarantee-box h4,
.results-box h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-box ul {
    margin-left: 1rem;
}

.info-box li {
    margin-bottom: 0.5rem;
}

/* Feature Blocks */
.feature-block {
    margin-bottom: 2.5rem;
}

.feature-block h3 {
    color: var(--primary-color);
}

.feature-screenshot {
    margin: 1.5rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.result-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: none;
}

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

.bonus-header h2 {
    color: white;
    font-size: 2.25rem;
}

.bonus-header p {
    color: white;
    opacity: 0.95;
    font-size: 1.125rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.bonus-value {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: white;
    opacity: 0.95;
}

.bonus-cta-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.bonus-cta-box h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.bonus-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
    list-style: none;
    counter-reset: bonus-counter;
}

.bonus-steps li {
    counter-increment: bonus-counter;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    color: white;
}

.bonus-steps li::before {
    content: counter(bonus-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: white;
    color: var(--primary-color);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.bonus-btn {
    background: white;
    color: var(--primary-color);
}

.bonus-btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Lead Capture Box */
.lead-capture-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    border: 2px dashed var(--primary-color);
}

.lead-capture-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 1.5rem auto;
}

.lead-form input[type="email"],
.lead-form input[type="text"] {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Verdict Box */
.verdict-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.verdict-score {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.score-circle {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.score-stars {
    font-size: 2rem;
}

.verdict-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.verdict-text ul {
    margin-bottom: 1.5rem;
}

.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.final-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    color: white;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: none;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-hero-content {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: -1;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }

    .toc-sticky {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.75rem;
    }

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

    .product-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .verdict-grid {
        grid-template-columns: 1fr;
    }

    .product-cta-main {
        flex-direction: column;
    }

    .product-cta-main .btn {
        width: 100%;
    }

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

    .sticky-content .btn {
        width: 100%;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }
}
