/* CSS Variables */
:root {
    --primary: #6C63FF;
    --primary-dark: #5A52E0;
    --primary-light: #8B85FF;
    --secondary: #FF6B9D;
    --secondary-dark: #E5558A;
    --accent: #00D4AA;
    --accent-dark: #00B894;

    --text-dark: #2D3748;
    --text-medium: #4A5568;
    --text-light: #718096;
    --text-muted: #A0AEC0;

    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-gray: #EDF2F7;
    --bg-dark: #1A202C;

    --border-light: #E2E8F0;
    --border-medium: #CBD5E0;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--border-medium);
}

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    color: var(--text-dark);
}

.logo-au {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 600;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-medium);
    font-size: 14px;
}

.trust-icon {
    color: var(--accent);
    font-weight: bold;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.hero-emoji {
    font-size: 120px;
}

/* Stats Section */
.stats {
    padding: 40px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: var(--text-medium);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Filter Controls */
.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 14px;
}

.filter-select {
    padding: 10px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:hover {
    border-color: var(--primary);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.view-toggle {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.view-btn {
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.view-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--secondary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.product-badge.bestseller {
    background: var(--accent);
}

.product-badge.new {
    background: var(--primary);
}

.product-image {
    height: 200px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.product-content {
    padding: 20px;
}

.product-type {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.feature-tag {
    font-size: 11px;
    padding: 4px 8px;
    background: var(--bg-gray);
    color: var(--text-medium);
    border-radius: var(--radius-sm);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    color: #FFC107;
    font-size: 14px;
}

.rating-count {
    font-size: 13px;
    color: var(--text-light);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.product-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.product-actions {
    display: flex;
    gap: 8px;
}

.compare-btn {
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 16px;
}

.compare-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

/* Products Table */
.products-table-container {
    overflow-x: auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.products-table {
    width: 100%;
    border-collapse: collapse;
}

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

.products-table th {
    background: var(--bg-gray);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
}

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

.table-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-product-image {
    width: 60px;
    height: 60px;
    background: var(--bg-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.table-product-info {
    display: flex;
    flex-direction: column;
}

.table-product-name {
    font-weight: 700;
    color: var(--text-dark);
}

.table-product-brand {
    font-size: 13px;
    color: var(--text-light);
}

.hidden {
    display: none !important;
}

/* Compare Section */
.compare-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.compare-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.compare-slot {
    min-height: 300px;
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-light);
}

.compare-slot:hover {
    border-color: var(--primary);
    background: var(--bg-white);
}

.compare-slot.filled {
    border-style: solid;
    border-color: var(--primary);
    background: var(--bg-white);
    padding: 20px;
    justify-content: flex-start;
}

.compare-slot-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.compare-slot-icon {
    font-size: 48px;
    color: var(--border-medium);
}

.compare-slot-text {
    font-weight: 600;
}

/* Compare Slot Filled State */
.compare-slot-product {
    width: 100%;
    text-align: center;
}

.compare-slot-image {
    font-size: 64px;
    margin-bottom: 12px;
}

.compare-slot-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.compare-slot-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.compare-slot-remove {
    padding: 8px 16px;
    background: var(--bg-gray);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    transition: var(--transition);
}

.compare-slot-remove:hover {
    background: var(--secondary);
    color: white;
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    margin-top: 40px;
}

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

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

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

.comparison-table th:first-child {
    background: var(--bg-gray);
    color: var(--text-dark);
    text-align: left;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-medium);
    text-align: left;
    background: var(--bg-light);
}

.comparison-table tr:hover td {
    background: var(--bg-light);
}

.comparison-table tr:hover td:first-child {
    background: var(--bg-gray);
}

.check-icon {
    color: var(--accent);
    font-size: 18px;
}

.cross-icon {
    color: var(--text-muted);
    font-size: 18px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.modal-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: 60vh;
}

.product-selector-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-selector-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.product-selector-item:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.product-selector-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.selector-image {
    font-size: 40px;
}

.selector-info {
    flex: 1;
}

.selector-name {
    font-weight: 700;
    color: var(--text-dark);
}

.selector-type {
    font-size: 13px;
    color: var(--text-light);
}

.selector-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 18px;
}

/* Quiz Section */
.quiz-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.quiz-progress {
    margin-bottom: 32px;
}

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

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.quiz-progress-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.quiz-question {
    display: none;
}

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

.quiz-question h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

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

.quiz-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.quiz-option.selected {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
}

.option-icon {
    font-size: 40px;
}

.option-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.option-desc {
    font-size: 13px;
    color: var(--text-light);
}

.quiz-next-btn {
    display: block;
    margin: 24px auto 0;
}

/* Quiz Results */
.quiz-results {
    text-align: center;
}

.results-header {
    margin-bottom: 32px;
}

.results-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
}

.results-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.results-header p {
    color: var(--text-medium);
    font-size: 16px;
}

.recommended-products {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.recommended-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    text-align: left;
}

.recommended-card.top-pick {
    border-color: var(--accent);
    background: rgba(0, 212, 170, 0.1);
}

.recommended-rank {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
}

.recommended-card.top-pick .recommended-rank {
    background: var(--accent);
}

.recommended-image {
    font-size: 48px;
    flex-shrink: 0;
}

.recommended-info {
    flex: 1;
}

.recommended-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.recommended-type {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.recommended-match {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
}

.recommended-action {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.recommended-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

/* Guide Section */
.guide-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guide-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.guide-card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.guide-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.guide-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.seo-article {
    max-width: 900px;
    margin: 0 auto;
}

.seo-article h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.seo-article h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.seo-article p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

.seo-article ul {
    margin: 16px 0;
    padding-left: 24px;
}

.seo-article li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
    position: relative;
    list-style: disc;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.affiliate-disclosure {
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-placeholder {
        width: 300px;
        height: 300px;
    }

    .hero-emoji {
        font-size: 80px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compare-slots {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .compare-slot {
        min-height: 200px;
    }

    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .view-toggle {
        margin-left: 0;
        justify-content: center;
    }

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

    .quiz-container {
        padding: 24px;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-question h3 {
        font-size: 20px;
    }

    .recommended-card {
        flex-direction: column;
        text-align: center;
    }

    .recommended-action {
        align-items: center;
    }

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

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

    .seo-article h2 {
        font-size: 26px;
    }

    .seo-article h3 {
        font-size: 20px;
    }
}

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

.product-card {
    animation: fadeIn 0.5s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
