/* Prostavive Review Specific Styles */

/* Color Variables */
:root {
    --prostavive-primary: #2563eb;
    --prostavive-secondary: #1d4ed8;
    --prostavive-accent: #3b82f6;
    --prostavive-dark: #1e40af;
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

/* Optimize font rendering */
body {
    font-display: swap;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* GPU acceleration for animations */
.video-wrapper,
.product-image-large,
.conversion-btn,
.rating-score {
    will-change: transform;
    transform: translateZ(0);
}

/* Optimize image loading */
img {
    max-width: 100%;
    height: auto;
}

/* Reduce layout shifts */
.video-wrapper {
    aspect-ratio: 16 / 9;
}

.product-image-large {
    aspect-ratio: 1 / 1;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumb a {
    color: var(--prostavive-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--prostavive-secondary);
}

.breadcrumb i {
    color: #cbd5e1;
    font-size: 0.75rem;
}

.breadcrumb span {
    font-weight: 500;
    color: #1e293b;
}

/* Quick Summary */
.quick-summary {
    margin-bottom: 3rem;
}

.summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--prostavive-primary);
}

.summary-card h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.summary-card > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

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

.point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.point.positive {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.point.positive i {
    color: #16a34a;
}

.point.negative {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.point.negative i {
    color: #dc2626;
}

/* Content Sections */
.content-section {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.content-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--prostavive-primary);
}

.content-section h3 {
    color: #374151;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

/* Review Header */
.review-header {
    background: linear-gradient(135deg, var(--prostavive-primary), var(--prostavive-secondary));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.product-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.product-image {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.product-photo:hover {
    transform: scale(1.05);
}

.product-details h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.meta-info p {
    margin: 0.25rem 0;
    font-size: 1rem;
    opacity: 0.8;
    color: #94a3b8;
    font-weight: 300;
}

.meta-info i {
    color: #10b981;
    margin-right: 0.5rem;
}

.header-button-container {
    position: absolute;
    bottom: 0;
    right: 0;
}

.header-official-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-official-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
}

/* Video and Product Image Section */
.video-product-section {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.video-product-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.product-image-large {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-photo-large {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-photo-large:hover {
    transform: scale(1.05);
}

/* Conversion Sections */
.conversion-section {
    margin: 3rem 0;
}

.conversion-card {
    background: linear-gradient(135deg, var(--prostavive-primary), var(--prostavive-secondary));
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.conversion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.conversion-content {
    position: relative;
    z-index: 1;
}

.conversion-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.conversion-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.conversion-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
    background: #ffffff;
    color: var(--prostavive-primary);
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.conversion-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.conversion-btn:hover::before {
    left: 100%;
}

.conversion-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

.conversion-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.btn-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(37, 99, 235, 0.8);
    margin-top: 0.5rem;
}

.conversion-btn.secondary {
    color: #667eea;
}

.conversion-btn.secondary .btn-subtitle {
    color: rgba(102, 126, 234, 0.8);
}

.conversion-btn.final {
    color: var(--prostavive-dark);
}

.conversion-btn.final .btn-subtitle {
    color: rgba(30, 64, 175, 0.8);
}

/* Nutrient Grid */
.nutrient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.nutrient-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nutrient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.nutrient-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--prostavive-primary), var(--prostavive-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.nutrient-icon i {
    font-size: 1.5rem;
    color: white;
}

.nutrient-card h4 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.nutrient-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Testing Timeline */
.testing-timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.testing-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--prostavive-primary), var(--prostavive-accent));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--prostavive-primary), var(--prostavive-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-align: center;
    line-height: 1;
}

.timeline-marker span {
    display: block;
    width: 100%;
    text-align: center;
    letter-spacing: -0.5px;
}

.timeline-content {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--prostavive-primary);
}

.timeline-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.result-card {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--prostavive-primary), var(--prostavive-accent));
}

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--prostavive-primary), var(--prostavive-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.result-icon i {
    font-size: 1.5rem;
    color: white;
}

.result-card h4 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-stat {
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--prostavive-primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.25rem;
}

.result-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Pros and Cons Section */
.pros-cons {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.pros-cons h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--prostavive-primary);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.pros,
.cons {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.pros {
    border-left: 4px solid #10b981;
}

.cons {
    border-left: 4px solid #ef4444;
}

.pros h3,
.cons h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.pros h3 {
    color: #10b981;
}

.cons h3 {
    color: #ef4444;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li,
.cons li {
    padding: 0.75rem 0;
    color: #374151;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.pros li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.cons li::before {
    content: '×';
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

/* Safety Information */
.safety-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.safety-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.safety-card.positive {
    border-left: 4px solid #10b981;
}

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

.safety-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.safety-card.positive h4 {
    color: #10b981;
}

.safety-card.warning h4 {
    color: #f59e0b;
}

.safety-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-card li {
    padding: 0.5rem 0;
    color: #374151;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.safety-card.positive li::before {
    content: '•';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.safety-card.warning li::before {
    content: '!';
    color: #f59e0b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Final Verdict */
.verdict-section {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.verdict-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.verdict-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-template-rows: auto auto;
    gap: 2rem 3rem;
    grid-template-areas:
        "rating content"
        "button content";
}

.verdict-rating {
    grid-area: rating;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: start;
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    color: #10b981;
}

.verdict-rating .stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.verdict-rating .stars i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.verdict-content {
    grid-area: content;
}

.verdict-content .summary {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.recommendation h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.recommendation p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.buy-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.buy-info p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.final-conversion {
    grid-area: button;
    align-self: end;
}

/* Related Reviews Section */
.related-reviews-section {
    background: #f8fafc;
    padding: 4rem 0;
    margin-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.related-reviews-section h2 {
    text-align: center;
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.related-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.related-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.related-review-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--prostavive-primary), var(--prostavive-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.related-review-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.related-review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.related-review-stars {
    display: flex;
    gap: 0.2rem;
}

.related-review-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.related-review-rating span {
    font-weight: 600;
    color: #374151;
}

.related-review-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.related-review-cta {
    color: var(--prostavive-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-review-cta i {
    transition: transform 0.3s ease;
}

.related-review-card:hover .related-review-cta i {
    transform: translateX(4px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 50px;
    right: 50px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .conversion-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .video-product-section {
        padding: 2rem;
    }
    
    .video-product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .verdict-section {
        padding: 2rem;
    }
    
    .safety-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .verdict-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        grid-template-areas:
            "rating"
            "content"
            "button";
    }
}

@media (max-width: 768px) {
    .review-header {
        padding: 2rem 1.5rem;
    }
    
    .product-details h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 2rem;
    }
    
    .summary-card {
        padding: 2rem;
    }
    
    .pros-cons {
        padding: 2rem;
    }
    
    .conversion-btn {
        min-width: auto;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    .video-wrapper {
        height: 250px;
    }
    
    .product-image-large {
        display: none;
    }
    
    .conversion-card {
        padding: 2rem;
        margin: 0;
    }
    
    .header-button-container {
        position: static;
        margin-top: 1rem;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .product-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        justify-items: center;
    }
    
    .product-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .timeline-content {
        margin-left: 0.5rem;
        padding: 1rem;
    }
    
    .testing-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        width: 2.5rem;
        height: 2.5rem;
        left: -1.25rem;
    }
    
    .rating-score {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        margin-left: 0.5rem;
        padding: 1rem;
    }
    
    .testing-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        width: 2rem;
        height: 2rem;
        left: -1rem;
        font-size: 0.7rem;
    }
    
    .conversion-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .video-wrapper {
        height: 200px;
    }
    
    .verdict-card {
        padding: 2rem;
        grid-template-areas:
            "rating"
            "content"
            "button";
    }
    
    .related-reviews-section {
        padding: 3rem 0;
    }
    
    .related-reviews-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .related-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}