/* Opis produktu – podstawy */
.product-description { font-size: 0.9375rem; line-height: 1.7; }
.product-description h2 { font-size: 1.25rem; font-weight: 700; margin: 1.25em 0 0.5em; color: #1a1a2e; padding-bottom: 0.35em; border-bottom: 3px solid #e94560; }
.product-description h2:first-child { margin-top: 0; }
.product-description h3 { font-size: 1.1rem; font-weight: 600; margin: 1em 0 0.4em; color: #0f3460; }
.product-description h4 { font-size: 1rem; font-weight: 600; margin: 0.75em 0 0.35em; color: #1a1a2e; }
.product-description p { margin-bottom: 0.75em; text-align: justify; }
.product-description ul, .product-description ol { margin: 0.5em 0 0.75em 1.25rem; }
.product-description li { margin-bottom: 0.35em; }
.product-description strong { font-weight: 600; }
.product-description a { color: #0f3460; text-decoration: none; }
.product-description a:hover { text-decoration: underline; }

/* Hero / wstęp z gradientem */
.product-description .hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
}
.product-description .hero h1, .product-description .hero h2 { color: #fff; border: none; margin-top: 0; }
.product-description .hero .subtitle { font-size: 1rem; opacity: 0.95; }
.product-description .hero p { margin-bottom: 0; text-align: center; }

/* Intro box – wstęp z lewą obwódką */
.product-description .intro-box {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-left: 5px solid #e94560;
    padding: 1rem 1.25rem;
    border-radius: 0 0.75rem 0.75rem 0;
    margin: 1rem 0;
}
.product-description .intro-box p { margin: 0; }

/* Białe sekcje contentowe (ciień) */
.product-description .content-section {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.product-description .content-section h2:first-child { margin-top: 0; }

/* Tabela w wrapperze */
.product-description .table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: 0.75rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.product-description table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.product-description thead { background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); color: #fff; }
.product-description th { padding: 0.6rem 0.75rem; text-align: left; font-weight: 600; border: none; }
.product-description td { padding: 0.5rem 0.75rem; border-bottom: 1px solid #e0e0e0; vertical-align: top; }
.product-description tbody tr:nth-child(even) { background: #f8f9fa; }
.product-description tbody tr:hover { background: #f0f4ff; }

/* Feature grid + karty */
.product-description .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}
.product-description .feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 4px solid #e94560;
}
.product-description .feature-card h4 { margin-top: 0; margin-bottom: 0.35em; }
.product-description .feature-card p { margin: 0; font-size: 0.9em; color: #4a4a5a; text-align: left; }

/* Checklist – zielony box */
.product-description .checklist {
    background: #f0f8f0;
    border: 1px solid #c8e6c9;
    border-left: 5px solid #4caf50;
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}
.product-description .checklist h4 { color: #2e7d32; margin-top: 0; }
.product-description .checklist ul { list-style: none; padding: 0; margin: 0; }
.product-description .checklist li { padding-left: 1.5rem; position: relative; }
.product-description .checklist li::before { content: "✓"; position: absolute; left: 0; color: #4caf50; font-weight: bold; }

/* Warning box – pomarańczowy */
.product-description .warning-box {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-left: 5px solid #ff9800;
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}
.product-description .warning-box h4 { color: #e65100; margin-top: 0; }
.product-description .warning-box p { margin-bottom: 0; color: #bf360c; }

/* Info box – niebieski */
.product-description .info-box {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-left: 5px solid #2196f3;
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}
.product-description .info-box h4 { color: #1565c0; margin-top: 0; }
.product-description .info-box p { margin-bottom: 0; color: #0d47a1; }

/* Porównanie VS */
.product-description .vs-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    margin: 1rem 0;
    align-items: start;
}
.product-description .vs-box {
    background: #f8f9fa;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    text-align: center;
}
.product-description .vs-box.european { border-top: 4px solid #0f3460; }
.product-description .vs-box.japanese { border-top: 4px solid #e94560; }
.product-description .vs-box ul { list-style: none; padding: 0; text-align: left; }
.product-description .vs-box li { padding: 0.35em 0; border-bottom: 1px solid #e0e0e0; font-size: 0.9em; }
.product-description .vs-divider { display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: bold; color: #e94560; }

/* FAQ w opisie */
.product-description .faq-item { border-bottom: 1px solid #e0e0e0; padding: 1rem 0; }
.product-description .faq-item:last-child { border-bottom: none; }
.product-description .faq-question { font-weight: 600; color: #1a1a2e; font-size: 1rem; margin-bottom: 0.35em; }
.product-description .faq-answer { margin: 0; color: #4a4a5a; }

/* Summary grid */
.product-description .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.product-description .summary-item {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 3px solid #e94560;
}
.product-description .summary-item .title { font-weight: 600; color: #1a1a2e; margin-bottom: 0.25rem; }
.product-description .summary-item .value { color: #4a4a5a; font-size: 0.9em; }

/* CTA na końcu */
.product-description .cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    text-align: center;
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    margin: 1.5rem 0;
    border: 2px solid #e94560;
}
.product-description .cta-section h3 { color: #ff6b6b; font-size: 1.25rem; margin-bottom: 0.5rem; }
.product-description .cta-section p { opacity: 0.95; margin: 0 auto 1rem; text-align: center; }
.product-description .cta-button {
    display: inline-block;
    background: #e94560;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}
.product-description .cta-button:hover { background: #ff6b6b; text-decoration: none; }

@media (max-width: 768px) {
    .product-description .vs-compare { grid-template-columns: 1fr; }
    .product-description .vs-divider { padding: 0.5rem 0; }
}
