/* STRATUM Product Detail Page Styles */
.breadcrumb {
    padding: 120px 5% 20px;
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}
.breadcrumb a {
    color: var(--accent-neon);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 20px 5% 80px;
    max-width: 1600px;
    margin: 0 auto;
}
.product-hero-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
}

.product-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.product-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.2;
}
.product-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: var(--accent-neon);
    margin-top: 40px;
    margin-bottom: 15px;
}
.product-section p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}
.product-section ul {
    list-style: none;
    margin-bottom: 30px;
}
.product-section ul li {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.product-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-neon);
    margin-top: 3px;
}

.tech-table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-top: 30px;
}
.tech-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}
.tech-table th, .tech-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.tech-table th {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-main);
    font-weight: 600;
    width: 35%;
}
.tech-table td {
    color: var(--accent-blue);
    font-weight: 600;
}
.tech-table tr:last-child th, .tech-table tr:last-child td {
    border-bottom: none;
}

.faq-wrapper details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px;
    transition: var(--transition);
}
.faq-wrapper summary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-wrapper summary::-webkit-details-marker {
    display: none;
}
.faq-wrapper summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-neon);
    transition: transform 0.3s ease;
}
.faq-wrapper details[open] summary::after {
    transform: rotate(180deg);
}
.faq-wrapper details p {
    margin-top: 20px;
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

@media (max-width: 991px) {
    .product-hero {
        grid-template-columns: 1fr;
        padding-top: 0;
    }
}