
.tour-category-page {
    background: #f7f7fb;
}

.tour-category-hero {
    position: relative;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
}

.tour-category-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(10, 25, 47, .82) 0%,
            rgba(10, 25, 47, .60) 45%,
            rgba(10, 25, 47, .20) 100%
    );
    z-index: 1;
}

.tour-category-hero .container-xxl {
    position: relative;
    z-index: 2;
}

.tour-search-bar {
    margin-top: -38px;
    position: relative;
    z-index: 5;
}

.tour-search-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
    padding: 14px;
    border: 1px solid rgba(226, 232, 240, .9);
}

.tour-search-item {
    height: 58px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f8fafc;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tour-search-item i {
    font-size: 22px;
    color: #64748b;
}

.tour-search-label {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1;
    margin-bottom: 4px;
}

.tour-search-value {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    line-height: 1.2;
}

.tour-search-btn {
    height: 58px;
    border-radius: 999px;
    padding-left: 34px;
    padding-right: 34px;
    font-weight: 700;
    background: #326fc8;
    border-color: #326fc8;
}

.section-title {
    color: #1e293b;
    letter-spacing: -.02em;
}

.tour-category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dde3ea;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .045);
    transition: all .22s ease;
    height: 100%;
    text-decoration: none;
    display: block;
}

.tour-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .12);
    border-color: #cbd5e1;
}

.tour-category-img {
    height: 132px;
    background: linear-gradient(135deg, #dbeafe, #f8fafc);
    overflow: hidden;
    position: relative;
}

.tour-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.tour-category-card:hover .tour-category-img img {
    transform: scale(1.06);
}

.tour-category-body {
    padding: 16px 16px 14px;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-category-title {
    color: #475569;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 16px;
}

.tour-category-price {
    color: #0072ce;
    font-weight: 800;
    font-size: 25px;
    line-height: 1;
    letter-spacing: -.02em;
}

.tour-category-price small {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-left: 2px;
}

.tour-category-subprice {
    color: #8091a7;
    font-size: 12px;
    line-height: 1.1;
    margin-top: 3px;
}

.tour-wide-banner {
    border-radius: 18px;
    overflow: hidden;
    min-height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
}

.tour-wide-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, .75), rgba(15, 23, 42, .10));
}

.tour-wide-banner-content {
    position: relative;
    z-index: 2;
    padding: 34px;
    color: #fff;
}

@media (max-width: 991.98px) {
    .tour-search-bar {
        margin-top: 20px;
    }

    .tour-category-hero {
        min-height: 240px;
        border-radius: 0;
    }

    .tour-search-box {
        padding: 12px;
    }
}

@media (max-width: 575.98px) {
    .tour-category-img {
        height: 150px;
    }

    .tour-category-body {
        min-height: auto;
    }

    .tour-category-price {
        font-size: 23px;
    }
}
