/* =========================================================
   AURORA WISATA
   TOUR TAXONOMY ARCHIVE
   Destination / Category / Tag
========================================================= */

/* =========================================================
   PAGE
========================================================= */

.tour-taxonomy-page {
    padding: 126px 0 100px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            #ffffff 280px,
            var(--aw-bg) 560px
        );
}

.tour-taxonomy-container {
    width: min(var(--aw-container), calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.tour-taxonomy-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 42px;
    color: var(--aw-muted);
    font-size: 12px;
    line-height: 1.5;
}

.tour-taxonomy-breadcrumb a {
    color: var(--aw-muted);
    text-decoration: none;
    transition: color .2s ease;
}

.tour-taxonomy-breadcrumb a:hover {
    color: var(--aw-orange);
}

.tour-taxonomy-breadcrumb span:last-child {
    color: var(--aw-dark);
    font-weight: 600;
}


/* =========================================================
   INTRO / PAGE HEADER
========================================================= */

.tour-taxonomy-header {
    position: relative;
    max-width: 860px;
    margin-bottom: 46px;
    padding-left: 22px;
}

.tour-taxonomy-header::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        var(--aw-orange),
        var(--aw-green)
    );
}

.tour-taxonomy-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--aw-orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.tour-taxonomy-header h1 {
    margin: 0;
    color: var(--aw-dark);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.tour-taxonomy-description {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--aw-muted);
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   RESULT BAR
========================================================= */

.tour-taxonomy-resultbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    margin-bottom: 22px;
    padding: 0 2px 15px;
    border-bottom: 1px solid var(--aw-border);
}

.tour-taxonomy-resultbar > div {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
}

.tour-taxonomy-resultbar strong {
    color: var(--aw-dark);
    font-size: 14px;
    font-weight: 700;
}

.tour-taxonomy-resultbar span {
    color: var(--aw-muted);
    font-size: 12px;
}


/* =========================================================
   TOUR GRID
========================================================= */

.tour-taxonomy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}


/* =========================================================
   TOUR CARD
========================================================= */

.tour-taxonomy-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--aw-border);
    border-radius: 24px;
    background: var(--aw-white);
    box-shadow:
        0 8px 28px rgba(23, 32, 24, .045);
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.tour-taxonomy-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 101, 0, .20);
    box-shadow:
        0 20px 50px rgba(23, 32, 24, .10);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.tour-taxonomy-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1200 / 800;
    background: #edf1ec;
}

.tour-taxonomy-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(0, 0, 0, .08)
    );
    pointer-events: none;
}

.tour-taxonomy-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.tour-taxonomy-card:hover
.tour-taxonomy-card-image img {
    transform: scale(1.055);
}


/* =========================================================
   FEATURED BADGE
========================================================= */

.tour-taxonomy-featured {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: rgba(255, 101, 0, .94);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
}


/* =========================================================
   CARD BODY
========================================================= */

.tour-taxonomy-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 22px 20px;
}


/* =========================================================
   CARD META
========================================================= */

.tour-taxonomy-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 13px;
}

.tour-taxonomy-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border: 1px solid #e9eee8;
    border-radius: 999px;
    background: #f6f8f5;
    color: var(--aw-muted);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================================
   CARD TITLE
========================================================= */

.tour-taxonomy-card h2 {
    margin: 0;
    color: var(--aw-dark);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -.025em;
}

.tour-taxonomy-card h2 a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.tour-taxonomy-card h2 a:hover {
    color: var(--aw-orange);
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.tour-taxonomy-card p {
    display: -webkit-box;
    min-height: 43px;
    margin: 10px 0 20px;
    overflow: hidden;
    color: var(--aw-muted);
    font-size: 12px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.tour-taxonomy-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--aw-border);
}


/* =========================================================
   PRICE
========================================================= */

.tour-taxonomy-price {
    min-width: 0;
}

.tour-taxonomy-price small,
.tour-taxonomy-price strong {
    display: block;
}

