/* Best Scarf Australia - Shared Styles */
/* Authority Site Design - Modern, Trustworthy, High-End Publication Feel */

:root {
    --primary: #8B4513;
    --primary-dark: #6B3410;
    --secondary: #D4A574;
    --accent: #C41E3A;
    --text: #2D2D2D;
    --text-light: #666666;
    --text-muted: #888888;
    --bg: #FDFBF7;
    --bg-alt: #F5F0E8;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-soft: 0 2px 12px rgba(0,0,0,0.05);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;

    /* Info Box Colors */
    --info-bg: #E8F4FD;
    --info-border: #2196F3;
    --tip-bg: #E8F5E9;
    --tip-border: #4CAF50;
    --warning-bg: #FFF3E0;
    --warning-border: #FF9800;
    --key-bg: #FFF8E1;
    --key-border: #FFC107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--text);
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER ==================== */
header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Non-sticky header for article pages */
.article-page header {
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

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

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

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--white) 100%);
    padding: 100px 0 120px;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== PAGE HERO (for internal pages) ==================== */
.page-hero {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--white) 100%);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

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

/* ==================== SECTIONS ==================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ==================== CARDS ==================== */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

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

/* ==================== BLOG GRID ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* ==================== ARTICLE STYLES ==================== */
.article-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: 50px 24px;
    margin: -60px -24px 50px -24px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.article-header h1 {
    font-size: 2.6rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary);
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.article-category {
    background: var(--bg-alt);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 500;
    color: var(--primary);
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.9;
}

.article-body h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 24px;
    color: var(--primary);
}

.article-body h3 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text);
}

.article-body p {
    margin-bottom: 1.6rem;
    color: var(--text);
}

.article-body ul, .article-body ol {
    margin-bottom: 1.6rem;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-body strong {
    color: var(--text);
}

/* ==================== INFO BOXES ==================== */
.info-box {
    padding: 24px 28px;
    border-radius: var(--radius);
    margin: 32px 0;
    border-left: 4px solid;
}

.info-box-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.info-box.info {
    background: var(--info-bg);
    border-color: var(--info-border);
}

.info-box.tip {
    background: var(--tip-bg);
    border-color: var(--tip-border);
}

.info-box.warning {
    background: var(--warning-bg);
    border-color: var(--warning-border);
}

.info-box.key-takeaway {
    background: var(--key-bg);
    border-color: var(--key-border);
}

/* ==================== AUTHOR BIO ==================== */
.author-bio {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 60px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.author-bio-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-bio-content .author-title {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.author-bio-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ==================== LATEST GUIDES SECTION ==================== */
.latest-guides {
    background: var(--bg-alt);
}

/* ==================== ABOUT PAGE ==================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.9;
}

.about-image {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-card-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--secondary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.team-card .role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-alt);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

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

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

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid var(--bg-alt);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ==================== LEGAL PAGES ==================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.legal-content h1 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.legal-content .last-updated {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--text);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--secondary);
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #888;
    margin-bottom: 12px;
}

.affiliate-notice {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== PRODUCTS SECTION ==================== */
.view-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.view-btn {
    padding: 10px 20px;
    border: 2px solid var(--secondary);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.view-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.view-btn:hover:not(.active) {
    background: var(--bg-alt);
}

.filter-bar {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: none;
    background: var(--bg-alt);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

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

.filter-btn:hover:not(.active) {
    background: var(--secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-image {
    width: 100%;
    height: 220px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-info {
    padding: 24px;
}

.product-category {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.3rem;
    margin: 10px 0;
    color: var(--text);
}

.product-rating {
    color: #FFB800;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin-bottom: 15px;
}

.product-features li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 4px 0;
}

.product-features li::before {
    content: "\2713 ";
    color: var(--primary);
}

.compare-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.compare-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.product-card .btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* Table View */
.products-table {
    display: none;
    width: 100%;
    overflow-x: auto;
}

.products-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.products-table th,
.products-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid var(--bg-alt);
}

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

.products-table tr:hover {
    background: var(--bg-alt);
}

.products-table .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Compare Section */
.compare-section {
    background: var(--bg-alt);
}

.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 18px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
}

.compare-bar.show {
    display: flex;
}

.compare-bar span {
    font-weight: 500;
}

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

.compare-container {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.compare-container.show {
    display: grid;
}

.compare-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.compare-card h4 {
    margin-bottom: 18px;
    color: var(--primary);
}

.compare-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-alt);
}

.compare-row:last-child {
    border-bottom: none;
}

/* Quiz Section */
.quiz-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.quiz-section .section-header h2,
.quiz-section .section-header p {
    color: var(--white);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    color: var(--text);
}

.quiz-progress {
    height: 8px;
    background: var(--bg-alt);
    border-radius: 4px;
    margin-bottom: 35px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--primary);
}

.quiz-options {
    display: grid;
    gap: 14px;
}

.quiz-option {
    padding: 20px 24px;
    border: 2px solid var(--bg-alt);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
}

.quiz-option:hover {
    border-color: var(--primary);
    background: var(--bg-alt);
}

.quiz-option.selected {
    border-color: var(--primary);
    background: rgba(139, 69, 19, 0.1);
}

.quiz-option-icon {
    font-size: 1.5rem;
}

.quiz-result {
    display: none;
    text-align: center;
}

.quiz-result.show {
    display: block;
}

.quiz-result h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.quiz-result-product {
    background: var(--bg-alt);
    padding: 35px;
    border-radius: var(--radius);
    margin: 28px 0;
}

.quiz-result-product h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* SEO Content Section */
.seo-content {
    background: var(--white);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.seo-block h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.seo-block p {
    color: var(--text-light);
    margin-bottom: 18px;
}

.seo-block ul {
    color: var(--text-light);
    padding-left: 20px;
}

.seo-block li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 70px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    section {
        padding: 70px 0;
    }

    .quiz-container {
        padding: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}
