/* Home Ordered Tours Styles */
.home-ordered-tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.home-tour-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.home-tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.home-tour-thumbnail {
    position: relative;
    overflow: hidden;
}

.home-tour-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-tour-item:hover .home-tour-thumbnail img {
    transform: scale(1.05);
}

.home-tour-info {
    padding: 15px;
}

.home-tour-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.home-tour-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-tour-info h3 a:hover {
    color: #007cba;
}

.home-tour-price {
    font-size: 16px;
    font-weight: bold;
    color: #007cba;
    margin-top: 10px;
}

/* Test Home Order Styles */
.test-home-order {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.test-home-order h3 {
    margin-top: 0;
    color: #333;
}

.test-home-order ul {
    list-style: none;
    padding: 0;
}

.test-home-order li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.test-home-order li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-ordered-tours-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .home-tour-thumbnail img {
        height: 150px;
    }
    
    .home-tour-info h3 {
        font-size: 16px;
    }
}

/* Loading State */
.home-ordered-tours-container.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Empty State */
.home-ordered-tours-container:empty::before {
    content: "No tours available at the moment.";
    display: block;
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
} 