.tour-taxonomy-price small {
    margin-bottom: 4px;
    color: var(--aw-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    line-height: 1.2;
    text-transform: uppercase;
}

.tour-taxonomy-price strong {
    color: var(--aw-orange);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.02em;
}


/* =========================================================
   DETAIL LINK
========================================================= */

.tour-taxonomy-detail {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 2px;
    color: var(--aw-dark);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease;
}

.tour-taxonomy-detail span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--aw-orange);
    font-size: 17px;
    line-height: 1;
    transition: transform .2s ease;
}

.tour-taxonomy-detail:hover {
    color: var(--aw-orange);
}

.tour-taxonomy-detail:hover span {
    transform: translateX(4px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.tour-taxonomy-empty {
    padding: 78px 30px;
    border: 1px solid var(--aw-border);
    border-radius: 24px;
    background: var(--aw-white);
    text-align: center;
    box-shadow:
        0 8px 30px rgba(23, 32, 24, .04);
}

.tour-taxonomy-empty-icon {
    margin-bottom: 14px;
    color: var(--aw-orange);
    font-size: 28px;
    line-height: 1;
}

.tour-taxonomy-empty h2 {
    margin: 0 0 9px;
    color: var(--aw-dark);
    font-size: 25px;
    font-weight: 800;
}

.tour-taxonomy-empty p {
    margin: 0 0 24px;
    color: var(--aw-muted);
    font-size: 13px;
    line-height: 1.7;
}

.tour-taxonomy-empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    background: var(--aw-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.tour-taxonomy-empty-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 101, 0, .20);
}


/* =========================================================
   PAGINATION
========================================================= */

.tour-taxonomy-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 48px;
}

.tour-taxonomy-pagination a,
.tour-taxonomy-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid var(--aw-border);
    border-radius: 11px;
    background: var(--aw-white);
    color: var(--aw-dark);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        border-color .2s ease,
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.tour-taxonomy-pagination a:hover {
    border-color: rgba(255, 101, 0, .35);
    color: var(--aw-orange);
    transform: translateY(-1px);
}

.tour-taxonomy-pagination a.is-active {
    border-color: var(--aw-orange);
    background: var(--aw-orange);
    color: #fff;
}

