/* CSS Variables */
:root {
    --primary: #6C63FF;
    --primary-dark: #5248cc;
    --secondary: #FF6B9D;
    --accent: #00D9C0;
    --background: #FAFBFF;
    --surface: #FFFFFF;
    --text-primary: #2D3748;
    --text-secondary: #718096;
    --text-light: #A0AEC0;
    --border: #E2E8F0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --radius-lg: 20px;
    --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, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.5);
}

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

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

.btn-buy {
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    padding: 12px 24px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.5);
}

.btn-small {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FF9900, #FF6600);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-small:hover {
    transform: scale(1.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
}

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

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

.nav a {
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

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

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

.nav a:hover::after {
    width: 100%;
}

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

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #F5F7FF 0%, #FFF5F8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.badge-icon {
    font-size: 1.2rem;
}

/* Bouncer Illustration */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bouncer-illustration {
    position: relative;
    width: 350px;
    height: 350px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.bouncer-frame {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #E8E4FF, #D4D0FF);
    border-radius: 20px 20px 100px 100px;
    box-shadow: var(--shadow-lg);
}

.bouncer-seat {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 120px;
    background: linear-gradient(135deg, #FFE4EC, #FFC4D6);
    border-radius: 15px 15px 60px 60px;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.1);
}

.bouncer-baby {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.bouncer-stars {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.bouncer-stars span {
    font-size: 1.5rem;
    animation: twinkle 1.5s ease-in-out infinite;
}

.bouncer-stars span:nth-child(2) {
    animation-delay: 0.5s;
}

.bouncer-stars span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

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

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

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

/* Products Section */
.products {
    padding: 100px 0;
    background: white;
}

.view-toggle {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.view-btn {
    padding: 10px 15px;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.view-btn svg {
    fill: var(--text-secondary);
}

.view-btn.active,
.view-btn:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
}

.view-btn.active svg,
.view-btn:hover svg {
    fill: var(--primary);
}

/* Filter Tags */
.filter-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-tag {
    padding: 10px 24px;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.products-grid.hidden,
.products-table.hidden {
    display: none;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

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

.product-card.hidden {
    display: none;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 10;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.product-badge.value {
    background: linear-gradient(135deg, #00D9C0, #00B8A9);
}

.product-badge.premium {
    background: linear-gradient(135deg, #A855F7, #7C3AED);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F7FF 0%, #FFF5F8 100%);
}

.product-placeholder {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.product-emoji {
    font-size: 3.5rem;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

.stars {
    font-size: 0.9rem;
    letter-spacing: -2px;
}

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

.product-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.product-features {
    margin-bottom: 20px;
}

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

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

.price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.age-range {
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--background);
    padding: 5px 12px;
    border-radius: 20px;
}

.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-actions .btn-buy {
    flex: 1;
}

.btn-compare {
    width: 48px;
    height: 48px;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-compare:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
}

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

.compare-icon {
    font-size: 1.2rem;
}

/* Products Table */
.products-table {
    overflow-x: auto;
}

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

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

.products-table th {
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.products-table tr:hover {
    background: rgba(108, 99, 255, 0.05);
}

.products-table td {
    font-size: 0.95rem;
}

/* Quiz Section */
.quiz {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F7FF 0%, #FFF5F8 100%);
}

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

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

.progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    width: 20%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    display: block;
}

.quiz-question {
    display: none;
}

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

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

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

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

.quiz-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.quiz-option:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.05);
    transform: translateY(-3px);
}

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

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.option-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

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

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

.quiz-results.hidden {
    display: none;
}

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

.results-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
}

.results-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
}

.results-product {
    background: var(--background);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.results-product h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.results-product .product-rating {
    margin-bottom: 15px;
}

.results-product p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.results-product .btn-buy {
    width: 100%;
}

.results-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Compare Section */
.compare {
    padding: 100px 0;
    background: white;
}

.compare-container {
    position: relative;
}

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

.compare-slot {
    min-height: 200px;
    background: var(--background);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

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

.compare-slot.empty .slot-product {
    display: none;
}

.compare-slot:not(.empty) .slot-empty {
    display: none;
}

.compare-slot:not(.empty) .slot-product {
    display: block !important;
    width: 100%;
    padding: 20px;
}

.slot-empty {
    text-align: center;
}

.slot-icon {
    display: block;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.slot-text {
    color: var(--text-secondary);
    font-weight: 600;
}

.slot-product-info {
    text-align: center;
}

.slot-product-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.slot-product-info .price {
    font-size: 1.1rem;
    color: var(--primary);
}

.remove-product {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.remove-product:hover {
    transform: scale(1.1);
}

/* Compare Selector */
.compare-selector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 30px;
    z-index: 100;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.compare-selector.hidden {
    display: none;
}

.selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.selector-header h4 {
    font-size: 1.2rem;
}

.close-selector {
    width: 35px;
    height: 35px;
    background: var(--background);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-selector:hover {
    background: var(--secondary);
    color: white;
}

.selector-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selector-product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.selector-product:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.05);
}

.selector-product.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.selector-product-icon {
    font-size: 2rem;
}

.selector-product-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.selector-product-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Compare Table */
.compare-table-container {
    overflow-x: auto;
    margin-top: 30px;
}

.compare-table-container.hidden {
    display: none;
}

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

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

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

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    background: var(--background);
}

.compare-table tr:hover {
    background: rgba(108, 99, 255, 0.03);
}

.compare-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

.compare-icon-inline {
    font-size: 1.2rem;
}

/* Guide Section */
.guide {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F7FF 0%, #FFF5F8 100%);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.guide-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.guide-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.guide-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.seo-text h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.seo-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

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

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

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand .logo-text .au {
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.footer-newsletter p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.affiliate-disclosure {
    font-size: 0.85rem !important;
    opacity: 0.8;
}

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .hero-image {
        order: -1;
    }

    .bouncer-illustration {
        width: 280px;
        height: 280px;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        display: flex;
    }

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

    .hero {
        padding: 120px 0 60px;
    }

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

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

    .quiz-container {
        padding: 30px 20px;
    }

    .quiz-question h3 {
        font-size: 1.2rem;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

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

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .filter-tags {
        gap: 8px;
    }

    .filter-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

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

    .btn {
        width: 100%;
    }

    .results-actions {
        flex-direction: column;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.animate-in {
    animation: slideUp 0.6s ease forwards;
}
