/* Review Page Specific Styles */

/* Review Hero Section */
.review-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.review-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.review-hero h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.review-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.review-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

.review-date {
    position: relative;
}

.review-date::after {
    content: "•";
    position: absolute;
    right: -1rem;
    color: #d1d5db;
}

.review-rating {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Review Content */
.review-content {
    padding: 3rem 0;
}

/* Section Icons */
.section-icon {
    width: 32px;
    height: 32px;
    margin-right: 1rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* Product Image */
.product-image {
    text-align: center;
    margin: 2rem 0;
}

.product-image img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.review-section {
    margin-bottom: 3rem;
}

.review-section h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.review-section h3 {
    font-size: 1.3rem;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 600;
}

.review-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.review-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.review-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Ingredients Grid */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.ingredient-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.ingredient-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.ingredient-item h3 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.ingredient-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Usage Info */
.usage-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.usage-info h3 {
    color: #1e3a8a;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.usage-info h3:first-child {
    margin-top: 0;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.audience-item {
    padding: 1.5rem;
    border-radius: 12px;
}

.audience-item.suitable {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.audience-item.not-suitable {
    background: #fef3c7;
    border: 1px solid #fde68a;
}

.audience-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.audience-item.suitable h3 {
    color: #166534;
}

.audience-item.not-suitable h3 {
    color: #92400e;
}

/* Pros and Cons Table */
.pros-cons-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.pros:hover, .cons:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.pros {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.cons {
    background: #fef3c7;
    border: 1px solid #fde68a;
}

.pros h3 {
    color: #166534;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pros h3::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url('/mitolyn-review/assets/icons/pros.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.5rem;
}

.cons h3 {
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.cons h3::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url('/mitolyn-review/assets/icons/cons.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.testimonial {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #374151;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.disclaimer {
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 1rem;
    border-radius: 8px;
    color: #991b1b;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.cta-button.secondary:hover {
    background: #3b82f6;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.final-note {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    padding: 1.5rem;
    border-radius: 8px;
    color: #374151;
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ingredients-grid,
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .review-hero h1 {
        font-size: 2rem;
    }
    
    .review-subtitle {
        font-size: 1.1rem;
    }
    
    .review-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-date::after {
        display: none;
    }
    
    .ingredients-grid,
    .audience-grid,
    .pros-cons-table,
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .review-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .review-hero h1 {
        font-size: 1.75rem;
    }
    
    .review-content {
        padding: 2rem 0;
    }
    
    .review-section {
        margin-bottom: 2rem;
    }
    
    .review-section h2 {
        font-size: 1.5rem;
    }
    
    .ingredient-item,
    .usage-info,
    .audience-item,
    .pros,
    .cons,
    .testimonial {
        padding: 1.25rem;
    }
}
