/* Tour Grid Styling */
            .tour-grid-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 20px;
            }
            
            .page-title {
                margin-bottom: 30px;
                text-align: center;
                font-size: 32px;
                color: #333;
            }
            
            .tour-filters {
                margin-bottom: 30px;
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .filter-button {
                padding: 8px 15px;
                background-color: #f5f5f5;
                border: 1px solid #ddd;
                border-radius: 4px;
                cursor: pointer;
                transition: all 0.3s ease;
            }
            
            .filter-button:hover {
                background-color: #e0e0e0;
            }
            
            .filter-button.active {
                background-color: #3498db;
                color: white;
                border-color: #3498db;
            }
            
            .tour-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
            }
            
            .tour-item {
                border: 1px solid #eee;
                border-radius: 8px;
                overflow: hidden;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                background-color: white;
            }
            
            .tour-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            
            .tour-image {
                position: relative;
                overflow: hidden;
                height: 200px;
            }
            
            .tour-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }
            
            .tour-item:hover .tour-image img {
                transform: scale(1.05);
            }
            
            .tour-sale-badge {
                position: absolute;
                top: 10px;
                right: 10px;
                background-color: #e74c3c;
                color: white;
                padding: 4px 8px;
                font-size: 12px;
                border-radius: 4px;
                font-weight: bold;
            }
            
            .tour-content {
                padding: 15px;
            }
            
            .tour-title {
                margin-top: 0;
                margin-bottom: 10px;
                font-size: 18px;
                line-height: 1.3;
                font-weight: 600;
            }
            
            .tour-title a {
                color: #333;
                text-decoration: none;
                transition: color 0.3s ease;
            }
            
            .tour-title a:hover {
                color: #3498db;
            }
            
            .tour-meta {
                display: flex;
                justify-content: space-between;
                margin-bottom: 10px;
                font-size: 14px;
                color: #666;
            }
            
            .tour-duration, .tour-location {
                display: flex;
                align-items: center;
            }
            
            .meta-icon {
                margin-right: 5px;
                color: #3498db;
            }
            
            .tour-pricing {
                margin-top: 15px;
            }
            
            .regular-price {
                text-decoration: line-through;
                color: #999;
                font-size: 14px;
            }
            
            .sale-price {
                font-size: 18px;
                font-weight: bold;
                color: #e74c3c;
            }
            
            .tour-price {
                font-size: 18px;
                font-weight: bold;
                color: #27ae60;
            }
            
            .tour-button {
                display: block;
                text-align: center;
                margin-top: 15px;
                padding: 8px 12px;
                background-color: #3498db;
                color: white;
                text-decoration: none;
                border-radius: 4px;
                transition: background-color 0.3s ease;
            }
            
            .tour-button:hover {
                background-color: #2980b9;
            }
            
            .no-tours {
                text-align: center;
                padding: 40px;
                font-size: 18px;
                color: #666;
                grid-column: 1 / -1;
            }
            
            .pagination {
                margin-top: 40px;
                display: flex;
                justify-content: center;
            }
            
            .pagination .page-numbers {
                display: inline-block;
                padding: 8px 12px;
                margin: 0 5px;
                border: 1px solid #ddd;
                border-radius: 4px;
                text-decoration: none;
                color: #333;
                transition: all 0.3s ease;
            }
            
            .pagination .page-numbers.current {
                background-color: #3498db;
                color: white;
                border-color: #3498db;
            }
            
            .pagination .page-numbers:hover:not(.current) {
                background-color: #f5f5f5;
            }
            


            /* Responsive adjustments */
            @media (max-width: 1024px) {
                .tour-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }
            
            @media (max-width: 768px) {
                .tour-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            
            @media (max-width: 480px) {
                .tour-grid {
                    grid-template-columns: 1fr;
                }
            }


            .tour-image {
    position: relative;   
     }


.tour-sale-badge{
    position: absolute;
    top: 0;
    background: red;
    padding: 5px 10px;
    color: #fff;
    font-size: 12px;
}
.regular-price {
    text-decoration: line-through;
}

.tour-meta{display:none}
.tour-item{
    background: #ffffff;
    box-shadow: 0px 3px 7px -3px rgba(0, 0, 0, 0.3), 0px 6px 12px -2px rgba(50, 50, 93, 0.25);
    border-radius: 6px;
    overflow: hidden;
}

.tour-content {
    padding: 10px;
}
/* CSS để hiển thị tour-grid 4 cột */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
    width: 100%;
    margin-bottom: 40px;
}

/* Style cho từng tour-item */
.tour-grid .tour-item {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.tour-grid .tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Style cho tour-image */
.tour-grid .tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-grid .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-grid .tour-item:hover .tour-image img {
    transform: scale(1.05);
}

/* Sale badge */
.tour-grid .tour-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: bold;
}

/* Tour content */
.tour-grid .tour-content {
    padding: 10px;
}

.tour-grid .tour-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
}

.tour-grid .tour-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-grid .tour-title a:hover {
    color: #3498db;
}

/* Tour meta */
.tour-grid .tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;

}

.tour-grid .tour-duration, 
.tour-grid .tour-location {
    display: flex;
    align-items: center;
}
.tour-grid .tour-location{
    display:none!important
}
.tour-grid .meta-icon {
    margin-right: 5px;
    color: #3498db;
}

/* Tour pricing */
.tour-grid .tour-pricing {
    margin-top: 15px;
}

.tour-grid .regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.tour-grid .sale-price {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
}

/* Tour button */
.tour-grid .tour-button {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 8px 12px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.tour-grid .tour-button:hover {
    background-color: #2980b9;
}

/* Responsive */
@media (max-width: 1024px) {
    .tour-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
}
