/* Product Page Specific Styles */

.product-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-badge.reddit {
    background: #ff4500;
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.browser-bar {
    background: #f5f5f5;
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:first-child {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28ca42;
}

.browser-content {
    padding: 20px;
    background: #f8f9fa;
}

.demo-summary {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.demo-summary h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.demo-summary p {
    line-height: 1.6;
    color: #333;
}

.demo-meta {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--gray);
    font-style: italic;
}

/* Product Features */
.product-features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

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

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: var(--light);
}

.demo-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.demo-arrow {
    font-size: 2rem;
    color: var(--primary);
}

.demo-before,
.demo-after {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.comment-list {
    margin-top: 1rem;
}

.fake-comment {
    background: #f8f9fa;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 4px;
    color: #666;
    font-size: 0.875rem;
}

.fake-comment.more {
    text-align: center;
    font-style: italic;
    background: #e9ecef;
}

.summary-box {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0f8ff;
    border-radius: 8px;
    border: 1px solid #cce5ff;
}

.summary-box p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Installation */
.installation {
    padding: 80px 0;
    background: white;
}

.install-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.install-step {
    text-align: center;
}

.install-arrow {
    font-size: 2rem;
    color: var(--primary);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0079d3 0%, #00a8ff 100%);
    color: white;
}

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

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .browser-mockup {
        margin-top: 2rem;
    }
    
    .demo-showcase {
        grid-template-columns: 1fr;
    }
    
    .demo-arrow {
        transform: rotate(90deg);
        text-align: center;
    }
    
    .install-steps {
        grid-template-columns: 1fr;
    }
    
    .install-arrow {
        transform: rotate(90deg);
        text-align: center;
    }
}