/* SECTION WRAPPER */
.tt-section {
    max-width: 1200px;
    padding: 0 16px;
    margin: 0 auto;
}

/* SWIPER */
.tt-swiper {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}

/* SLIDE */
.swiper-slide {
    height: auto;
}

/* CARD */
.tour-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.tour-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DURATION */
.tour-duration {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* BODY */
.tour-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TITLE */
.tour-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

/* PRICE */
.tour-price {
    font-size: 24px;
    font-weight: 800;
    margin-top: auto;
}

/* CALLBACK */
.callback-wrap {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

/* NAV ARROWS */
.tt-nav {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* MOBILE */
@media (max-width: 768px) {
    .tour-title {
        font-size: 16px;
    }
    .tour-price {
        font-size: 20px;
    }
}

.tt-price button{
    padding: 5px;
}

.btn-active{
    background-color:#ff6a00;
}


.callback-wrap {
    display: flex;
    margin: 14px;
    gap: 10px;
}

.callback-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #ff6a00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
}

.callback-btn {
    flex: 1;
    background: #ff6a00;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


.tour-rating {
    color: #22c55e;
    font-weight: 600;
    margin: 6px 0;
}
.tour-rating span {
    color: #6b7280;
    font-weight: 400;
}


.tour-badge {
    display: inline-block;
    background: #fde7f3;
    color: #be185d;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 12px;
    margin-bottom: 6px;
    width: fit-content;
}

.tour-route {
    font-size: 14px;
    color: #374151;
    margin-bottom: 6px;
}

.tour-old {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: line-through;
}
.tour-old .save {
    background: #dcfce7;
    color: #15803d;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 6px;
    text-decoration: none;
}