.tour-image {
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    z-index: 1;
}

.overlay-pricing {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-group {
     display: flex;
    align-items: center;
    background: #611015;
    padding: 0 7px;
}

.original-price {
    font-size: 0.9em;
    text-decoration: line-through;
    opacity: 0.8;
}

.discounted-price {
    font-size: 1em;
    font-weight: 700;
    padding-left: 7px;
}

.duration-badge {
    text-align: right;
}

.duration-badge .days {
    display: block;
    font-size: 0.9em;
}

.price-amount{
    font-weight: 700;
}


.view-tour-btm{
    display: flex;

    justify-content: space-between;
    align-items: center;
    
}

.discount-percent {
    background: #27ae60;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.9em;
    margin-top: 5px;
    display: inline-block;
}

.sale-badge {
    position: absolute;
    top: 0px;
    right: -1px;
    background: #ff9c06;
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
    font-size: 0.9em;
}

.tour-card img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

 
.vaqqy-featured-tours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.home .vaqqy-featured-tours {
     grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
   
}

.featured-tour-card {
    position: relative;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.featured-tour-card:hover {
    transform: translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2ed573;
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
    z-index: 2;
    font-size: 0.9em;
}

.tour-thumbnail {
    height: 200px;
    overflow: hidden;
}

.tour-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-pricing {
    padding: 1rem;
    background: #f8f9fa;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 1rem;
}

.current-price {
    color: #2ed573;
    font-weight: bold;
    font-size: 1.2em;
}

.discount-percent {
    display: block;
    font-weight: bold;
    margin-top: 0.5rem;
}

.tour-content {
    padding: 1.5rem;
}

.tour-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #2ed573;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
}

.no-tours-found {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
}








