/* Review Fix Styles */
.detailed-reviews {
    padding: 80px 0;
    background-color: #f8fafc;
}

.detailed-reviews h2 {
    color: #1e40af;
    text-align: center;
    margin-bottom: 3rem;
}

.review-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.review-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background-color: #1e40af;
}

.review-rank {
    font-size: 2rem;
    font-weight: 700;
    color: #6ec1e4;
    background-color: #e0f2fe;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-title h3 {
    font-size: 1.8rem;
    color: white !important;
    margin-bottom: 0.25rem;
}

.review-subtitle {
    font-size: 1rem;
    color: #64748b;
}

.review-rating {
    margin-top: 0.5rem;
    margin-left: auto;
}

.stars-large {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.rating-score {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.review-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.review-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.specifications h4 {
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spec-item {
    background-color: #f8fafc;
    padding: 0.75rem;
    border-radius: 8px;
}

.spec-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    display: block;
}

.spec-value {
    font-weight: 500;
    color: #1e40af;
    font-size: 1rem;
}

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

.pros h4 {
    color: #10b981;
    margin-bottom: 1rem;
}

.cons h4 {
    color: #ef4444;
    margin-bottom: 1rem;
}

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

.pros li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #64748b;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.cons li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #64748b;
}

.cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.who-its-for {
    background-color: #e0f2fe;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #6ec1e4;
    margin-top: 2rem;
}

.who-its-for h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.who-its-for p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.price-section {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
    margin-top: 2rem;
}

.price-info .current-price {
    font-size: 2rem;
    color: #1e40af;
    font-weight: 700;
}

.price-info .original-price {
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.savings {
    background-color: #10b981;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 1rem;
    display: inline-block;
}

.price-section .cta-button {
    display: inline-block;
    background-color: #6ec1e4;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.price-section .cta-button:hover {
    background-color: #5ba8d1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 193, 228, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .review-content {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-section {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .review-rating {
        margin: 1rem auto 0;
    }
} 