.tour-taxonomy-pagination span {
    border-color: transparent;
    background: transparent;
    color: var(--aw-muted);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .tour-taxonomy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .tour-taxonomy-page {
        padding: 94px 0 82px;
        background:
            linear-gradient(
                180deg,
                #ffffff 0,
                #ffffff 240px,
                var(--aw-bg) 480px
            );
    }

    .tour-taxonomy-container {
        width: calc(100% - 28px);
    }

    .tour-taxonomy-breadcrumb {
        margin-bottom: 30px;
        font-size: 11px;
    }

    .tour-taxonomy-header {
        margin-bottom: 34px;
        padding-left: 17px;
    }

    .tour-taxonomy-header::before {
        width: 2px;
    }

    .tour-taxonomy-eyebrow {
        margin-bottom: 9px;
        font-size: 9px;
    }

    .tour-taxonomy-header h1 {
        font-size: 34px;
        line-height: 1.1;
    }

    .tour-taxonomy-description {
        margin-top: 15px;
        font-size: 13px;
        line-height: 1.75;
    }

    .tour-taxonomy-resultbar {
        margin-bottom: 17px;
        padding-bottom: 13px;
    }

    .tour-taxonomy-resultbar strong {
        font-size: 12px;
    }

    .tour-taxonomy-resultbar span {
        font-size: 11px;
    }

    .tour-taxonomy-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .tour-taxonomy-card {
        border-radius: 19px;
    }

    .tour-taxonomy-card-body {
        padding: 18px 18px 17px;
    }

    .tour-taxonomy-card-meta {
        margin-bottom: 11px;
    }

    .tour-taxonomy-card h2 {
        font-size: 18px;
        line-height: 1.38;
    }

    .tour-taxonomy-card p {
        min-height: auto;
        margin-top: 9px;
        margin-bottom: 17px;
        font-size: 12px;
    }

    .tour-taxonomy-card-bottom {
        padding-top: 14px;
    }

    .tour-taxonomy-price strong {
        font-size: 15px;
    }

    .tour-taxonomy-detail {
        font-size: 10px;
    }

    .tour-taxonomy-empty {
        padding: 58px 22px;
        border-radius: 19px;
    }

    .tour-taxonomy-empty h2 {
        font-size: 22px;
    }

    .tour-taxonomy-pagination {
        margin-top: 34px;
        gap: 6px;
    }

    .tour-taxonomy-pagination a,
    .tour-taxonomy-pagination span {
        min-width: 36px;
        height: 36px;
        border-radius: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tour-taxonomy-page {
        padding-top: 88px;
    }

    .tour-taxonomy-header h1 {
        font-size: 30px;
    }

    .tour-taxonomy-description {
        font-size: 12px;
    }

    .tour-taxonomy-card-image {
        aspect-ratio: 1200 / 800;
    }

    .tour-taxonomy-card-body {
        padding: 17px;
    }

    .tour-taxonomy-card-bottom {
        gap: 10px;
    }

    .tour-taxonomy-price strong {
        font-size: 14px;
    }

    .tour-taxonomy-detail {
        font-size: 10px;
    }

}

/* =========================================================
   TAXONOMY - FINAL POLISH
========================================================= */

/* INTRO lebih compact */
.tour-taxonomy-header {
    max-width: 820px;
    margin-bottom: 32px;
    padding-left: 20px;
}

.tour-taxonomy-header h1 {
    font-size: clamp(42px, 4vw, 48px);
    line-height: 1.08;
}

.tour-taxonomy-description {
    max-width: 720px;
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.75;
}


/* RESULT BAR */
.tour-taxonomy-resultbar {
    margin-bottom: 22px;
    padding-bottom: 14px;
}

.tour-taxonomy-resultbar > div {
    gap: 9px;
}

.tour-taxonomy-resultbar strong {
    font-size: 13px;
    font-weight: 800;
}

.tour-taxonomy-resultbar span {
    font-size: 11px;
}


/* CARD */
.tour-taxonomy-card {
    border-radius: 20px;
}

.tour-taxonomy-card-body {
    padding: 20px 21px 19px;
}

.tour-taxonomy-card h2 {
    font-size: 18px;
    line-height: 1.38;
}

.tour-taxonomy-card p {
    margin-top: 9px;
    margin-bottom: 17px;
    font-size: 12px;
    line-height: 1.7;
}


/* CARD META */
.tour-taxonomy-card-meta {
    gap: 6px;
    margin-bottom: 10px;
}

.tour-taxonomy-card-meta span {
    padding: 5px 9px;
    font-size: 9px;
}


/* FEATURED */
.tour-taxonomy-featured {
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    font-size: 9px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}


/* CARD BOTTOM */
.tour-taxonomy-card-bottom {
    padding-top: 14px;
}

.tour-taxonomy-price small {
    margin-bottom: 3px;
    font-size: 8px;
    letter-spacing: .06em;
}

.tour-taxonomy-price strong {
    font-size: 15px;
}

.tour-taxonomy-detail {
    font-size: 10px;
}

.tour-taxonomy-detail span {
    font-size: 15px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .tour-taxonomy-header {
        margin-bottom: 28px;
        padding-left: 16px;
    }

    .tour-taxonomy-header h1 {
        font-size: 34px;
    }

    .tour-taxonomy-description {
        margin-top: 11px;
        font-size: 13px;
    }

    .tour-taxonomy-resultbar {
        margin-bottom: 17px;
    }

    .tour-taxonomy-card-body {
        padding: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tour-taxonomy-page {
        padding-top: 90px;
    }

    .tour-taxonomy-header h1 {
        font-size: 31px;
    }

    .tour-taxonomy-description {
        font-size: 12px;
    }

}