.tours-container {
    margin: 20px 0;
}

.tours-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tour-card {
    flex: 1 1 300px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.tours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tours-list .tour-item {
    display: flex;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tours-list .tour-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.tour-title {
    margin-top: 0;
    color: #2c3e50;
    font-size: 18px;
}

.tour-price {
    margin: 15px 0;
}

.final-price {
    color: #e74c3c;
    font-size: 20px;
    font-weight: bold;
}

.tour-meta {
    display: inline-flex;
    justify-content: space-between;
    margin: 10px 0;
    color: #555;
    gap: 15px;
}

.nights {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nights-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.airline {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-book-button {
    background: #95a5a6;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: not-allowed;
    width: 100%;
    opacity: 0.7;
}

.fa-solid {
    color: #3498db;
    font-size: 14px;
}

@media (max-width: 768px) {
    .tours-grid .tour-card {
        flex: 1 1 100%;
    }
    
    .tours-list .tour-item {
        flex-direction: column;
    }
    
    .tour-meta {
        flex-direction: column;
        gap: 8px;
    }
}

.tours-country-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.tours-update-time {
    font-size: 14px;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.tour-commission {
    font-size: 14px;
    color: #27ae60;
    margin: 10px 0;
}

.tours-error {
    text-align: center;
    padding: 20px;
    background: #ffecec;
    border: 1px solid #f5aca6;
    border-radius: 5px;
    color: #d9534f;
}

/* مخفی کردن دکمه‌های رزرو */
.tour-book-button {
    display: none !important;
}

/* استایل عمومی آیکون‌ها */
.fa-regular,
.fa-solid {
    color: #3498db;
    margin-left: 5px;
    font-size: 18px;
    vertical-align: middle;
}

/* استایل مخصوص ایرلاین */
.airline .plane-departure {
    color: #e74c3c;
}

/* استایل مخصوص تعداد شب‌ها */
.nights .fa-moon {
    color: #3498db;
}
