/* Catalog Page - Clean Modern Design */

/* Compact Header Section */
.catalog-header {
    background: linear-gradient(180deg, #F7F7F7 0%, #FFFFFF 100%);
    padding: 50px 0;
    position: relative;
}

.catalog-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #222222;
    text-align: center;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Category Tabs - Ultra Minimal with Turquoise Accents */
.catalog-categories {
    background: white;
    padding: 50px 0;
}

/* View Switcher */
.view-switcher {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 4px;
    background: #F7F7F7;
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.view-switcher-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: #717171;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-switcher-btn i {
    font-size: 16px;
}

.view-switcher-btn:hover {
    color: #222;
}

.view-switcher-btn.active {
    background: white;
    color: #06B6D4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* View Content Containers */
.view-content {
    display: none;
}

.view-content.active {
    display: block;
}

.catalog-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.catalog-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    color: #717171;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #E0E0E0;
    position: relative;
}

.catalog-tab i {
    font-size: 18px;
    color: #06B6D4;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.catalog-tab:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
    border-color: #06B6D4;
    color: #222222;
    transform: translateY(-1px);
}

.catalog-tab:hover i {
    opacity: 1;
    transform: scale(1.05);
}

.catalog-tab.active {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(14, 165, 233, 0.06) 100%);
    border-color: #06B6D4;
    color: #0c4a6e;
    font-weight: 600;
}

.catalog-tab.active i {
    color: #06B6D4;
    opacity: 1;
}

/* Routes Grid */
.catalog-routes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* View All Button - Modern Minimal Style */
.catalog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid #06B6D4;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    color: #06B6D4;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.catalog-view-all:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-color: #0891b2;
    color: #0891b2;
    transform: translateY(-1px);
}

.catalog-view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.catalog-view-all.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .catalog-routes {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .catalog-header {
        padding: 40px 0;
    }

    .catalog-header h1 {
        font-size: 32px;
    }

    .catalog-categories {
        padding: 40px 0;
    }

    .catalog-tabs {
        gap: 12px;
        margin-bottom: 40px;
    }

    .catalog-tab {
        padding: 12px 20px;
        font-size: 16px;
    }

    .catalog-tab i {
        font-size: 18px;
    }

    .catalog-routes {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .catalog-header {
        padding: 30px 0;
    }

    .catalog-header h1 {
        font-size: 26px;
    }

    .catalog-categories {
        padding: 30px 0;
    }

    .catalog-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }

    .catalog-tab {
        padding: 10px 18px;
        font-size: 15px;
    }

    .catalog-tab i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .catalog-header h1 {
        font-size: 24px;
    }

    .catalog-routes {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .catalog-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
}
