/* Cognicare Pro Review Styles */
:root {
    --product-primary: #7c3aed; /* Purple */
    --product-secondary: #5b21b6; /* Darker Purple */
    --product-accent: #a855f7; /* Lighter Purple */
    --product-text-color: #ffffff;
    --product-dark-text-color: #1a202c;
}

/* Header Rating Text Color */
.rating-text {
    color: #fff;
}

/* Verdict Rating Spacing */
.verdict-rating .rating-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.verdict-rating .stars {
    margin-bottom: .5rem;
}

.verdict-rating .rating-text {
    margin-top: 0;
}

/* Product-specific styles */
.cognicarepro-article-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    overflow: hidden;
    border-top: 4px solid var(--product-primary);
}

.cognicarepro-article-section .article-container {
    padding: 2rem;
}

.cognicarepro-article-section h2 {
    background: linear-gradient(135deg, var(--product-primary), var(--product-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cognicarepro-article-section .article-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.cognicarepro-article-section .article-content p {
    margin-bottom: 1.2rem;
}

.cognicarepro-article-section .article-content strong {
    color: var(--product-primary);
    font-weight: 600;
}

/* Video fallback styles */
.video-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.watch-on-youtube-btn {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.watch-on-youtube-btn:hover {
    background: #cc0000;
}

/* Conversion buttons with product colors */
.conversion-btn.primary,
.conversion-btn.secondary,
.conversion-btn.final {
    background: linear-gradient(135deg, var(--product-primary), var(--product-secondary));
    border: none;
    color: var(--product-text-color);
}

.conversion-btn.primary:hover,
.conversion-btn.secondary:hover,
.conversion-btn.final:hover {
    background: linear-gradient(135deg, var(--product-secondary), var(--product-primary));
    transform: translateY(-2px);
}

/* Price highlight with product colors */
.price-highlight .current-price {
    color: var(--product-primary);
}

.discount-badge {
    background: var(--product-accent);
    color: var(--product-text-color);
}

/* Progress bars with product colors */
.progress {
    background: linear-gradient(90deg, var(--product-primary), var(--product-accent));
}

/* Safety cards with product accent */
.safety-card.mild {
    border-left: 4px solid var(--product-accent);
}

.safety-card.warning {
    border-left: 4px solid #f59e0b;
}

/* Related reviews grid */
.related-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-review-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.related-review-card .card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--product-primary), var(--product-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.related-review-card .card-content {
    padding: 1.5rem;
}

.related-review-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.related-review-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.related-review-card .card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
    font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cognicarepro-article-section .article-container {
        padding: 1.5rem;
    }
    
    .cognicarepro-article-section h2 {
        font-size: 1.5rem;
    }
    
    .related-reviews-grid {
        grid-template-columns: 1fr;
    }
}
