/* ===== PAGE ===== */
.single-tour-page {
    background: #f7f9fc;
    padding: 40px 0;
}

/* ===== TOP LAYOUT ===== */
.tour-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== GALLERY ===== */
.tour-gallery-main {
    position: relative;
    height: 460px;
    border-radius: 14px;
    overflow: hidden;
}

.tour-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s ease;
}

.tour-slide.active {
    opacity: 1;
}

.tour-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== THUMBNAILS (FIXED SIZE) ===== */
.tour-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.tour-thumb {
    width: 90px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    cursor: pointer;
}

.tour-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-thumb.active {
    border-color: #ff5722;
}

/* ===== SUMMARY ===== */
.tour-summary {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.tour-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.tour-meta {
    color: #555;
    margin-bottom: 12px;
}

.tour-rating {
    color: #f4b400;
    margin-bottom: 20px;
}

.tour-price-box {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.tour-price-box .per {
    font-size: 14px;
    color: #777;
}

.tour-cta {
    display: inline-block;
    background: #ff5722;
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* ===== DETAILS ===== */
.tour-details {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 30px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .tour-top {
        grid-template-columns: 1fr;
    }

    .tour-gallery-main {
        height: 300px;
    }
}

/* ===== PILLS ===== */
.tour-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.pill {
    background: #eef2ff;
    color: #3f51b5;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 999px;
    font-weight: 500;
}

.pill-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #555;
}

/* ===== SHORT DESC ===== */
.tour-short-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 14px 0 18px;
}

/* ===== META ===== */
.tour-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

/* ===== RATING ===== */
.tour-rating {
    color: #f4b400;
    font-weight: 600;
    margin-bottom: 16px;
}

.tour-rating small {
    color: #777;
    font-weight: normal;
}

/* ===== SUMMARY CARD ENHANCEMENT ===== */
.tour-summary {
    position: sticky;
    top: 100px;
}

.woocommerce-breadcrumb{
    background: #f7f9fc !important;
    padding: 1em !important;
    margin: unset !important;
}