/* ===================================
   Baby Essentials Guide - Main Stylesheet
   SEO-Optimized, Mobile-First Design
   =================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #FF9AA2;
    --secondary-color: #FFB7B2;
    --accent-color: #FFDAC1;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #FFF5F5;
    --bg-white: #FFFFFF;
    --border-color: #FFE5E8;
    --success-color: #7CB342;
    --warning-color: #FFA726;
    
    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Georgia', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: #FF6B7A;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Disclosure Banner */
.disclosure-banner {
    background: linear-gradient(135deg, #FFE5E8 0%, #FFDAC1 100%);
    padding: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.875rem;
}

.disclosure-banner p {
    margin: 0;
    text-align: center;
}

.disclosure-banner a {
    text-decoration: underline;
    font-weight: 600;
}

/* Header */
header {
    background-color: var(--bg-white);
    border-bottom: 3px solid var(--primary-color);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--text-dark);
}

.tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

nav a {
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

nav a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFE5E8 0%, #FFF5F5 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.hero p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #FF6B7A);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Product Grid (Homepage) */
.featured-products,
.category-section {
    padding: var(--spacing-xl) 0;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.product-image {
    height: 250px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: var(--spacing-md);
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.product-title-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.product-title-link:hover {
    color: var(--primary-color);
}

.age-range {
    display: inline-block;
    background: var(--accent-color);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.product-excerpt {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.category {
    font-size: 0.875rem;
    font-weight: 500;
}

.rating {
    color: #FFA000;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-review,
.btn-buy {
    flex: 1;
    text-align: center;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-review {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-review:hover {
    background: var(--primary-color);
    color: white;
}

.btn-buy {
    background: var(--primary-color);
    color: white;
}

.btn-buy:hover {
    background: #FF6B7A;
    color: white;
}

/* Product List (Category Sections) */
.alt-bg {
    background-color: var(--bg-light);
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-row {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.product-row:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.product-thumb {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-light);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
}

.age-tag {
    display: inline-block;
    background: var(--accent-color);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
}

.product-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-direction: column;
}

.product-links a {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.product-links a:first-child {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.product-links a:first-child:hover {
    background: var(--primary-color);
    color: white;
}

.product-links a:last-child {
    background: var(--primary-color);
    color: white;
}

.product-links a:last-child:hover {
    background: #FF6B7A;
}

/* Individual Product Review Page */
.breadcrumb {
    padding: var(--spacing-md) 0;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--text-light);
}

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

.review-header {
    text-align: center;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, #FFE5E8 0%, #FFF5F5 100%);
}

.review-header h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.review-meta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.review-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.quick-verdict {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
    border-left: 4px solid var(--success-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.quick-verdict h3 {
    color: var(--success-color);
    margin-bottom: var(--spacing-sm);
}

.experience-placeholder {
    background: #FFF9C4;
    border-left: 4px solid var(--warning-color);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-sm);
}

.experience-placeholder strong {
    color: var(--warning-color);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.pros,
.cons {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.pros {
    background: #E8F5E9;
    border-left: 4px solid var(--success-color);
}

.cons {
    background: #FFEBEE;
    border-left: 4px solid #EF5350;
}

.pros h3,
.cons h3 {
    margin-bottom: var(--spacing-sm);
}

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

.pros li,
.cons li {
    padding-left: var(--spacing-md);
    position: relative;
    margin-bottom: var(--spacing-xs);
}

.pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

.specs-table {
    width: 100%;
    margin: var(--spacing-lg) 0;
    border-collapse: collapse;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.specs-table th,
.specs-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.specs-table tr:nth-child(even) {
    background: var(--bg-light);
}

.affiliate-box {
    background: linear-gradient(135deg, var(--primary-color), #FF6B7A);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    margin: var(--spacing-xl) 0;
    box-shadow: var(--shadow-md);
}

.affiliate-box h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.affiliate-box .price {
    font-size: 2rem;
    font-weight: bold;
    margin: var(--spacing-sm) 0;
}

.affiliate-box .btn-amazon {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: var(--spacing-sm);
    box-shadow: var(--shadow-md);
}

.affiliate-box .btn-amazon:hover {
    transform: scale(1.05);
    color: var(--primary-color);
}

.related-articles {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
}

.related-articles h3 {
    margin-bottom: var(--spacing-md);
}

.related-articles ul {
    list-style: none;
}

.related-articles li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
}

.related-articles li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.related-articles a {
    color: var(--text-dark);
    font-weight: 500;
}

.related-articles a:hover {
    color: var(--primary-color);
}

/* Blog Post Styles */
.blog-header {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 100%);
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.blog-content h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.blog-content h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.info-box {
    background: #E3F2FD;
    border-left: 4px solid #2196F3;
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-sm);
}

.warning-box {
    background: #FFF3E0;
    border-left: 4px solid var(--warning-color);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-sm);
}

.tip-box {
    background: #E8F5E9;
    border-left: 4px solid var(--success-color);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-sm);
}

.checklist {
    background: white;
    border: 2px solid var(--border-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.checklist h4 {
    margin-bottom: var(--spacing-sm);
}

.checklist ul {
    list-style: none;
}

.checklist li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-lg);
    position: relative;
}

.checklist li:before {
    content: "☐";
    position: absolute;
    left: 0;
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    margin: var(--spacing-lg) 0;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    border: 1px solid var(--border-color);
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-light);
}

.comparison-table .winner {
    background: #E8F5E9;
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), #FF6B7A);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.newsletter p {
    margin-bottom: var(--spacing-lg);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-md);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.newsletter-form button {
    padding: var(--spacing-md) var(--spacing-lg);
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.privacy-note {
    font-size: 0.875rem;
    margin-top: var(--spacing-sm);
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #2C3E50;
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: #B0BEC5;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #455A64;
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.875rem;
    color: #B0BEC5;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-row {
        flex-direction: column;
        text-align: center;
    }
    
    .product-links {
        flex-direction: row;
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-meta {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}
/* Product Image Section on Review Pages */
.product-image-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-lg) 0;
    margin-bottom: var(--spacing-lg);
}

.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
}

.review-product-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

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

@media (max-width: 768px) {
    .review-product-image {
        max-width: 300px;
    }
}

/* Personal Experience & Recommendation Boxes */
.personal-experience,
.recommendation-box {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
    border-left: 4px solid var(--primary-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.personal-experience p,
.recommendation-box p {
    margin-bottom: var(--spacing-sm);
}

.personal-experience strong,
.recommendation-box strong {
    color: var(--primary-color);
}

.personal-experience a,
.recommendation-box a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.personal-experience a:hover,
.recommendation-box a:hover {
    color: var(--primary-dark);
}

.recommendation-box ul {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
}

.recommendation-box li {
    margin-bottom: var(--spacing-xs);
}

/* About Page Styles */
.about-hero,
.contact-hero {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.about-hero h1,
.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.about-content,
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.difference-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s;
}

.difference-card:hover {
    transform: translateY(-5px);
}

.difference-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.difference-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.testing-process {
    margin-top: var(--spacing-lg);
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: var(--spacing-xs);
}

.what-we-dont {
    background: #fff5f5;
    border-left: 4px solid #dc3545;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
}

.dont-list li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.affiliate-info {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
}

.affiliate-info p {
    margin-bottom: var(--spacing-sm);
}

.mission-statement {
    text-align: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.mission-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.cta-section {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
    border-radius: var(--radius-lg);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

.faq-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-md);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.contact-email {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--spacing-lg);
}

.email-link {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.newsletter-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--spacing-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: var(--spacing-md) auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid white;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.privacy-note {
    font-size: 0.875rem;
    color: #2e7d32;
    margin-top: var(--spacing-sm);
}

/* Navigation Active State */
nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer Updates */
.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Pros & Cons Boxes */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

@media (max-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

.pros-box,
.cons-box {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.pros-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
}

.cons-box {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 4px solid #f44336;
}

.pros-box h3,
.cons-box h3 {
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

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

.pros-box li,
.cons-box li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

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

.cons-box li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: 700;
    font-size: 1.25rem;
}

/* ============================================
   QUIZ SECTION STYLES - MODERN VERSION
   ============================================ */

/* Modern Quiz Section */
.quiz-section-modern {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 3rem 0;
    margin: 2rem 0;
}

.quiz-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quiz-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.quiz-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.quiz-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.quiz-container-modern {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.question-header {
    margin-bottom: 1.5rem;
}

.question-number {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.question-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.quiz-option-card {
    background: white;
    border: 2px solid #e0e7ff;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.quiz-option-card:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8eeff 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.quiz-option-card .option-icon {
    font-size: 2rem;
    line-height: 1;
}

.quiz-option-card .option-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .quiz-section-modern {
        padding: 2rem 0;
    }
    
    .quiz-header h2 {
        font-size: 1.5rem;
    }
    
    .quiz-container-modern {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .question-header h3 {
        font-size: 1.25rem;
    }
    
    .quiz-options-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .quiz-option-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem;
    }
    
    .quiz-option-card .option-icon {
        font-size: 1.5rem;
    }
}

/* OLD QUIZ SECTION (for compatibility) */
.quiz-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-xl) 0;
}

.quiz-section h2 {
    color: white;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.quiz-section .section-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.quiz-container {
    max-width: 700px;
    margin: var(--spacing-xl) auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-question h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.quiz-options {
    display: grid;
    gap: var(--spacing-md);
}

.quiz-option {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.quiz-option:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quiz-results {
    display: none;
}

.quiz-results.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.quiz-results h3 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.recommendation-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--primary-color);
}

.recommendation-card.primary {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left-color: #ff9800;
}

.recommendation-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recommendation-card h5 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.recommendation-card h5 a {
    color: var(--text-primary);
    text-decoration: none;
}

.recommendation-card h5 a:hover {
    color: var(--primary-color);
}

.recommendation-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.rec-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-restart {
    display: block;
    margin: var(--spacing-xl) auto 0;
    padding: var(--spacing-sm) var(--spacing-xl);
    background: var(--border-color);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-restart:hover {
    background: var(--text-secondary);
    color: white;
}

/* ============================================
   IMAGE GALLERY STYLES
   ============================================ */

.image-gallery {
    margin: var(--spacing-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   ASK A PARENT FORM STYLES
   ============================================ */

.ask-parent-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
}

.ask-parent-section h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.ask-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* ============================================
   WOULD BUY AGAIN SECTION
   ============================================ */

.buy-again-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
    text-align: center;
}

.buy-again-section h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.vote-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.vote-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.vote-btn.yes {
    background: #4caf50;
    color: white;
}

.vote-btn.yes:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vote-btn.no {
    background: #f44336;
    color: white;
}

.vote-btn.no:hover {
    background: #da190b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vote-results {
    display: none;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-md);
}

.vote-results.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.result-bar {
    margin-top: var(--spacing-md);
}

.result-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.progress-bar {
    height: 30px;
    background: var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quiz-container {
        padding: var(--spacing-lg);
    }
    
    .rec-actions {
        flex-direction: column;
    }
    
    .rec-actions a {
        text-align: center;
    }
    
    .vote-buttons {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
