/* Trending Destinations Widget Styles */
.trending-destinations {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.trending-destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.trending-destinations-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.see-all-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.see-all-link a:hover {
    color: #007cba;
}

.see-all-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.see-all-link a:hover svg {
    transform: translateX(2px);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.destination-item {
    text-align: center;
}

.destination-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.destination-link:hover {
    transform: translateY(-5px);
}

.destination-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.destination-link:hover .destination-image {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.destination-info {
    text-align: center;
}

.destination-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.tours-count {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.2;
}

.destinations-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #007cba;
}

.dot:hover {
    background-color: #007cba;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trending-destinations {
        padding: 40px 20px;
    }
    
    .trending-destinations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .trending-destinations-title {
        font-size: 28px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .destination-image {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .destination-name {
        font-size: 14px;
    }
    
    .tours-count {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .trending-destinations {
        padding: 30px 15px;
    }
    
    .trending-destinations-title {
        font-size: 24px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }
    
    .destination-image {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }
    
    .destination-name {
        font-size: 13px;
    }
    
    .tours-count {
        font-size: 11px;
    }
}

/* Elementor Editor Specific Styles */
.elementor-editor-active .trending-destinations {
    min-height: 200px;
}

.elementor-editor-active .destination-link:hover {
    transform: none;
}

.elementor-editor-active .destination-image {
    transition: none;
}

.elementor-editor-active .dot {
    pointer-events: none;
}