/* CSS Variables */
:root {
    /* Primary Palette */
    --navy: #00214F;
    --indigo: #381D96;
    --azure: #6D8BED;
    --stream: #004778;
    --pine: #00626B;
    --teal: #009AA6;
    --rain: #EAECFA;
    --white: #FFFFFF;

    /* Gradients */
    --binary-gradient: linear-gradient(135deg, #381D96 0%, #00214F 100%);
    --mist-gradient: linear-gradient(135deg, #EAECFA 0%, #FFFFFF 100%);
    --oceanic-gradient: linear-gradient(135deg, #009AA6 0%, #6D8BED 100%);
    --opal-gradient: linear-gradient(135deg, rgba(109,139,237,0.2) 0%, rgba(56,29,150,0.2) 100%);
    --forest-gradient: linear-gradient(135deg, #004778 0%, #00626B 100%);
    --dynamic-gradient: linear-gradient(135deg, #6D8BED 0%, #381D96 100%);

    /* Typography */
    --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--navy);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    font-size: 16px;
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--navy);
    color: var(--white);
    padding: 12px 24px;
    z-index: 200;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    transition: top 0.2s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    background: var(--white);
    border-bottom: 2px solid var(--rain);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    height: 56px;
    width: auto;
}

.header-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.date-badge {
    background: var(--rain);
    color: var(--stream);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: var(--binary-gradient);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><rect width="4" height="4" fill="white" opacity="0.03"/><rect x="8" width="4" height="16" fill="white" opacity="0.03"/><rect x="16" width="4" height="4" fill="white" opacity="0.03"/><rect x="24" width="4" height="16" fill="white" opacity="0.03"/><rect x="32" width="4" height="4" fill="white" opacity="0.03"/></svg>') repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
    margin: 0 0 32px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    display: block;
    background: var(--oceanic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Main Content */
.main-content {
    padding: 64px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 18px;
    color: var(--stream);
    margin: 0;
    max-width: 800px;
}

/* Search Bar */
.search-container {
    margin-bottom: 24px;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: var(--rain);
    border: 2px solid var(--rain);
    border-radius: 20px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    color: var(--navy);
    outline: none;
    transition: all 0.2s ease;
}

.search-input::placeholder {
    color: var(--stream);
    opacity: 0.7;
}

.search-input:focus {
    border-color: var(--azure);
    background: var(--white);
}

.search-wrapper {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--stream);
    pointer-events: none;
}

/* Platform Filter */
.platform-filter {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--pine);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--pine);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
}

.filter-btn:hover {
    background: var(--oceanic-gradient);
    color: var(--white);
    border-color: transparent;
}

.filter-btn.active {
    background: var(--forest-gradient);
    color: var(--white);
    border-color: transparent;
}

.filter-btn iconify-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.filter-btn .product-count {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
}

/* Focus Styles */
.filter-btn:focus-visible,
.search-input:focus-visible {
    outline: 3px solid var(--azure);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 3px solid var(--azure);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 64px;
}

.platform-section {
    background: var(--white);
    border: 2px solid var(--rain);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.platform-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.platform-icon {
    width: 40px;
    height: 40px;
    background: var(--oceanic-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.platform-icon iconify-icon {
    color: #FFFFFF;
    width: 24px;
    height: 24px;
}

.platform-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.filter-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.platform-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px 0;
}

.platform-description {
    font-size: 14px;
    color: var(--stream);
    margin: 0;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.product-card {
    background: var(--white);
    border: 2px solid var(--rain);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    border-color: var(--azure);
    box-shadow: 0 8px 24px rgba(56, 29, 150, 0.12);
    transform: translateY(-2px);
}

.product-card.visible:hover {
    transform: translateY(-2px);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.product-icon {
    width: 32px;
    height: 32px;
    background: var(--rain);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.product-icon iconify-icon {
    color: var(--indigo);
    width: 20px;
    height: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.product-description {
    font-size: 14px;
    color: var(--stream);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--pine);
    margin-top: auto;
}

.updated-date {
    font-weight: 500;
}

.external-link {
    opacity: 0.6;
}

.external-link iconify-icon {
    width: 16px;
    height: 16px;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--stream);
    font-size: 18px;
    display: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--forest-gradient);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 50;
    box-shadow: 0 4px 12px rgba(0, 33, 79, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--oceanic-gradient);
    box-shadow: 0 6px 16px rgba(0, 33, 79, 0.3);
    transform: translateY(-2px);
}

.back-to-top:focus-visible {
    outline: 3px solid var(--azure);
    outline-offset: 2px;
}

.back-to-top iconify-icon {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: var(--binary-gradient);
    color: #FFFFFF;
    padding: 64px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.9;
}

.footer-logo:hover {
    opacity: 1;
    transition: opacity 0.2s ease;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--opal-gradient);
    color: var(--rain);
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--oceanic-gradient);
    color: var(--rain);
    transform: translateY(-2px);
}

.footer-text {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    color: var(--rain);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: var(--rain);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 1;
}

/* Dark Mode */
[data-theme="dark"] {
    --navy: #E8EAED;
    --indigo: #A48BF5;
    --azure: #6D8BED;
    --stream: #9AA5B4;
    --pine: #4DB6AC;
    --teal: #009AA6;
    --rain: #1E2A3A;
    --white: #0D1520;
    --binary-gradient: linear-gradient(135deg, #1a1040 0%, #0a1428 100%);
    --mist-gradient: linear-gradient(135deg, #1E2A3A 0%, #0D1520 100%);
    --oceanic-gradient: linear-gradient(135deg, #009AA6 0%, #6D8BED 100%);
    --opal-gradient: linear-gradient(135deg, rgba(109,139,237,0.2) 0%, rgba(56,29,150,0.2) 100%);
    --forest-gradient: linear-gradient(135deg, #004778 0%, #00626B 100%);
    --dynamic-gradient: linear-gradient(135deg, #6D8BED 0%, #381D96 100%);
}

/* Dark mode: keep white text/icons on all buttons */
[data-theme="dark"] .filter-btn {
    color: #E8EAED;
    border-color: #E8EAED;
}

[data-theme="dark"] .filter-btn img {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active {
    color: #ffffff;
}

[data-theme="dark"] .back-to-top {
    color: #ffffff;
}

[data-theme="dark"] .error-btn-primary {
    color: #ffffff;
}

[data-theme="dark"] .error-btn-secondary:hover {
    color: #ffffff;
}

[data-theme="dark"] .product-card.is-new::before,
[data-theme="dark"] .badge-new,
[data-theme="dark"] .badge-updated {
    color: #ffffff;
}

[data-theme="dark"] .recently-viewed-card:hover {
    color: #ffffff;
}

/* Dark mode: fluent icons white shade */
[data-theme="dark"] .product-icon iconify-icon,
[data-theme="dark"] .platform-icon iconify-icon,
[data-theme="dark"] .external-link iconify-icon,
[data-theme="dark"] .chevron-icon iconify-icon,
[data-theme="dark"] .favorite-btn iconify-icon {
    color: #E8EAED;
}

/* Dark mode: updated date text white shade */
[data-theme="dark"] .updated-date,
[data-theme="dark"] .product-meta {
    color: #E8EAED;
}

[data-theme="dark"] .footer-social a {
    background: #ffffff;
    color: var(--navy);
}

[data-theme="dark"] .footer-social a:hover {
    background: var(--oceanic-gradient);
    color: #ffffff;
}

[data-theme="dark"] .platform-icon {
    background: #ffffff;
}

[data-theme="dark"] .platform-icon iconify-icon {
    color: var(--teal);
}

[data-theme="dark"] .product-icon {
    background: #ffffff;
}

.theme-toggle {
    background: var(--rain);
    border: 2px solid var(--rain);
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    border-color: var(--azure);
}

.theme-toggle iconify-icon {
    width: 18px;
    height: 18px;
}

/* Recently Viewed */
.recently-viewed {
    background: var(--white);
    border: 2px solid var(--rain);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 32px;
}

.recently-viewed h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px 0;
}

.recently-viewed-card {
    display: inline-block;
    background: var(--rain);
    border-radius: 12px;
    padding: 10px 16px;
    margin: 0 8px 8px 0;
    text-decoration: none;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.recently-viewed-card:hover {
    background: var(--azure);
    color: var(--white);
}

/* Favorites */
.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 5;
    opacity: 0.4;
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    opacity: 1;
    transform: scale(1.2);
}

.favorite-btn.favorited {
    opacity: 1;
}

.favorite-btn iconify-icon {
    width: 20px;
    height: 20px;
    color: var(--indigo);
}

.favorites-section {
    background: var(--white);
    border: 2px solid var(--rain);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 32px;
}

.favorites-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px 0;
}

/* Grid/List View Toggle */
.view-toggle {
    background: var(--rain);
    border: 2px solid var(--rain);
    border-radius: 20px;
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.view-toggle:hover {
    border-color: var(--azure);
}

.view-toggle iconify-icon {
    width: 18px;
    height: 18px;
}

.search-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.product-grid.list-view {
    grid-template-columns: 1fr;
}

.product-grid.list-view .product-card {
    display: flex;
    align-items: center;
}

.product-grid.list-view .product-card a {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.product-grid.list-view .product-header {
    margin-bottom: 0;
    min-width: 200px;
}

.product-grid.list-view .product-description {
    margin: 0;
    flex: 1;
}

.product-grid.list-view .product-meta {
    min-width: 180px;
    justify-content: flex-end;
}

/* NEW Badge on Hover */
.product-card.is-new::before {
    content: "NEW";
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--oceanic-gradient);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card.is-new:hover::before {
    opacity: 1;
}

/* Badges */
.badge-new,
.badge-updated {
    position: absolute;
    top: 12px;
    right: 40px;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    z-index: 4;
}

.badge-new {
    background: var(--oceanic-gradient);
    color: var(--white);
}

.badge-updated {
    background: var(--azure);
    color: #FFFFFF;
}

/* Collapsible Sections */
.platform-header.collapsible {
    cursor: pointer;
    user-select: none;
}

.platform-header.collapsible:hover {
    opacity: 0.85;
}

.chevron-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.chevron-icon.rotated {
    transform: rotate(180deg);
}

.chevron-icon iconify-icon {
    width: 24px;
    height: 24px;
    color: var(--stream);
}

.product-grid.collapsed {
    display: none;
}

/* Filter Indicator */
.filter-indicator {
    background: var(--rain);
    border-radius: 20px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--stream);
}

.filter-indicator strong {
    color: var(--navy);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--rain) 25%, rgba(109,139,237,0.15) 50%, var(--rain) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    color: transparent !important;
    min-width: 120px;
    display: inline-block;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Card Tooltip */
.card-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.card-tooltip.visible {
    opacity: 1;
}

/* Error Page */
.error-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
    padding: 80px 20px;
}
.error-code {
    font-size: 6rem;
    font-weight: 800;
    background: var(--binary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}
.error-title {
    font-size: 1.5rem;
    color: var(--navy);
    margin: 16px 0 12px;
    font-weight: 600;
}
.error-description {
    color: var(--stream);
    margin-bottom: 32px;
    max-width: 440px;
    line-height: 1.6;
}
.error-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}
.error-btn-primary {
    background: var(--forest-gradient);
    color: var(--white);
}
.error-btn-primary:hover {
    background: var(--oceanic-gradient);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 33, 79, 0.3);
}
.error-btn-secondary {
    background: var(--white);
    color: var(--pine);
    border: 2px solid var(--pine);
}
.error-btn-secondary:hover {
    background: var(--oceanic-gradient);
    color: var(--white);
    border-color: transparent;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero {
        padding: 48px 0;
    }

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

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

    .hero-stats {
        gap: 32px;
        margin-top: 32px;
    }

    .stat-number {
        font-size: 24px;
    }

    .main-content {
        padding: 32px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 16px;
    }

    .platform-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
        border-width: 2px;
    }

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

    .platform-section {
        padding: 20px;
    }

    .footer {
        padding: 32px 0;
        margin-top: 40px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-right {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

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

    .product-grid.list-view .product-card a {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-grid.list-view .product-header {
        min-width: unset;
    }

    .product-grid.list-view .product-meta {
        min-width: unset;
        justify-content: space-between;
        width: 100%;
    }

    .theme-toggle span {
        display: none;
    }

    .view-toggle span {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 32px 0;
    }

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

    .filter-btn {
        padding: 8px 12px;
        font-size: 13px;
        gap: 4px;
    }

    .filter-btn iconify-icon {
        width: 16px;
        height: 16px;
    }
}
