@charset "UTF-8";

/* ================================================================
   GEZIBILET — CATEGORY PAGES STYLES (PREMIUM MINIMALIST RESPONSIVE)
   ================================================================ */

/* === SEARCH HEADER SECTION === */
.cat-search-section {
    background: #1a1f4a !important;
    padding: 60px 0 40px !important;
    margin-bottom: 0;
    display: block !important;
    width: 100%;
}

.cat-search-widget {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 10px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.csw-inner {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 18px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.csw-field {
    flex: 1;
    padding: 14px 24px;
    display: flex;
    flex-direction: column;
}

.csw-field label {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 0.08em;
}

.csw-input-shell {
    position: relative;
    width: 100%;
}

.csw-field input {
    border: none !important;
    outline: none !important;
    font-size: 15px;
    font-weight: 600;
    color: #1a1f4a;
    width: 100%;
    padding: 0;
    background: transparent;
}

/* Suggestion Dropdown */
.csw-suggest {
    position: absolute;
    top: calc(100% + 15px);
    left: -24px;
    width: calc(100% + 48px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.csw-suggest.is-open {
    display: block;
    animation: hsw-slide-up 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.csw-suggest-item {
    transition: all 0.2s ease;
}

.csw-suggest-item:hover {
    background: #f8fafc !important;
}

.csw-suggest-item:active {
    background: #f1f5f9 !important;
}

@keyframes hsw-slide-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.csw-divider {
    width: 1px;
    height: 36px;
    background: #f1f5f9;
}

.csw-submit {
    background: #e1162f;
    color: white;
    border: none;
    padding: 0 45px;
    height: 72px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.csw-submit:hover {
    background: #c7102b;
    box-shadow: 0 10px 25px rgba(225, 22, 47, 0.3);
}

/* === DEPARTURE SWITCHER SECTION === */
.departure-switcher-section {
    background: #1a1f4a;
    padding: 60px 0 40px;
}

.dss-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.dss-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dss-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.dss-card.active {
    background: #e2001a;
    border-color: #e2001a;
    box-shadow: 0 10px 30px rgba(226, 0, 26, 0.25);
}

.dss-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #e2001a;
    transition: all 0.3s;
}

.dss-card.active .dss-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.dss-info {
    display: flex;
    flex-direction: column;
}

.dss-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.6;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.dss-city {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.dss-card.active .dss-label {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .dss-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .departure-switcher-section {
        padding: 30px 0 20px;
    }
    .dss-grid {
        gap: 10px;
    }
    .dss-card {
        padding: 12px 15px;
        gap: 10px;
    }
    .dss-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .dss-city {
        font-size: 13px;
    }
}

/* === LISTING LAYOUT === */
.listing-section {
    padding: 40px 0 100px;
    background: #f8fafc !important;
}

.list-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* === SIDEBAR FILTERS === */
.sidebar-wrapper {
    position: sticky;
    top: 100px;
    height: fit-content;
    z-index: 10;
}

.sidebar-filter {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    height: fit-content;
    border: 1px solid #f1f5f9;
}

.filter-toggle-btn {
    display: none;
    width: 100%;
    padding: 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-weight: 800;
    color: #1a1f4a;
    margin-bottom: 24px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    font-size: 14px;
}

.filter-toggle-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.filter-header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.filter-header-mobile h3 {
    font-size: 19px;
    font-weight: 900;
    color: #1a1f4a;
    letter-spacing: -0.02em;
}

.close-filter {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.close-filter:hover {
    background: #fee2e2;
    color: #e2001a;
    border-color: #fecaca;
    transform: rotate(90deg);
}

/* Sidebar List */
.cat-nav-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 24px;
}

.cat-nav-list li {
    margin-bottom: 4px;
}

.cat-nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 12px;
}

.cat-nav-list a i {
    color: #e2001a;
    width: 20px;
    text-align: center;
    font-size: 16px;
    transition: transform 0.3s;
}

.cat-nav-list a:hover {
    background: #f1f5f9;
    color: #1e293b;
    padding-left: 18px;
}

.cat-nav-list a.active {
    background: #fff1f2;
    color: #e2001a;
    padding-left: 18px;
}

.cat-nav-list a.active i {
    transform: scale(1.1);
}

.cat-divider {
    padding: 18px 12px 10px;
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.filter-group {
    margin-bottom: 28px;
}

.filter-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1f4a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f1f5f9;
}

/* Range Slider Premium */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    outline: none;
    margin: 15px 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: #e2001a;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(226, 0, 26, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(226, 0, 26, 0.4);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 800;
}

/* Checkboxes Premium */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    position: relative;
    transition: all 0.2s;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.filter-checkbox:hover {
    background: #f8fafc;
    border-color: #f1f5f9;
    color: #1e293b;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #e2001a;
    cursor: pointer;
}

.filter-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.btn-filter {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-filter-apply {
    background: #1a1f4a;
    color: white;
    box-shadow: 0 8px 20px rgba(26, 31, 74, 0.2);
}

.btn-filter-apply:hover {
    background: #e2001a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(226, 0, 26, 0.25);
}

.btn-filter-clear {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-filter-clear:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* === MAIN CONTENT AREA === */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: white;
    padding: 16px 28px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.list-results-count {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 700;
}

.list-results-count span {
    color: #1a1f4a;
    font-weight: 900;
    font-size: 15px;
}

.list-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-sort label {
    font-size: 13px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.list-sort select {
    padding: 10px 16px;
    border: 1.5px solid #f1f5f9;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1f4a;
    outline: none;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s;
}

.list-sort select:hover {
    border-color: #cbd5e1;
    background: white;
}

.products-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* HORIZONTAL PREMIUM CARD */
.hc-card {
    display: flex;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 270px;
    position: relative;
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hc-card:hover {
    transform: translateY(-8px) scale(1.005);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.hc-img-area {
    width: 360px;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.hc-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hc-card:hover .hc-img-area img {
    transform: scale(1.1);
}

.hc-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 7px 16px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.05em;
}

.hc-badge-discount {
    background: #e1162f;
}

.hc-badge-guarantee {
    background: #059669;
}

.hc-fav {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hc-fav:hover {
    transform: scale(1.1) rotate(5deg);
    color: #e2001a;
}

.hc-fav.active {
    background: #e1162f;
    color: white;
    box-shadow: 0 8px 20px rgba(225, 22, 47, 0.3);
}

.hc-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f8fafc;
}

.hc-category {
    font-size: 8.5px;
    font-weight: 900;
    color: #e2001a;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.hc-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1f4a;
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s;
}

.hc-title:hover {
    color: #e2001a;
}

.hc-date {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hc-date i {
    color: #e2001a;
    font-size: 16px;
}

.hc-desc {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
}

.hc-meta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.hc-meta-item {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hc-meta-item i {
    color: #e2e8f0;
    font-size: 14px;
}

.hc-action {
    width: 220px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fcfcfd;
}

.hc-price-wrapper {
    text-align: center;
    margin-bottom: 28px;
}

.hc-old-price {
    font-size: 15px;
    color: #cbd5e1;
    text-decoration: line-through;
    margin-bottom: 6px;
    font-weight: 700;
}

.hc-new-price {
    font-size: 38px;
    font-weight: 900;
    color: #1a1f4a;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hc-new-price span {
    font-size: 18px;
    margin-left: 2px;
    font-weight: 800;
}

.hc-price-note {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 800;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hc-btn {
    display: block;
    width: 100%;
    background: #1a1f4a;
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 900;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    box-shadow: 0 10px 20px rgba(26, 31, 74, 0.1);
}

.hc-btn:hover {
    background: #e2001a;
    box-shadow: 0 15px 30px rgba(226, 0, 26, 0.25);
    transform: translateY(-4px);
}

/* Suggestion Box */
.csw-suggest {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.csw-suggest.active {
    display: block;
    animation: slideInTop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.csw-suggest-item {
    padding: 18px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.csw-suggest-item:last-child {
    border-bottom: none;
}

.csw-suggest-item:hover {
    background: #f8fafc;
    padding-left: 36px;
    color: #e2001a;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

.page-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    background: white;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.3s;
    text-decoration: none;
}

.page-btn:hover {
    border-color: #e2001a;
    color: #e2001a;
    transform: scale(1.1);
}

.page-btn.active {
    background: #e2001a;
    border-color: #e2001a;
    color: white;
    box-shadow: 0 10px 25px rgba(226, 0, 26, 0.25);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .list-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sidebar-wrapper {
        position: relative;
        top: 0;
    }

    .filter-toggle-btn {
        display: flex;
    }

    .sidebar-filter {
        position: fixed;
        top: 0;
        left: -100%;
        width: 340px;
        height: 100vh;
        z-index: 2100;
        border-radius: 0;
        overflow-y: auto;
        visibility: hidden;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
        border: none;
        padding: 30px;
    }

    .sidebar-filter.is-open {
        left: 0;
        visibility: visible;
        transform: translateX(0);
        box-shadow: 30px 0 80px rgba(0, 0, 0, 0.25);
    }

    .filter-header-mobile {
        display: flex;
    }

    .filter-overlay {
        position: fixed;
        inset: 0;
        background: rgba(13, 20, 43, 0.5);
        backdrop-filter: blur(8px);
        z-index: 2050;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
    }

    .filter-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 850px) {
    .hc-card {
        height: auto;
        flex-direction: column;
        border-radius: 20px;
    }

    .hc-img-area {
        width: 100%;
        height: 260px;
    }

    .hc-body {
        border-right: none;
        border-bottom: 1px solid #f8fafc;
        padding: 24px 28px;
    }

    .hc-action {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 24px 28px;
        background: #f8fafc;
    }

    .hc-price-wrapper {
        margin-bottom: 0;
        text-align: left;
    }

    .hc-new-price {
        font-size: 32px;
    }

    .hc-btn {
        width: auto;
        padding: 14px 36px;
        border-radius: 14px;
    }

    .list-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 20px 24px;
    }

    .list-sort {
        width: 100%;
        justify-content: space-between;
    }

    .cat-search-section {
        padding-top: 40px !important;
    }
}

@media (max-width: 600px) {
    .cat-search-section {
        padding: 30px 0 20px !important;
    }

    .cat-search-widget {
        padding: 6px;
        border-radius: 20px;
    }

    .csw-inner {
        flex-direction: column;
        border-radius: 16px;
    }

    .csw-divider {
        display: none;
    }

    .csw-field {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding: 18px 24px;
    }

    .csw-field:last-of-type {
        border-bottom: none;
    }

    .csw-submit {
        width: 100%;
        border-radius: 0;
        height: 64px;
        justify-content: center;
        font-size: 16px;
    }

    .hc-img-area {
        height: 220px;
    }

    .hc-title {
        font-size: 12.5px;
    }

    .hc-meta-inline {
        gap: 15px;
    }

    .hc-meta-item {
        font-size: 9.5px;
    }

    .hc-new-price {
        font-size: 28px;
    }

    .hc-btn {
        padding: 12px 24px;
        font-size: 13px;
        border-radius: 12px;
    }

    .list-header {
        padding: 16px 20px;
        border-radius: 16px;
    }

    .sidebar-filter {
        width: 100%;
    }
}