/* Tour Package Grid Layout */
.tour-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tour-package-item {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
}

.tour-package-title {
    font-size: 1.5rem;
    margin-top: 10px;
}

.tour-package-description {
    font-size: 1rem;
    margin-top: 10px;
}

.tour-package-price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 15px;
}

/* Tour Package Slider Layout */
.tour-package-slider {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
}

.tour-package-item {
    flex: 0 0 auto;
    width: 280px;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    gap:
}

.tour-package-slider::-webkit-scrollbar {
    display: none;
}

.tour-package-slider .tour-package-item {
    margin-right: 20px;
    gap: 20px;
}

/* For Slick Slider (to make sure the slider is scrollable and smooth) */
.slick-slide {
    transition: transform 0.3s ease-in-out;
}

.related-tours {
    padding:70px 20px;
    background:#fff;
}

.related-tours h2 {
    text-align:center;
    margin-bottom:40px;
}

.related-tour-item {
    padding:15px;
    background:#f9f9f9;
    border-radius:8px;
    text-align:center;
}

.related-tour-item img {
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:8px;
}

.related-tour-item h4 {
    margin:15px 0 10px;
    font-size:16px;
}

.related-price {
    font-size:16px;
}

.sale-price {
    color:red;
    font-weight:bold;
    margin-right:8px;
}

/*********** Custom ***********/


.tour-hero-image img {
    width:100%;
    height:520px;
    object-fit:cover;
}

.tour-main-wrapper {
    background:#f8f9fc;
    padding:50px 20px;
}

.tour-content-area {
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.tour-left {
    flex:2;
}

.tour-sidebar {
    flex:1;
}

.tour-title {
    font-size:32px;
    margin-bottom:10px;
}

.tour-features {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    background:#fff;
    padding:20px;
    border-radius:8px;
    margin:20px 0;
}

.feature-item {
    font-size:14px;
}

.booking-card {
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    position:sticky;
    top:100px;
}

.duration-badge {
    background:#4c6ef5;
    color:#fff;
    padding:8px 15px;
    display:inline-block;
    border-radius:5px;
    margin-bottom:15px;
}

.price {
    font-size:24px;
    margin-bottom:20px;
}

.sale-price {
    color:#e60023;
    font-weight:bold;
    margin-right:10px;
}

.regular-price {
    color:#888;
}

.check-btn {
    display:block;
    text-align:center;
    background:#4c6ef5;
    color:#fff;
    padding:12px;
    border-radius:30px;
    text-decoration:none;
}
.tour-package-item .tour-package-image img{
    width:100%;
}
.tour-package-title{
    text-align: left;
}
.tour-package-prices {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    background: #f6f6f3;
    padding: 0 20px;
    border-radius: 100px;
    text-align: center;
    margin: -40px 0 0;
    width: fit-content;
    z-index: 9999;
    padding: 7px 20px;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .07);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .07);
    margin-bottom: 15px;
}
.tour-package-item .tour-package-title a{
    font-size:16px;
    font-family: inherit;
}
.tour-package-item .tour-package-title a:hover{
    
}
.tour-main-wrapper .container{
	max-width: 1200px;
    margin: 0 auto;
}
.related-tours .container{
	max-width: 1200px;
    margin: 0 auto;
}

.tour-package-grid,
.tour-package-slider {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tour-package-grid .tour-package-item {
    width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tour-package-slider .tour-package-item {
    width: 300px; /* or your slider item width */
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tour-package-image-wrapper {
    position: relative;
    overflow: hidden;
}

.discount-ribbon {
    position: absolute;
    top: 12px;
    right: -40px;
    background: #f1c40f;
    color: #111;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.15);
    z-index: 10;
    
}

.discount-ribbon {
    background-color: #ff184e;
    border-radius: 50px;
    color: #fff;
}

.tour-package-item .tour-package-title a{
    font-size:18px!important;    
    text-align: left!important;
}

.tour-package-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

.tour-package-image-wrapper a:hover img {
    transform: scale(1.05);
}

.tour-package-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-package-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
}

.tour-package-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-package-title a:hover {
    color: #4a90e2;
}

.tour-package-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.tour-package-meta i {
    margin-right: 5px;
    color: #4a90e2;
}

.tour-package-description {
    flex-grow: 1;
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

.tour-package-prices {
    font-size: 16px;
    margin-bottom: 15px;
}

.sale-price {
    font-weight: 700;
    color: #111;
    margin-right: 10px;
}

.regular-price {
    color: #999;
}

.tour-package-button {
    background-color: black;
    color: #fff;
    padding: 5px;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
    user-select: none;
}
.tour-package-button:hover {
    background-color: #ff184e;
}
.tour-features-new{
    padding: 0px !important;
    margin: 0 0 15px!important;
    text-align: left;
}
.tour-package-price del{
    display:none;
}
.tour-package-price span{
    display:none;
}

.tour-location{
    font-size:16px;
    font-weight: 700;
}
.tour-duration{
    font-size:16px;
    font-weight: 700;
}