/* Destination Tours Page Layout - Template 4 */

.destination-tours-page-layout {
    width: 100%;
}

/* Hero Section */
.destination-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.destination-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.destination-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.destination-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.destination-hero-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #fff;
    line-height: 1.2;
}

.destination-hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

/* Tours Section */
.destination-tours-section {
    padding: 40px 0 80px;
}

.tours-count-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.tours-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Products Grid - Uses WooCommerce default styles */
.destination-tours-section .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    margin: 0 0 60px 0;
    padding: 0;
}

.destination-tours-section .products li.product {
    margin: 0;
    width: 100%;
    list-style: none;
}

/* Ensure product cards display correctly */
.destination-tours-section .products li.product .ova-product {
    width: 100%;
    height: 100%;
}

/* Pagination */
.destination-tours-section .woocommerce-pagination {
    margin-top: 60px;
    text-align: center;
}

.destination-tours-section .woocommerce-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.destination-tours-section .woocommerce-pagination .page-numbers li {
    margin: 0;
}

.destination-tours-section .woocommerce-pagination .page-numbers a,
.destination-tours-section .woocommerce-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.destination-tours-section .woocommerce-pagination .page-numbers a:hover,
.destination-tours-section .woocommerce-pagination .page-numbers .current {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #fff;
}

/* No Tours Message */
.no-tours-message {
    text-align: center;
    padding: 80px 20px;
}

.no-tours-icon {
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-tours-message h3 {
    font-size: 28px;
    color: #333;
    margin: 0 0 15px 0;
}

.no-tours-message p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Destination Info Section */
.destination-info-section {
    padding: 80px 0;
    background: #f9f9f9;
    margin-top: 60px;
}

.destination-info-content,
.destination-sights-gallery {
    margin-bottom: 60px;
}

.destination-info-content:last-child,
.destination-sights-gallery:last-child {
    margin-bottom: 0;
}

.info-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 30px 0;
}

.info-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.info-content-text p {
    margin-bottom: 20px;
}

/* Sights Gallery */
.sights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.sight-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.sight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sight-item:hover img {
    transform: scale(1.1);
}

.sight-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .destination-tours-section .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .destination-hero-title {
        font-size: 42px;
    }
    
    .destination-hero-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .destination-tours-section .products {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .destination-hero-section {
        min-height: 300px;
    }
    
    .destination-hero-title {
        font-size: 32px;
    }
    
    .destination-hero-description {
        font-size: 16px;
    }
    
    .tours-section-title {
        font-size: 24px;
    }
    
    .info-section-title {
        font-size: 24px;
    }
    
    .sights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
