html{scroll-behavior:smooth}
.text-gradient{background:linear-gradient(135deg,#6C5CE7,#00CEC9);-webkit-background-clip:text;-webkit-text-fill-color:transparent}

/* Prose / SEO Content Styling */
.seo-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #6C5CE7, #00CEC9) 1;
}
.seo-content h2:first-child { margin-top: 0; }

.seo-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    border-left: 4px solid #6C5CE7;
}

.seo-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.seo-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-content ul, .seo-content ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.seo-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
    line-height: 1.7;
}
.seo-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6C5CE7, #00CEC9);
}

.seo-content ol {
    counter-reset: seo-counter;
}
.seo-content ol li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
    counter-increment: seo-counter;
}
.seo-content ol li::before {
    content: counter(seo-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, #6C5CE7, #00CEC9);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-content strong {
    color: #111827;
    font-weight: 600;
}

.seo-content a {
    color: #6C5CE7;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.seo-content a:hover {
    color: #00CEC9;
}

/* FAQ / Details styling */
.seo-content details {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin: 0.75rem 0;
    transition: all 0.2s;
}
.seo-content details[open] {
    background: white;
    border-color: #6C5CE7;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.08);
}
.seo-content details summary {
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.seo-content details summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #6C5CE7;
    font-weight: 700;
    transition: transform 0.2s;
}
.seo-content details[open] summary::after {
    content: '−';
}
.seo-content details p {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Info cards within content */
.seo-content .info-box {
    background: linear-gradient(135deg, rgba(108,92,231,0.05), rgba(0,206,201,0.05));
    border: 1px solid rgba(108,92,231,0.15);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.seo-content .info-box h4 {
    margin-top: 0;
    color: #6C5CE7;
}

/* Table of contents style for product details */
.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.product-specs .spec {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.product-specs .spec img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.product-specs .spec .label {
    font-size: 0.8rem;
    color: #9ca3af;
}
.product-specs .spec .value {
    font-weight: 600;
    color: #111827;
}

@media (max-width: 640px) {
    .product-specs { grid-template-columns: 1fr; }
    .seo-content h2 { font-size: 1.5rem; }
    .seo-content h3 { font-size: 1.15rem; }
}
