/* Cacahuatl Extractor - Product Page Styles */
/* Premium Cacao Theme v2 - Rich Chocolate with Copper Gradients */

/* Product Hero Section */
.product-hero {
    margin-top: 72px;
    background: var(--gradient-hero, linear-gradient(135deg, #1a1210 0%, #2d1f18 50%, #1a1210 100%));
    color: var(--cream);
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(205, 139, 98, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.product-hero .hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-badges .badge {
    position: static;
    background: var(--bg-elevated);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border);
    color: var(--text-primary);
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: var(--bg-elevated, #221c18);
}

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

.feature-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--cream);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 20px;
    background: var(--bg-deep, #0d0b0a);
}

.comparison-table {
    max-width: 800px;
    margin: 3rem auto 2rem;
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.comparison-table thead {
    background: var(--gradient-accent);
    color: var(--bg-deep);
}

.comparison-table th {
    padding: 1.25rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    color: var(--cream);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1rem;
}

.comparison-table tbody tr:hover {
    background: var(--bg-elevated);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: var(--bg-elevated, #221c18);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient-accent);
    color: var(--bg-deep);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--cream);
    font-weight: 600;
}

.price {
    margin: 1.5rem 0;
    text-align: center;
}

.price .amount {
    font-size: 2.75rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    text-align: left;
    color: var(--text-primary);
}

.features-list li:last-child {
    border-bottom: none;
}

/* Buttons - Premium Pill Style */
.btn-primary, .btn-secondary {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin-top: 1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-deep);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--gradient-accent);
    color: var(--bg-deep);
    border-color: transparent;
}

.refund-info {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

/* Activation Section */
.activation-section {
    padding: 100px 20px;
    background: var(--bg-deep, #0d0b0a);
}

.activation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: 1.5rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
    font-weight: 600;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Download Section */
.download-section {
    padding: 100px 20px;
    background: var(--bg-elevated, #221c18);
    color: var(--cream);
}

.download-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    max-width: 550px;
    margin: 2rem auto 0;
    text-align: center;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.download-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: var(--bg-deep) !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.download-button.secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent) !important;
}

.download-button.secondary:hover {
    background: var(--gradient-accent);
    color: var(--bg-deep) !important;
    border-color: transparent;
}

.download-icon {
    font-size: 1.25rem;
}

.download-note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: var(--bg-deep, #0d0b0a);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 1.75rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero {
        padding: 100px 20px 80px;
    }

    .product-title {
        font-size: 2.25rem;
    }

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

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

    .activation-steps {
        grid-template-columns: 1fr;
    }

    .download-card {
        padding: 2rem;
    }

    .features-section,
    .comparison-section,
    .pricing-section,
    .activation-section,
    .download-section,
    .faq-section {
        padding: 80px 20px;
    }
}

/* Active nav item */
.nav-menu a.active {
    color: var(--accent);
    font-weight: 600;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
